From 8cf6aaf6689d58502deae0c04df9b13e399e05b4 Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Tue, 14 Oct 2025 17:23:06 -0500 Subject: [PATCH 1/3] Fix pipe table parsing with code spans containing pipes (#29) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added code span recognition to pipe table cell parsing. The block grammar now properly handles backtick code spans like `|` within table cells by repeating the inline grammar's code span parsing logic in the block context. Changes: - Added CODE_SPAN_START and CODE_SPAN_CLOSE external tokens to block grammar - Implemented parse_code_span() in block scanner with lookahead for matching delimiters - Added _pipe_table_code_span rule to parse code spans within table cells - Updated scanner state serialization to track code span delimiter length 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../tree-sitter-markdown/grammar.js | 25 +- .../tree-sitter-markdown/src/grammar.json | 195 + .../tree-sitter-markdown/src/parser.c | 18098 ++++++++-------- .../tree-sitter-markdown/src/scanner.c | 73 +- .../test/corpus/extension_pipe_table.txt | 26 + 5 files changed, 9826 insertions(+), 8591 deletions(-) diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index ca67931..2cc9a1f 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -454,21 +454,34 @@ module.exports = grammar({ ), ), + // Code span within pipe table cells - simplified version that only handles backticks + _pipe_table_code_span: $ => seq( + $._code_span_start, + repeat(choice( + $._word, + $._whitespace, + common.punctuation_without($, []), + )), + $._code_span_close, + ), + _pipe_table_cell_contents: $ => prec.right( seq( choice( $._word, - $._display_math_state_track_marker, - $._inline_math_state_track_marker, + $._display_math_state_track_marker, + $._inline_math_state_track_marker, $._backslash_escape, + $._pipe_table_code_span, common.punctuation_without($, ['|']), ), repeat(choice( $._word, - $._display_math_state_track_marker, - $._inline_math_state_track_marker, + $._display_math_state_track_marker, + $._inline_math_state_track_marker, $._whitespace, $._backslash_escape, + $._pipe_table_code_span, common.punctuation_without($, ['|']), )))), @@ -569,6 +582,10 @@ module.exports = grammar({ // special tokens to allow external scanner serialization to happen $._display_math_state_track_marker, $._inline_math_state_track_marker, + + // code span delimiters for parsing pipe table cells + $._code_span_start, + $._code_span_close, ], precedences: $ => [ [$._setext_heading1, $._block], diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json index a5a4942..9b517c8 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -5347,6 +5347,185 @@ } ] }, + "_pipe_table_code_span": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_code_span_start" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "\"" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "`" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_code_span_close" + } + ] + }, "_pipe_table_cell_contents": { "type": "PREC_RIGHT", "value": 0, @@ -5372,6 +5551,10 @@ "type": "SYMBOL", "name": "_backslash_escape" }, + { + "type": "SYMBOL", + "name": "_pipe_table_code_span" + }, { "type": "SEQ", "members": [ @@ -5545,6 +5728,10 @@ "type": "SYMBOL", "name": "_backslash_escape" }, + { + "type": "SYMBOL", + "name": "_pipe_table_code_span" + }, { "type": "SEQ", "members": [ @@ -5921,6 +6108,14 @@ { "type": "SYMBOL", "name": "_inline_math_state_track_marker" + }, + { + "type": "SYMBOL", + "name": "_code_span_start" + }, + { + "type": "SYMBOL", + "name": "_code_span_close" } ], "inline": [], diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c index ac04805..50daa5e 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -7,12 +7,12 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1041 +#define STATE_COUNT 1056 #define LARGE_STATE_COUNT 189 -#define SYMBOL_COUNT 190 +#define SYMBOL_COUNT 194 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 91 -#define EXTERNAL_TOKEN_COUNT 45 +#define TOKEN_COUNT 93 +#define EXTERNAL_TOKEN_COUNT 47 #define FIELD_COUNT 1 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -110,109 +110,113 @@ enum ts_symbol_identifiers { sym_fenced_div_note_id = 88, sym__display_math_state_track_marker = 89, sym__inline_math_state_track_marker = 90, - sym_document = 91, - sym__qmd_attribute = 92, - sym__commonmark_whitespace = 93, - sym_raw_attribute = 94, - sym_commonmark_attribute = 95, - sym_language_attribute = 96, - sym__attribute = 97, - sym_key_value_value = 98, - sym__last_token_punctuation = 99, - sym__block = 100, - sym__block_not_section = 101, - sym_section = 102, - sym__section1 = 103, - sym__section2 = 104, - sym__section3 = 105, - sym__section4 = 106, - sym__section5 = 107, - sym__section6 = 108, - sym_thematic_break = 109, - sym__atx_heading1 = 110, - sym__atx_heading2 = 111, - sym__atx_heading3 = 112, - sym__atx_heading4 = 113, - sym__atx_heading5 = 114, - sym__atx_heading6 = 115, - sym__atx_heading_content = 116, - sym__setext_heading1 = 117, - sym__setext_heading2 = 118, - sym_indented_code_block = 119, - sym__indented_chunk = 120, - sym_fenced_div_block = 121, - sym_fenced_code_block = 122, - sym_code_fence_content = 123, - sym_info_string = 124, - sym_paragraph = 125, - sym_inline_ref_def = 126, - sym_note_definition_fenced_block = 127, - sym__blank_line = 128, - sym_block_quote = 129, - sym_list = 130, - sym__list_plus = 131, - sym__list_minus = 132, - sym__list_star = 133, - sym__list_dot = 134, - sym__list_parenthesis = 135, - sym_list_marker_plus = 136, - sym_list_marker_minus = 137, - sym_list_marker_star = 138, - sym_list_marker_dot = 139, - sym_list_marker_parenthesis = 140, - sym__list_item_plus = 141, - sym__list_item_minus = 142, - sym__list_item_star = 143, - sym__list_item_dot = 144, - sym__list_item_parenthesis = 145, - sym__list_item_content = 146, - sym__newline = 147, - sym__soft_line_break = 148, - sym__code_line = 149, - sym__line = 150, - sym__atx_heading_line = 151, - sym__whitespace = 152, - sym_pipe_table = 153, - sym_table_caption = 154, - sym__table_caption_line = 155, - sym__pipe_table_newline = 156, - sym_pipe_table_delimiter_row = 157, - sym_pipe_table_delimiter_cell = 158, - sym_pipe_table_row = 159, - sym__pipe_table_cell_contents = 160, - sym_pipe_table_cell = 161, - aux_sym_document_repeat1 = 162, - aux_sym_document_repeat2 = 163, - aux_sym_commonmark_attribute_repeat1 = 164, - aux_sym_commonmark_attribute_repeat2 = 165, - aux_sym_commonmark_attribute_repeat3 = 166, - aux_sym_key_value_value_repeat1 = 167, - aux_sym_key_value_value_repeat2 = 168, - aux_sym__section1_repeat1 = 169, - aux_sym__section2_repeat1 = 170, - aux_sym__section3_repeat1 = 171, - aux_sym__section4_repeat1 = 172, - aux_sym__section5_repeat1 = 173, - aux_sym_indented_code_block_repeat1 = 174, - aux_sym__indented_chunk_repeat1 = 175, - aux_sym_fenced_div_block_repeat1 = 176, - aux_sym_code_fence_content_repeat1 = 177, - aux_sym_paragraph_repeat1 = 178, - aux_sym__list_plus_repeat1 = 179, - aux_sym__list_minus_repeat1 = 180, - aux_sym__list_star_repeat1 = 181, - aux_sym__list_dot_repeat1 = 182, - aux_sym__list_parenthesis_repeat1 = 183, - aux_sym__code_line_repeat1 = 184, - aux_sym_pipe_table_repeat1 = 185, - aux_sym_pipe_table_delimiter_row_repeat1 = 186, - aux_sym_pipe_table_delimiter_cell_repeat1 = 187, - aux_sym_pipe_table_row_repeat1 = 188, - aux_sym__pipe_table_cell_contents_repeat1 = 189, - alias_sym_attribute = 190, - alias_sym_pipe_table_align_left = 191, - alias_sym_pipe_table_align_right = 192, - alias_sym_pipe_table_header = 193, + sym__code_span_start = 91, + sym__code_span_close = 92, + sym_document = 93, + sym__qmd_attribute = 94, + sym__commonmark_whitespace = 95, + sym_raw_attribute = 96, + sym_commonmark_attribute = 97, + sym_language_attribute = 98, + sym__attribute = 99, + sym_key_value_value = 100, + sym__last_token_punctuation = 101, + sym__block = 102, + sym__block_not_section = 103, + sym_section = 104, + sym__section1 = 105, + sym__section2 = 106, + sym__section3 = 107, + sym__section4 = 108, + sym__section5 = 109, + sym__section6 = 110, + sym_thematic_break = 111, + sym__atx_heading1 = 112, + sym__atx_heading2 = 113, + sym__atx_heading3 = 114, + sym__atx_heading4 = 115, + sym__atx_heading5 = 116, + sym__atx_heading6 = 117, + sym__atx_heading_content = 118, + sym__setext_heading1 = 119, + sym__setext_heading2 = 120, + sym_indented_code_block = 121, + sym__indented_chunk = 122, + sym_fenced_div_block = 123, + sym_fenced_code_block = 124, + sym_code_fence_content = 125, + sym_info_string = 126, + sym_paragraph = 127, + sym_inline_ref_def = 128, + sym_note_definition_fenced_block = 129, + sym__blank_line = 130, + sym_block_quote = 131, + sym_list = 132, + sym__list_plus = 133, + sym__list_minus = 134, + sym__list_star = 135, + sym__list_dot = 136, + sym__list_parenthesis = 137, + sym_list_marker_plus = 138, + sym_list_marker_minus = 139, + sym_list_marker_star = 140, + sym_list_marker_dot = 141, + sym_list_marker_parenthesis = 142, + sym__list_item_plus = 143, + sym__list_item_minus = 144, + sym__list_item_star = 145, + sym__list_item_dot = 146, + sym__list_item_parenthesis = 147, + sym__list_item_content = 148, + sym__newline = 149, + sym__soft_line_break = 150, + sym__code_line = 151, + sym__line = 152, + sym__atx_heading_line = 153, + sym__whitespace = 154, + sym_pipe_table = 155, + sym_table_caption = 156, + sym__table_caption_line = 157, + sym__pipe_table_newline = 158, + sym_pipe_table_delimiter_row = 159, + sym_pipe_table_delimiter_cell = 160, + sym_pipe_table_row = 161, + sym__pipe_table_code_span = 162, + sym__pipe_table_cell_contents = 163, + sym_pipe_table_cell = 164, + aux_sym_document_repeat1 = 165, + aux_sym_document_repeat2 = 166, + aux_sym_commonmark_attribute_repeat1 = 167, + aux_sym_commonmark_attribute_repeat2 = 168, + aux_sym_commonmark_attribute_repeat3 = 169, + aux_sym_key_value_value_repeat1 = 170, + aux_sym_key_value_value_repeat2 = 171, + aux_sym__section1_repeat1 = 172, + aux_sym__section2_repeat1 = 173, + aux_sym__section3_repeat1 = 174, + aux_sym__section4_repeat1 = 175, + aux_sym__section5_repeat1 = 176, + aux_sym_indented_code_block_repeat1 = 177, + aux_sym__indented_chunk_repeat1 = 178, + aux_sym_fenced_div_block_repeat1 = 179, + aux_sym_code_fence_content_repeat1 = 180, + aux_sym_paragraph_repeat1 = 181, + aux_sym__list_plus_repeat1 = 182, + aux_sym__list_minus_repeat1 = 183, + aux_sym__list_star_repeat1 = 184, + aux_sym__list_dot_repeat1 = 185, + aux_sym__list_parenthesis_repeat1 = 186, + aux_sym__code_line_repeat1 = 187, + aux_sym_pipe_table_repeat1 = 188, + aux_sym_pipe_table_delimiter_row_repeat1 = 189, + aux_sym_pipe_table_delimiter_cell_repeat1 = 190, + aux_sym_pipe_table_row_repeat1 = 191, + aux_sym__pipe_table_code_span_repeat1 = 192, + aux_sym__pipe_table_cell_contents_repeat1 = 193, + alias_sym_attribute = 194, + alias_sym_pipe_table_align_left = 195, + alias_sym_pipe_table_align_right = 196, + alias_sym_pipe_table_header = 197, }; static const char * const ts_symbol_names[] = { @@ -307,6 +311,8 @@ static const char * const ts_symbol_names[] = { [sym_fenced_div_note_id] = "fenced_div_note_id", [sym__display_math_state_track_marker] = "_display_math_state_track_marker", [sym__inline_math_state_track_marker] = "_inline_math_state_track_marker", + [sym__code_span_start] = "_code_span_start", + [sym__code_span_close] = "_code_span_close", [sym_document] = "document", [sym__qmd_attribute] = "_qmd_attribute", [sym__commonmark_whitespace] = "_commonmark_whitespace", @@ -376,6 +382,7 @@ static const char * const ts_symbol_names[] = { [sym_pipe_table_delimiter_row] = "pipe_table_delimiter_row", [sym_pipe_table_delimiter_cell] = "pipe_table_delimiter_cell", [sym_pipe_table_row] = "pipe_table_row", + [sym__pipe_table_code_span] = "_pipe_table_code_span", [sym__pipe_table_cell_contents] = "inline", [sym_pipe_table_cell] = "pipe_table_cell", [aux_sym_document_repeat1] = "document_repeat1", @@ -405,6 +412,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_pipe_table_delimiter_row_repeat1] = "pipe_table_delimiter_row_repeat1", [aux_sym_pipe_table_delimiter_cell_repeat1] = "pipe_table_delimiter_cell_repeat1", [aux_sym_pipe_table_row_repeat1] = "pipe_table_row_repeat1", + [aux_sym__pipe_table_code_span_repeat1] = "_pipe_table_code_span_repeat1", [aux_sym__pipe_table_cell_contents_repeat1] = "_pipe_table_cell_contents_repeat1", [alias_sym_attribute] = "attribute", [alias_sym_pipe_table_align_left] = "pipe_table_align_left", @@ -504,6 +512,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_fenced_div_note_id] = sym_fenced_div_note_id, [sym__display_math_state_track_marker] = sym__display_math_state_track_marker, [sym__inline_math_state_track_marker] = sym__inline_math_state_track_marker, + [sym__code_span_start] = sym__code_span_start, + [sym__code_span_close] = sym__code_span_close, [sym_document] = sym_document, [sym__qmd_attribute] = sym__qmd_attribute, [sym__commonmark_whitespace] = sym__commonmark_whitespace, @@ -573,6 +583,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_pipe_table_delimiter_row] = sym_pipe_table_delimiter_row, [sym_pipe_table_delimiter_cell] = sym_pipe_table_delimiter_cell, [sym_pipe_table_row] = sym_pipe_table_row, + [sym__pipe_table_code_span] = sym__pipe_table_code_span, [sym__pipe_table_cell_contents] = sym__atx_heading_line, [sym_pipe_table_cell] = sym_pipe_table_cell, [aux_sym_document_repeat1] = aux_sym_document_repeat1, @@ -602,6 +613,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_pipe_table_delimiter_row_repeat1] = aux_sym_pipe_table_delimiter_row_repeat1, [aux_sym_pipe_table_delimiter_cell_repeat1] = aux_sym_pipe_table_delimiter_cell_repeat1, [aux_sym_pipe_table_row_repeat1] = aux_sym_pipe_table_row_repeat1, + [aux_sym__pipe_table_code_span_repeat1] = aux_sym__pipe_table_code_span_repeat1, [aux_sym__pipe_table_cell_contents_repeat1] = aux_sym__pipe_table_cell_contents_repeat1, [alias_sym_attribute] = alias_sym_attribute, [alias_sym_pipe_table_align_left] = alias_sym_pipe_table_align_left, @@ -974,6 +986,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__code_span_start] = { + .visible = false, + .named = true, + }, + [sym__code_span_close] = { + .visible = false, + .named = true, + }, [sym_document] = { .visible = true, .named = true, @@ -1250,6 +1270,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__pipe_table_code_span] = { + .visible = false, + .named = true, + }, [sym__pipe_table_cell_contents] = { .visible = true, .named = true, @@ -1366,6 +1390,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__pipe_table_code_span_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__pipe_table_cell_contents_repeat1] = { .visible = false, .named = false, @@ -1788,354 +1816,354 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [296] = 177, [297] = 297, [298] = 298, - [299] = 223, - [300] = 224, - [301] = 191, - [302] = 226, - [303] = 227, - [304] = 228, - [305] = 229, - [306] = 230, - [307] = 231, - [308] = 232, - [309] = 233, - [310] = 234, - [311] = 236, - [312] = 237, - [313] = 238, - [314] = 239, - [315] = 240, - [316] = 241, - [317] = 242, - [318] = 243, - [319] = 244, - [320] = 297, - [321] = 246, - [322] = 247, - [323] = 248, - [324] = 252, - [325] = 255, - [326] = 193, - [327] = 194, - [328] = 217, - [329] = 221, - [330] = 250, - [331] = 195, - [332] = 198, - [333] = 190, - [334] = 191, - [335] = 192, - [336] = 193, - [337] = 194, - [338] = 195, - [339] = 198, - [340] = 249, - [341] = 199, - [342] = 201, - [343] = 204, - [344] = 249, - [345] = 215, - [346] = 252, - [347] = 219, - [348] = 259, - [349] = 149, - [350] = 261, - [351] = 266, - [352] = 269, - [353] = 272, - [354] = 273, - [355] = 274, - [356] = 275, - [357] = 276, - [358] = 279, - [359] = 281, - [360] = 282, - [361] = 283, - [362] = 284, - [363] = 285, - [364] = 294, - [365] = 199, - [366] = 201, - [367] = 204, - [368] = 196, - [369] = 197, - [370] = 215, - [371] = 219, - [372] = 203, - [373] = 205, - [374] = 206, - [375] = 207, - [376] = 208, - [377] = 209, - [378] = 210, - [379] = 211, - [380] = 212, - [381] = 214, - [382] = 216, - [383] = 217, - [384] = 189, - [385] = 221, - [386] = 220, - [387] = 222, - [388] = 223, - [389] = 224, - [390] = 226, - [391] = 227, - [392] = 228, - [393] = 229, - [394] = 230, - [395] = 231, - [396] = 232, - [397] = 233, - [398] = 234, - [399] = 399, - [400] = 236, - [401] = 237, - [402] = 238, - [403] = 239, - [404] = 240, - [405] = 241, - [406] = 242, - [407] = 243, - [408] = 244, - [409] = 297, - [410] = 246, - [411] = 247, - [412] = 248, - [413] = 250, + [299] = 222, + [300] = 223, + [301] = 224, + [302] = 191, + [303] = 226, + [304] = 227, + [305] = 228, + [306] = 229, + [307] = 230, + [308] = 231, + [309] = 220, + [310] = 233, + [311] = 234, + [312] = 192, + [313] = 236, + [314] = 237, + [315] = 238, + [316] = 239, + [317] = 240, + [318] = 241, + [319] = 242, + [320] = 243, + [321] = 244, + [322] = 297, + [323] = 246, + [324] = 247, + [325] = 248, + [326] = 252, + [327] = 255, + [328] = 193, + [329] = 194, + [330] = 217, + [331] = 221, + [332] = 250, + [333] = 195, + [334] = 198, + [335] = 190, + [336] = 191, + [337] = 192, + [338] = 193, + [339] = 194, + [340] = 195, + [341] = 198, + [342] = 249, + [343] = 199, + [344] = 201, + [345] = 204, + [346] = 249, + [347] = 215, + [348] = 252, + [349] = 219, + [350] = 259, + [351] = 149, + [352] = 261, + [353] = 266, + [354] = 269, + [355] = 272, + [356] = 273, + [357] = 274, + [358] = 275, + [359] = 276, + [360] = 279, + [361] = 281, + [362] = 282, + [363] = 283, + [364] = 284, + [365] = 285, + [366] = 294, + [367] = 199, + [368] = 201, + [369] = 204, + [370] = 196, + [371] = 197, + [372] = 215, + [373] = 219, + [374] = 203, + [375] = 205, + [376] = 206, + [377] = 207, + [378] = 208, + [379] = 209, + [380] = 210, + [381] = 211, + [382] = 212, + [383] = 214, + [384] = 216, + [385] = 189, + [386] = 217, + [387] = 220, + [388] = 221, + [389] = 222, + [390] = 223, + [391] = 224, + [392] = 226, + [393] = 227, + [394] = 228, + [395] = 229, + [396] = 230, + [397] = 231, + [398] = 232, + [399] = 233, + [400] = 234, + [401] = 236, + [402] = 237, + [403] = 238, + [404] = 239, + [405] = 240, + [406] = 241, + [407] = 242, + [408] = 243, + [409] = 244, + [410] = 297, + [411] = 246, + [412] = 247, + [413] = 248, [414] = 414, - [415] = 415, + [415] = 250, [416] = 416, - [417] = 259, - [418] = 261, - [419] = 266, - [420] = 147, - [421] = 269, - [422] = 272, - [423] = 273, - [424] = 274, - [425] = 275, - [426] = 276, - [427] = 279, - [428] = 281, - [429] = 282, - [430] = 283, - [431] = 284, - [432] = 285, - [433] = 294, - [434] = 196, - [435] = 197, - [436] = 203, - [437] = 205, - [438] = 206, - [439] = 207, - [440] = 147, - [441] = 208, - [442] = 209, - [443] = 210, - [444] = 211, - [445] = 212, + [417] = 417, + [418] = 418, + [419] = 259, + [420] = 261, + [421] = 266, + [422] = 147, + [423] = 269, + [424] = 272, + [425] = 273, + [426] = 274, + [427] = 275, + [428] = 276, + [429] = 279, + [430] = 281, + [431] = 282, + [432] = 283, + [433] = 284, + [434] = 285, + [435] = 294, + [436] = 196, + [437] = 197, + [438] = 203, + [439] = 205, + [440] = 189, + [441] = 147, + [442] = 206, + [443] = 207, + [444] = 208, + [445] = 209, [446] = 149, - [447] = 190, - [448] = 214, - [449] = 216, - [450] = 189, - [451] = 220, - [452] = 222, - [453] = 192, + [447] = 210, + [448] = 211, + [449] = 212, + [450] = 190, + [451] = 214, + [452] = 216, + [453] = 232, [454] = 454, [455] = 455, [456] = 456, [457] = 457, [458] = 458, [459] = 459, - [460] = 455, - [461] = 461, - [462] = 461, - [463] = 456, - [464] = 457, - [465] = 458, - [466] = 459, - [467] = 455, - [468] = 461, - [469] = 456, - [470] = 457, - [471] = 458, - [472] = 459, - [473] = 473, + [460] = 460, + [461] = 460, + [462] = 462, + [463] = 457, + [464] = 458, + [465] = 459, + [466] = 456, + [467] = 460, + [468] = 462, + [469] = 457, + [470] = 458, + [471] = 459, + [472] = 456, + [473] = 462, [474] = 474, [475] = 475, [476] = 474, [477] = 477, - [478] = 473, - [479] = 477, + [478] = 478, + [479] = 479, [480] = 480, [481] = 475, - [482] = 474, - [483] = 483, - [484] = 480, - [485] = 485, - [486] = 473, - [487] = 477, - [488] = 480, - [489] = 485, - [490] = 475, - [491] = 485, - [492] = 492, - [493] = 493, - [494] = 493, - [495] = 492, - [496] = 496, + [482] = 478, + [483] = 479, + [484] = 484, + [485] = 474, + [486] = 477, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 477, + [491] = 479, + [492] = 480, + [493] = 475, + [494] = 478, + [495] = 495, + [496] = 480, [497] = 497, [498] = 498, - [499] = 497, - [500] = 500, - [501] = 497, + [499] = 499, + [500] = 498, + [501] = 501, [502] = 502, [503] = 503, - [504] = 504, + [504] = 499, [505] = 505, [506] = 506, [507] = 507, - [508] = 496, - [509] = 505, - [510] = 496, - [511] = 505, - [512] = 496, - [513] = 496, - [514] = 496, + [508] = 507, + [509] = 498, + [510] = 510, + [511] = 511, + [512] = 488, + [513] = 495, + [514] = 489, [515] = 515, - [516] = 515, + [516] = 516, [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, + [518] = 497, + [519] = 511, + [520] = 487, [521] = 521, - [522] = 522, - [523] = 520, - [524] = 524, - [525] = 525, - [526] = 520, - [527] = 515, - [528] = 502, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 500, - [533] = 531, - [534] = 534, - [535] = 498, - [536] = 536, - [537] = 537, - [538] = 531, - [539] = 534, - [540] = 540, - [541] = 504, - [542] = 506, - [543] = 529, - [544] = 507, + [522] = 516, + [523] = 523, + [524] = 511, + [525] = 521, + [526] = 516, + [527] = 521, + [528] = 521, + [529] = 521, + [530] = 484, + [531] = 521, + [532] = 502, + [533] = 497, + [534] = 505, + [535] = 535, + [536] = 503, + [537] = 535, + [538] = 506, + [539] = 539, + [540] = 535, + [541] = 541, + [542] = 539, + [543] = 543, + [544] = 501, [545] = 545, - [546] = 534, - [547] = 547, - [548] = 540, + [546] = 546, + [547] = 502, + [548] = 548, [549] = 549, [550] = 550, - [551] = 540, + [551] = 510, [552] = 552, - [553] = 117, + [553] = 553, [554] = 554, [555] = 555, - [556] = 556, - [557] = 531, - [558] = 558, - [559] = 522, - [560] = 517, - [561] = 556, - [562] = 518, - [563] = 504, - [564] = 524, - [565] = 525, - [566] = 117, + [556] = 550, + [557] = 505, + [558] = 506, + [559] = 559, + [560] = 559, + [561] = 561, + [562] = 503, + [563] = 563, + [564] = 523, + [565] = 563, + [566] = 566, [567] = 567, - [568] = 568, - [569] = 529, - [570] = 531, - [571] = 149, - [572] = 572, - [573] = 573, + [568] = 546, + [569] = 563, + [570] = 517, + [571] = 501, + [572] = 559, + [573] = 546, [574] = 574, - [575] = 575, - [576] = 522, - [577] = 577, - [578] = 530, - [579] = 558, - [580] = 558, - [581] = 550, - [582] = 547, - [583] = 524, + [575] = 550, + [576] = 576, + [577] = 559, + [578] = 117, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 559, + [583] = 583, [584] = 584, - [585] = 525, - [586] = 149, + [585] = 117, + [586] = 580, [587] = 587, - [588] = 558, - [589] = 117, - [590] = 590, + [588] = 588, + [589] = 574, + [590] = 584, [591] = 591, - [592] = 572, - [593] = 593, - [594] = 572, - [595] = 595, - [596] = 531, - [597] = 517, - [598] = 518, - [599] = 599, - [600] = 600, - [601] = 572, - [602] = 602, + [592] = 588, + [593] = 149, + [594] = 561, + [595] = 561, + [596] = 561, + [597] = 597, + [598] = 598, + [599] = 117, + [600] = 553, + [601] = 554, + [602] = 559, [603] = 603, - [604] = 558, - [605] = 605, + [604] = 604, + [605] = 548, [606] = 606, [607] = 603, - [608] = 567, + [608] = 608, [609] = 609, - [610] = 149, + [610] = 603, [611] = 611, - [612] = 558, - [613] = 609, - [614] = 611, - [615] = 605, - [616] = 558, - [617] = 572, - [618] = 593, - [619] = 558, - [620] = 567, - [621] = 574, - [622] = 593, - [623] = 584, - [624] = 599, - [625] = 572, - [626] = 591, - [627] = 558, - [628] = 628, - [629] = 606, - [630] = 558, + [612] = 561, + [613] = 613, + [614] = 149, + [615] = 603, + [616] = 616, + [617] = 587, + [618] = 553, + [619] = 149, + [620] = 579, + [621] = 561, + [622] = 576, + [623] = 561, + [624] = 554, + [625] = 548, + [626] = 581, + [627] = 627, + [628] = 561, + [629] = 603, + [630] = 630, [631] = 631, - [632] = 606, - [633] = 633, + [632] = 609, + [633] = 609, [634] = 634, - [635] = 635, - [636] = 636, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 640, - [642] = 639, - [643] = 640, - [644] = 639, - [645] = 645, - [646] = 646, + [635] = 631, + [636] = 631, + [637] = 603, + [638] = 634, + [639] = 634, + [640] = 561, + [641] = 627, + [642] = 627, + [643] = 643, + [644] = 644, + [645] = 561, + [646] = 561, [647] = 647, [648] = 648, [649] = 649, @@ -2144,392 +2172,407 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [652] = 652, [653] = 653, [654] = 654, - [655] = 652, - [656] = 650, - [657] = 657, - [658] = 657, - [659] = 653, - [660] = 653, - [661] = 657, - [662] = 652, - [663] = 650, + [655] = 655, + [656] = 655, + [657] = 654, + [658] = 655, + [659] = 654, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, [664] = 664, [665] = 665, [666] = 666, [667] = 667, - [668] = 667, + [668] = 668, [669] = 669, [670] = 670, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 675, - [676] = 255, - [677] = 677, - [678] = 671, + [671] = 670, + [672] = 667, + [673] = 667, + [674] = 665, + [675] = 670, + [676] = 665, + [677] = 668, + [678] = 668, [679] = 679, - [680] = 672, - [681] = 673, - [682] = 667, - [683] = 669, - [684] = 670, - [685] = 671, - [686] = 672, - [687] = 673, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 685, + [686] = 686, + [687] = 687, [688] = 688, - [689] = 670, + [689] = 689, [690] = 690, [691] = 691, - [692] = 669, + [692] = 692, [693] = 693, - [694] = 694, + [694] = 685, [695] = 695, - [696] = 696, + [696] = 695, [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, + [698] = 689, + [699] = 692, + [700] = 689, + [701] = 691, + [702] = 691, + [703] = 692, + [704] = 693, [705] = 705, - [706] = 706, - [707] = 707, - [708] = 558, - [709] = 709, - [710] = 698, - [711] = 700, + [706] = 255, + [707] = 685, + [708] = 695, + [709] = 693, + [710] = 710, + [711] = 711, [712] = 712, [713] = 713, [714] = 714, - [715] = 698, + [715] = 715, [716] = 716, [717] = 717, [718] = 718, [719] = 719, - [720] = 700, + [720] = 720, [721] = 721, [722] = 722, - [723] = 664, + [723] = 723, [724] = 724, - [725] = 117, + [725] = 725, [726] = 726, - [727] = 666, + [727] = 727, [728] = 728, - [729] = 729, + [729] = 717, [730] = 730, [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, + [732] = 728, + [733] = 717, + [734] = 728, [735] = 735, [736] = 736, - [737] = 737, - [738] = 665, + [737] = 561, + [738] = 738, [739] = 739, [740] = 740, - [741] = 721, + [741] = 741, [742] = 742, [743] = 743, [744] = 744, [745] = 745, - [746] = 746, - [747] = 703, - [748] = 748, + [746] = 679, + [747] = 747, + [748] = 680, [749] = 749, [750] = 750, - [751] = 705, - [752] = 707, + [751] = 681, + [752] = 752, [753] = 753, - [754] = 754, + [754] = 117, [755] = 755, - [756] = 696, - [757] = 757, + [756] = 756, + [757] = 713, [758] = 758, [759] = 759, [760] = 760, - [761] = 702, - [762] = 762, - [763] = 713, - [764] = 558, + [761] = 714, + [762] = 149, + [763] = 763, + [764] = 764, [765] = 765, [766] = 766, [767] = 767, - [768] = 699, + [768] = 715, [769] = 769, [770] = 770, - [771] = 771, + [771] = 727, [772] = 772, - [773] = 149, + [773] = 773, [774] = 774, [775] = 775, - [776] = 776, + [776] = 722, [777] = 777, - [778] = 558, - [779] = 775, + [778] = 778, + [779] = 779, [780] = 780, [781] = 781, - [782] = 782, - [783] = 737, - [784] = 784, + [782] = 720, + [783] = 783, + [784] = 561, [785] = 785, [786] = 786, - [787] = 787, - [788] = 776, - [789] = 775, - [790] = 781, - [791] = 782, + [787] = 730, + [788] = 788, + [789] = 736, + [790] = 790, + [791] = 791, [792] = 792, - [793] = 785, - [794] = 786, + [793] = 793, + [794] = 794, [795] = 795, - [796] = 786, + [796] = 793, [797] = 797, - [798] = 782, - [799] = 776, - [800] = 782, - [801] = 782, + [798] = 798, + [799] = 799, + [800] = 741, + [801] = 801, [802] = 802, - [803] = 803, + [803] = 801, [804] = 804, - [805] = 792, - [806] = 780, - [807] = 784, - [808] = 808, - [809] = 795, - [810] = 558, - [811] = 808, - [812] = 795, + [805] = 805, + [806] = 801, + [807] = 802, + [808] = 802, + [809] = 790, + [810] = 561, + [811] = 797, + [812] = 797, [813] = 813, - [814] = 781, - [815] = 815, - [816] = 787, - [817] = 780, - [818] = 784, - [819] = 808, - [820] = 785, - [821] = 821, - [822] = 822, + [814] = 797, + [815] = 561, + [816] = 799, + [817] = 817, + [818] = 818, + [819] = 804, + [820] = 792, + [821] = 794, + [822] = 798, [823] = 823, - [824] = 824, - [825] = 825, + [824] = 818, + [825] = 790, [826] = 826, - [827] = 827, - [828] = 765, - [829] = 770, - [830] = 830, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, + [827] = 826, + [828] = 828, + [829] = 804, + [830] = 792, + [831] = 794, + [832] = 798, + [833] = 793, + [834] = 797, + [835] = 826, [836] = 836, - [837] = 117, + [837] = 837, [838] = 838, [839] = 839, - [840] = 742, - [841] = 821, - [842] = 558, + [840] = 840, + [841] = 841, + [842] = 842, [843] = 843, - [844] = 826, + [844] = 844, [845] = 845, [846] = 846, [847] = 847, [848] = 848, - [849] = 830, + [849] = 849, [850] = 850, [851] = 851, - [852] = 821, + [852] = 852, [853] = 853, - [854] = 854, - [855] = 855, - [856] = 836, - [857] = 857, - [858] = 831, - [859] = 832, - [860] = 851, - [861] = 117, - [862] = 822, - [863] = 823, - [864] = 825, + [854] = 850, + [855] = 851, + [856] = 856, + [857] = 778, + [858] = 858, + [859] = 756, + [860] = 849, + [861] = 861, + [862] = 836, + [863] = 843, + [864] = 765, [865] = 865, - [866] = 843, - [867] = 744, - [868] = 839, - [869] = 826, - [870] = 827, - [871] = 845, - [872] = 855, - [873] = 847, + [866] = 117, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 865, + [871] = 117, + [872] = 561, + [873] = 846, [874] = 874, - [875] = 771, - [876] = 835, - [877] = 823, - [878] = 848, - [879] = 750, - [880] = 846, - [881] = 724, - [882] = 874, - [883] = 827, - [884] = 830, - [885] = 885, - [886] = 845, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 833, - [892] = 834, - [893] = 824, - [894] = 894, - [895] = 853, - [896] = 822, - [897] = 890, - [898] = 838, - [899] = 847, - [900] = 825, - [901] = 857, - [902] = 732, - [903] = 835, - [904] = 854, - [905] = 855, - [906] = 846, - [907] = 874, - [908] = 836, - [909] = 843, - [910] = 857, - [911] = 749, - [912] = 889, - [913] = 890, - [914] = 831, - [915] = 833, - [916] = 834, - [917] = 824, - [918] = 894, - [919] = 853, - [920] = 832, - [921] = 755, - [922] = 838, - [923] = 851, - [924] = 848, - [925] = 850, - [926] = 737, - [927] = 850, - [928] = 894, - [929] = 854, - [930] = 885, - [931] = 885, - [932] = 889, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 933, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, + [875] = 837, + [876] = 838, + [877] = 839, + [878] = 840, + [879] = 841, + [880] = 842, + [881] = 867, + [882] = 844, + [883] = 837, + [884] = 845, + [885] = 846, + [886] = 886, + [887] = 848, + [888] = 760, + [889] = 786, + [890] = 838, + [891] = 850, + [892] = 856, + [893] = 740, + [894] = 868, + [895] = 839, + [896] = 896, + [897] = 852, + [898] = 840, + [899] = 780, + [900] = 869, + [901] = 901, + [902] = 902, + [903] = 841, + [904] = 901, + [905] = 905, + [906] = 906, + [907] = 779, + [908] = 847, + [909] = 858, + [910] = 874, + [911] = 911, + [912] = 896, + [913] = 848, + [914] = 861, + [915] = 849, + [916] = 842, + [917] = 836, + [918] = 788, + [919] = 852, + [920] = 902, + [921] = 844, + [922] = 922, + [923] = 901, + [924] = 753, + [925] = 902, + [926] = 843, + [927] = 927, + [928] = 865, + [929] = 905, + [930] = 905, + [931] = 906, + [932] = 845, + [933] = 847, + [934] = 858, + [935] = 874, + [936] = 911, + [937] = 896, + [938] = 867, + [939] = 861, + [940] = 868, + [941] = 911, + [942] = 906, + [943] = 853, + [944] = 741, + [945] = 853, + [946] = 856, + [947] = 851, [948] = 948, [949] = 949, [950] = 950, [951] = 951, - [952] = 947, + [952] = 952, [953] = 953, [954] = 954, - [955] = 937, - [956] = 938, + [955] = 955, + [956] = 956, [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 149, - [962] = 945, + [961] = 961, + [962] = 962, [963] = 963, - [964] = 964, + [964] = 955, [965] = 965, [966] = 966, - [967] = 967, + [967] = 952, [968] = 968, [969] = 969, - [970] = 970, - [971] = 940, + [970] = 956, + [971] = 971, [972] = 972, - [973] = 967, + [973] = 973, [974] = 974, [975] = 975, [976] = 976, [977] = 977, - [978] = 978, - [979] = 968, - [980] = 944, - [981] = 969, - [982] = 982, - [983] = 249, + [978] = 960, + [979] = 979, + [980] = 980, + [981] = 977, + [982] = 971, + [983] = 983, [984] = 984, - [985] = 953, - [986] = 986, - [987] = 941, + [985] = 985, + [986] = 149, + [987] = 987, [988] = 988, - [989] = 149, - [990] = 990, - [991] = 991, - [992] = 954, - [993] = 942, - [994] = 986, - [995] = 995, - [996] = 996, - [997] = 249, - [998] = 996, - [999] = 999, - [1000] = 953, - [1001] = 986, - [1002] = 988, - [1003] = 970, - [1004] = 988, - [1005] = 937, - [1006] = 938, - [1007] = 967, - [1008] = 968, - [1009] = 977, - [1010] = 969, - [1011] = 970, - [1012] = 972, - [1013] = 949, - [1014] = 972, - [1015] = 995, - [1016] = 940, - [1017] = 941, - [1018] = 966, - [1019] = 976, - [1020] = 963, + [989] = 989, + [990] = 948, + [991] = 149, + [992] = 992, + [993] = 993, + [994] = 985, + [995] = 973, + [996] = 952, + [997] = 958, + [998] = 973, + [999] = 977, + [1000] = 985, + [1001] = 988, + [1002] = 989, + [1003] = 988, + [1004] = 249, + [1005] = 1005, + [1006] = 953, + [1007] = 959, + [1008] = 955, + [1009] = 956, + [1010] = 957, + [1011] = 1011, + [1012] = 957, + [1013] = 959, + [1014] = 960, + [1015] = 989, + [1016] = 968, + [1017] = 1017, + [1018] = 1018, + [1019] = 961, + [1020] = 980, [1021] = 958, - [1022] = 999, - [1023] = 935, - [1024] = 933, - [1025] = 974, - [1026] = 942, - [1027] = 1027, - [1028] = 966, - [1029] = 976, - [1030] = 963, - [1031] = 958, - [1032] = 999, - [1033] = 935, - [1034] = 954, - [1035] = 974, - [1036] = 944, - [1037] = 996, - [1038] = 977, - [1039] = 945, - [1040] = 949, + [1022] = 965, + [1023] = 971, + [1024] = 992, + [1025] = 965, + [1026] = 1026, + [1027] = 987, + [1028] = 961, + [1029] = 1029, + [1030] = 1030, + [1031] = 249, + [1032] = 980, + [1033] = 1033, + [1034] = 975, + [1035] = 1035, + [1036] = 948, + [1037] = 984, + [1038] = 974, + [1039] = 983, + [1040] = 1029, + [1041] = 987, + [1042] = 966, + [1043] = 1033, + [1044] = 975, + [1045] = 1035, + [1046] = 992, + [1047] = 984, + [1048] = 974, + [1049] = 983, + [1050] = 1029, + [1051] = 1035, + [1052] = 1052, + [1053] = 1053, + [1054] = 953, + [1055] = 1033, }; static const TSCharacterRange aux_sym_key_value_value_token1_character_set_1[] = { @@ -2695,7 +2738,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 50, '@', 51, '[', 52, - '\\', 54, + '\\', 56, ']', 58, '^', 59, '_', 60, @@ -2737,7 +2780,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 50, '@', 51, '[', 52, - '\\', 56, + '\\', 54, ']', 58, '^', 59, '_', 60, @@ -3429,17 +3472,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [321] = {.lex_state = 12, .external_lex_state = 2}, [322] = {.lex_state = 12, .external_lex_state = 2}, [323] = {.lex_state = 12, .external_lex_state = 2}, - [324] = {.lex_state = 12, .external_lex_state = 6}, - [325] = {.lex_state = 12, .external_lex_state = 6}, - [326] = {.lex_state = 12, .external_lex_state = 2}, - [327] = {.lex_state = 12, .external_lex_state = 2}, - [328] = {.lex_state = 12, .external_lex_state = 6}, - [329] = {.lex_state = 12, .external_lex_state = 6}, + [324] = {.lex_state = 12, .external_lex_state = 2}, + [325] = {.lex_state = 12, .external_lex_state = 2}, + [326] = {.lex_state = 12, .external_lex_state = 6}, + [327] = {.lex_state = 12, .external_lex_state = 6}, + [328] = {.lex_state = 12, .external_lex_state = 2}, + [329] = {.lex_state = 12, .external_lex_state = 2}, [330] = {.lex_state = 12, .external_lex_state = 6}, - [331] = {.lex_state = 12, .external_lex_state = 2}, - [332] = {.lex_state = 12, .external_lex_state = 2}, - [333] = {.lex_state = 12, .external_lex_state = 6}, - [334] = {.lex_state = 12, .external_lex_state = 6}, + [331] = {.lex_state = 12, .external_lex_state = 6}, + [332] = {.lex_state = 12, .external_lex_state = 6}, + [333] = {.lex_state = 12, .external_lex_state = 2}, + [334] = {.lex_state = 12, .external_lex_state = 2}, [335] = {.lex_state = 12, .external_lex_state = 6}, [336] = {.lex_state = 12, .external_lex_state = 6}, [337] = {.lex_state = 12, .external_lex_state = 6}, @@ -3449,14 +3492,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [341] = {.lex_state = 12, .external_lex_state = 6}, [342] = {.lex_state = 12, .external_lex_state = 6}, [343] = {.lex_state = 12, .external_lex_state = 6}, - [344] = {.lex_state = 12, .external_lex_state = 2}, + [344] = {.lex_state = 12, .external_lex_state = 6}, [345] = {.lex_state = 12, .external_lex_state = 6}, [346] = {.lex_state = 12, .external_lex_state = 2}, [347] = {.lex_state = 12, .external_lex_state = 6}, - [348] = {.lex_state = 12, .external_lex_state = 6}, - [349] = {.lex_state = 12, .external_lex_state = 2}, + [348] = {.lex_state = 12, .external_lex_state = 2}, + [349] = {.lex_state = 12, .external_lex_state = 6}, [350] = {.lex_state = 12, .external_lex_state = 6}, - [351] = {.lex_state = 12, .external_lex_state = 6}, + [351] = {.lex_state = 12, .external_lex_state = 2}, [352] = {.lex_state = 12, .external_lex_state = 6}, [353] = {.lex_state = 12, .external_lex_state = 6}, [354] = {.lex_state = 12, .external_lex_state = 6}, @@ -3470,15 +3513,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [362] = {.lex_state = 12, .external_lex_state = 6}, [363] = {.lex_state = 12, .external_lex_state = 6}, [364] = {.lex_state = 12, .external_lex_state = 6}, - [365] = {.lex_state = 12, .external_lex_state = 2}, - [366] = {.lex_state = 12, .external_lex_state = 2}, + [365] = {.lex_state = 12, .external_lex_state = 6}, + [366] = {.lex_state = 12, .external_lex_state = 6}, [367] = {.lex_state = 12, .external_lex_state = 2}, - [368] = {.lex_state = 12, .external_lex_state = 6}, - [369] = {.lex_state = 12, .external_lex_state = 6}, - [370] = {.lex_state = 12, .external_lex_state = 2}, - [371] = {.lex_state = 12, .external_lex_state = 2}, - [372] = {.lex_state = 12, .external_lex_state = 6}, - [373] = {.lex_state = 12, .external_lex_state = 6}, + [368] = {.lex_state = 12, .external_lex_state = 2}, + [369] = {.lex_state = 12, .external_lex_state = 2}, + [370] = {.lex_state = 12, .external_lex_state = 6}, + [371] = {.lex_state = 12, .external_lex_state = 6}, + [372] = {.lex_state = 12, .external_lex_state = 2}, + [373] = {.lex_state = 12, .external_lex_state = 2}, [374] = {.lex_state = 12, .external_lex_state = 6}, [375] = {.lex_state = 12, .external_lex_state = 6}, [376] = {.lex_state = 12, .external_lex_state = 6}, @@ -3488,12 +3531,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 12, .external_lex_state = 6}, [381] = {.lex_state = 12, .external_lex_state = 6}, [382] = {.lex_state = 12, .external_lex_state = 6}, - [383] = {.lex_state = 12, .external_lex_state = 2}, + [383] = {.lex_state = 12, .external_lex_state = 6}, [384] = {.lex_state = 12, .external_lex_state = 6}, - [385] = {.lex_state = 12, .external_lex_state = 2}, - [386] = {.lex_state = 12, .external_lex_state = 6}, + [385] = {.lex_state = 12, .external_lex_state = 6}, + [386] = {.lex_state = 12, .external_lex_state = 2}, [387] = {.lex_state = 12, .external_lex_state = 6}, - [388] = {.lex_state = 12, .external_lex_state = 6}, + [388] = {.lex_state = 12, .external_lex_state = 2}, [389] = {.lex_state = 12, .external_lex_state = 6}, [390] = {.lex_state = 12, .external_lex_state = 6}, [391] = {.lex_state = 12, .external_lex_state = 6}, @@ -3504,7 +3547,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [396] = {.lex_state = 12, .external_lex_state = 6}, [397] = {.lex_state = 12, .external_lex_state = 6}, [398] = {.lex_state = 12, .external_lex_state = 6}, - [399] = {.lex_state = 12, .external_lex_state = 4}, + [399] = {.lex_state = 12, .external_lex_state = 6}, [400] = {.lex_state = 12, .external_lex_state = 6}, [401] = {.lex_state = 12, .external_lex_state = 6}, [402] = {.lex_state = 12, .external_lex_state = 6}, @@ -3518,12 +3561,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [410] = {.lex_state = 12, .external_lex_state = 6}, [411] = {.lex_state = 12, .external_lex_state = 6}, [412] = {.lex_state = 12, .external_lex_state = 6}, - [413] = {.lex_state = 12, .external_lex_state = 2}, + [413] = {.lex_state = 12, .external_lex_state = 6}, [414] = {.lex_state = 12, .external_lex_state = 4}, - [415] = {.lex_state = 12, .external_lex_state = 4}, + [415] = {.lex_state = 12, .external_lex_state = 2}, [416] = {.lex_state = 12, .external_lex_state = 4}, - [417] = {.lex_state = 12, .external_lex_state = 2}, - [418] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 4}, + [418] = {.lex_state = 12, .external_lex_state = 4}, [419] = {.lex_state = 12, .external_lex_state = 2}, [420] = {.lex_state = 12, .external_lex_state = 2}, [421] = {.lex_state = 12, .external_lex_state = 2}, @@ -3545,8 +3588,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [437] = {.lex_state = 12, .external_lex_state = 2}, [438] = {.lex_state = 12, .external_lex_state = 2}, [439] = {.lex_state = 12, .external_lex_state = 2}, - [440] = {.lex_state = 12, .external_lex_state = 6}, - [441] = {.lex_state = 12, .external_lex_state = 2}, + [440] = {.lex_state = 12, .external_lex_state = 2}, + [441] = {.lex_state = 12, .external_lex_state = 6}, [442] = {.lex_state = 12, .external_lex_state = 2}, [443] = {.lex_state = 12, .external_lex_state = 2}, [444] = {.lex_state = 12, .external_lex_state = 2}, @@ -3560,7 +3603,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [452] = {.lex_state = 12, .external_lex_state = 2}, [453] = {.lex_state = 12, .external_lex_state = 2}, [454] = {.lex_state = 1, .external_lex_state = 14}, - [455] = {.lex_state = 12, .external_lex_state = 14}, + [455] = {.lex_state = 2, .external_lex_state = 15}, [456] = {.lex_state = 12, .external_lex_state = 14}, [457] = {.lex_state = 12, .external_lex_state = 14}, [458] = {.lex_state = 12, .external_lex_state = 14}, @@ -3578,574 +3621,589 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [470] = {.lex_state = 12, .external_lex_state = 14}, [471] = {.lex_state = 12, .external_lex_state = 14}, [472] = {.lex_state = 12, .external_lex_state = 14}, - [473] = {.lex_state = 12, .external_lex_state = 15}, + [473] = {.lex_state = 12, .external_lex_state = 14}, [474] = {.lex_state = 12, .external_lex_state = 16}, - [475] = {.lex_state = 12, .external_lex_state = 15}, + [475] = {.lex_state = 12, .external_lex_state = 16}, [476] = {.lex_state = 12, .external_lex_state = 16}, - [477] = {.lex_state = 12, .external_lex_state = 16}, - [478] = {.lex_state = 12, .external_lex_state = 15}, + [477] = {.lex_state = 12, .external_lex_state = 17}, + [478] = {.lex_state = 12, .external_lex_state = 17}, [479] = {.lex_state = 12, .external_lex_state = 16}, - [480] = {.lex_state = 12, .external_lex_state = 15}, - [481] = {.lex_state = 12, .external_lex_state = 15}, - [482] = {.lex_state = 12, .external_lex_state = 16}, - [483] = {.lex_state = 2, .external_lex_state = 17}, - [484] = {.lex_state = 12, .external_lex_state = 15}, + [480] = {.lex_state = 12, .external_lex_state = 17}, + [481] = {.lex_state = 12, .external_lex_state = 16}, + [482] = {.lex_state = 12, .external_lex_state = 17}, + [483] = {.lex_state = 12, .external_lex_state = 16}, + [484] = {.lex_state = 2, .external_lex_state = 15}, [485] = {.lex_state = 12, .external_lex_state = 16}, - [486] = {.lex_state = 12, .external_lex_state = 15}, - [487] = {.lex_state = 12, .external_lex_state = 16}, - [488] = {.lex_state = 12, .external_lex_state = 15}, - [489] = {.lex_state = 12, .external_lex_state = 16}, - [490] = {.lex_state = 12, .external_lex_state = 15}, + [486] = {.lex_state = 12, .external_lex_state = 17}, + [487] = {.lex_state = 2, .external_lex_state = 15}, + [488] = {.lex_state = 2, .external_lex_state = 15}, + [489] = {.lex_state = 2, .external_lex_state = 15}, + [490] = {.lex_state = 12, .external_lex_state = 17}, [491] = {.lex_state = 12, .external_lex_state = 16}, - [492] = {.lex_state = 12, .external_lex_state = 16}, + [492] = {.lex_state = 12, .external_lex_state = 17}, [493] = {.lex_state = 12, .external_lex_state = 16}, - [494] = {.lex_state = 12, .external_lex_state = 15}, - [495] = {.lex_state = 12, .external_lex_state = 15}, - [496] = {.lex_state = 12, .external_lex_state = 18}, - [497] = {.lex_state = 12, .external_lex_state = 19}, - [498] = {.lex_state = 2, .external_lex_state = 17}, - [499] = {.lex_state = 12, .external_lex_state = 19}, - [500] = {.lex_state = 2, .external_lex_state = 17}, - [501] = {.lex_state = 12, .external_lex_state = 19}, - [502] = {.lex_state = 2, .external_lex_state = 17}, - [503] = {.lex_state = 12, .external_lex_state = 19}, - [504] = {.lex_state = 2, .external_lex_state = 17}, - [505] = {.lex_state = 12, .external_lex_state = 19}, - [506] = {.lex_state = 2, .external_lex_state = 17}, - [507] = {.lex_state = 2, .external_lex_state = 17}, - [508] = {.lex_state = 12, .external_lex_state = 18}, - [509] = {.lex_state = 12, .external_lex_state = 19}, - [510] = {.lex_state = 12, .external_lex_state = 18}, + [494] = {.lex_state = 12, .external_lex_state = 17}, + [495] = {.lex_state = 2, .external_lex_state = 15}, + [496] = {.lex_state = 12, .external_lex_state = 17}, + [497] = {.lex_state = 2, .external_lex_state = 15}, + [498] = {.lex_state = 2, .external_lex_state = 18}, + [499] = {.lex_state = 12, .external_lex_state = 17}, + [500] = {.lex_state = 2, .external_lex_state = 18}, + [501] = {.lex_state = 2, .external_lex_state = 15}, + [502] = {.lex_state = 2, .external_lex_state = 15}, + [503] = {.lex_state = 2, .external_lex_state = 15}, + [504] = {.lex_state = 12, .external_lex_state = 16}, + [505] = {.lex_state = 2, .external_lex_state = 15}, + [506] = {.lex_state = 2, .external_lex_state = 15}, + [507] = {.lex_state = 12, .external_lex_state = 17}, + [508] = {.lex_state = 12, .external_lex_state = 16}, + [509] = {.lex_state = 2, .external_lex_state = 18}, + [510] = {.lex_state = 2, .external_lex_state = 15}, [511] = {.lex_state = 12, .external_lex_state = 19}, - [512] = {.lex_state = 12, .external_lex_state = 18}, - [513] = {.lex_state = 12, .external_lex_state = 18}, - [514] = {.lex_state = 12, .external_lex_state = 18}, - [515] = {.lex_state = 2, .external_lex_state = 20}, - [516] = {.lex_state = 2, .external_lex_state = 20}, - [517] = {.lex_state = 2, .external_lex_state = 17}, - [518] = {.lex_state = 2, .external_lex_state = 17}, - [519] = {.lex_state = 12, .external_lex_state = 18}, - [520] = {.lex_state = 12, .external_lex_state = 21}, - [521] = {.lex_state = 12, .external_lex_state = 18}, - [522] = {.lex_state = 2, .external_lex_state = 17}, - [523] = {.lex_state = 12, .external_lex_state = 21}, - [524] = {.lex_state = 2, .external_lex_state = 17}, - [525] = {.lex_state = 2, .external_lex_state = 17}, - [526] = {.lex_state = 12, .external_lex_state = 21}, - [527] = {.lex_state = 2, .external_lex_state = 20}, - [528] = {.lex_state = 2, .external_lex_state = 14}, - [529] = {.lex_state = 12, .external_lex_state = 16}, - [530] = {.lex_state = 2, .external_lex_state = 17}, - [531] = {.lex_state = 12, .external_lex_state = 15}, - [532] = {.lex_state = 2, .external_lex_state = 14}, - [533] = {.lex_state = 12, .external_lex_state = 16}, - [534] = {.lex_state = 12, .external_lex_state = 22}, - [535] = {.lex_state = 2, .external_lex_state = 14}, - [536] = {.lex_state = 12, .external_lex_state = 18}, - [537] = {.lex_state = 12, .external_lex_state = 18}, - [538] = {.lex_state = 12, .external_lex_state = 18}, - [539] = {.lex_state = 12, .external_lex_state = 22}, - [540] = {.lex_state = 12, .external_lex_state = 21}, - [541] = {.lex_state = 2, .external_lex_state = 14}, - [542] = {.lex_state = 2, .external_lex_state = 14}, - [543] = {.lex_state = 12, .external_lex_state = 15}, - [544] = {.lex_state = 2, .external_lex_state = 14}, - [545] = {.lex_state = 12, .external_lex_state = 18}, + [512] = {.lex_state = 2, .external_lex_state = 20}, + [513] = {.lex_state = 2, .external_lex_state = 20}, + [514] = {.lex_state = 2, .external_lex_state = 20}, + [515] = {.lex_state = 12, .external_lex_state = 19}, + [516] = {.lex_state = 12, .external_lex_state = 19}, + [517] = {.lex_state = 2, .external_lex_state = 15}, + [518] = {.lex_state = 2, .external_lex_state = 20}, + [519] = {.lex_state = 12, .external_lex_state = 19}, + [520] = {.lex_state = 2, .external_lex_state = 20}, + [521] = {.lex_state = 12, .external_lex_state = 21}, + [522] = {.lex_state = 12, .external_lex_state = 19}, + [523] = {.lex_state = 2, .external_lex_state = 15}, + [524] = {.lex_state = 12, .external_lex_state = 19}, + [525] = {.lex_state = 12, .external_lex_state = 21}, + [526] = {.lex_state = 12, .external_lex_state = 19}, + [527] = {.lex_state = 12, .external_lex_state = 21}, + [528] = {.lex_state = 12, .external_lex_state = 21}, + [529] = {.lex_state = 12, .external_lex_state = 21}, + [530] = {.lex_state = 2, .external_lex_state = 20}, + [531] = {.lex_state = 12, .external_lex_state = 21}, + [532] = {.lex_state = 2, .external_lex_state = 20}, + [533] = {.lex_state = 2, .external_lex_state = 18}, + [534] = {.lex_state = 2, .external_lex_state = 20}, + [535] = {.lex_state = 12, .external_lex_state = 22}, + [536] = {.lex_state = 2, .external_lex_state = 20}, + [537] = {.lex_state = 12, .external_lex_state = 22}, + [538] = {.lex_state = 2, .external_lex_state = 20}, + [539] = {.lex_state = 2, .external_lex_state = 18}, + [540] = {.lex_state = 12, .external_lex_state = 22}, + [541] = {.lex_state = 12, .external_lex_state = 21}, + [542] = {.lex_state = 2, .external_lex_state = 18}, + [543] = {.lex_state = 12, .external_lex_state = 21}, + [544] = {.lex_state = 2, .external_lex_state = 20}, + [545] = {.lex_state = 2, .external_lex_state = 23}, [546] = {.lex_state = 12, .external_lex_state = 22}, - [547] = {.lex_state = 2, .external_lex_state = 17}, - [548] = {.lex_state = 12, .external_lex_state = 21}, - [549] = {.lex_state = 12, .external_lex_state = 18}, - [550] = {.lex_state = 2, .external_lex_state = 17}, - [551] = {.lex_state = 12, .external_lex_state = 21}, - [552] = {.lex_state = 2, .external_lex_state = 23}, - [553] = {.lex_state = 12, .external_lex_state = 24}, - [554] = {.lex_state = 12, .external_lex_state = 14}, + [547] = {.lex_state = 2, .external_lex_state = 18}, + [548] = {.lex_state = 2, .external_lex_state = 15}, + [549] = {.lex_state = 12, .external_lex_state = 21}, + [550] = {.lex_state = 12, .external_lex_state = 16}, + [551] = {.lex_state = 2, .external_lex_state = 20}, + [552] = {.lex_state = 12, .external_lex_state = 21}, + [553] = {.lex_state = 2, .external_lex_state = 15}, + [554] = {.lex_state = 2, .external_lex_state = 15}, [555] = {.lex_state = 12, .external_lex_state = 21}, - [556] = {.lex_state = 2, .external_lex_state = 20}, - [557] = {.lex_state = 12, .external_lex_state = 21}, - [558] = {.lex_state = 2, .external_lex_state = 17}, - [559] = {.lex_state = 2, .external_lex_state = 14}, - [560] = {.lex_state = 2, .external_lex_state = 14}, - [561] = {.lex_state = 2, .external_lex_state = 20}, - [562] = {.lex_state = 2, .external_lex_state = 14}, - [563] = {.lex_state = 2, .external_lex_state = 20}, - [564] = {.lex_state = 2, .external_lex_state = 14}, - [565] = {.lex_state = 2, .external_lex_state = 14}, - [566] = {.lex_state = 12, .external_lex_state = 25}, - [567] = {.lex_state = 2, .external_lex_state = 17}, - [568] = {.lex_state = 2, .external_lex_state = 17}, - [569] = {.lex_state = 12, .external_lex_state = 19}, - [570] = {.lex_state = 12, .external_lex_state = 19}, - [571] = {.lex_state = 12, .external_lex_state = 16}, - [572] = {.lex_state = 12, .external_lex_state = 15}, - [573] = {.lex_state = 3, .external_lex_state = 26}, - [574] = {.lex_state = 2, .external_lex_state = 17}, - [575] = {.lex_state = 3, .external_lex_state = 26}, - [576] = {.lex_state = 2, .external_lex_state = 20}, - [577] = {.lex_state = 4, .external_lex_state = 26}, - [578] = {.lex_state = 2, .external_lex_state = 14}, - [579] = {.lex_state = 12, .external_lex_state = 15}, - [580] = {.lex_state = 12, .external_lex_state = 16}, - [581] = {.lex_state = 2, .external_lex_state = 14}, - [582] = {.lex_state = 2, .external_lex_state = 14}, - [583] = {.lex_state = 2, .external_lex_state = 20}, - [584] = {.lex_state = 2, .external_lex_state = 17}, - [585] = {.lex_state = 2, .external_lex_state = 20}, - [586] = {.lex_state = 12, .external_lex_state = 15}, - [587] = {.lex_state = 4, .external_lex_state = 26}, - [588] = {.lex_state = 12, .external_lex_state = 18}, - [589] = {.lex_state = 12, .external_lex_state = 27}, - [590] = {.lex_state = 4, .external_lex_state = 26}, - [591] = {.lex_state = 2, .external_lex_state = 17}, - [592] = {.lex_state = 12, .external_lex_state = 18}, - [593] = {.lex_state = 12, .external_lex_state = 28}, + [556] = {.lex_state = 12, .external_lex_state = 17}, + [557] = {.lex_state = 2, .external_lex_state = 18}, + [558] = {.lex_state = 2, .external_lex_state = 18}, + [559] = {.lex_state = 12, .external_lex_state = 16}, + [560] = {.lex_state = 12, .external_lex_state = 17}, + [561] = {.lex_state = 2, .external_lex_state = 15}, + [562] = {.lex_state = 2, .external_lex_state = 18}, + [563] = {.lex_state = 12, .external_lex_state = 24}, + [564] = {.lex_state = 2, .external_lex_state = 20}, + [565] = {.lex_state = 12, .external_lex_state = 24}, + [566] = {.lex_state = 12, .external_lex_state = 21}, + [567] = {.lex_state = 2, .external_lex_state = 15}, + [568] = {.lex_state = 12, .external_lex_state = 22}, + [569] = {.lex_state = 12, .external_lex_state = 24}, + [570] = {.lex_state = 2, .external_lex_state = 20}, + [571] = {.lex_state = 2, .external_lex_state = 18}, + [572] = {.lex_state = 12, .external_lex_state = 21}, + [573] = {.lex_state = 12, .external_lex_state = 22}, + [574] = {.lex_state = 2, .external_lex_state = 18}, + [575] = {.lex_state = 12, .external_lex_state = 19}, + [576] = {.lex_state = 2, .external_lex_state = 15}, + [577] = {.lex_state = 12, .external_lex_state = 19}, + [578] = {.lex_state = 12, .external_lex_state = 25}, + [579] = {.lex_state = 2, .external_lex_state = 15}, + [580] = {.lex_state = 2, .external_lex_state = 18}, + [581] = {.lex_state = 2, .external_lex_state = 15}, + [582] = {.lex_state = 12, .external_lex_state = 22}, + [583] = {.lex_state = 12, .external_lex_state = 22}, + [584] = {.lex_state = 2, .external_lex_state = 18}, + [585] = {.lex_state = 12, .external_lex_state = 26}, + [586] = {.lex_state = 2, .external_lex_state = 18}, + [587] = {.lex_state = 2, .external_lex_state = 15}, + [588] = {.lex_state = 2, .external_lex_state = 18}, + [589] = {.lex_state = 2, .external_lex_state = 18}, + [590] = {.lex_state = 2, .external_lex_state = 18}, + [591] = {.lex_state = 12, .external_lex_state = 14}, + [592] = {.lex_state = 2, .external_lex_state = 18}, + [593] = {.lex_state = 12, .external_lex_state = 16}, [594] = {.lex_state = 12, .external_lex_state = 16}, - [595] = {.lex_state = 12, .external_lex_state = 14}, - [596] = {.lex_state = 12, .external_lex_state = 14}, - [597] = {.lex_state = 2, .external_lex_state = 20}, - [598] = {.lex_state = 2, .external_lex_state = 20}, - [599] = {.lex_state = 2, .external_lex_state = 17}, - [600] = {.lex_state = 3, .external_lex_state = 26}, - [601] = {.lex_state = 12, .external_lex_state = 19}, - [602] = {.lex_state = 12, .external_lex_state = 18}, - [603] = {.lex_state = 2, .external_lex_state = 20}, - [604] = {.lex_state = 12, .external_lex_state = 19}, + [595] = {.lex_state = 12, .external_lex_state = 17}, + [596] = {.lex_state = 2, .external_lex_state = 20}, + [597] = {.lex_state = 3, .external_lex_state = 27}, + [598] = {.lex_state = 4, .external_lex_state = 27}, + [599] = {.lex_state = 12, .external_lex_state = 28}, + [600] = {.lex_state = 2, .external_lex_state = 20}, + [601] = {.lex_state = 2, .external_lex_state = 20}, + [602] = {.lex_state = 12, .external_lex_state = 14}, + [603] = {.lex_state = 12, .external_lex_state = 16}, + [604] = {.lex_state = 4, .external_lex_state = 27}, [605] = {.lex_state = 2, .external_lex_state = 20}, - [606] = {.lex_state = 12, .external_lex_state = 18}, - [607] = {.lex_state = 2, .external_lex_state = 20}, - [608] = {.lex_state = 2, .external_lex_state = 14}, - [609] = {.lex_state = 2, .external_lex_state = 20}, - [610] = {.lex_state = 12, .external_lex_state = 19}, - [611] = {.lex_state = 2, .external_lex_state = 20}, - [612] = {.lex_state = 2, .external_lex_state = 14}, - [613] = {.lex_state = 2, .external_lex_state = 20}, - [614] = {.lex_state = 2, .external_lex_state = 20}, - [615] = {.lex_state = 2, .external_lex_state = 20}, + [606] = {.lex_state = 3, .external_lex_state = 27}, + [607] = {.lex_state = 12, .external_lex_state = 17}, + [608] = {.lex_state = 3, .external_lex_state = 27}, + [609] = {.lex_state = 12, .external_lex_state = 29}, + [610] = {.lex_state = 12, .external_lex_state = 21}, + [611] = {.lex_state = 4, .external_lex_state = 27}, + [612] = {.lex_state = 12, .external_lex_state = 21}, + [613] = {.lex_state = 12, .external_lex_state = 14}, + [614] = {.lex_state = 12, .external_lex_state = 17}, + [615] = {.lex_state = 12, .external_lex_state = 19}, [616] = {.lex_state = 12, .external_lex_state = 21}, - [617] = {.lex_state = 12, .external_lex_state = 21}, - [618] = {.lex_state = 4, .external_lex_state = 29}, - [619] = {.lex_state = 2, .external_lex_state = 20}, + [617] = {.lex_state = 2, .external_lex_state = 20}, + [618] = {.lex_state = 2, .external_lex_state = 18}, + [619] = {.lex_state = 12, .external_lex_state = 19}, [620] = {.lex_state = 2, .external_lex_state = 20}, - [621] = {.lex_state = 2, .external_lex_state = 14}, - [622] = {.lex_state = 3, .external_lex_state = 29}, - [623] = {.lex_state = 2, .external_lex_state = 14}, - [624] = {.lex_state = 2, .external_lex_state = 14}, - [625] = {.lex_state = 12, .external_lex_state = 14}, - [626] = {.lex_state = 2, .external_lex_state = 14}, - [627] = {.lex_state = 12, .external_lex_state = 14}, - [628] = {.lex_state = 3, .external_lex_state = 26}, - [629] = {.lex_state = 3, .external_lex_state = 26}, - [630] = {.lex_state = 12, .external_lex_state = 22}, - [631] = {.lex_state = 4, .external_lex_state = 26}, - [632] = {.lex_state = 4, .external_lex_state = 26}, - [633] = {.lex_state = 0, .external_lex_state = 30}, - [634] = {.lex_state = 0, .external_lex_state = 30}, - [635] = {.lex_state = 0, .external_lex_state = 30}, - [636] = {.lex_state = 0, .external_lex_state = 30}, - [637] = {.lex_state = 0, .external_lex_state = 30}, - [638] = {.lex_state = 6}, - [639] = {.lex_state = 8, .external_lex_state = 31}, - [640] = {.lex_state = 8, .external_lex_state = 31}, - [641] = {.lex_state = 8, .external_lex_state = 31}, - [642] = {.lex_state = 8, .external_lex_state = 31}, - [643] = {.lex_state = 8, .external_lex_state = 31}, - [644] = {.lex_state = 8, .external_lex_state = 31}, - [645] = {.lex_state = 6}, - [646] = {.lex_state = 0, .external_lex_state = 32}, - [647] = {.lex_state = 0, .external_lex_state = 32}, + [621] = {.lex_state = 2, .external_lex_state = 18}, + [622] = {.lex_state = 2, .external_lex_state = 20}, + [623] = {.lex_state = 12, .external_lex_state = 22}, + [624] = {.lex_state = 2, .external_lex_state = 18}, + [625] = {.lex_state = 2, .external_lex_state = 18}, + [626] = {.lex_state = 2, .external_lex_state = 20}, + [627] = {.lex_state = 12, .external_lex_state = 21}, + [628] = {.lex_state = 12, .external_lex_state = 19}, + [629] = {.lex_state = 12, .external_lex_state = 22}, + [630] = {.lex_state = 12, .external_lex_state = 30}, + [631] = {.lex_state = 12, .external_lex_state = 30}, + [632] = {.lex_state = 3, .external_lex_state = 31}, + [633] = {.lex_state = 4, .external_lex_state = 31}, + [634] = {.lex_state = 12, .external_lex_state = 30}, + [635] = {.lex_state = 12, .external_lex_state = 30}, + [636] = {.lex_state = 12, .external_lex_state = 30}, + [637] = {.lex_state = 12, .external_lex_state = 14}, + [638] = {.lex_state = 12, .external_lex_state = 30}, + [639] = {.lex_state = 12, .external_lex_state = 30}, + [640] = {.lex_state = 12, .external_lex_state = 14}, + [641] = {.lex_state = 4, .external_lex_state = 27}, + [642] = {.lex_state = 3, .external_lex_state = 27}, + [643] = {.lex_state = 3, .external_lex_state = 27}, + [644] = {.lex_state = 4, .external_lex_state = 27}, + [645] = {.lex_state = 12, .external_lex_state = 24}, + [646] = {.lex_state = 12, .external_lex_state = 30}, + [647] = {.lex_state = 12, .external_lex_state = 30}, [648] = {.lex_state = 0, .external_lex_state = 32}, [649] = {.lex_state = 0, .external_lex_state = 32}, - [650] = {.lex_state = 7, .external_lex_state = 33}, - [651] = {.lex_state = 6}, - [652] = {.lex_state = 0}, - [653] = {.lex_state = 8, .external_lex_state = 31}, - [654] = {.lex_state = 6}, - [655] = {.lex_state = 0}, - [656] = {.lex_state = 7, .external_lex_state = 33}, - [657] = {.lex_state = 8, .external_lex_state = 31}, - [658] = {.lex_state = 8, .external_lex_state = 31}, - [659] = {.lex_state = 8, .external_lex_state = 31}, - [660] = {.lex_state = 8, .external_lex_state = 31}, - [661] = {.lex_state = 8, .external_lex_state = 31}, - [662] = {.lex_state = 0}, - [663] = {.lex_state = 7, .external_lex_state = 33}, - [664] = {.lex_state = 0, .external_lex_state = 32}, - [665] = {.lex_state = 0, .external_lex_state = 32}, - [666] = {.lex_state = 0, .external_lex_state = 32}, - [667] = {.lex_state = 12, .external_lex_state = 31}, - [668] = {.lex_state = 12, .external_lex_state = 31}, - [669] = {.lex_state = 12, .external_lex_state = 31}, - [670] = {.lex_state = 12, .external_lex_state = 31}, - [671] = {.lex_state = 12, .external_lex_state = 31}, - [672] = {.lex_state = 12, .external_lex_state = 31}, - [673] = {.lex_state = 12, .external_lex_state = 31}, - [674] = {.lex_state = 6}, - [675] = {.lex_state = 0}, - [676] = {.lex_state = 0, .external_lex_state = 30}, - [677] = {.lex_state = 0, .external_lex_state = 32}, - [678] = {.lex_state = 12, .external_lex_state = 31}, - [679] = {.lex_state = 6}, - [680] = {.lex_state = 12, .external_lex_state = 31}, - [681] = {.lex_state = 12, .external_lex_state = 31}, - [682] = {.lex_state = 12, .external_lex_state = 31}, - [683] = {.lex_state = 12, .external_lex_state = 31}, - [684] = {.lex_state = 12, .external_lex_state = 31}, - [685] = {.lex_state = 12, .external_lex_state = 31}, - [686] = {.lex_state = 12, .external_lex_state = 31}, - [687] = {.lex_state = 12, .external_lex_state = 31}, - [688] = {.lex_state = 0}, - [689] = {.lex_state = 12, .external_lex_state = 31}, - [690] = {.lex_state = 6}, - [691] = {.lex_state = 6}, - [692] = {.lex_state = 12, .external_lex_state = 31}, - [693] = {.lex_state = 0, .external_lex_state = 32}, - [694] = {.lex_state = 0, .external_lex_state = 32}, - [695] = {.lex_state = 0, .external_lex_state = 32}, - [696] = {.lex_state = 0, .external_lex_state = 32}, - [697] = {.lex_state = 0, .external_lex_state = 32}, - [698] = {.lex_state = 0, .external_lex_state = 32}, - [699] = {.lex_state = 0, .external_lex_state = 32}, - [700] = {.lex_state = 0, .external_lex_state = 32}, - [701] = {.lex_state = 0, .external_lex_state = 32}, - [702] = {.lex_state = 0, .external_lex_state = 32}, - [703] = {.lex_state = 0, .external_lex_state = 32}, - [704] = {.lex_state = 0, .external_lex_state = 32}, - [705] = {.lex_state = 0, .external_lex_state = 32}, + [650] = {.lex_state = 0, .external_lex_state = 32}, + [651] = {.lex_state = 0, .external_lex_state = 32}, + [652] = {.lex_state = 0, .external_lex_state = 32}, + [653] = {.lex_state = 6}, + [654] = {.lex_state = 8, .external_lex_state = 33}, + [655] = {.lex_state = 8, .external_lex_state = 33}, + [656] = {.lex_state = 8, .external_lex_state = 33}, + [657] = {.lex_state = 8, .external_lex_state = 33}, + [658] = {.lex_state = 8, .external_lex_state = 33}, + [659] = {.lex_state = 8, .external_lex_state = 33}, + [660] = {.lex_state = 0, .external_lex_state = 34}, + [661] = {.lex_state = 0, .external_lex_state = 34}, + [662] = {.lex_state = 0, .external_lex_state = 34}, + [663] = {.lex_state = 6}, + [664] = {.lex_state = 0, .external_lex_state = 34}, + [665] = {.lex_state = 0}, + [666] = {.lex_state = 6}, + [667] = {.lex_state = 8, .external_lex_state = 33}, + [668] = {.lex_state = 7, .external_lex_state = 35}, + [669] = {.lex_state = 6}, + [670] = {.lex_state = 8, .external_lex_state = 33}, + [671] = {.lex_state = 8, .external_lex_state = 33}, + [672] = {.lex_state = 8, .external_lex_state = 33}, + [673] = {.lex_state = 8, .external_lex_state = 33}, + [674] = {.lex_state = 0}, + [675] = {.lex_state = 8, .external_lex_state = 33}, + [676] = {.lex_state = 0}, + [677] = {.lex_state = 7, .external_lex_state = 35}, + [678] = {.lex_state = 7, .external_lex_state = 35}, + [679] = {.lex_state = 0, .external_lex_state = 34}, + [680] = {.lex_state = 0, .external_lex_state = 34}, + [681] = {.lex_state = 0, .external_lex_state = 34}, + [682] = {.lex_state = 6}, + [683] = {.lex_state = 0, .external_lex_state = 34}, + [684] = {.lex_state = 6}, + [685] = {.lex_state = 12, .external_lex_state = 33}, + [686] = {.lex_state = 0}, + [687] = {.lex_state = 0, .external_lex_state = 34}, + [688] = {.lex_state = 6}, + [689] = {.lex_state = 12, .external_lex_state = 33}, + [690] = {.lex_state = 0}, + [691] = {.lex_state = 12, .external_lex_state = 33}, + [692] = {.lex_state = 12, .external_lex_state = 33}, + [693] = {.lex_state = 12, .external_lex_state = 33}, + [694] = {.lex_state = 12, .external_lex_state = 33}, + [695] = {.lex_state = 12, .external_lex_state = 33}, + [696] = {.lex_state = 12, .external_lex_state = 33}, + [697] = {.lex_state = 0, .external_lex_state = 34}, + [698] = {.lex_state = 12, .external_lex_state = 33}, + [699] = {.lex_state = 12, .external_lex_state = 33}, + [700] = {.lex_state = 12, .external_lex_state = 33}, + [701] = {.lex_state = 12, .external_lex_state = 33}, + [702] = {.lex_state = 12, .external_lex_state = 33}, + [703] = {.lex_state = 12, .external_lex_state = 33}, + [704] = {.lex_state = 12, .external_lex_state = 33}, + [705] = {.lex_state = 6}, [706] = {.lex_state = 0, .external_lex_state = 32}, - [707] = {.lex_state = 0, .external_lex_state = 32}, - [708] = {.lex_state = 0, .external_lex_state = 32}, - [709] = {.lex_state = 5}, - [710] = {.lex_state = 0, .external_lex_state = 32}, - [711] = {.lex_state = 0, .external_lex_state = 32}, - [712] = {.lex_state = 6}, - [713] = {.lex_state = 0, .external_lex_state = 32}, - [714] = {.lex_state = 0, .external_lex_state = 32}, - [715] = {.lex_state = 0, .external_lex_state = 32}, + [707] = {.lex_state = 12, .external_lex_state = 33}, + [708] = {.lex_state = 12, .external_lex_state = 33}, + [709] = {.lex_state = 12, .external_lex_state = 33}, + [710] = {.lex_state = 5}, + [711] = {.lex_state = 5}, + [712] = {.lex_state = 0, .external_lex_state = 34}, + [713] = {.lex_state = 0, .external_lex_state = 34}, + [714] = {.lex_state = 0, .external_lex_state = 34}, + [715] = {.lex_state = 0, .external_lex_state = 34}, [716] = {.lex_state = 6}, - [717] = {.lex_state = 0, .external_lex_state = 32}, - [718] = {.lex_state = 0, .external_lex_state = 32}, - [719] = {.lex_state = 0, .external_lex_state = 32}, - [720] = {.lex_state = 0, .external_lex_state = 32}, - [721] = {.lex_state = 0, .external_lex_state = 32}, - [722] = {.lex_state = 5}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 0, .external_lex_state = 32}, + [717] = {.lex_state = 0, .external_lex_state = 34}, + [718] = {.lex_state = 0, .external_lex_state = 34}, + [719] = {.lex_state = 0, .external_lex_state = 34}, + [720] = {.lex_state = 0, .external_lex_state = 34}, + [721] = {.lex_state = 0, .external_lex_state = 34}, + [722] = {.lex_state = 0, .external_lex_state = 34}, + [723] = {.lex_state = 0, .external_lex_state = 34}, + [724] = {.lex_state = 0, .external_lex_state = 34}, [725] = {.lex_state = 0, .external_lex_state = 34}, - [726] = {.lex_state = 0, .external_lex_state = 32}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 6}, - [729] = {.lex_state = 6}, - [730] = {.lex_state = 6}, + [726] = {.lex_state = 0, .external_lex_state = 34}, + [727] = {.lex_state = 0, .external_lex_state = 34}, + [728] = {.lex_state = 0, .external_lex_state = 34}, + [729] = {.lex_state = 0, .external_lex_state = 34}, + [730] = {.lex_state = 0, .external_lex_state = 34}, [731] = {.lex_state = 6}, - [732] = {.lex_state = 0, .external_lex_state = 32}, - [733] = {.lex_state = 6}, - [734] = {.lex_state = 0}, - [735] = {.lex_state = 6}, - [736] = {.lex_state = 6}, - [737] = {.lex_state = 0, .external_lex_state = 32}, - [738] = {.lex_state = 0}, + [732] = {.lex_state = 0, .external_lex_state = 34}, + [733] = {.lex_state = 0, .external_lex_state = 34}, + [734] = {.lex_state = 0, .external_lex_state = 34}, + [735] = {.lex_state = 0, .external_lex_state = 34}, + [736] = {.lex_state = 0, .external_lex_state = 34}, + [737] = {.lex_state = 0, .external_lex_state = 34}, + [738] = {.lex_state = 0, .external_lex_state = 34}, [739] = {.lex_state = 6}, - [740] = {.lex_state = 5}, - [741] = {.lex_state = 0, .external_lex_state = 31}, - [742] = {.lex_state = 0, .external_lex_state = 32}, - [743] = {.lex_state = 12}, - [744] = {.lex_state = 0, .external_lex_state = 32}, - [745] = {.lex_state = 0, .external_lex_state = 32}, - [746] = {.lex_state = 0, .external_lex_state = 32}, - [747] = {.lex_state = 0, .external_lex_state = 31}, - [748] = {.lex_state = 0, .external_lex_state = 32}, - [749] = {.lex_state = 0, .external_lex_state = 32}, - [750] = {.lex_state = 0, .external_lex_state = 32}, - [751] = {.lex_state = 0, .external_lex_state = 31}, - [752] = {.lex_state = 0, .external_lex_state = 31}, - [753] = {.lex_state = 6}, - [754] = {.lex_state = 0, .external_lex_state = 32}, - [755] = {.lex_state = 0, .external_lex_state = 32}, - [756] = {.lex_state = 0, .external_lex_state = 31}, - [757] = {.lex_state = 6}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 6}, - [760] = {.lex_state = 6}, - [761] = {.lex_state = 0, .external_lex_state = 31}, - [762] = {.lex_state = 6}, - [763] = {.lex_state = 0, .external_lex_state = 31}, - [764] = {.lex_state = 7, .external_lex_state = 33}, - [765] = {.lex_state = 0, .external_lex_state = 32}, + [740] = {.lex_state = 0, .external_lex_state = 34}, + [741] = {.lex_state = 0, .external_lex_state = 34}, + [742] = {.lex_state = 6}, + [743] = {.lex_state = 6}, + [744] = {.lex_state = 6}, + [745] = {.lex_state = 6}, + [746] = {.lex_state = 0}, + [747] = {.lex_state = 6}, + [748] = {.lex_state = 0}, + [749] = {.lex_state = 0}, + [750] = {.lex_state = 6}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 6}, + [753] = {.lex_state = 0, .external_lex_state = 34}, + [754] = {.lex_state = 0, .external_lex_state = 36}, + [755] = {.lex_state = 0, .external_lex_state = 34}, + [756] = {.lex_state = 0, .external_lex_state = 34}, + [757] = {.lex_state = 0, .external_lex_state = 33}, + [758] = {.lex_state = 6}, + [759] = {.lex_state = 0, .external_lex_state = 34}, + [760] = {.lex_state = 0, .external_lex_state = 34}, + [761] = {.lex_state = 0, .external_lex_state = 33}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 12}, + [764] = {.lex_state = 5}, + [765] = {.lex_state = 0, .external_lex_state = 34}, [766] = {.lex_state = 6}, - [767] = {.lex_state = 0, .external_lex_state = 32}, - [768] = {.lex_state = 0, .external_lex_state = 31}, - [769] = {.lex_state = 5}, - [770] = {.lex_state = 0, .external_lex_state = 32}, - [771] = {.lex_state = 0, .external_lex_state = 32}, + [767] = {.lex_state = 6}, + [768] = {.lex_state = 0, .external_lex_state = 33}, + [769] = {.lex_state = 0, .external_lex_state = 34}, + [770] = {.lex_state = 6}, + [771] = {.lex_state = 0, .external_lex_state = 33}, [772] = {.lex_state = 6}, - [773] = {.lex_state = 0}, - [774] = {.lex_state = 0, .external_lex_state = 32}, - [775] = {.lex_state = 0, .external_lex_state = 35}, - [776] = {.lex_state = 0, .external_lex_state = 35}, - [777] = {.lex_state = 0, .external_lex_state = 32}, - [778] = {.lex_state = 0}, - [779] = {.lex_state = 0, .external_lex_state = 35}, - [780] = {.lex_state = 0, .external_lex_state = 35}, - [781] = {.lex_state = 0, .external_lex_state = 35}, - [782] = {.lex_state = 0, .external_lex_state = 35}, - [783] = {.lex_state = 0, .external_lex_state = 31}, - [784] = {.lex_state = 0, .external_lex_state = 35}, - [785] = {.lex_state = 0, .external_lex_state = 35}, - [786] = {.lex_state = 0, .external_lex_state = 35}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 0, .external_lex_state = 35}, - [789] = {.lex_state = 0, .external_lex_state = 35}, - [790] = {.lex_state = 0, .external_lex_state = 35}, - [791] = {.lex_state = 0, .external_lex_state = 35}, - [792] = {.lex_state = 0}, - [793] = {.lex_state = 0, .external_lex_state = 35}, - [794] = {.lex_state = 0, .external_lex_state = 35}, - [795] = {.lex_state = 0, .external_lex_state = 35}, - [796] = {.lex_state = 0, .external_lex_state = 35}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 0, .external_lex_state = 35}, - [799] = {.lex_state = 0, .external_lex_state = 35}, - [800] = {.lex_state = 0, .external_lex_state = 35}, - [801] = {.lex_state = 0, .external_lex_state = 35}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 6}, + [773] = {.lex_state = 5}, + [774] = {.lex_state = 0, .external_lex_state = 34}, + [775] = {.lex_state = 6}, + [776] = {.lex_state = 0, .external_lex_state = 33}, + [777] = {.lex_state = 6}, + [778] = {.lex_state = 0, .external_lex_state = 34}, + [779] = {.lex_state = 0, .external_lex_state = 34}, + [780] = {.lex_state = 0, .external_lex_state = 34}, + [781] = {.lex_state = 0, .external_lex_state = 34}, + [782] = {.lex_state = 0, .external_lex_state = 33}, + [783] = {.lex_state = 0}, + [784] = {.lex_state = 7, .external_lex_state = 35}, + [785] = {.lex_state = 0, .external_lex_state = 34}, + [786] = {.lex_state = 0, .external_lex_state = 34}, + [787] = {.lex_state = 0, .external_lex_state = 33}, + [788] = {.lex_state = 0, .external_lex_state = 34}, + [789] = {.lex_state = 0, .external_lex_state = 33}, + [790] = {.lex_state = 0, .external_lex_state = 37}, + [791] = {.lex_state = 0}, + [792] = {.lex_state = 0, .external_lex_state = 37}, + [793] = {.lex_state = 0, .external_lex_state = 37}, + [794] = {.lex_state = 0, .external_lex_state = 37}, + [795] = {.lex_state = 12}, + [796] = {.lex_state = 0, .external_lex_state = 37}, + [797] = {.lex_state = 0, .external_lex_state = 37}, + [798] = {.lex_state = 0, .external_lex_state = 37}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 0, .external_lex_state = 33}, + [801] = {.lex_state = 0, .external_lex_state = 37}, + [802] = {.lex_state = 0, .external_lex_state = 37}, + [803] = {.lex_state = 0, .external_lex_state = 37}, + [804] = {.lex_state = 0, .external_lex_state = 37}, [805] = {.lex_state = 0}, - [806] = {.lex_state = 0, .external_lex_state = 35}, - [807] = {.lex_state = 0, .external_lex_state = 35}, - [808] = {.lex_state = 0, .external_lex_state = 35}, - [809] = {.lex_state = 0, .external_lex_state = 35}, - [810] = {.lex_state = 8, .external_lex_state = 31}, - [811] = {.lex_state = 0, .external_lex_state = 35}, - [812] = {.lex_state = 0, .external_lex_state = 35}, + [806] = {.lex_state = 0, .external_lex_state = 37}, + [807] = {.lex_state = 0, .external_lex_state = 37}, + [808] = {.lex_state = 0, .external_lex_state = 37}, + [809] = {.lex_state = 0, .external_lex_state = 37}, + [810] = {.lex_state = 8, .external_lex_state = 33}, + [811] = {.lex_state = 0, .external_lex_state = 37}, + [812] = {.lex_state = 0, .external_lex_state = 37}, [813] = {.lex_state = 0}, - [814] = {.lex_state = 0, .external_lex_state = 35}, - [815] = {.lex_state = 12}, + [814] = {.lex_state = 0, .external_lex_state = 37}, + [815] = {.lex_state = 0}, [816] = {.lex_state = 0}, - [817] = {.lex_state = 0, .external_lex_state = 35}, - [818] = {.lex_state = 0, .external_lex_state = 35}, - [819] = {.lex_state = 0, .external_lex_state = 35}, - [820] = {.lex_state = 0, .external_lex_state = 35}, - [821] = {.lex_state = 0, .external_lex_state = 31}, - [822] = {.lex_state = 0, .external_lex_state = 36}, - [823] = {.lex_state = 0, .external_lex_state = 37}, - [824] = {.lex_state = 0, .external_lex_state = 31}, - [825] = {.lex_state = 0, .external_lex_state = 36}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 0}, + [819] = {.lex_state = 0, .external_lex_state = 37}, + [820] = {.lex_state = 0, .external_lex_state = 37}, + [821] = {.lex_state = 0, .external_lex_state = 37}, + [822] = {.lex_state = 0, .external_lex_state = 37}, + [823] = {.lex_state = 6}, + [824] = {.lex_state = 0}, + [825] = {.lex_state = 0, .external_lex_state = 37}, [826] = {.lex_state = 0, .external_lex_state = 37}, - [827] = {.lex_state = 0, .external_lex_state = 36}, - [828] = {.lex_state = 0, .external_lex_state = 31}, - [829] = {.lex_state = 0, .external_lex_state = 31}, - [830] = {.lex_state = 0, .external_lex_state = 31}, - [831] = {.lex_state = 0, .external_lex_state = 31}, - [832] = {.lex_state = 0, .external_lex_state = 31}, - [833] = {.lex_state = 0, .external_lex_state = 31}, - [834] = {.lex_state = 0, .external_lex_state = 31}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 0, .external_lex_state = 31}, - [837] = {.lex_state = 0, .external_lex_state = 38}, - [838] = {.lex_state = 0, .external_lex_state = 31}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 0, .external_lex_state = 31}, - [841] = {.lex_state = 0, .external_lex_state = 31}, - [842] = {.lex_state = 0, .external_lex_state = 31}, - [843] = {.lex_state = 0, .external_lex_state = 31}, - [844] = {.lex_state = 0, .external_lex_state = 37}, - [845] = {.lex_state = 0, .external_lex_state = 31}, - [846] = {.lex_state = 0, .external_lex_state = 31}, - [847] = {.lex_state = 0, .external_lex_state = 31}, - [848] = {.lex_state = 0, .external_lex_state = 31}, - [849] = {.lex_state = 0, .external_lex_state = 31}, - [850] = {.lex_state = 0, .external_lex_state = 31}, - [851] = {.lex_state = 0, .external_lex_state = 37}, - [852] = {.lex_state = 0, .external_lex_state = 31}, - [853] = {.lex_state = 0, .external_lex_state = 31}, - [854] = {.lex_state = 0, .external_lex_state = 31}, - [855] = {.lex_state = 0, .external_lex_state = 31}, - [856] = {.lex_state = 0, .external_lex_state = 31}, - [857] = {.lex_state = 0, .external_lex_state = 31}, - [858] = {.lex_state = 0, .external_lex_state = 31}, - [859] = {.lex_state = 0, .external_lex_state = 31}, - [860] = {.lex_state = 0, .external_lex_state = 37}, - [861] = {.lex_state = 0, .external_lex_state = 39}, - [862] = {.lex_state = 0, .external_lex_state = 36}, - [863] = {.lex_state = 0, .external_lex_state = 37}, - [864] = {.lex_state = 0, .external_lex_state = 36}, - [865] = {.lex_state = 12, .external_lex_state = 31}, - [866] = {.lex_state = 0, .external_lex_state = 31}, - [867] = {.lex_state = 0, .external_lex_state = 31}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0, .external_lex_state = 37}, - [870] = {.lex_state = 0, .external_lex_state = 36}, - [871] = {.lex_state = 0, .external_lex_state = 31}, - [872] = {.lex_state = 0, .external_lex_state = 31}, - [873] = {.lex_state = 0, .external_lex_state = 31}, - [874] = {.lex_state = 0, .external_lex_state = 31}, - [875] = {.lex_state = 0, .external_lex_state = 31}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 0, .external_lex_state = 37}, - [878] = {.lex_state = 0, .external_lex_state = 31}, - [879] = {.lex_state = 0, .external_lex_state = 31}, - [880] = {.lex_state = 0, .external_lex_state = 31}, - [881] = {.lex_state = 0}, - [882] = {.lex_state = 0, .external_lex_state = 31}, - [883] = {.lex_state = 0, .external_lex_state = 36}, - [884] = {.lex_state = 0, .external_lex_state = 31}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0, .external_lex_state = 31}, - [887] = {.lex_state = 12, .external_lex_state = 31}, - [888] = {.lex_state = 0, .external_lex_state = 39}, - [889] = {.lex_state = 0, .external_lex_state = 31}, - [890] = {.lex_state = 0, .external_lex_state = 31}, - [891] = {.lex_state = 0, .external_lex_state = 31}, - [892] = {.lex_state = 0, .external_lex_state = 31}, - [893] = {.lex_state = 0, .external_lex_state = 31}, - [894] = {.lex_state = 0, .external_lex_state = 31}, - [895] = {.lex_state = 0, .external_lex_state = 31}, - [896] = {.lex_state = 0, .external_lex_state = 36}, - [897] = {.lex_state = 0, .external_lex_state = 31}, - [898] = {.lex_state = 0, .external_lex_state = 31}, - [899] = {.lex_state = 0, .external_lex_state = 31}, - [900] = {.lex_state = 0, .external_lex_state = 36}, - [901] = {.lex_state = 0, .external_lex_state = 31}, - [902] = {.lex_state = 0}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 0, .external_lex_state = 31}, - [905] = {.lex_state = 0, .external_lex_state = 31}, - [906] = {.lex_state = 0, .external_lex_state = 31}, - [907] = {.lex_state = 0, .external_lex_state = 31}, - [908] = {.lex_state = 0, .external_lex_state = 31}, - [909] = {.lex_state = 0, .external_lex_state = 31}, - [910] = {.lex_state = 0, .external_lex_state = 31}, - [911] = {.lex_state = 0, .external_lex_state = 31}, - [912] = {.lex_state = 0, .external_lex_state = 31}, - [913] = {.lex_state = 0, .external_lex_state = 31}, - [914] = {.lex_state = 0, .external_lex_state = 31}, - [915] = {.lex_state = 0, .external_lex_state = 31}, - [916] = {.lex_state = 0, .external_lex_state = 31}, - [917] = {.lex_state = 0, .external_lex_state = 31}, - [918] = {.lex_state = 0, .external_lex_state = 31}, - [919] = {.lex_state = 0, .external_lex_state = 31}, - [920] = {.lex_state = 0, .external_lex_state = 31}, - [921] = {.lex_state = 0, .external_lex_state = 31}, - [922] = {.lex_state = 0, .external_lex_state = 31}, - [923] = {.lex_state = 0, .external_lex_state = 37}, - [924] = {.lex_state = 0, .external_lex_state = 31}, - [925] = {.lex_state = 0, .external_lex_state = 31}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0, .external_lex_state = 31}, - [928] = {.lex_state = 0, .external_lex_state = 31}, - [929] = {.lex_state = 0, .external_lex_state = 31}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 0, .external_lex_state = 31}, - [933] = {.lex_state = 0, .external_lex_state = 40}, - [934] = {.lex_state = 0, .external_lex_state = 31}, - [935] = {.lex_state = 0, .external_lex_state = 40}, - [936] = {.lex_state = 0, .external_lex_state = 31}, - [937] = {.lex_state = 0, .external_lex_state = 41}, - [938] = {.lex_state = 0, .external_lex_state = 41}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 0, .external_lex_state = 41}, - [941] = {.lex_state = 0, .external_lex_state = 41}, - [942] = {.lex_state = 0, .external_lex_state = 41}, - [943] = {.lex_state = 0, .external_lex_state = 40}, - [944] = {.lex_state = 0, .external_lex_state = 41}, - [945] = {.lex_state = 0, .external_lex_state = 41}, - [946] = {.lex_state = 0, .external_lex_state = 31}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0, .external_lex_state = 31}, - [949] = {.lex_state = 0, .external_lex_state = 41}, - [950] = {.lex_state = 0, .external_lex_state = 31}, - [951] = {.lex_state = 12}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0, .external_lex_state = 41}, - [954] = {.lex_state = 0, .external_lex_state = 41}, - [955] = {.lex_state = 0, .external_lex_state = 41}, - [956] = {.lex_state = 0, .external_lex_state = 41}, - [957] = {.lex_state = 0, .external_lex_state = 31}, - [958] = {.lex_state = 0, .external_lex_state = 40}, - [959] = {.lex_state = 0, .external_lex_state = 41}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 0, .external_lex_state = 40}, - [962] = {.lex_state = 0, .external_lex_state = 41}, - [963] = {.lex_state = 0, .external_lex_state = 40}, - [964] = {.lex_state = 0, .external_lex_state = 31}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 0, .external_lex_state = 40}, - [967] = {.lex_state = 0, .external_lex_state = 41}, - [968] = {.lex_state = 0, .external_lex_state = 41}, - [969] = {.lex_state = 0, .external_lex_state = 41}, - [970] = {.lex_state = 0, .external_lex_state = 41}, - [971] = {.lex_state = 0, .external_lex_state = 41}, - [972] = {.lex_state = 0, .external_lex_state = 41}, - [973] = {.lex_state = 0, .external_lex_state = 41}, - [974] = {.lex_state = 0, .external_lex_state = 40}, - [975] = {.lex_state = 0, .external_lex_state = 40}, - [976] = {.lex_state = 0, .external_lex_state = 40}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0, .external_lex_state = 41}, - [980] = {.lex_state = 0, .external_lex_state = 41}, - [981] = {.lex_state = 0, .external_lex_state = 41}, - [982] = {.lex_state = 0, .external_lex_state = 31}, - [983] = {.lex_state = 0, .external_lex_state = 40}, - [984] = {.lex_state = 0, .external_lex_state = 31}, - [985] = {.lex_state = 0, .external_lex_state = 41}, - [986] = {.lex_state = 0, .external_lex_state = 41}, - [987] = {.lex_state = 0, .external_lex_state = 41}, - [988] = {.lex_state = 0, .external_lex_state = 41}, - [989] = {.lex_state = 0, .external_lex_state = 41}, - [990] = {.lex_state = 0, .external_lex_state = 31}, - [991] = {.lex_state = 0, .external_lex_state = 31}, - [992] = {.lex_state = 0, .external_lex_state = 41}, - [993] = {.lex_state = 0, .external_lex_state = 41}, - [994] = {.lex_state = 0, .external_lex_state = 41}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 0, .external_lex_state = 41}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0, .external_lex_state = 41}, - [999] = {.lex_state = 0, .external_lex_state = 40}, - [1000] = {.lex_state = 0, .external_lex_state = 41}, - [1001] = {.lex_state = 0, .external_lex_state = 41}, - [1002] = {.lex_state = 0, .external_lex_state = 41}, - [1003] = {.lex_state = 0, .external_lex_state = 41}, - [1004] = {.lex_state = 0, .external_lex_state = 41}, - [1005] = {.lex_state = 0, .external_lex_state = 41}, - [1006] = {.lex_state = 0, .external_lex_state = 41}, - [1007] = {.lex_state = 0, .external_lex_state = 41}, - [1008] = {.lex_state = 0, .external_lex_state = 41}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0, .external_lex_state = 41}, - [1011] = {.lex_state = 0, .external_lex_state = 41}, - [1012] = {.lex_state = 0, .external_lex_state = 41}, - [1013] = {.lex_state = 0, .external_lex_state = 41}, - [1014] = {.lex_state = 0, .external_lex_state = 41}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0, .external_lex_state = 41}, - [1017] = {.lex_state = 0, .external_lex_state = 41}, - [1018] = {.lex_state = 0, .external_lex_state = 40}, - [1019] = {.lex_state = 0, .external_lex_state = 40}, - [1020] = {.lex_state = 0, .external_lex_state = 40}, - [1021] = {.lex_state = 0, .external_lex_state = 40}, - [1022] = {.lex_state = 0, .external_lex_state = 40}, - [1023] = {.lex_state = 0, .external_lex_state = 40}, - [1024] = {.lex_state = 0, .external_lex_state = 40}, - [1025] = {.lex_state = 0, .external_lex_state = 40}, - [1026] = {.lex_state = 0, .external_lex_state = 41}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0, .external_lex_state = 40}, - [1029] = {.lex_state = 0, .external_lex_state = 40}, - [1030] = {.lex_state = 0, .external_lex_state = 40}, - [1031] = {.lex_state = 0, .external_lex_state = 40}, - [1032] = {.lex_state = 0, .external_lex_state = 40}, - [1033] = {.lex_state = 0, .external_lex_state = 40}, - [1034] = {.lex_state = 0, .external_lex_state = 41}, - [1035] = {.lex_state = 0, .external_lex_state = 40}, - [1036] = {.lex_state = 0, .external_lex_state = 41}, - [1037] = {.lex_state = 0, .external_lex_state = 41}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0, .external_lex_state = 41}, - [1040] = {.lex_state = 0, .external_lex_state = 41}, + [827] = {.lex_state = 0, .external_lex_state = 37}, + [828] = {.lex_state = 0, .external_lex_state = 34}, + [829] = {.lex_state = 0, .external_lex_state = 37}, + [830] = {.lex_state = 0, .external_lex_state = 37}, + [831] = {.lex_state = 0, .external_lex_state = 37}, + [832] = {.lex_state = 0, .external_lex_state = 37}, + [833] = {.lex_state = 0, .external_lex_state = 37}, + [834] = {.lex_state = 0, .external_lex_state = 37}, + [835] = {.lex_state = 0, .external_lex_state = 37}, + [836] = {.lex_state = 0, .external_lex_state = 33}, + [837] = {.lex_state = 0, .external_lex_state = 33}, + [838] = {.lex_state = 0, .external_lex_state = 33}, + [839] = {.lex_state = 0, .external_lex_state = 33}, + [840] = {.lex_state = 0, .external_lex_state = 33}, + [841] = {.lex_state = 0, .external_lex_state = 33}, + [842] = {.lex_state = 0, .external_lex_state = 33}, + [843] = {.lex_state = 0, .external_lex_state = 33}, + [844] = {.lex_state = 0, .external_lex_state = 38}, + [845] = {.lex_state = 0, .external_lex_state = 39}, + [846] = {.lex_state = 0, .external_lex_state = 38}, + [847] = {.lex_state = 0, .external_lex_state = 33}, + [848] = {.lex_state = 0, .external_lex_state = 39}, + [849] = {.lex_state = 0, .external_lex_state = 33}, + [850] = {.lex_state = 0, .external_lex_state = 38}, + [851] = {.lex_state = 0, .external_lex_state = 39}, + [852] = {.lex_state = 0}, + [853] = {.lex_state = 0, .external_lex_state = 33}, + [854] = {.lex_state = 0, .external_lex_state = 38}, + [855] = {.lex_state = 0, .external_lex_state = 39}, + [856] = {.lex_state = 0}, + [857] = {.lex_state = 0, .external_lex_state = 33}, + [858] = {.lex_state = 0, .external_lex_state = 33}, + [859] = {.lex_state = 0, .external_lex_state = 33}, + [860] = {.lex_state = 0, .external_lex_state = 33}, + [861] = {.lex_state = 0, .external_lex_state = 33}, + [862] = {.lex_state = 0, .external_lex_state = 33}, + [863] = {.lex_state = 0, .external_lex_state = 33}, + [864] = {.lex_state = 0, .external_lex_state = 33}, + [865] = {.lex_state = 0, .external_lex_state = 33}, + [866] = {.lex_state = 0, .external_lex_state = 40}, + [867] = {.lex_state = 0, .external_lex_state = 33}, + [868] = {.lex_state = 0, .external_lex_state = 33}, + [869] = {.lex_state = 0}, + [870] = {.lex_state = 0, .external_lex_state = 33}, + [871] = {.lex_state = 0, .external_lex_state = 41}, + [872] = {.lex_state = 0, .external_lex_state = 33}, + [873] = {.lex_state = 0, .external_lex_state = 38}, + [874] = {.lex_state = 0, .external_lex_state = 33}, + [875] = {.lex_state = 0, .external_lex_state = 33}, + [876] = {.lex_state = 0, .external_lex_state = 33}, + [877] = {.lex_state = 0, .external_lex_state = 33}, + [878] = {.lex_state = 0, .external_lex_state = 33}, + [879] = {.lex_state = 0, .external_lex_state = 33}, + [880] = {.lex_state = 0, .external_lex_state = 33}, + [881] = {.lex_state = 0, .external_lex_state = 33}, + [882] = {.lex_state = 0, .external_lex_state = 38}, + [883] = {.lex_state = 0, .external_lex_state = 33}, + [884] = {.lex_state = 0, .external_lex_state = 39}, + [885] = {.lex_state = 0, .external_lex_state = 38}, + [886] = {.lex_state = 12, .external_lex_state = 33}, + [887] = {.lex_state = 0, .external_lex_state = 39}, + [888] = {.lex_state = 0, .external_lex_state = 33}, + [889] = {.lex_state = 0, .external_lex_state = 33}, + [890] = {.lex_state = 0, .external_lex_state = 33}, + [891] = {.lex_state = 0, .external_lex_state = 38}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0}, + [894] = {.lex_state = 0, .external_lex_state = 33}, + [895] = {.lex_state = 0, .external_lex_state = 33}, + [896] = {.lex_state = 0, .external_lex_state = 33}, + [897] = {.lex_state = 0}, + [898] = {.lex_state = 0, .external_lex_state = 33}, + [899] = {.lex_state = 0, .external_lex_state = 33}, + [900] = {.lex_state = 0}, + [901] = {.lex_state = 0, .external_lex_state = 33}, + [902] = {.lex_state = 0, .external_lex_state = 33}, + [903] = {.lex_state = 0, .external_lex_state = 33}, + [904] = {.lex_state = 0, .external_lex_state = 33}, + [905] = {.lex_state = 0, .external_lex_state = 33}, + [906] = {.lex_state = 0, .external_lex_state = 33}, + [907] = {.lex_state = 0, .external_lex_state = 33}, + [908] = {.lex_state = 0, .external_lex_state = 33}, + [909] = {.lex_state = 0, .external_lex_state = 33}, + [910] = {.lex_state = 0, .external_lex_state = 33}, + [911] = {.lex_state = 0, .external_lex_state = 33}, + [912] = {.lex_state = 0, .external_lex_state = 33}, + [913] = {.lex_state = 0, .external_lex_state = 39}, + [914] = {.lex_state = 0, .external_lex_state = 33}, + [915] = {.lex_state = 0, .external_lex_state = 33}, + [916] = {.lex_state = 0, .external_lex_state = 33}, + [917] = {.lex_state = 0, .external_lex_state = 33}, + [918] = {.lex_state = 0, .external_lex_state = 33}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 0, .external_lex_state = 33}, + [921] = {.lex_state = 0, .external_lex_state = 38}, + [922] = {.lex_state = 12, .external_lex_state = 33}, + [923] = {.lex_state = 0, .external_lex_state = 33}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 0, .external_lex_state = 33}, + [926] = {.lex_state = 0, .external_lex_state = 33}, + [927] = {.lex_state = 0, .external_lex_state = 41}, + [928] = {.lex_state = 0, .external_lex_state = 33}, + [929] = {.lex_state = 0, .external_lex_state = 33}, + [930] = {.lex_state = 0, .external_lex_state = 33}, + [931] = {.lex_state = 0, .external_lex_state = 33}, + [932] = {.lex_state = 0, .external_lex_state = 39}, + [933] = {.lex_state = 0, .external_lex_state = 33}, + [934] = {.lex_state = 0, .external_lex_state = 33}, + [935] = {.lex_state = 0, .external_lex_state = 33}, + [936] = {.lex_state = 0, .external_lex_state = 33}, + [937] = {.lex_state = 0, .external_lex_state = 33}, + [938] = {.lex_state = 0, .external_lex_state = 33}, + [939] = {.lex_state = 0, .external_lex_state = 33}, + [940] = {.lex_state = 0, .external_lex_state = 33}, + [941] = {.lex_state = 0, .external_lex_state = 33}, + [942] = {.lex_state = 0, .external_lex_state = 33}, + [943] = {.lex_state = 0, .external_lex_state = 33}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 0, .external_lex_state = 33}, + [946] = {.lex_state = 0}, + [947] = {.lex_state = 0, .external_lex_state = 39}, + [948] = {.lex_state = 0, .external_lex_state = 42}, + [949] = {.lex_state = 0}, + [950] = {.lex_state = 0, .external_lex_state = 33}, + [951] = {.lex_state = 0, .external_lex_state = 33}, + [952] = {.lex_state = 0, .external_lex_state = 43}, + [953] = {.lex_state = 0, .external_lex_state = 43}, + [954] = {.lex_state = 0, .external_lex_state = 33}, + [955] = {.lex_state = 0, .external_lex_state = 43}, + [956] = {.lex_state = 0, .external_lex_state = 43}, + [957] = {.lex_state = 0, .external_lex_state = 43}, + [958] = {.lex_state = 0, .external_lex_state = 43}, + [959] = {.lex_state = 0, .external_lex_state = 43}, + [960] = {.lex_state = 0, .external_lex_state = 43}, + [961] = {.lex_state = 0, .external_lex_state = 43}, + [962] = {.lex_state = 0, .external_lex_state = 42}, + [963] = {.lex_state = 12}, + [964] = {.lex_state = 0, .external_lex_state = 43}, + [965] = {.lex_state = 0, .external_lex_state = 43}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 0, .external_lex_state = 43}, + [968] = {.lex_state = 0}, + [969] = {.lex_state = 0, .external_lex_state = 33}, + [970] = {.lex_state = 0, .external_lex_state = 43}, + [971] = {.lex_state = 0, .external_lex_state = 43}, + [972] = {.lex_state = 0, .external_lex_state = 33}, + [973] = {.lex_state = 0, .external_lex_state = 43}, + [974] = {.lex_state = 0, .external_lex_state = 42}, + [975] = {.lex_state = 0, .external_lex_state = 42}, + [976] = {.lex_state = 0, .external_lex_state = 33}, + [977] = {.lex_state = 0, .external_lex_state = 43}, + [978] = {.lex_state = 0, .external_lex_state = 43}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 0, .external_lex_state = 43}, + [981] = {.lex_state = 0, .external_lex_state = 43}, + [982] = {.lex_state = 0, .external_lex_state = 43}, + [983] = {.lex_state = 0, .external_lex_state = 42}, + [984] = {.lex_state = 0, .external_lex_state = 42}, + [985] = {.lex_state = 0, .external_lex_state = 43}, + [986] = {.lex_state = 0, .external_lex_state = 42}, + [987] = {.lex_state = 0, .external_lex_state = 43}, + [988] = {.lex_state = 0, .external_lex_state = 43}, + [989] = {.lex_state = 0, .external_lex_state = 43}, + [990] = {.lex_state = 0, .external_lex_state = 42}, + [991] = {.lex_state = 0, .external_lex_state = 43}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0, .external_lex_state = 33}, + [994] = {.lex_state = 0, .external_lex_state = 43}, + [995] = {.lex_state = 0, .external_lex_state = 43}, + [996] = {.lex_state = 0, .external_lex_state = 43}, + [997] = {.lex_state = 0, .external_lex_state = 43}, + [998] = {.lex_state = 0, .external_lex_state = 43}, + [999] = {.lex_state = 0, .external_lex_state = 43}, + [1000] = {.lex_state = 0, .external_lex_state = 43}, + [1001] = {.lex_state = 0, .external_lex_state = 43}, + [1002] = {.lex_state = 0, .external_lex_state = 43}, + [1003] = {.lex_state = 0, .external_lex_state = 43}, + [1004] = {.lex_state = 0}, + [1005] = {.lex_state = 0, .external_lex_state = 33}, + [1006] = {.lex_state = 0, .external_lex_state = 43}, + [1007] = {.lex_state = 0, .external_lex_state = 43}, + [1008] = {.lex_state = 0, .external_lex_state = 43}, + [1009] = {.lex_state = 0, .external_lex_state = 43}, + [1010] = {.lex_state = 0, .external_lex_state = 43}, + [1011] = {.lex_state = 0, .external_lex_state = 33}, + [1012] = {.lex_state = 0, .external_lex_state = 43}, + [1013] = {.lex_state = 0, .external_lex_state = 43}, + [1014] = {.lex_state = 0, .external_lex_state = 43}, + [1015] = {.lex_state = 0, .external_lex_state = 43}, + [1016] = {.lex_state = 0}, + [1017] = {.lex_state = 0}, + [1018] = {.lex_state = 0, .external_lex_state = 33}, + [1019] = {.lex_state = 0, .external_lex_state = 43}, + [1020] = {.lex_state = 0, .external_lex_state = 43}, + [1021] = {.lex_state = 0, .external_lex_state = 43}, + [1022] = {.lex_state = 0, .external_lex_state = 43}, + [1023] = {.lex_state = 0, .external_lex_state = 43}, + [1024] = {.lex_state = 0}, + [1025] = {.lex_state = 0, .external_lex_state = 43}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 0, .external_lex_state = 43}, + [1028] = {.lex_state = 0, .external_lex_state = 43}, + [1029] = {.lex_state = 0, .external_lex_state = 42}, + [1030] = {.lex_state = 0, .external_lex_state = 43}, + [1031] = {.lex_state = 0, .external_lex_state = 42}, + [1032] = {.lex_state = 0, .external_lex_state = 43}, + [1033] = {.lex_state = 0, .external_lex_state = 42}, + [1034] = {.lex_state = 0, .external_lex_state = 42}, + [1035] = {.lex_state = 0, .external_lex_state = 42}, + [1036] = {.lex_state = 0, .external_lex_state = 42}, + [1037] = {.lex_state = 0, .external_lex_state = 42}, + [1038] = {.lex_state = 0, .external_lex_state = 42}, + [1039] = {.lex_state = 0, .external_lex_state = 42}, + [1040] = {.lex_state = 0, .external_lex_state = 42}, + [1041] = {.lex_state = 0, .external_lex_state = 43}, + [1042] = {.lex_state = 0}, + [1043] = {.lex_state = 0, .external_lex_state = 42}, + [1044] = {.lex_state = 0, .external_lex_state = 42}, + [1045] = {.lex_state = 0, .external_lex_state = 42}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 0, .external_lex_state = 42}, + [1048] = {.lex_state = 0, .external_lex_state = 42}, + [1049] = {.lex_state = 0, .external_lex_state = 42}, + [1050] = {.lex_state = 0, .external_lex_state = 42}, + [1051] = {.lex_state = 0, .external_lex_state = 42}, + [1052] = {.lex_state = 0, .external_lex_state = 33}, + [1053] = {.lex_state = 0}, + [1054] = {.lex_state = 0, .external_lex_state = 43}, + [1055] = {.lex_state = 0, .external_lex_state = 42}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4239,41 +4297,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_fenced_div_note_id] = ACTIONS(1), [sym__display_math_state_track_marker] = ACTIONS(1), [sym__inline_math_state_track_marker] = ACTIONS(1), + [sym__code_span_start] = ACTIONS(1), + [sym__code_span_close] = ACTIONS(1), }, [STATE(1)] = { - [sym_document] = STATE(978), - [sym__block_not_section] = STATE(346), - [sym_section] = STATE(636), - [sym__section1] = STATE(676), - [sym__section2] = STATE(676), - [sym__section3] = STATE(676), - [sym__section4] = STATE(676), - [sym__section5] = STATE(676), - [sym__section6] = STATE(676), - [sym_thematic_break] = STATE(346), + [sym_document] = STATE(979), + [sym__block_not_section] = STATE(348), + [sym_section] = STATE(651), + [sym__section1] = STATE(706), + [sym__section2] = STATE(706), + [sym__section3] = STATE(706), + [sym__section4] = STATE(706), + [sym__section5] = STATE(706), + [sym__section6] = STATE(706), + [sym_thematic_break] = STATE(348), [sym__atx_heading1] = STATE(66), [sym__atx_heading2] = STATE(77), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), - [sym_indented_code_block] = STATE(346), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), + [sym_indented_code_block] = STATE(348), [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(346), - [sym_fenced_code_block] = STATE(346), + [sym_fenced_div_block] = STATE(348), + [sym_fenced_code_block] = STATE(348), [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(346), - [sym_note_definition_fenced_block] = STATE(346), - [sym__blank_line] = STATE(346), - [sym_block_quote] = STATE(346), - [sym_list] = STATE(346), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym_inline_ref_def] = STATE(348), + [sym_note_definition_fenced_block] = STATE(348), + [sym__blank_line] = STATE(348), + [sym_block_quote] = STATE(348), + [sym_list] = STATE(348), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -4284,13 +4344,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(346), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(348), [aux_sym_document_repeat1] = STATE(45), - [aux_sym_document_repeat2] = STATE(636), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_document_repeat2] = STATE(651), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -4404,12 +4464,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -4484,12 +4544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -4497,8 +4557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -4509,11 +4569,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -4524,13 +4584,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(994), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(981), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -4604,12 +4664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -4617,8 +4677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -4629,11 +4689,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -4644,13 +4704,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1004), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(994), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -4724,12 +4784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -4737,8 +4797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -4749,11 +4809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -4764,13 +4824,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(949), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1003), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -4844,12 +4904,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -4857,8 +4917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -4869,11 +4929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -4884,13 +4944,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(954), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1015), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -5004,12 +5064,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(9), [aux_sym_fenced_div_block_repeat1] = STATE(9), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -5124,12 +5184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(10), [aux_sym_fenced_div_block_repeat1] = STATE(10), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -5244,12 +5304,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -5364,12 +5424,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -5484,12 +5544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -5564,12 +5624,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(43), [sym__block_not_section] = STATE(43), [sym_section] = STATE(43), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(43), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -5577,8 +5637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(43), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(43), @@ -5589,11 +5649,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(43), [sym_block_quote] = STATE(43), [sym_list] = STATE(43), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -5604,12 +5664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(43), [aux_sym_fenced_div_block_repeat1] = STATE(43), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -5724,12 +5784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(15), [aux_sym_fenced_div_block_repeat1] = STATE(15), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -5844,12 +5904,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(2), [aux_sym_fenced_div_block_repeat1] = STATE(2), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -5964,12 +6024,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -6044,12 +6104,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(50), [sym__block_not_section] = STATE(50), [sym_section] = STATE(50), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(50), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -6057,8 +6117,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(50), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(50), @@ -6069,11 +6129,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(50), [sym_block_quote] = STATE(50), [sym_list] = STATE(50), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -6084,12 +6144,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(50), [aux_sym_fenced_div_block_repeat1] = STATE(50), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -6164,12 +6224,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(47), [sym__block_not_section] = STATE(47), [sym_section] = STATE(47), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(47), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -6177,8 +6237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(47), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(47), @@ -6189,11 +6249,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(47), [sym_block_quote] = STATE(47), [sym_list] = STATE(47), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -6204,12 +6264,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(47), [aux_sym_fenced_div_block_repeat1] = STATE(47), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -6324,12 +6384,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(20), [aux_sym_fenced_div_block_repeat1] = STATE(20), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -6444,12 +6504,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(21), [aux_sym_fenced_div_block_repeat1] = STATE(21), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -6564,12 +6624,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -6684,12 +6744,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -6764,12 +6824,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -6777,8 +6837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -6789,11 +6849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -6804,13 +6864,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1000), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(973), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -6884,12 +6944,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -6897,8 +6957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -6909,11 +6969,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -6924,13 +6984,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1001), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(977), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7004,12 +7064,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7017,8 +7077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7029,11 +7089,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7044,13 +7104,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1002), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(985), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7124,12 +7184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7137,8 +7197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7149,11 +7209,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7164,13 +7224,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1013), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(988), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7244,12 +7304,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7257,8 +7317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7269,11 +7329,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7284,13 +7344,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1034), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(989), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7364,12 +7424,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7377,8 +7437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7389,11 +7449,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7404,13 +7464,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(953), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(995), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7484,12 +7544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7497,8 +7557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7509,11 +7569,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7524,13 +7584,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(985), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(998), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7604,12 +7664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7617,8 +7677,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7629,11 +7689,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7644,13 +7704,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(986), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(999), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7724,12 +7784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7737,8 +7797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7749,11 +7809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7764,13 +7824,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(988), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1000), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7844,12 +7904,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7857,8 +7917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7869,11 +7929,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -7884,13 +7944,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1040), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1001), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -7964,12 +8024,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -7977,8 +8037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -7989,11 +8049,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8004,13 +8064,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(992), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1002), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8084,12 +8144,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8097,8 +8157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -8109,11 +8169,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8124,13 +8184,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(972), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(971), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8203,12 +8263,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8216,8 +8276,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -8228,11 +8288,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8243,12 +8303,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8322,12 +8382,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8335,8 +8395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -8347,11 +8407,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8362,13 +8422,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(979), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(980), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8441,12 +8501,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8454,8 +8514,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -8466,11 +8526,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8481,13 +8541,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(981), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(997), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8560,12 +8620,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8573,8 +8633,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -8585,11 +8645,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8600,13 +8660,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(973), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(961), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8679,12 +8739,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8692,8 +8752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -8704,11 +8764,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8719,13 +8779,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1014), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(982), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8798,12 +8858,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8811,8 +8871,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -8823,11 +8883,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8838,12 +8898,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -8917,12 +8977,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -8930,8 +8990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -8942,11 +9002,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -8957,12 +9017,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -9033,38 +9093,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(157), }, [STATE(41)] = { - [sym__block_not_section] = STATE(346), - [sym_section] = STATE(634), - [sym__section1] = STATE(676), - [sym__section2] = STATE(676), - [sym__section3] = STATE(676), - [sym__section4] = STATE(676), - [sym__section5] = STATE(676), - [sym__section6] = STATE(676), - [sym_thematic_break] = STATE(346), + [sym__block_not_section] = STATE(348), + [sym_section] = STATE(650), + [sym__section1] = STATE(706), + [sym__section2] = STATE(706), + [sym__section3] = STATE(706), + [sym__section4] = STATE(706), + [sym__section5] = STATE(706), + [sym__section6] = STATE(706), + [sym_thematic_break] = STATE(348), [sym__atx_heading1] = STATE(66), [sym__atx_heading2] = STATE(77), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), - [sym_indented_code_block] = STATE(346), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), + [sym_indented_code_block] = STATE(348), [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(346), - [sym_fenced_code_block] = STATE(346), + [sym_fenced_div_block] = STATE(348), + [sym_fenced_code_block] = STATE(348), [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(346), - [sym_note_definition_fenced_block] = STATE(346), - [sym__blank_line] = STATE(346), - [sym_block_quote] = STATE(346), - [sym_list] = STATE(346), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym_inline_ref_def] = STATE(348), + [sym_note_definition_fenced_block] = STATE(348), + [sym__blank_line] = STATE(348), + [sym_block_quote] = STATE(348), + [sym_list] = STATE(348), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -9075,13 +9135,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(346), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(348), [aux_sym_document_repeat1] = STATE(51), - [aux_sym_document_repeat2] = STATE(634), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_document_repeat2] = STATE(650), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -9155,12 +9215,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(44), [sym__block_not_section] = STATE(44), [sym_section] = STATE(44), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(44), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -9168,8 +9228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(44), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(44), @@ -9180,11 +9240,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(44), [sym_block_quote] = STATE(44), [sym_list] = STATE(44), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -9195,12 +9255,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(44), [aux_sym_fenced_div_block_repeat1] = STATE(44), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -9274,12 +9334,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -9287,8 +9347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -9299,11 +9359,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -9314,12 +9374,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -9393,12 +9453,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -9406,8 +9466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -9418,11 +9478,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -9433,12 +9493,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -9509,38 +9569,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(45)] = { - [sym__block_not_section] = STATE(346), - [sym_section] = STATE(633), - [sym__section1] = STATE(676), - [sym__section2] = STATE(676), - [sym__section3] = STATE(676), - [sym__section4] = STATE(676), - [sym__section5] = STATE(676), - [sym__section6] = STATE(676), - [sym_thematic_break] = STATE(346), + [sym__block_not_section] = STATE(348), + [sym_section] = STATE(652), + [sym__section1] = STATE(706), + [sym__section2] = STATE(706), + [sym__section3] = STATE(706), + [sym__section4] = STATE(706), + [sym__section5] = STATE(706), + [sym__section6] = STATE(706), + [sym_thematic_break] = STATE(348), [sym__atx_heading1] = STATE(66), [sym__atx_heading2] = STATE(77), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), - [sym_indented_code_block] = STATE(346), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), + [sym_indented_code_block] = STATE(348), [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(346), - [sym_fenced_code_block] = STATE(346), + [sym_fenced_div_block] = STATE(348), + [sym_fenced_code_block] = STATE(348), [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(346), - [sym_note_definition_fenced_block] = STATE(346), - [sym__blank_line] = STATE(346), - [sym_block_quote] = STATE(346), - [sym_list] = STATE(346), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym_inline_ref_def] = STATE(348), + [sym_note_definition_fenced_block] = STATE(348), + [sym__blank_line] = STATE(348), + [sym_block_quote] = STATE(348), + [sym_list] = STATE(348), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -9551,13 +9611,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(346), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(348), [aux_sym_document_repeat1] = STATE(110), - [aux_sym_document_repeat2] = STATE(633), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_document_repeat2] = STATE(652), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -9631,12 +9691,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(48), [sym__block_not_section] = STATE(48), [sym_section] = STATE(48), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(48), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -9644,8 +9704,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(48), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(48), @@ -9656,11 +9716,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(48), [sym_block_quote] = STATE(48), [sym_list] = STATE(48), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -9671,12 +9731,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(48), [aux_sym_fenced_div_block_repeat1] = STATE(48), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -9750,12 +9810,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -9763,8 +9823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -9775,11 +9835,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -9790,12 +9850,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -9869,12 +9929,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -9882,8 +9942,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -9894,11 +9954,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -9909,12 +9969,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -9988,12 +10048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(39), [sym__block_not_section] = STATE(39), [sym_section] = STATE(39), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(39), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10001,8 +10061,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(39), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(39), @@ -10013,11 +10073,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(39), [sym_block_quote] = STATE(39), [sym_list] = STATE(39), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10028,12 +10088,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(39), [aux_sym_fenced_div_block_repeat1] = STATE(39), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -10107,12 +10167,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(40), [sym__block_not_section] = STATE(40), [sym_section] = STATE(40), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(40), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10120,8 +10180,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(40), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(40), @@ -10132,11 +10192,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(40), [sym_block_quote] = STATE(40), [sym_list] = STATE(40), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10147,12 +10207,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(40), [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -10223,38 +10283,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(51)] = { - [sym__block_not_section] = STATE(346), - [sym_section] = STATE(637), - [sym__section1] = STATE(676), - [sym__section2] = STATE(676), - [sym__section3] = STATE(676), - [sym__section4] = STATE(676), - [sym__section5] = STATE(676), - [sym__section6] = STATE(676), - [sym_thematic_break] = STATE(346), + [sym__block_not_section] = STATE(348), + [sym_section] = STATE(648), + [sym__section1] = STATE(706), + [sym__section2] = STATE(706), + [sym__section3] = STATE(706), + [sym__section4] = STATE(706), + [sym__section5] = STATE(706), + [sym__section6] = STATE(706), + [sym_thematic_break] = STATE(348), [sym__atx_heading1] = STATE(66), [sym__atx_heading2] = STATE(77), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), - [sym_indented_code_block] = STATE(346), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), + [sym_indented_code_block] = STATE(348), [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(346), - [sym_fenced_code_block] = STATE(346), + [sym_fenced_div_block] = STATE(348), + [sym_fenced_code_block] = STATE(348), [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(346), - [sym_note_definition_fenced_block] = STATE(346), - [sym__blank_line] = STATE(346), - [sym_block_quote] = STATE(346), - [sym_list] = STATE(346), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym_inline_ref_def] = STATE(348), + [sym_note_definition_fenced_block] = STATE(348), + [sym__blank_line] = STATE(348), + [sym_block_quote] = STATE(348), + [sym_list] = STATE(348), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -10265,13 +10325,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(346), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(348), [aux_sym_document_repeat1] = STATE(110), - [aux_sym_document_repeat2] = STATE(637), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_document_repeat2] = STATE(648), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -10345,12 +10405,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10358,8 +10418,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -10370,11 +10430,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10385,13 +10445,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(967), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1028), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -10464,12 +10524,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10477,8 +10537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -10489,11 +10549,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10504,13 +10564,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(968), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1032), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -10583,12 +10643,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10596,8 +10656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -10608,11 +10668,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10623,13 +10683,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(969), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(958), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -10702,12 +10762,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10715,8 +10775,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -10727,11 +10787,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10742,13 +10802,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(970), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(965), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -10821,12 +10881,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10834,8 +10894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -10846,11 +10906,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10861,13 +10921,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1007), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1019), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -10940,12 +11000,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -10953,8 +11013,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -10965,11 +11025,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -10980,13 +11040,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1008), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1020), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -11059,12 +11119,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -11072,8 +11132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -11084,11 +11144,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -11099,13 +11159,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1010), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1021), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -11178,12 +11238,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -11191,8 +11251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -11203,11 +11263,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -11218,13 +11278,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1011), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1022), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -11297,12 +11357,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -11310,8 +11370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -11322,11 +11382,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -11337,13 +11397,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1012), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1023), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -11416,12 +11476,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(34), [sym__block_not_section] = STATE(34), [sym_section] = STATE(34), - [sym__section1] = STATE(325), - [sym__section2] = STATE(325), - [sym__section3] = STATE(325), - [sym__section4] = STATE(325), - [sym__section5] = STATE(325), - [sym__section6] = STATE(325), + [sym__section1] = STATE(327), + [sym__section2] = STATE(327), + [sym__section3] = STATE(327), + [sym__section4] = STATE(327), + [sym__section5] = STATE(327), + [sym__section6] = STATE(327), [sym_thematic_break] = STATE(34), [sym__atx_heading1] = STATE(69), [sym__atx_heading2] = STATE(76), @@ -11429,8 +11489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(34), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(34), @@ -11441,11 +11501,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(290), [sym_block_quote] = STATE(34), [sym_list] = STATE(34), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -11456,13 +11516,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1003), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__list_item_content] = STATE(1025), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(34), [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -11571,12 +11631,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(62), [aux_sym__section1_repeat1] = STATE(62), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -11687,12 +11747,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(64), [aux_sym__section1_repeat1] = STATE(64), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -11803,12 +11863,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(62), [aux_sym__section1_repeat1] = STATE(62), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -11881,19 +11941,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(65)] = { [sym__block_not_section] = STATE(65), - [sym__section2] = STATE(341), - [sym__section3] = STATE(341), - [sym__section4] = STATE(341), - [sym__section5] = STATE(341), - [sym__section6] = STATE(341), + [sym__section2] = STATE(343), + [sym__section3] = STATE(343), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), [sym_thematic_break] = STATE(65), [sym__atx_heading2] = STATE(76), [sym__atx_heading3] = STATE(85), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(65), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(65), @@ -11904,11 +11964,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(65), [sym_block_quote] = STATE(65), [sym_list] = STATE(65), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -11919,12 +11979,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(65), [aux_sym__section1_repeat1] = STATE(65), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -11996,19 +12056,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(66)] = { [sym__block_not_section] = STATE(70), - [sym__section2] = STATE(365), - [sym__section3] = STATE(365), - [sym__section4] = STATE(365), - [sym__section5] = STATE(365), - [sym__section6] = STATE(365), + [sym__section2] = STATE(367), + [sym__section3] = STATE(367), + [sym__section4] = STATE(367), + [sym__section5] = STATE(367), + [sym__section6] = STATE(367), [sym_thematic_break] = STATE(70), [sym__atx_heading2] = STATE(77), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(70), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(70), @@ -12019,11 +12079,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(70), [sym_block_quote] = STATE(70), [sym_list] = STATE(70), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -12034,12 +12094,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(70), [aux_sym__section1_repeat1] = STATE(70), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -12111,19 +12171,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(67)] = { [sym__block_not_section] = STATE(67), - [sym__section2] = STATE(365), - [sym__section3] = STATE(365), - [sym__section4] = STATE(365), - [sym__section5] = STATE(365), - [sym__section6] = STATE(365), + [sym__section2] = STATE(367), + [sym__section3] = STATE(367), + [sym__section4] = STATE(367), + [sym__section5] = STATE(367), + [sym__section6] = STATE(367), [sym_thematic_break] = STATE(67), [sym__atx_heading2] = STATE(77), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(67), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(67), @@ -12134,11 +12194,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(67), [sym_block_quote] = STATE(67), [sym_list] = STATE(67), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -12149,12 +12209,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(67), [aux_sym__section1_repeat1] = STATE(67), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -12226,19 +12286,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(68)] = { [sym__block_not_section] = STATE(65), - [sym__section2] = STATE(341), - [sym__section3] = STATE(341), - [sym__section4] = STATE(341), - [sym__section5] = STATE(341), - [sym__section6] = STATE(341), + [sym__section2] = STATE(343), + [sym__section3] = STATE(343), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), [sym_thematic_break] = STATE(65), [sym__atx_heading2] = STATE(76), [sym__atx_heading3] = STATE(85), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(65), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(65), @@ -12249,11 +12309,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(65), [sym_block_quote] = STATE(65), [sym_list] = STATE(65), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -12264,12 +12324,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(65), [aux_sym__section1_repeat1] = STATE(65), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -12341,19 +12401,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(69)] = { [sym__block_not_section] = STATE(68), - [sym__section2] = STATE(341), - [sym__section3] = STATE(341), - [sym__section4] = STATE(341), - [sym__section5] = STATE(341), - [sym__section6] = STATE(341), + [sym__section2] = STATE(343), + [sym__section3] = STATE(343), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), [sym_thematic_break] = STATE(68), [sym__atx_heading2] = STATE(76), [sym__atx_heading3] = STATE(85), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(68), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(68), @@ -12364,11 +12424,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(68), [sym_block_quote] = STATE(68), [sym_list] = STATE(68), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -12379,12 +12439,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(68), [aux_sym__section1_repeat1] = STATE(68), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -12456,19 +12516,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(70)] = { [sym__block_not_section] = STATE(67), - [sym__section2] = STATE(365), - [sym__section3] = STATE(365), - [sym__section4] = STATE(365), - [sym__section5] = STATE(365), - [sym__section6] = STATE(365), + [sym__section2] = STATE(367), + [sym__section3] = STATE(367), + [sym__section4] = STATE(367), + [sym__section5] = STATE(367), + [sym__section6] = STATE(367), [sym_thematic_break] = STATE(67), [sym__atx_heading2] = STATE(77), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(67), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(67), @@ -12479,11 +12539,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(67), [sym_block_quote] = STATE(67), [sym_list] = STATE(67), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -12494,12 +12554,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(67), [aux_sym__section1_repeat1] = STATE(67), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -12607,12 +12667,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(71), [aux_sym__section2_repeat1] = STATE(71), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -12721,12 +12781,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(71), [aux_sym__section2_repeat1] = STATE(71), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -12835,12 +12895,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(72), [aux_sym__section2_repeat1] = STATE(72), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -12913,17 +12973,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(74)] = { [sym__block_not_section] = STATE(74), - [sym__section3] = STATE(342), - [sym__section4] = STATE(342), - [sym__section5] = STATE(342), - [sym__section6] = STATE(342), + [sym__section3] = STATE(344), + [sym__section4] = STATE(344), + [sym__section5] = STATE(344), + [sym__section6] = STATE(344), [sym_thematic_break] = STATE(74), [sym__atx_heading3] = STATE(85), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(74), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(74), @@ -12934,11 +12994,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(74), [sym_block_quote] = STATE(74), [sym_list] = STATE(74), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -12949,12 +13009,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(74), [aux_sym__section2_repeat1] = STATE(74), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -13026,17 +13086,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(75)] = { [sym__block_not_section] = STATE(78), - [sym__section3] = STATE(366), - [sym__section4] = STATE(366), - [sym__section5] = STATE(366), - [sym__section6] = STATE(366), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), [sym_thematic_break] = STATE(78), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(78), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(78), @@ -13047,11 +13107,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(78), [sym_block_quote] = STATE(78), [sym_list] = STATE(78), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -13062,12 +13122,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(78), [aux_sym__section2_repeat1] = STATE(78), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -13139,17 +13199,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(76)] = { [sym__block_not_section] = STATE(79), - [sym__section3] = STATE(342), - [sym__section4] = STATE(342), - [sym__section5] = STATE(342), - [sym__section6] = STATE(342), + [sym__section3] = STATE(344), + [sym__section4] = STATE(344), + [sym__section5] = STATE(344), + [sym__section6] = STATE(344), [sym_thematic_break] = STATE(79), [sym__atx_heading3] = STATE(85), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(79), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(79), @@ -13160,11 +13220,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(79), [sym_block_quote] = STATE(79), [sym_list] = STATE(79), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -13175,12 +13235,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(79), [aux_sym__section2_repeat1] = STATE(79), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -13252,17 +13312,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(77)] = { [sym__block_not_section] = STATE(75), - [sym__section3] = STATE(366), - [sym__section4] = STATE(366), - [sym__section5] = STATE(366), - [sym__section6] = STATE(366), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), [sym_thematic_break] = STATE(75), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(75), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(75), @@ -13273,11 +13333,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(75), [sym_block_quote] = STATE(75), [sym_list] = STATE(75), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -13288,12 +13348,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(75), [aux_sym__section2_repeat1] = STATE(75), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -13365,17 +13425,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(78)] = { [sym__block_not_section] = STATE(78), - [sym__section3] = STATE(366), - [sym__section4] = STATE(366), - [sym__section5] = STATE(366), - [sym__section6] = STATE(366), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), [sym_thematic_break] = STATE(78), [sym__atx_heading3] = STATE(86), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(78), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(78), @@ -13386,11 +13446,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(78), [sym_block_quote] = STATE(78), [sym_list] = STATE(78), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -13401,12 +13461,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(78), [aux_sym__section2_repeat1] = STATE(78), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -13478,17 +13538,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(79)] = { [sym__block_not_section] = STATE(74), - [sym__section3] = STATE(342), - [sym__section4] = STATE(342), - [sym__section5] = STATE(342), - [sym__section6] = STATE(342), + [sym__section3] = STATE(344), + [sym__section4] = STATE(344), + [sym__section5] = STATE(344), + [sym__section6] = STATE(344), [sym_thematic_break] = STATE(74), [sym__atx_heading3] = STATE(85), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(74), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(74), @@ -13499,11 +13559,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(74), [sym_block_quote] = STATE(74), [sym_list] = STATE(74), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -13514,12 +13574,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(74), [aux_sym__section2_repeat1] = STATE(74), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -13625,12 +13685,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(82), [aux_sym__section3_repeat1] = STATE(82), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -13737,12 +13797,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(80), [aux_sym__section3_repeat1] = STATE(80), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -13849,12 +13909,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(82), [aux_sym__section3_repeat1] = STATE(82), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -13927,15 +13987,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(83)] = { [sym__block_not_section] = STATE(83), - [sym__section4] = STATE(343), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), [sym_thematic_break] = STATE(83), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(83), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(83), @@ -13946,11 +14006,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(83), [sym_block_quote] = STATE(83), [sym_list] = STATE(83), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -13961,12 +14021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(83), [aux_sym__section3_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -14038,15 +14098,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(84)] = { [sym__block_not_section] = STATE(84), - [sym__section4] = STATE(367), - [sym__section5] = STATE(367), - [sym__section6] = STATE(367), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), [sym_thematic_break] = STATE(84), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(84), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(84), @@ -14057,11 +14117,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(84), [sym_block_quote] = STATE(84), [sym_list] = STATE(84), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -14072,12 +14132,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(84), [aux_sym__section3_repeat1] = STATE(84), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -14149,15 +14209,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(85)] = { [sym__block_not_section] = STATE(88), - [sym__section4] = STATE(343), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), [sym_thematic_break] = STATE(88), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(88), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(88), @@ -14168,11 +14228,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(88), [sym_block_quote] = STATE(88), [sym_list] = STATE(88), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -14183,12 +14243,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(88), [aux_sym__section3_repeat1] = STATE(88), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -14260,15 +14320,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(86)] = { [sym__block_not_section] = STATE(87), - [sym__section4] = STATE(367), - [sym__section5] = STATE(367), - [sym__section6] = STATE(367), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), [sym_thematic_break] = STATE(87), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(87), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(87), @@ -14279,11 +14339,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(87), [sym_block_quote] = STATE(87), [sym_list] = STATE(87), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -14294,12 +14354,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(87), [aux_sym__section3_repeat1] = STATE(87), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -14371,15 +14431,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(87)] = { [sym__block_not_section] = STATE(84), - [sym__section4] = STATE(367), - [sym__section5] = STATE(367), - [sym__section6] = STATE(367), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), [sym_thematic_break] = STATE(84), [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(84), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(84), @@ -14390,11 +14450,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(84), [sym_block_quote] = STATE(84), [sym_list] = STATE(84), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -14405,12 +14465,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(84), [aux_sym__section3_repeat1] = STATE(84), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -14482,15 +14542,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(88)] = { [sym__block_not_section] = STATE(83), - [sym__section4] = STATE(343), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), [sym_thematic_break] = STATE(83), [sym__atx_heading4] = STATE(92), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(83), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(83), @@ -14501,11 +14561,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(83), [sym_block_quote] = STATE(83), [sym_list] = STATE(83), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -14516,12 +14576,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(83), [aux_sym__section3_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -14625,12 +14685,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(90), [aux_sym__section4_repeat1] = STATE(90), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -14735,12 +14795,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(91), [aux_sym__section4_repeat1] = STATE(91), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -14845,12 +14905,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(91), [aux_sym__section4_repeat1] = STATE(91), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -14923,13 +14983,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(92)] = { [sym__block_not_section] = STATE(94), - [sym__section5] = STATE(345), - [sym__section6] = STATE(345), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), [sym_thematic_break] = STATE(94), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(94), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(94), @@ -14940,11 +15000,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(94), [sym_block_quote] = STATE(94), [sym_list] = STATE(94), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -14955,12 +15015,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(94), [aux_sym__section4_repeat1] = STATE(94), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -15032,13 +15092,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(93)] = { [sym__block_not_section] = STATE(93), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), + [sym__section5] = STATE(372), + [sym__section6] = STATE(372), [sym_thematic_break] = STATE(93), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(93), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(93), @@ -15049,11 +15109,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(93), [sym_block_quote] = STATE(93), [sym_list] = STATE(93), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -15064,12 +15124,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(93), [aux_sym__section4_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -15141,13 +15201,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(94)] = { [sym__block_not_section] = STATE(96), - [sym__section5] = STATE(345), - [sym__section6] = STATE(345), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), [sym_thematic_break] = STATE(96), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(96), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(96), @@ -15158,11 +15218,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(96), [sym_block_quote] = STATE(96), [sym_list] = STATE(96), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -15173,12 +15233,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(96), [aux_sym__section4_repeat1] = STATE(96), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -15250,13 +15310,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(95)] = { [sym__block_not_section] = STATE(93), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), + [sym__section5] = STATE(372), + [sym__section6] = STATE(372), [sym_thematic_break] = STATE(93), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(93), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(93), @@ -15267,11 +15327,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(93), [sym_block_quote] = STATE(93), [sym_list] = STATE(93), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -15282,12 +15342,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(93), [aux_sym__section4_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -15359,13 +15419,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(96)] = { [sym__block_not_section] = STATE(96), - [sym__section5] = STATE(345), - [sym__section6] = STATE(345), + [sym__section5] = STATE(347), + [sym__section6] = STATE(347), [sym_thematic_break] = STATE(96), [sym__atx_heading5] = STATE(103), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(96), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(96), @@ -15376,11 +15436,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(96), [sym_block_quote] = STATE(96), [sym_list] = STATE(96), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -15391,12 +15451,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(96), [aux_sym__section4_repeat1] = STATE(96), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -15468,13 +15528,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(97)] = { [sym__block_not_section] = STATE(95), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), + [sym__section5] = STATE(372), + [sym__section6] = STATE(372), [sym_thematic_break] = STATE(95), [sym__atx_heading5] = STATE(105), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(95), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(95), @@ -15485,11 +15545,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(95), [sym_block_quote] = STATE(95), [sym_list] = STATE(95), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -15500,12 +15560,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(95), [aux_sym__section4_repeat1] = STATE(95), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -15607,12 +15667,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(98), [aux_sym__section5_repeat1] = STATE(98), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -15715,12 +15775,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(98), [aux_sym__section5_repeat1] = STATE(98), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -15823,12 +15883,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(99), [aux_sym__section5_repeat1] = STATE(99), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -15901,11 +15961,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(101)] = { [sym__block_not_section] = STATE(104), - [sym__section6] = STATE(371), + [sym__section6] = STATE(373), [sym_thematic_break] = STATE(104), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(104), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(104), @@ -15916,11 +15976,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(104), [sym_block_quote] = STATE(104), [sym_list] = STATE(104), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -15931,12 +15991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(104), [aux_sym__section5_repeat1] = STATE(104), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -16008,11 +16068,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(102)] = { [sym__block_not_section] = STATE(102), - [sym__section6] = STATE(347), + [sym__section6] = STATE(349), [sym_thematic_break] = STATE(102), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(102), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(102), @@ -16023,11 +16083,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(102), [sym_block_quote] = STATE(102), [sym_list] = STATE(102), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -16038,12 +16098,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(102), [aux_sym__section5_repeat1] = STATE(102), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -16115,11 +16175,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(103)] = { [sym__block_not_section] = STATE(106), - [sym__section6] = STATE(347), + [sym__section6] = STATE(349), [sym_thematic_break] = STATE(106), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(106), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(106), @@ -16130,11 +16190,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(106), [sym_block_quote] = STATE(106), [sym_list] = STATE(106), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -16145,12 +16205,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(106), [aux_sym__section5_repeat1] = STATE(106), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -16222,11 +16282,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(104)] = { [sym__block_not_section] = STATE(104), - [sym__section6] = STATE(371), + [sym__section6] = STATE(373), [sym_thematic_break] = STATE(104), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(104), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(104), @@ -16237,11 +16297,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(104), [sym_block_quote] = STATE(104), [sym_list] = STATE(104), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -16252,12 +16312,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(104), [aux_sym__section5_repeat1] = STATE(104), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -16329,11 +16389,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(105)] = { [sym__block_not_section] = STATE(101), - [sym__section6] = STATE(371), + [sym__section6] = STATE(373), [sym_thematic_break] = STATE(101), [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), [sym_indented_code_block] = STATE(101), [sym__indented_chunk] = STATE(130), [sym_fenced_div_block] = STATE(101), @@ -16344,11 +16404,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(101), [sym_block_quote] = STATE(101), [sym_list] = STATE(101), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -16359,12 +16419,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(101), [aux_sym__section5_repeat1] = STATE(101), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -16436,11 +16496,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(106)] = { [sym__block_not_section] = STATE(102), - [sym__section6] = STATE(347), + [sym__section6] = STATE(349), [sym_thematic_break] = STATE(102), [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), [sym_indented_code_block] = STATE(102), [sym__indented_chunk] = STATE(137), [sym_fenced_div_block] = STATE(102), @@ -16451,11 +16511,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__blank_line] = STATE(102), [sym_block_quote] = STATE(102), [sym_list] = STATE(102), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -16466,12 +16526,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(102), [aux_sym__section5_repeat1] = STATE(102), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -16571,12 +16631,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(252), [aux_sym_document_repeat1] = STATE(108), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -16677,12 +16737,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(252), [aux_sym_document_repeat1] = STATE(109), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -16783,12 +16843,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(121), [sym__list_item_dot] = STATE(122), [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), [sym_pipe_table] = STATE(252), [aux_sym_document_repeat1] = STATE(109), - [aux_sym_paragraph_repeat1] = STATE(513), + [aux_sym_paragraph_repeat1] = STATE(528), [aux_sym__list_plus_repeat1] = STATE(119), [aux_sym__list_minus_repeat1] = STATE(120), [aux_sym__list_star_repeat1] = STATE(121), @@ -16860,25 +16920,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1204), }, [STATE(110)] = { - [sym__block_not_section] = STATE(346), - [sym_thematic_break] = STATE(346), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), - [sym_indented_code_block] = STATE(346), + [sym__block_not_section] = STATE(348), + [sym_thematic_break] = STATE(348), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), + [sym_indented_code_block] = STATE(348), [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(346), - [sym_fenced_code_block] = STATE(346), + [sym_fenced_div_block] = STATE(348), + [sym_fenced_code_block] = STATE(348), [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(346), - [sym_note_definition_fenced_block] = STATE(346), - [sym__blank_line] = STATE(346), - [sym_block_quote] = STATE(346), - [sym_list] = STATE(346), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym_inline_ref_def] = STATE(348), + [sym_note_definition_fenced_block] = STATE(348), + [sym__blank_line] = STATE(348), + [sym_block_quote] = STATE(348), + [sym_list] = STATE(348), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -16889,12 +16949,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(346), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(348), [aux_sym_document_repeat1] = STATE(110), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -16965,25 +17025,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1204), }, [STATE(111)] = { - [sym__block_not_section] = STATE(324), - [sym_thematic_break] = STATE(324), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), - [sym_indented_code_block] = STATE(324), + [sym__block_not_section] = STATE(326), + [sym_thematic_break] = STATE(326), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), + [sym_indented_code_block] = STATE(326), [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(324), - [sym_fenced_code_block] = STATE(324), + [sym_fenced_div_block] = STATE(326), + [sym_fenced_code_block] = STATE(326), [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(324), - [sym_note_definition_fenced_block] = STATE(324), - [sym__blank_line] = STATE(324), - [sym_block_quote] = STATE(324), - [sym_list] = STATE(324), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym_inline_ref_def] = STATE(326), + [sym_note_definition_fenced_block] = STATE(326), + [sym__blank_line] = STATE(326), + [sym_block_quote] = STATE(326), + [sym_list] = STATE(326), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -16994,12 +17054,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(324), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(326), [aux_sym_document_repeat1] = STATE(115), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -17070,25 +17130,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(112)] = { - [sym__block_not_section] = STATE(324), - [sym_thematic_break] = STATE(324), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), - [sym_indented_code_block] = STATE(324), + [sym__block_not_section] = STATE(326), + [sym_thematic_break] = STATE(326), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), + [sym_indented_code_block] = STATE(326), [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(324), - [sym_fenced_code_block] = STATE(324), + [sym_fenced_div_block] = STATE(326), + [sym_fenced_code_block] = STATE(326), [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(324), - [sym_note_definition_fenced_block] = STATE(324), - [sym__blank_line] = STATE(324), - [sym_block_quote] = STATE(324), - [sym_list] = STATE(324), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym_inline_ref_def] = STATE(326), + [sym_note_definition_fenced_block] = STATE(326), + [sym__blank_line] = STATE(326), + [sym_block_quote] = STATE(326), + [sym_list] = STATE(326), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -17099,12 +17159,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(324), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(326), [aux_sym_document_repeat1] = STATE(112), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -17175,25 +17235,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1204), }, [STATE(113)] = { - [sym__block_not_section] = STATE(346), - [sym_thematic_break] = STATE(346), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), - [sym_indented_code_block] = STATE(346), + [sym__block_not_section] = STATE(348), + [sym_thematic_break] = STATE(348), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), + [sym_indented_code_block] = STATE(348), [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(346), - [sym_fenced_code_block] = STATE(346), + [sym_fenced_div_block] = STATE(348), + [sym_fenced_code_block] = STATE(348), [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(346), - [sym_note_definition_fenced_block] = STATE(346), - [sym__blank_line] = STATE(346), - [sym_block_quote] = STATE(346), - [sym_list] = STATE(346), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym_inline_ref_def] = STATE(348), + [sym_note_definition_fenced_block] = STATE(348), + [sym__blank_line] = STATE(348), + [sym_block_quote] = STATE(348), + [sym_list] = STATE(348), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -17204,12 +17264,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(346), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(348), [aux_sym_document_repeat1] = STATE(110), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -17280,25 +17340,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(114)] = { - [sym__block_not_section] = STATE(346), - [sym_thematic_break] = STATE(346), - [sym__setext_heading1] = STATE(383), - [sym__setext_heading2] = STATE(385), - [sym_indented_code_block] = STATE(346), + [sym__block_not_section] = STATE(348), + [sym_thematic_break] = STATE(348), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(388), + [sym_indented_code_block] = STATE(348), [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(346), - [sym_fenced_code_block] = STATE(346), + [sym_fenced_div_block] = STATE(348), + [sym_fenced_code_block] = STATE(348), [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(346), - [sym_note_definition_fenced_block] = STATE(346), - [sym__blank_line] = STATE(346), - [sym_block_quote] = STATE(346), - [sym_list] = STATE(346), - [sym__list_plus] = STATE(413), - [sym__list_minus] = STATE(413), - [sym__list_star] = STATE(413), - [sym__list_dot] = STATE(413), - [sym__list_parenthesis] = STATE(413), + [sym_inline_ref_def] = STATE(348), + [sym_note_definition_fenced_block] = STATE(348), + [sym__blank_line] = STATE(348), + [sym_block_quote] = STATE(348), + [sym_list] = STATE(348), + [sym__list_plus] = STATE(415), + [sym__list_minus] = STATE(415), + [sym__list_star] = STATE(415), + [sym__list_dot] = STATE(415), + [sym__list_parenthesis] = STATE(415), [sym_list_marker_plus] = STATE(27), [sym_list_marker_minus] = STATE(3), [sym_list_marker_star] = STATE(4), @@ -17309,12 +17369,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(156), [sym__list_item_dot] = STATE(157), [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(346), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(348), [aux_sym_document_repeat1] = STATE(113), - [aux_sym_paragraph_repeat1] = STATE(496), + [aux_sym_paragraph_repeat1] = STATE(531), [aux_sym__list_plus_repeat1] = STATE(153), [aux_sym__list_minus_repeat1] = STATE(155), [aux_sym__list_star_repeat1] = STATE(156), @@ -17385,25 +17445,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(115)] = { - [sym__block_not_section] = STATE(324), - [sym_thematic_break] = STATE(324), - [sym__setext_heading1] = STATE(328), - [sym__setext_heading2] = STATE(329), - [sym_indented_code_block] = STATE(324), + [sym__block_not_section] = STATE(326), + [sym_thematic_break] = STATE(326), + [sym__setext_heading1] = STATE(330), + [sym__setext_heading2] = STATE(331), + [sym_indented_code_block] = STATE(326), [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(324), - [sym_fenced_code_block] = STATE(324), + [sym_fenced_div_block] = STATE(326), + [sym_fenced_code_block] = STATE(326), [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(324), - [sym_note_definition_fenced_block] = STATE(324), - [sym__blank_line] = STATE(324), - [sym_block_quote] = STATE(324), - [sym_list] = STATE(324), - [sym__list_plus] = STATE(330), - [sym__list_minus] = STATE(330), - [sym__list_star] = STATE(330), - [sym__list_dot] = STATE(330), - [sym__list_parenthesis] = STATE(330), + [sym_inline_ref_def] = STATE(326), + [sym_note_definition_fenced_block] = STATE(326), + [sym__blank_line] = STATE(326), + [sym_block_quote] = STATE(326), + [sym_list] = STATE(326), + [sym__list_plus] = STATE(332), + [sym__list_minus] = STATE(332), + [sym__list_star] = STATE(332), + [sym__list_dot] = STATE(332), + [sym__list_parenthesis] = STATE(332), [sym_list_marker_plus] = STATE(22), [sym_list_marker_minus] = STATE(23), [sym_list_marker_star] = STATE(24), @@ -17414,12 +17474,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(142), [sym__list_item_dot] = STATE(143), [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(602), - [sym__line] = STATE(602), - [sym__whitespace] = STATE(537), - [sym_pipe_table] = STATE(324), + [sym__soft_line_break] = STATE(616), + [sym__line] = STATE(616), + [sym__whitespace] = STATE(555), + [sym_pipe_table] = STATE(326), [aux_sym_document_repeat1] = STATE(112), - [aux_sym_paragraph_repeat1] = STATE(508), + [aux_sym_paragraph_repeat1] = STATE(521), [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__list_minus_repeat1] = STATE(141), [aux_sym__list_star_repeat1] = STATE(142), @@ -19408,7 +19468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1333), }, [STATE(144)] = { - [sym__blank_line] = STATE(1009), + [sym__blank_line] = STATE(1024), [sym_table_caption] = STATE(234), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), [anon_sym_LBRACE] = ACTIONS(1382), @@ -19476,7 +19536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1382), }, [STATE(145)] = { - [sym__blank_line] = STATE(1009), + [sym__blank_line] = STATE(1024), [sym_table_caption] = STATE(239), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), [anon_sym_LBRACE] = ACTIONS(1386), @@ -20968,8 +21028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1370), }, [STATE(167)] = { - [sym__blank_line] = STATE(1038), - [sym_table_caption] = STATE(310), + [sym__blank_line] = STATE(1046), + [sym_table_caption] = STATE(311), [ts_builtin_sym_end] = ACTIONS(1382), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), [anon_sym_LBRACE] = ACTIONS(1382), @@ -21437,8 +21497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1370), }, [STATE(174)] = { - [sym__blank_line] = STATE(1038), - [sym_table_caption] = STATE(314), + [sym__blank_line] = STATE(1046), + [sym_table_caption] = STATE(316), [ts_builtin_sym_end] = ACTIONS(1386), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), [anon_sym_LBRACE] = ACTIONS(1386), @@ -21504,8 +21564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1386), }, [STATE(175)] = { - [sym__blank_line] = STATE(977), - [sym_table_caption] = STATE(403), + [sym__blank_line] = STATE(992), + [sym_table_caption] = STATE(404), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), [anon_sym_LBRACE] = ACTIONS(1386), [anon_sym_RBRACE] = ACTIONS(1386), @@ -21973,8 +22033,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1448), }, [STATE(182)] = { - [sym__blank_line] = STATE(977), - [sym_table_caption] = STATE(398), + [sym__blank_line] = STATE(992), + [sym_table_caption] = STATE(400), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), [anon_sym_LBRACE] = ACTIONS(1382), [anon_sym_RBRACE] = ACTIONS(1382), @@ -29140,7 +29200,7 @@ static const uint16_t ts_small_parse_table[] = { [6821] = 3, ACTIONS(1650), 1, sym__blank_line_start, - STATE(975), 1, + STATE(962), 1, sym__blank_line, ACTIONS(1370), 62, sym__soft_line_ending, @@ -29738,7 +29798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7437] = 1, - ACTIONS(1526), 63, + ACTIONS(1464), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -29803,7 +29863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7503] = 1, - ACTIONS(1528), 63, + ACTIONS(1526), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -29868,7 +29928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7569] = 1, - ACTIONS(1474), 63, + ACTIONS(1528), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -29933,7 +29993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7635] = 1, - ACTIONS(1532), 63, + ACTIONS(1474), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -29998,7 +30058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7701] = 1, - ACTIONS(1534), 63, + ACTIONS(1532), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30063,7 +30123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7767] = 1, - ACTIONS(1536), 63, + ACTIONS(1534), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30128,7 +30188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7833] = 1, - ACTIONS(1538), 63, + ACTIONS(1536), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30193,7 +30253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7899] = 1, - ACTIONS(1540), 63, + ACTIONS(1538), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30258,7 +30318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [7965] = 1, - ACTIONS(1542), 63, + ACTIONS(1540), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30323,7 +30383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8031] = 1, - ACTIONS(1544), 63, + ACTIONS(1542), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30388,7 +30448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8097] = 1, - ACTIONS(1546), 63, + ACTIONS(1460), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30453,7 +30513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8163] = 1, - ACTIONS(1386), 63, + ACTIONS(1546), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30518,7 +30578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8229] = 1, - ACTIONS(1550), 63, + ACTIONS(1386), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30583,7 +30643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8295] = 1, - ACTIONS(1552), 63, + ACTIONS(1476), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30648,7 +30708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8361] = 1, - ACTIONS(1554), 63, + ACTIONS(1550), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30713,7 +30773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8427] = 1, - ACTIONS(1556), 63, + ACTIONS(1552), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30778,7 +30838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8493] = 1, - ACTIONS(1558), 63, + ACTIONS(1554), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30843,7 +30903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8559] = 1, - ACTIONS(1560), 63, + ACTIONS(1556), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30908,7 +30968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8625] = 1, - ACTIONS(1562), 63, + ACTIONS(1558), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -30973,7 +31033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8691] = 1, - ACTIONS(1564), 63, + ACTIONS(1560), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -31038,7 +31098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8757] = 1, - ACTIONS(1566), 63, + ACTIONS(1562), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -31103,7 +31163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8823] = 1, - ACTIONS(1664), 63, + ACTIONS(1564), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -31168,7 +31228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8889] = 1, - ACTIONS(1570), 63, + ACTIONS(1566), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -31233,7 +31293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [8955] = 1, - ACTIONS(1572), 63, + ACTIONS(1664), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -31298,7 +31358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9021] = 1, - ACTIONS(1574), 63, + ACTIONS(1570), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -31363,9 +31423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9087] = 1, - ACTIONS(1582), 63, + ACTIONS(1572), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31394,6 +31453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31428,9 +31488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9153] = 1, - ACTIONS(1586), 63, + ACTIONS(1574), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31459,6 +31518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31493,8 +31553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9219] = 1, - ACTIONS(1478), 63, + ACTIONS(1582), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31523,7 +31584,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31558,8 +31618,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9285] = 1, - ACTIONS(1480), 63, + ACTIONS(1586), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31588,7 +31649,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31623,9 +31683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9351] = 1, - ACTIONS(1520), 63, + ACTIONS(1478), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31654,6 +31713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31688,9 +31748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9417] = 1, - ACTIONS(1520), 63, + ACTIONS(1480), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31719,6 +31778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31753,7 +31813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9483] = 1, - ACTIONS(1578), 63, + ACTIONS(1520), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -31818,8 +31878,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9549] = 1, - ACTIONS(1482), 63, + ACTIONS(1520), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31848,7 +31909,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31883,8 +31943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9615] = 1, - ACTIONS(1488), 63, + ACTIONS(1578), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31913,7 +31974,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -31948,9 +32008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9681] = 1, - ACTIONS(1472), 63, + ACTIONS(1482), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -31979,6 +32038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32013,9 +32073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9747] = 1, - ACTIONS(1474), 63, + ACTIONS(1488), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -32044,6 +32103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32078,7 +32138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9813] = 1, - ACTIONS(1476), 63, + ACTIONS(1472), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32143,7 +32203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9879] = 1, - ACTIONS(1478), 63, + ACTIONS(1474), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32208,7 +32268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [9945] = 1, - ACTIONS(1480), 63, + ACTIONS(1476), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32273,7 +32333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10011] = 1, - ACTIONS(1482), 63, + ACTIONS(1478), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32338,7 +32398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10077] = 1, - ACTIONS(1488), 63, + ACTIONS(1480), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32403,7 +32463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10143] = 1, - ACTIONS(1576), 63, + ACTIONS(1482), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32468,7 +32528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10209] = 1, - ACTIONS(1490), 63, + ACTIONS(1488), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32533,7 +32593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10275] = 1, - ACTIONS(1494), 63, + ACTIONS(1576), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32598,7 +32658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10341] = 1, - ACTIONS(1498), 63, + ACTIONS(1490), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32663,8 +32723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10407] = 1, - ACTIONS(1576), 63, + ACTIONS(1494), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -32693,7 +32754,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32728,7 +32788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10473] = 1, - ACTIONS(1518), 63, + ACTIONS(1498), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32793,7 +32853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10539] = 1, - ACTIONS(1582), 63, + ACTIONS(1576), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -32858,7 +32918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10605] = 1, - ACTIONS(1524), 63, + ACTIONS(1518), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -32923,9 +32983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10671] = 1, - ACTIONS(1468), 63, + ACTIONS(1582), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -32954,6 +33013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -32988,8 +33048,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10737] = 1, - ACTIONS(1394), 63, + ACTIONS(1524), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -33018,7 +33079,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33053,7 +33113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10803] = 1, - ACTIONS(1410), 63, + ACTIONS(1468), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33118,9 +33178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10869] = 1, - ACTIONS(1602), 63, + ACTIONS(1394), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -33149,6 +33208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -33183,7 +33243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [10935] = 1, - ACTIONS(1608), 63, + ACTIONS(1410), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33248,7 +33308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11001] = 1, - ACTIONS(1614), 63, + ACTIONS(1602), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33313,7 +33373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11067] = 1, - ACTIONS(1616), 63, + ACTIONS(1608), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33378,7 +33438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11133] = 1, - ACTIONS(1618), 63, + ACTIONS(1614), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33443,7 +33503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11199] = 1, - ACTIONS(1620), 63, + ACTIONS(1616), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33508,7 +33568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11265] = 1, - ACTIONS(1622), 63, + ACTIONS(1618), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33573,7 +33633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11331] = 1, - ACTIONS(1628), 63, + ACTIONS(1620), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33638,7 +33698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11397] = 1, - ACTIONS(1632), 63, + ACTIONS(1622), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33703,7 +33763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11463] = 1, - ACTIONS(1634), 63, + ACTIONS(1628), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33768,7 +33828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11529] = 1, - ACTIONS(1636), 63, + ACTIONS(1632), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33833,7 +33893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11595] = 1, - ACTIONS(1638), 63, + ACTIONS(1634), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33898,7 +33958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11661] = 1, - ACTIONS(1640), 63, + ACTIONS(1636), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -33963,7 +34023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11727] = 1, - ACTIONS(1658), 63, + ACTIONS(1638), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -34028,8 +34088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11793] = 1, - ACTIONS(1490), 63, + ACTIONS(1640), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34058,7 +34119,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34093,8 +34153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11859] = 1, - ACTIONS(1494), 63, + ACTIONS(1658), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34123,7 +34184,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34158,7 +34218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11925] = 1, - ACTIONS(1498), 63, + ACTIONS(1490), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -34223,9 +34283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [11991] = 1, - ACTIONS(1484), 63, + ACTIONS(1494), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34254,6 +34313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34288,9 +34348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12057] = 1, - ACTIONS(1486), 63, + ACTIONS(1498), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34319,6 +34378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34353,8 +34413,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12123] = 1, - ACTIONS(1518), 63, + ACTIONS(1484), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34383,7 +34444,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34418,8 +34478,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12189] = 1, - ACTIONS(1524), 63, + ACTIONS(1486), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34448,7 +34509,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34483,9 +34543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12255] = 1, - ACTIONS(1448), 63, + ACTIONS(1518), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34514,6 +34573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34548,9 +34608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12321] = 1, - ACTIONS(1500), 63, + ACTIONS(1524), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -34579,6 +34638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -34613,7 +34673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12387] = 1, - ACTIONS(1502), 63, + ACTIONS(1448), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -34678,7 +34738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12453] = 1, - ACTIONS(1504), 63, + ACTIONS(1500), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -34743,7 +34803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12519] = 1, - ACTIONS(1506), 63, + ACTIONS(1502), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -34808,7 +34868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12585] = 1, - ACTIONS(1508), 63, + ACTIONS(1504), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -34873,7 +34933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12651] = 1, - ACTIONS(1510), 63, + ACTIONS(1506), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -34938,7 +34998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12717] = 1, - ACTIONS(1512), 63, + ACTIONS(1508), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35003,7 +35063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12783] = 1, - ACTIONS(1514), 63, + ACTIONS(1510), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35068,7 +35128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12849] = 1, - ACTIONS(1402), 63, + ACTIONS(1512), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35133,7 +35193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12915] = 1, - ACTIONS(1452), 63, + ACTIONS(1514), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35198,8 +35258,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [12981] = 1, - ACTIONS(1520), 63, + ACTIONS(1402), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -35228,7 +35289,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35263,7 +35323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13047] = 1, - ACTIONS(1456), 63, + ACTIONS(1452), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35328,8 +35388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13113] = 1, - ACTIONS(1520), 63, + ACTIONS(1456), 63, sym__soft_line_ending, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -35358,7 +35419,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35393,9 +35453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13179] = 1, - ACTIONS(1460), 63, + ACTIONS(1520), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -35424,6 +35483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35458,7 +35518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13245] = 1, - ACTIONS(1464), 63, + ACTIONS(1460), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35523,9 +35583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13311] = 1, - ACTIONS(1526), 63, + ACTIONS(1520), 63, sym__soft_line_ending, - sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -35554,6 +35613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ref_id_specifier, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + ts_builtin_sym_end, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -35588,7 +35648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13377] = 1, - ACTIONS(1528), 63, + ACTIONS(1464), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35653,7 +35713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13443] = 1, - ACTIONS(1532), 63, + ACTIONS(1526), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35718,7 +35778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13509] = 1, - ACTIONS(1534), 63, + ACTIONS(1528), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35783,7 +35843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13575] = 1, - ACTIONS(1536), 63, + ACTIONS(1532), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35848,7 +35908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13641] = 1, - ACTIONS(1538), 63, + ACTIONS(1534), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35913,7 +35973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13707] = 1, - ACTIONS(1540), 63, + ACTIONS(1536), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -35978,7 +36038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13773] = 1, - ACTIONS(1542), 63, + ACTIONS(1538), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36043,7 +36103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13839] = 1, - ACTIONS(1544), 63, + ACTIONS(1540), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36108,7 +36168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13905] = 1, - ACTIONS(1546), 63, + ACTIONS(1542), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36173,7 +36233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [13971] = 1, - ACTIONS(1386), 63, + ACTIONS(1544), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36238,9 +36298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14037] = 1, - ACTIONS(1668), 63, + ACTIONS(1546), 63, sym__soft_line_ending, - sym_block_continuation, + sym__block_close, sym__block_quote_start, sym__indented_chunk_start, sym_atx_h1_marker, @@ -36303,7 +36363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14103] = 1, - ACTIONS(1550), 63, + ACTIONS(1386), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36368,7 +36428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14169] = 1, - ACTIONS(1552), 63, + ACTIONS(1550), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36433,7 +36493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14235] = 1, - ACTIONS(1554), 63, + ACTIONS(1552), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36498,7 +36558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14301] = 1, - ACTIONS(1556), 63, + ACTIONS(1554), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36563,7 +36623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14367] = 1, - ACTIONS(1558), 63, + ACTIONS(1556), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36628,7 +36688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14433] = 1, - ACTIONS(1560), 63, + ACTIONS(1558), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36693,7 +36753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14499] = 1, - ACTIONS(1562), 63, + ACTIONS(1560), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36758,7 +36818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14565] = 1, - ACTIONS(1564), 63, + ACTIONS(1562), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36823,7 +36883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14631] = 1, - ACTIONS(1566), 63, + ACTIONS(1564), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36888,7 +36948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14697] = 1, - ACTIONS(1664), 63, + ACTIONS(1566), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -36953,7 +37013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14763] = 1, - ACTIONS(1570), 63, + ACTIONS(1664), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -37018,7 +37078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14829] = 1, - ACTIONS(1572), 63, + ACTIONS(1570), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -37083,7 +37143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14895] = 1, - ACTIONS(1574), 63, + ACTIONS(1572), 63, sym__soft_line_ending, sym__block_close, sym__block_quote_start, @@ -37148,6 +37208,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [14961] = 1, + ACTIONS(1574), 63, + sym__soft_line_ending, + sym__block_close, + sym__block_quote_start, + sym__indented_chunk_start, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + sym__thematic_break, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + sym__list_marker_minus_dont_interrupt, + sym__list_marker_plus_dont_interrupt, + sym__list_marker_star_dont_interrupt, + sym__list_marker_parenthesis_dont_interrupt, + sym__list_marker_dot_dont_interrupt, + sym__fenced_code_block_start_backtick, + sym__fenced_code_block_start_tilde, + sym__blank_line_start, + sym_minus_metadata, + sym__pipe_table_start, + sym__fenced_div_start, + sym_ref_id_specifier, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [15027] = 1, + ACTIONS(1668), 63, + sym__soft_line_ending, + sym_block_continuation, + sym__block_quote_start, + sym__indented_chunk_start, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + sym__thematic_break, + sym__list_marker_minus, + sym__list_marker_plus, + sym__list_marker_star, + sym__list_marker_parenthesis, + sym__list_marker_dot, + sym__list_marker_minus_dont_interrupt, + sym__list_marker_plus_dont_interrupt, + sym__list_marker_star_dont_interrupt, + sym__list_marker_parenthesis_dont_interrupt, + sym__list_marker_dot_dont_interrupt, + sym__fenced_code_block_start_backtick, + sym__fenced_code_block_start_tilde, + sym__blank_line_start, + sym_minus_metadata, + sym__pipe_table_start, + sym__fenced_div_start, + sym_ref_id_specifier, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [15093] = 1, ACTIONS(1578), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37212,7 +37402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15027] = 1, + [15159] = 1, ACTIONS(1670), 63, sym__soft_line_ending, sym_block_continuation, @@ -37277,7 +37467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15093] = 1, + [15225] = 1, ACTIONS(1672), 63, sym__soft_line_ending, sym_block_continuation, @@ -37342,7 +37532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15159] = 1, + [15291] = 1, ACTIONS(1674), 63, sym__soft_line_ending, sym_block_continuation, @@ -37407,7 +37597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15225] = 1, + [15357] = 1, ACTIONS(1468), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37472,7 +37662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15291] = 1, + [15423] = 1, ACTIONS(1410), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37537,7 +37727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15357] = 1, + [15489] = 1, ACTIONS(1602), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37602,7 +37792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15423] = 1, + [15555] = 1, ACTIONS(1390), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37667,7 +37857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15489] = 1, + [15621] = 1, ACTIONS(1608), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37732,7 +37922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15555] = 1, + [15687] = 1, ACTIONS(1614), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37797,7 +37987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15621] = 1, + [15753] = 1, ACTIONS(1616), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37862,7 +38052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15687] = 1, + [15819] = 1, ACTIONS(1618), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37927,7 +38117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15753] = 1, + [15885] = 1, ACTIONS(1620), 63, sym__soft_line_ending, sym__block_quote_start, @@ -37992,7 +38182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15819] = 1, + [15951] = 1, ACTIONS(1622), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38057,7 +38247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15885] = 1, + [16017] = 1, ACTIONS(1628), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38122,7 +38312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [15951] = 1, + [16083] = 1, ACTIONS(1632), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38187,7 +38377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16017] = 1, + [16149] = 1, ACTIONS(1634), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38252,7 +38442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16083] = 1, + [16215] = 1, ACTIONS(1636), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38317,7 +38507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16149] = 1, + [16281] = 1, ACTIONS(1638), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38382,7 +38572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16215] = 1, + [16347] = 1, ACTIONS(1640), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38447,7 +38637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16281] = 1, + [16413] = 1, ACTIONS(1658), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38512,7 +38702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16347] = 1, + [16479] = 1, ACTIONS(1484), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38577,7 +38767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16413] = 1, + [16545] = 1, ACTIONS(1486), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38642,7 +38832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16479] = 1, + [16611] = 1, ACTIONS(1448), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38707,7 +38897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16545] = 1, + [16677] = 1, ACTIONS(1500), 63, sym__soft_line_ending, sym__block_quote_start, @@ -38772,73 +38962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16611] = 1, - ACTIONS(1502), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16677] = 1, - ACTIONS(1504), 63, + [16743] = 1, + ACTIONS(1456), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -38902,7 +39027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16743] = 1, + [16809] = 1, ACTIONS(1390), 63, sym__soft_line_ending, sym__block_close, @@ -38967,73 +39092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [16809] = 1, - ACTIONS(1506), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, [16875] = 1, - ACTIONS(1508), 63, + ACTIONS(1502), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39098,7 +39158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [16941] = 1, - ACTIONS(1510), 63, + ACTIONS(1504), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39163,7 +39223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17007] = 1, - ACTIONS(1512), 63, + ACTIONS(1506), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39228,7 +39288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17073] = 1, - ACTIONS(1514), 63, + ACTIONS(1508), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39358,7 +39418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17205] = 1, - ACTIONS(1472), 63, + ACTIONS(1510), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39423,7 +39483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17271] = 1, - ACTIONS(1402), 63, + ACTIONS(1512), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39488,7 +39548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17337] = 1, - ACTIONS(1452), 63, + ACTIONS(1514), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39553,7 +39613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17403] = 1, - ACTIONS(1456), 63, + ACTIONS(1472), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39618,7 +39678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17469] = 1, - ACTIONS(1460), 63, + ACTIONS(1402), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39683,7 +39743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17535] = 1, - ACTIONS(1464), 63, + ACTIONS(1452), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39748,7 +39808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__word, [17601] = 1, - ACTIONS(1476), 63, + ACTIONS(1544), 63, sym__soft_line_ending, sym__block_quote_start, sym__indented_chunk_start, @@ -39827,17 +39887,17 @@ static const uint16_t ts_small_parse_table[] = { sym_class_specifier, ACTIONS(1692), 1, sym_key_value_key, - STATE(625), 1, + STATE(637), 1, sym__last_token_punctuation, - STATE(645), 1, + STATE(663), 1, sym__commonmark_whitespace, - STATE(651), 1, + STATE(669), 1, aux_sym_commonmark_attribute_repeat1, - STATE(679), 1, + STATE(705), 1, aux_sym_commonmark_attribute_repeat2, - STATE(729), 1, + STATE(743), 1, sym__attribute, - STATE(733), 1, + STATE(744), 1, aux_sym_commonmark_attribute_repeat3, ACTIONS(1690), 6, anon_sym_EQ, @@ -39876,32 +39936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [17746] = 11, - ACTIONS(1694), 1, - aux_sym__commonmark_whitespace_token1, + [17746] = 13, ACTIONS(1696), 1, - anon_sym_LBRACE, + aux_sym__commonmark_whitespace_token1, ACTIONS(1700), 1, - sym__line_ending, - STATE(195), 1, - sym__newline, - STATE(554), 1, + anon_sym_BSLASH, + ACTIONS(1702), 1, + anon_sym_PIPE, + ACTIONS(1706), 1, + sym__code_span_start, + STATE(487), 1, + aux_sym_pipe_table_row_repeat1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(592), 1, sym__whitespace, - STATE(595), 1, - aux_sym__code_line_repeat1, - STATE(673), 1, - sym__atx_heading_content, - STATE(849), 1, - sym__qmd_attribute, - STATE(887), 1, - sym__atx_heading_line, - STATE(934), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - ACTIONS(1698), 34, + STATE(713), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + STATE(828), 1, + sym_pipe_table_row, + ACTIONS(1704), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1698), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -39926,38 +39992,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [17815] = 11, - ACTIONS(1694), 1, + [17820] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1714), 1, sym__line_ending, - STATE(301), 1, + STATE(333), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(692), 1, + STATE(696), 1, sym__atx_heading_content, - STATE(887), 1, - sym__atx_heading_line, - STATE(909), 1, + STATE(894), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(922), 1, + sym__atx_heading_line, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -39992,30 +40055,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [17884] = 11, - ACTIONS(1694), 1, + [17889] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1714), 1, sym__line_ending, - STATE(453), 1, + STATE(312), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(689), 1, + STATE(699), 1, sym__atx_heading_content, - STATE(886), 1, + STATE(843), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40050,30 +40113,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [17953] = 11, - ACTIONS(1694), 1, + [17958] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1714), 1, sym__line_ending, - STATE(326), 1, + STATE(328), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(678), 1, + STATE(709), 1, sym__atx_heading_content, - STATE(887), 1, - sym__atx_heading_line, - STATE(899), 1, + STATE(870), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(922), 1, + sym__atx_heading_line, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40108,30 +40171,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18022] = 11, - ACTIONS(1694), 1, + [18027] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1714), 1, sym__line_ending, - STATE(327), 1, + STATE(329), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(680), 1, + STATE(685), 1, sym__atx_heading_content, - STATE(887), 1, - sym__atx_heading_line, - STATE(924), 1, + STATE(881), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(922), 1, + sym__atx_heading_line, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40166,30 +40229,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18091] = 11, - ACTIONS(1694), 1, + [18096] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1714), 1, sym__line_ending, - STATE(331), 1, + STATE(450), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(681), 1, + STATE(698), 1, sym__atx_heading_content, - STATE(830), 1, + STATE(849), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40224,30 +40287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18160] = 11, - ACTIONS(1694), 1, + [18165] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, + ACTIONS(1716), 1, sym__line_ending, - STATE(447), 1, + STATE(335), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(667), 1, + STATE(700), 1, sym__atx_heading_content, - STATE(821), 1, + STATE(915), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40282,30 +40345,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18229] = 11, - ACTIONS(1694), 1, + [18234] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1716), 1, sym__line_ending, - STATE(333), 1, + STATE(336), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(682), 1, + STATE(701), 1, sym__atx_heading_content, - STATE(852), 1, + STATE(917), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40340,30 +40403,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18298] = 11, - ACTIONS(1694), 1, + [18303] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1716), 1, sym__line_ending, - STATE(334), 1, + STATE(337), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(683), 1, + STATE(703), 1, sym__atx_heading_content, - STATE(866), 1, - sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(926), 1, + sym__qmd_attribute, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40398,30 +40461,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18367] = 11, - ACTIONS(1694), 1, + [18372] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1716), 1, sym__line_ending, - STATE(335), 1, + STATE(338), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(684), 1, + STATE(704), 1, sym__atx_heading_content, - STATE(871), 1, - sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(928), 1, + sym__qmd_attribute, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40456,30 +40519,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18436] = 11, - ACTIONS(1694), 1, + [18441] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1716), 1, sym__line_ending, - STATE(336), 1, + STATE(339), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(685), 1, + STATE(707), 1, sym__atx_heading_content, - STATE(873), 1, - sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(938), 1, + sym__qmd_attribute, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40514,30 +40577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18505] = 11, - ACTIONS(1694), 1, + [18510] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1716), 1, sym__line_ending, - STATE(337), 1, + STATE(340), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(686), 1, + STATE(708), 1, sym__atx_heading_content, - STATE(878), 1, - sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(940), 1, + sym__qmd_attribute, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40572,30 +40635,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18574] = 11, - ACTIONS(1694), 1, + [18579] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, + ACTIONS(1718), 1, sym__line_ending, - STATE(338), 1, + STATE(190), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(687), 1, + STATE(689), 1, sym__atx_heading_content, - STATE(884), 1, + STATE(860), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40630,30 +40693,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18643] = 11, - ACTIONS(1694), 1, + [18648] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1700), 1, + ACTIONS(1718), 1, sym__line_ending, - STATE(190), 1, + STATE(191), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(668), 1, + STATE(691), 1, sym__atx_heading_content, - STATE(841), 1, + STATE(862), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40688,30 +40751,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18712] = 11, - ACTIONS(1694), 1, + [18717] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1700), 1, + ACTIONS(1718), 1, sym__line_ending, - STATE(191), 1, + STATE(192), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(669), 1, + STATE(692), 1, sym__atx_heading_content, - STATE(843), 1, + STATE(863), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40746,30 +40809,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18781] = 11, - ACTIONS(1694), 1, + [18786] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1700), 1, + ACTIONS(1718), 1, sym__line_ending, - STATE(192), 1, + STATE(193), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(670), 1, + STATE(693), 1, sym__atx_heading_content, - STATE(845), 1, + STATE(865), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40804,30 +40867,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18850] = 11, - ACTIONS(1694), 1, + [18855] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1700), 1, + ACTIONS(1718), 1, sym__line_ending, - STATE(193), 1, + STATE(194), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(671), 1, + STATE(694), 1, sym__atx_heading_content, - STATE(847), 1, + STATE(867), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40862,30 +40925,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18919] = 11, - ACTIONS(1694), 1, + [18924] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1696), 1, + ACTIONS(1710), 1, anon_sym_LBRACE, - ACTIONS(1700), 1, + ACTIONS(1718), 1, sym__line_ending, - STATE(194), 1, + STATE(195), 1, sym__newline, - STATE(554), 1, + STATE(591), 1, sym__whitespace, - STATE(595), 1, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(672), 1, + STATE(695), 1, sym__atx_heading_content, - STATE(848), 1, + STATE(868), 1, sym__qmd_attribute, - STATE(887), 1, + STATE(922), 1, sym__atx_heading_line, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1698), 34, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40920,28 +40983,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18988] = 8, - ACTIONS(1706), 1, + [18993] = 11, + ACTIONS(1708), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(1710), 1, - sym__line_ending, - ACTIONS(1712), 1, - sym__block_close, + anon_sym_LBRACE, ACTIONS(1714), 1, - sym__fenced_code_block_end_backtick, - STATE(851), 1, - sym_code_fence_content, - STATE(543), 2, + sym__line_ending, + STATE(302), 1, + sym__newline, + STATE(591), 1, sym__whitespace, + STATE(613), 1, aux_sym__code_line_repeat1, - STATE(494), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + STATE(702), 1, + sym__atx_heading_content, + STATE(836), 1, + sym__qmd_attribute, + STATE(922), 1, + sym__atx_heading_line, + STATE(993), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1712), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -40974,25 +41041,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19050] = 8, - ACTIONS(1716), 1, - aux_sym__commonmark_whitespace_token1, + [19062] = 8, ACTIONS(1720), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1722), 1, + ACTIONS(1726), 1, sym__block_close, - ACTIONS(1724), 1, - sym__fenced_code_block_end_tilde, - STATE(870), 1, + ACTIONS(1728), 1, + sym__fenced_code_block_end_backtick, + STATE(882), 1, sym_code_fence_content, - STATE(529), 2, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41028,25 +41095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19112] = 8, - ACTIONS(1706), 1, + [19124] = 8, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1726), 1, + ACTIONS(1730), 1, sym__block_close, - ACTIONS(1728), 1, + ACTIONS(1732), 1, sym__fenced_code_block_end_backtick, - STATE(844), 1, + STATE(854), 1, sym_code_fence_content, - STATE(543), 2, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(494), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41082,25 +41149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19174] = 8, - ACTIONS(1716), 1, - aux_sym__commonmark_whitespace_token1, + [19186] = 8, ACTIONS(1720), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1726), 1, + ACTIONS(1734), 1, sym__block_close, - ACTIONS(1728), 1, - sym__fenced_code_block_end_tilde, - STATE(883), 1, + ACTIONS(1736), 1, + sym__fenced_code_block_end_backtick, + STATE(844), 1, sym_code_fence_content, - STATE(529), 2, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41136,25 +41203,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19236] = 8, - ACTIONS(1712), 1, + [19248] = 8, + ACTIONS(1734), 1, sym__block_close, - ACTIONS(1714), 1, + ACTIONS(1736), 1, sym__fenced_code_block_end_tilde, - ACTIONS(1716), 1, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1720), 1, + ACTIONS(1742), 1, sym__line_ending, - STATE(896), 1, + STATE(845), 1, sym_code_fence_content, - STATE(529), 2, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41190,25 +41257,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19298] = 8, - ACTIONS(1706), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, - sym__line_ending, + [19310] = 8, ACTIONS(1730), 1, sym__block_close, ACTIONS(1732), 1, - sym__fenced_code_block_end_backtick, - STATE(923), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(1738), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1742), 1, + sym__line_ending, + STATE(855), 1, sym_code_fence_content, - STATE(543), 2, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(494), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41244,25 +41311,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19360] = 8, - ACTIONS(1716), 1, - aux_sym__commonmark_whitespace_token1, + [19372] = 8, ACTIONS(1720), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1730), 1, + ACTIONS(1744), 1, sym__block_close, - ACTIONS(1732), 1, - sym__fenced_code_block_end_tilde, - STATE(822), 1, + ACTIONS(1746), 1, + sym__fenced_code_block_end_backtick, + STATE(846), 1, sym_code_fence_content, - STATE(529), 2, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41298,25 +41365,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19422] = 8, - ACTIONS(1706), 1, + [19434] = 8, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(1734), 1, + ACTIONS(1744), 1, sym__block_close, - ACTIONS(1736), 1, - sym__fenced_code_block_end_backtick, - STATE(823), 1, + ACTIONS(1746), 1, + sym__fenced_code_block_end_tilde, + STATE(848), 1, sym_code_fence_content, - STATE(543), 2, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(494), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41352,25 +41419,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19484] = 8, - ACTIONS(1706), 1, + [19496] = 8, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1738), 1, + ACTIONS(1748), 1, sym__block_close, - ACTIONS(1740), 1, + ACTIONS(1750), 1, sym__fenced_code_block_end_backtick, - STATE(826), 1, + STATE(850), 1, sym_code_fence_content, - STATE(543), 2, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(494), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41406,25 +41473,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19546] = 8, - ACTIONS(1716), 1, + [19558] = 8, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1720), 1, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(1738), 1, + ACTIONS(1748), 1, sym__block_close, - ACTIONS(1740), 1, + ACTIONS(1750), 1, sym__fenced_code_block_end_tilde, - STATE(827), 1, + STATE(851), 1, sym_code_fence_content, - STATE(529), 2, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41460,33 +41527,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19608] = 11, - ACTIONS(1744), 1, + [19620] = 8, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1724), 1, + sym__line_ending, + ACTIONS(1752), 1, + sym__block_close, + ACTIONS(1754), 1, + sym__fenced_code_block_end_backtick, + STATE(873), 1, + sym_code_fence_content, + STATE(550), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(504), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1722), 35, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(1750), 1, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, anon_sym_PIPE, - STATE(507), 1, + anon_sym_TILDE, + sym__word, + [19682] = 11, + ACTIONS(1700), 1, + anon_sym_BSLASH, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, + aux_sym__commonmark_whitespace_token1, + STATE(489), 1, aux_sym_pipe_table_row_repeat1, - STATE(611), 1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(523), 1, sym__whitespace, - STATE(713), 1, + STATE(715), 1, sym_pipe_table_cell, - STATE(737), 1, + STATE(741), 1, sym__pipe_table_cell_contents, - STATE(777), 1, - sym_pipe_table_row, - ACTIONS(1752), 3, + ACTIONS(1758), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1742), 4, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1746), 30, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41517,25 +41638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [19676] = 8, - ACTIONS(1706), 1, + [19750] = 8, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1754), 1, + ACTIONS(1760), 1, sym__block_close, - ACTIONS(1756), 1, + ACTIONS(1762), 1, sym__fenced_code_block_end_backtick, - STATE(877), 1, + STATE(921), 1, sym_code_fence_content, - STATE(543), 2, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(494), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41571,25 +41692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19738] = 8, - ACTIONS(1716), 1, + [19812] = 8, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1720), 1, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(1754), 1, + ACTIONS(1760), 1, sym__block_close, - ACTIONS(1756), 1, + ACTIONS(1762), 1, sym__fenced_code_block_end_tilde, - STATE(900), 1, + STATE(932), 1, sym_code_fence_content, - STATE(529), 2, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41625,27 +41746,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19800] = 8, + [19874] = 11, + ACTIONS(1700), 1, + anon_sym_BSLASH, ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, - sym__line_ending, - ACTIONS(1758), 1, - sym__block_close, - ACTIONS(1760), 1, - sym__fenced_code_block_end_backtick, - STATE(860), 1, - sym_code_fence_content, - STATE(543), 2, + STATE(489), 1, + aux_sym_pipe_table_row_repeat1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(510), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(494), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + STATE(727), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1764), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41671,35 +41798,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [19862] = 8, - ACTIONS(1716), 1, + [19942] = 11, + ACTIONS(1700), 1, + anon_sym_BSLASH, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1720), 1, - sym__line_ending, - ACTIONS(1758), 1, - sym__block_close, - ACTIONS(1760), 1, - sym__fenced_code_block_end_tilde, - STATE(862), 1, - sym_code_fence_content, - STATE(529), 2, + STATE(489), 1, + aux_sym_pipe_table_row_repeat1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(517), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(493), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + STATE(722), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1766), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41725,35 +41855,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [19924] = 8, - ACTIONS(1706), 1, + [20010] = 11, + ACTIONS(1771), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, - sym__line_ending, - ACTIONS(1762), 1, - sym__block_close, - ACTIONS(1764), 1, - sym__fenced_code_block_end_backtick, - STATE(863), 1, - sym_code_fence_content, - STATE(543), 2, + ACTIONS(1777), 1, + anon_sym_BSLASH, + ACTIONS(1782), 1, + sym__code_span_start, + STATE(489), 1, + aux_sym_pipe_table_row_repeat1, + STATE(571), 1, + sym__pipe_table_code_span, + STATE(584), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(494), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + STATE(818), 1, + sym_pipe_table_cell, + STATE(944), 1, + sym__pipe_table_cell_contents, + ACTIONS(1780), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1768), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1774), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41779,33 +41912,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [19986] = 8, - ACTIONS(1716), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1720), 1, - sym__line_ending, - ACTIONS(1762), 1, + [20078] = 8, + ACTIONS(1726), 1, sym__block_close, - ACTIONS(1764), 1, + ACTIONS(1728), 1, sym__fenced_code_block_end_tilde, - STATE(864), 1, + ACTIONS(1738), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1742), 1, + sym__line_ending, + STATE(884), 1, sym_code_fence_content, - STATE(529), 2, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41841,25 +41971,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20048] = 8, - ACTIONS(1706), 1, + [20140] = 8, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1722), 1, + ACTIONS(1785), 1, sym__block_close, - ACTIONS(1724), 1, + ACTIONS(1787), 1, sym__fenced_code_block_end_backtick, - STATE(869), 1, + STATE(885), 1, sym_code_fence_content, - STATE(543), 2, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(494), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41895,25 +42025,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20110] = 8, - ACTIONS(1716), 1, + [20202] = 8, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1720), 1, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(1734), 1, + ACTIONS(1785), 1, sym__block_close, - ACTIONS(1736), 1, + ACTIONS(1787), 1, sym__fenced_code_block_end_tilde, - STATE(825), 1, + STATE(887), 1, sym_code_fence_content, - STATE(529), 2, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(493), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41949,22 +42079,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20172] = 6, - ACTIONS(1766), 1, + [20264] = 8, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1772), 1, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(1775), 2, + ACTIONS(1789), 1, sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(529), 2, + ACTIONS(1791), 1, + sym__fenced_code_block_end_backtick, + STATE(891), 1, + sym_code_fence_content, + STATE(550), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(492), 3, + STATE(504), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1769), 35, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42000,22 +42133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20229] = 6, - ACTIONS(1716), 1, + [20326] = 8, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1720), 1, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(1777), 2, + ACTIONS(1789), 1, sym__block_close, + ACTIONS(1791), 1, sym__fenced_code_block_end_tilde, - STATE(529), 2, + STATE(947), 1, + sym_code_fence_content, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(492), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1718), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42051,22 +42187,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20286] = 6, + [20388] = 11, + ACTIONS(1696), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1700), 1, + anon_sym_BSLASH, ACTIONS(1706), 1, + sym__code_span_start, + STATE(484), 1, + aux_sym_pipe_table_row_repeat1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(580), 1, + sym__whitespace, + STATE(722), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1793), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1694), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1698), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + [20456] = 8, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(1777), 2, + ACTIONS(1752), 1, sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(543), 2, + ACTIONS(1754), 1, + sym__fenced_code_block_end_tilde, + STATE(913), 1, + sym_code_fence_content, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(495), 3, + STATE(499), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1708), 35, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42102,24 +42298,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20343] = 6, - ACTIONS(1779), 1, + [20518] = 7, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1785), 1, - sym__line_ending, - ACTIONS(1775), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(543), 2, + ACTIONS(1797), 1, + anon_sym_BSLASH, + STATE(503), 1, + sym__last_token_punctuation, + STATE(502), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(495), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1782), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1799), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1795), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42145,37 +42345,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20400] = 10, - ACTIONS(5), 1, + [20578] = 12, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1788), 1, - sym__line_ending, - ACTIONS(1790), 1, - sym__eof, - STATE(169), 1, - sym__newline, - STATE(521), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1807), 1, + anon_sym_PIPE, + ACTIONS(1809), 1, + sym__code_span_start, + STATE(520), 1, + aux_sym_pipe_table_row_repeat1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(588), 1, sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + STATE(757), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + STATE(945), 1, + sym_pipe_table_row, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(7), 31, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42194,34 +42396,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [20464] = 6, - ACTIONS(1792), 1, + [20647] = 6, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(1798), 1, + ACTIONS(1811), 2, sym__block_close, - STATE(569), 2, + sym__fenced_code_block_end_tilde, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(509), 3, + STATE(507), 3, sym__newline, sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1794), 35, + aux_sym_code_fence_content_repeat1, + ACTIONS(1740), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42257,29 +42459,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20520] = 9, - ACTIONS(1748), 1, - anon_sym_BSLASH, - ACTIONS(1800), 1, + [20704] = 12, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - STATE(506), 1, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1807), 1, + anon_sym_PIPE, + ACTIONS(1809), 1, + sym__code_span_start, + STATE(520), 1, aux_sym_pipe_table_row_repeat1, - STATE(550), 1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(588), 1, sym__whitespace, - STATE(699), 1, + STATE(757), 1, sym_pipe_table_cell, - STATE(737), 1, + STATE(800), 1, sym__pipe_table_cell_contents, - ACTIONS(1802), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1742), 4, + STATE(853), 1, + sym_pipe_table_row, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1746), 30, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42310,23 +42516,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [20582] = 6, - ACTIONS(1792), 1, + [20773] = 6, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, - sym__line_ending, - ACTIONS(1804), 1, - sym__block_close, - STATE(569), 2, + ACTIONS(1797), 1, + anon_sym_BSLASH, + STATE(502), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(505), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1794), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1799), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1795), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42352,37 +42561,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20638] = 9, - ACTIONS(1748), 1, - anon_sym_BSLASH, - ACTIONS(1800), 1, + [20830] = 6, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, aux_sym__commonmark_whitespace_token1, - STATE(506), 1, - aux_sym_pipe_table_row_repeat1, - STATE(530), 1, + ACTIONS(1815), 1, + anon_sym_BSLASH, + STATE(505), 3, sym__whitespace, - STATE(702), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1806), 3, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1817), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1742), 4, + anon_sym_PIPE, + ACTIONS(1813), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42413,23 +42617,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [20700] = 6, - ACTIONS(1792), 1, + sym__word, + [20887] = 6, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, - sym__line_ending, - ACTIONS(1808), 1, - sym__block_close, - STATE(569), 2, + ACTIONS(1821), 1, + anon_sym_BSLASH, + STATE(506), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(511), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1794), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1817), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1819), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42455,37 +42663,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20756] = 9, - ACTIONS(1744), 1, + [20944] = 6, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, - anon_sym_BSLASH, - STATE(498), 1, - aux_sym_pipe_table_row_repeat1, - STATE(615), 1, - sym__whitespace, - STATE(702), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1810), 3, + ACTIONS(1724), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1742), 4, + ACTIONS(1811), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(550), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(508), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1722), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42511,28 +42712,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [20818] = 6, - ACTIONS(1812), 1, + sym__word, + [21001] = 6, + ACTIONS(1826), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1818), 1, - sym__line_ending, - ACTIONS(1821), 1, - sym__block_close, - STATE(569), 2, + ACTIONS(1829), 1, + anon_sym_BSLASH, + ACTIONS(1834), 1, + sym__code_span_start, + STATE(505), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(503), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1815), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1832), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1823), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42558,30 +42765,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20874] = 6, - ACTIONS(1800), 1, + [21058] = 6, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1756), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1825), 1, + ACTIONS(1815), 1, anon_sym_BSLASH, - STATE(525), 1, - sym__last_token_punctuation, - STATE(524), 2, + STATE(505), 3, sym__whitespace, + sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1827), 4, + ACTIONS(1837), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_PIPE, - ACTIONS(1823), 34, + ACTIONS(1813), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -42616,21 +42822,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [20930] = 6, - ACTIONS(1792), 1, + [21115] = 6, + ACTIONS(1839), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, + ACTIONS(1845), 1, sym__line_ending, - ACTIONS(1829), 1, + ACTIONS(1848), 2, sym__block_close, - STATE(569), 2, + sym__fenced_code_block_end_tilde, + STATE(556), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(503), 3, + STATE(507), 3, sym__newline, sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1794), 35, + aux_sym_code_fence_content_repeat1, + ACTIONS(1842), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42666,29 +42873,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20986] = 9, - ACTIONS(1834), 1, + [21172] = 6, + ACTIONS(1850), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1840), 1, - anon_sym_BSLASH, - STATE(506), 1, - aux_sym_pipe_table_row_repeat1, - STATE(609), 1, - sym__whitespace, - STATE(792), 1, - sym_pipe_table_cell, - STATE(926), 1, - sym__pipe_table_cell_contents, - ACTIONS(1843), 3, + ACTIONS(1856), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1831), 4, + ACTIONS(1848), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(550), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(508), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1853), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1837), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42714,34 +42916,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [21048] = 9, - ACTIONS(1748), 1, - anon_sym_BSLASH, - ACTIONS(1800), 1, + sym__word, + [21229] = 12, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - STATE(506), 1, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1807), 1, + anon_sym_PIPE, + ACTIONS(1809), 1, + sym__code_span_start, + STATE(520), 1, aux_sym_pipe_table_row_repeat1, - STATE(547), 1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(588), 1, sym__whitespace, - STATE(703), 1, + STATE(757), 1, sym_pipe_table_cell, - STATE(737), 1, + STATE(800), 1, sym__pipe_table_cell_contents, - ACTIONS(1845), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1742), 4, + STATE(943), 1, + sym_pipe_table_row, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1746), 30, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42772,29 +42981,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21110] = 10, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1847), 1, + [21298] = 9, + ACTIONS(1700), 1, + anon_sym_BSLASH, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1859), 1, + anon_sym_PIPE, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(736), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1766), 3, sym__line_ending, - ACTIONS(1849), 1, sym__eof, - STATE(183), 1, - sym__newline, - STATE(521), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, - sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + sym__pipe_table_line_ending, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(7), 31, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42813,34 +43022,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [21174] = 6, - ACTIONS(1792), 1, + [21360] = 6, + ACTIONS(1861), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, + ACTIONS(1865), 1, sym__line_ending, - ACTIONS(1851), 1, + ACTIONS(1867), 1, sym__block_close, - STATE(569), 2, + STATE(575), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(503), 3, + STATE(516), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1794), 35, + ACTIONS(1863), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42876,29 +43084,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21230] = 10, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1702), 1, + [21416] = 11, + ACTIONS(1766), 1, sym__line_ending, - ACTIONS(1853), 1, - sym__eof, - STATE(420), 1, - sym__newline, - STATE(521), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1869), 1, + aux_sym__commonmark_whitespace_token1, + STATE(514), 1, + aux_sym_pipe_table_row_repeat1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(570), 1, sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + STATE(776), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(7), 31, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42917,36 +43127,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [21294] = 6, - ACTIONS(1792), 1, + [21482] = 11, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, + ACTIONS(1793), 1, sym__line_ending, - ACTIONS(1855), 1, - sym__block_close, - STATE(569), 2, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1809), 1, + sym__code_span_start, + STATE(530), 1, + aux_sym_pipe_table_row_repeat1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(586), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(503), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1794), 35, + STATE(776), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42972,37 +43189,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [21350] = 10, - ACTIONS(5), 1, + [21548] = 11, + ACTIONS(1771), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1704), 1, + ACTIONS(1777), 1, + anon_sym_BSLASH, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1857), 1, - sym__eof, - STATE(440), 1, - sym__newline, - STATE(521), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, + ACTIONS(1782), 1, + sym__code_span_start, + STATE(514), 1, + aux_sym_pipe_table_row_repeat1, + STATE(571), 1, + sym__pipe_table_code_span, + STATE(590), 1, sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + STATE(824), 1, + sym_pipe_table_cell, + STATE(944), 1, + sym__pipe_table_cell_contents, + ACTIONS(1768), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(7), 31, + ACTIONS(1774), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43021,42 +43237,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [21414] = 10, - ACTIONS(5), 1, + [21614] = 6, + ACTIONS(1871), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1859), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1861), 1, - sym__eof, - STATE(147), 1, - sym__newline, - STATE(521), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, + ACTIONS(1880), 1, + sym__block_close, + STATE(575), 2, sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + aux_sym__code_line_repeat1, + STATE(515), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1874), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43075,6 +43284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43088,29 +43298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [21478] = 10, - ACTIONS(5), 1, + sym__word, + [21670] = 6, + ACTIONS(1861), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1700), 1, + ACTIONS(1865), 1, sym__line_ending, - ACTIONS(1863), 1, - sym__eof, - STATE(254), 1, - sym__newline, - STATE(521), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, + ACTIONS(1882), 1, + sym__block_close, + STATE(575), 2, sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + aux_sym__code_line_repeat1, + STATE(515), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1863), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43129,6 +43334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43142,29 +43348,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [21542] = 10, - ACTIONS(1744), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1869), 1, + sym__word, + [21726] = 9, + ACTIONS(1700), 1, anon_sym_BSLASH, - ACTIONS(1871), 1, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1859), 1, anon_sym_PIPE, - STATE(544), 1, - aux_sym_pipe_table_row_repeat1, - STATE(614), 1, - sym__whitespace, - STATE(763), 1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(714), 1, sym_pipe_table_cell, - STATE(783), 1, + STATE(741), 1, sym__pipe_table_cell_contents, - STATE(927), 1, - sym_pipe_table_row, - ACTIONS(1865), 4, + ACTIONS(1758), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1867), 30, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43195,29 +43402,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21605] = 10, - ACTIONS(1744), 1, - aux_sym__commonmark_whitespace_token1, + [21788] = 7, + ACTIONS(1809), 1, + sym__code_span_start, ACTIONS(1869), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1886), 1, anon_sym_BSLASH, - ACTIONS(1871), 1, + STATE(536), 1, + sym__last_token_punctuation, + ACTIONS(1799), 2, + sym__line_ending, anon_sym_PIPE, - STATE(544), 1, - aux_sym_pipe_table_row_repeat1, - STATE(614), 1, + STATE(532), 3, sym__whitespace, - STATE(763), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - STATE(925), 1, - sym_pipe_table_row, - ACTIONS(1865), 4, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1884), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43248,23 +43452,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21668] = 5, - ACTIONS(1876), 1, + sym__word, + [21846] = 6, + ACTIONS(1861), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1879), 1, - anon_sym_BSLASH, - STATE(517), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1882), 4, + ACTIONS(1865), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1873), 34, + ACTIONS(1888), 1, + sym__block_close, + STATE(575), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(522), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1863), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43290,29 +43495,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21721] = 5, - ACTIONS(1800), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1886), 1, + [21902] = 11, + ACTIONS(1764), 1, + sym__line_ending, + ACTIONS(1805), 1, anon_sym_BSLASH, - STATE(517), 2, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1869), 1, + aux_sym__commonmark_whitespace_token1, + STATE(514), 1, + aux_sym_pipe_table_row_repeat1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(551), 1, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1888), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1884), 34, + STATE(771), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43343,22 +43558,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [21774] = 5, + [21968] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(549), 1, - sym__last_token_punctuation, - STATE(536), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1892), 3, - sym__line_ending, + ACTIONS(11), 1, sym__soft_line_ending, + ACTIONS(1890), 1, + sym__line_ending, + ACTIONS(1892), 1, sym__eof, - ACTIONS(1890), 35, + STATE(183), 1, + sym__newline, + STATE(541), 1, + aux_sym_paragraph_repeat1, + STATE(555), 1, + sym__whitespace, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43377,7 +43599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43391,23 +43612,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [21827] = 8, - ACTIONS(1704), 1, + [22032] = 6, + ACTIONS(1861), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1865), 1, sym__line_ending, ACTIONS(1894), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1898), 1, - sym__eof, - STATE(405), 1, - sym__newline, - STATE(548), 1, + sym__block_close, + STATE(575), 2, sym__whitespace, - STATE(555), 1, aux_sym__code_line_repeat1, - STATE(788), 1, - sym__table_caption_line, - ACTIONS(1896), 35, + STATE(515), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1863), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43443,26 +43662,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21886] = 8, - ACTIONS(1900), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1911), 1, - sym__soft_line_ending, - STATE(521), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, - sym__whitespace, - ACTIONS(1909), 2, + [22088] = 9, + ACTIONS(1700), 1, + anon_sym_BSLASH, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1859), 1, + anon_sym_PIPE, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(720), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1896), 3, sym__line_ending, sym__eof, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(1906), 3, + sym__pipe_table_line_ending, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(1903), 31, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43481,36 +43703,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [21945] = 5, - ACTIONS(1800), 1, + [22150] = 6, + ACTIONS(1861), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1825), 1, - anon_sym_BSLASH, - STATE(524), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1827), 4, + ACTIONS(1865), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1823), 34, + ACTIONS(1898), 1, + sym__block_close, + STATE(575), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(526), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1863), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43536,28 +43757,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21998] = 8, - ACTIONS(1700), 1, - sym__line_ending, - ACTIONS(1894), 1, + [22206] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1914), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1714), 1, + sym__line_ending, + ACTIONS(1900), 1, sym__eof, - STATE(241), 1, + STATE(422), 1, sym__newline, - STATE(551), 1, - sym__whitespace, + STATE(541), 1, + aux_sym_paragraph_repeat1, STATE(555), 1, + sym__whitespace, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [22270] = 6, + ACTIONS(1861), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1865), 1, + sym__line_ending, + ACTIONS(1902), 1, + sym__block_close, + STATE(575), 2, + sym__whitespace, aux_sym__code_line_repeat1, - STATE(799), 1, - sym__table_caption_line, - ACTIONS(1896), 35, + STATE(515), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1863), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43593,71 +43869,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22057] = 5, - ACTIONS(1800), 1, + [22326] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1886), 1, - anon_sym_BSLASH, - STATE(517), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1916), 4, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1716), 1, sym__line_ending, + ACTIONS(1904), 1, sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1884), 34, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - sym__word, - [22110] = 5, - ACTIONS(1800), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1920), 1, - anon_sym_BSLASH, - STATE(518), 2, + STATE(441), 1, + sym__newline, + STATE(541), 1, + aux_sym_paragraph_repeat1, + STATE(555), 1, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1916), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1918), 34, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43676,37 +43910,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22163] = 8, - ACTIONS(1702), 1, - sym__line_ending, - ACTIONS(1894), 1, + [22390] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1922), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1906), 1, + sym__line_ending, + ACTIONS(1908), 1, sym__eof, - STATE(316), 1, + STATE(147), 1, sym__newline, - STATE(540), 1, - sym__whitespace, + STATE(541), 1, + aux_sym_paragraph_repeat1, STATE(555), 1, - aux_sym__code_line_repeat1, - STATE(776), 1, - sym__table_caption_line, - ACTIONS(1896), 35, + sym__whitespace, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43725,7 +43964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43739,30 +43977,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22222] = 10, - ACTIONS(1744), 1, + [22454] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1871), 1, - anon_sym_PIPE, - STATE(544), 1, - aux_sym_pipe_table_row_repeat1, - STATE(614), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1718), 1, + sym__line_ending, + ACTIONS(1910), 1, + sym__eof, + STATE(254), 1, + sym__newline, + STATE(541), 1, + aux_sym_paragraph_repeat1, + STATE(555), 1, sym__whitespace, - STATE(763), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - STATE(850), 1, - sym_pipe_table_row, - ACTIONS(1865), 4, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, sym__word, - ACTIONS(1867), 30, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43781,39 +44018,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [22285] = 9, - ACTIONS(1744), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1810), 1, + [22518] = 11, + ACTIONS(1758), 1, sym__line_ending, - ACTIONS(1869), 1, + ACTIONS(1805), 1, anon_sym_BSLASH, - STATE(535), 1, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1869), 1, + aux_sym__commonmark_whitespace_token1, + STATE(514), 1, aux_sym_pipe_table_row_repeat1, - STATE(605), 1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(564), 1, sym__whitespace, - STATE(761), 1, + STATE(768), 1, sym_pipe_table_cell, - STATE(783), 1, + STATE(800), 1, sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1867), 30, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43844,19 +44086,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [22345] = 4, - ACTIONS(1716), 1, + [22584] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(533), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1926), 3, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1912), 1, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(1924), 35, + ACTIONS(1914), 1, + sym__eof, + STATE(169), 1, + sym__newline, + STATE(541), 1, + aux_sym_paragraph_repeat1, + STATE(555), 1, + sym__whitespace, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43875,7 +44127,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43889,26 +44140,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22395] = 7, - ACTIONS(1748), 1, + [22648] = 6, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1869), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1918), 1, anon_sym_BSLASH, - ACTIONS(1928), 1, - anon_sym_PIPE, - STATE(696), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1802), 3, + ACTIONS(1817), 2, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1742), 4, + anon_sym_PIPE, + STATE(534), 3, + sym__whitespace, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1916), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43939,19 +44188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [22451] = 4, - ACTIONS(1930), 1, + sym__word, + [22703] = 7, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - STATE(531), 2, + ACTIONS(1799), 1, + anon_sym_PIPE, + ACTIONS(1922), 1, + anon_sym_BSLASH, + ACTIONS(1924), 1, + sym__code_span_start, + STATE(562), 1, + sym__last_token_punctuation, + STATE(547), 3, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1936), 3, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(1933), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1920), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43977,35 +44233,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22501] = 9, - ACTIONS(1806), 1, - sym__line_ending, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(1938), 1, + [22760] = 6, + ACTIONS(1929), 1, aux_sym__commonmark_whitespace_token1, - STATE(542), 1, - aux_sym_pipe_table_row_repeat1, - STATE(578), 1, + ACTIONS(1932), 1, + anon_sym_BSLASH, + ACTIONS(1935), 1, + sym__code_span_start, + ACTIONS(1832), 2, + sym__line_ending, + anon_sym_PIPE, + STATE(534), 3, sym__whitespace, - STATE(761), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1926), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44036,17 +44287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [22561] = 4, - ACTIONS(1940), 1, + sym__word, + [22815] = 8, + ACTIONS(1716), 1, + sym__line_ending, + ACTIONS(1938), 1, aux_sym__commonmark_whitespace_token1, - STATE(533), 2, + ACTIONS(1942), 1, + sym__eof, + STATE(406), 1, + sym__newline, + STATE(546), 1, sym__whitespace, + STATE(583), 1, aux_sym__code_line_repeat1, - ACTIONS(1936), 3, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(1943), 35, + STATE(825), 1, + sym__table_caption_line, + ACTIONS(1940), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44082,25 +44339,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22611] = 8, - ACTIONS(5), 1, + [22874] = 6, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1869), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - STATE(433), 1, - sym_paragraph, - STATE(510), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, + ACTIONS(1946), 1, + anon_sym_BSLASH, + ACTIONS(1817), 2, + sym__line_ending, + anon_sym_PIPE, + STATE(538), 3, sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1944), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44119,40 +44375,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [22669] = 9, - ACTIONS(1802), 1, + sym__word, + [22929] = 8, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(1869), 1, - anon_sym_BSLASH, ACTIONS(1938), 1, aux_sym__commonmark_whitespace_token1, - STATE(542), 1, - aux_sym_pipe_table_row_repeat1, - STATE(581), 1, + ACTIONS(1948), 1, + sym__eof, + STATE(318), 1, + sym__newline, + STATE(568), 1, sym__whitespace, - STATE(768), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + STATE(583), 1, + aux_sym__code_line_repeat1, + STATE(790), 1, + sym__table_caption_line, + ACTIONS(1940), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44178,24 +44431,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [22729] = 4, - ACTIONS(5), 1, + sym__word, + [22988] = 6, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1869), 1, aux_sym__commonmark_whitespace_token1, - STATE(538), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1948), 3, + ACTIONS(1918), 1, + anon_sym_BSLASH, + ACTIONS(1837), 2, sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(1946), 35, + anon_sym_PIPE, + STATE(534), 3, + sym__whitespace, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1916), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44221,27 +44482,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22779] = 4, - ACTIONS(5), 1, + [23043] = 10, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - STATE(536), 2, + ACTIONS(1700), 1, + anon_sym_BSLASH, + ACTIONS(1706), 1, + sym__code_span_start, + STATE(488), 1, + aux_sym_pipe_table_row_repeat1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(574), 1, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1892), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(1890), 35, + STATE(727), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44267,25 +44536,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22829] = 4, - ACTIONS(1950), 1, + [23106] = 8, + ACTIONS(1718), 1, + sym__line_ending, + ACTIONS(1938), 1, aux_sym__commonmark_whitespace_token1, - STATE(538), 2, + ACTIONS(1950), 1, + sym__eof, + STATE(241), 1, + sym__newline, + STATE(573), 1, sym__whitespace, + STATE(583), 1, aux_sym__code_line_repeat1, - ACTIONS(1936), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(1953), 35, + STATE(809), 1, + sym__table_caption_line, + ACTIONS(1940), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44321,25 +44592,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22879] = 8, - ACTIONS(5), 1, + [23165] = 8, + ACTIONS(1952), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, + ACTIONS(1963), 1, sym__soft_line_ending, - STATE(294), 1, - sym_paragraph, - STATE(514), 1, + STATE(541), 1, aux_sym_paragraph_repeat1, - STATE(537), 1, + STATE(555), 1, sym__whitespace, - STATE(602), 2, + ACTIONS(1961), 2, + sym__line_ending, + sym__eof, + STATE(616), 2, sym__soft_line_break, sym__line, - ACTIONS(9), 3, + ACTIONS(1958), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__word, - ACTIONS(7), 31, + ACTIONS(1955), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44371,20 +44643,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [22937] = 5, - ACTIONS(1894), 1, + [23224] = 10, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - STATE(779), 1, - sym__table_caption_line, - ACTIONS(1680), 2, - sym__line_ending, - sym__eof, - STATE(555), 2, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1809), 1, + sym__code_span_start, + STATE(512), 1, + aux_sym_pipe_table_row_repeat1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(589), 1, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1896), 35, + STATE(771), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44410,31 +44691,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22989] = 6, - ACTIONS(1938), 1, + [23287] = 5, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1958), 1, - anon_sym_BSLASH, - STATE(565), 1, + STATE(549), 1, sym__last_token_punctuation, - ACTIONS(1827), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(564), 2, + STATE(566), 2, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1956), 34, + aux_sym__code_line_repeat1, + ACTIONS(1968), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(1966), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44460,33 +44736,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23043] = 9, - ACTIONS(1834), 1, + [23340] = 6, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1869), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1840), 1, + ACTIONS(1886), 1, anon_sym_BSLASH, - ACTIONS(1843), 1, + ACTIONS(1799), 2, sym__line_ending, - STATE(542), 1, - aux_sym_pipe_table_row_repeat1, - STATE(613), 1, + anon_sym_PIPE, + STATE(532), 3, sym__whitespace, - STATE(805), 1, - sym_pipe_table_cell, - STATE(926), 1, - sym__pipe_table_cell_contents, - ACTIONS(1831), 4, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1884), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1837), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44517,19 +44792,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [23103] = 4, - ACTIONS(1706), 1, - aux_sym__commonmark_whitespace_token1, - STATE(531), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1926), 3, + sym__word, + [23395] = 3, + ACTIONS(1972), 1, + anon_sym_BSLASH, + ACTIONS(1974), 1, + sym_block_continuation, + ACTIONS(1970), 40, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(1960), 35, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44555,7 +44832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -44563,68 +44839,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23153] = 9, - ACTIONS(1845), 1, - sym__line_ending, - ACTIONS(1869), 1, - anon_sym_BSLASH, + [23444] = 5, ACTIONS(1938), 1, aux_sym__commonmark_whitespace_token1, - STATE(542), 1, - aux_sym_pipe_table_row_repeat1, - STATE(582), 1, - sym__whitespace, - STATE(747), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [23213] = 4, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - STATE(538), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1962), 3, + STATE(826), 1, + sym__table_caption_line, + ACTIONS(1680), 2, sym__line_ending, - sym__soft_line_ending, sym__eof, - ACTIONS(1946), 35, + STATE(583), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(1940), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44660,25 +44886,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23263] = 8, - ACTIONS(5), 1, + [23496] = 6, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - STATE(364), 1, - sym_paragraph, - STATE(512), 1, - aux_sym_paragraph_repeat1, - STATE(537), 1, + ACTIONS(1817), 1, + anon_sym_PIPE, + ACTIONS(1924), 1, + sym__code_span_start, + ACTIONS(1978), 1, + anon_sym_BSLASH, + STATE(557), 3, sym__whitespace, - STATE(602), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1976), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44697,38 +44921,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [23321] = 7, - ACTIONS(1748), 1, + sym__word, + [23550] = 2, + ACTIONS(1982), 1, anon_sym_BSLASH, - ACTIONS(1928), 1, - anon_sym_PIPE, - STATE(721), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1806), 3, + ACTIONS(1980), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1742), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44758,19 +44975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [23377] = 5, - ACTIONS(1894), 1, + sym__word, + [23596] = 4, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(789), 1, - sym__table_caption_line, - ACTIONS(1680), 2, - sym__line_ending, - sym__eof, - STATE(555), 2, + STATE(552), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1896), 35, + ACTIONS(1986), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(1984), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44806,17 +45024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23429] = 4, - ACTIONS(5), 1, + [23646] = 4, + ACTIONS(1720), 1, aux_sym__commonmark_whitespace_token1, - STATE(545), 2, + STATE(559), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1948), 3, + ACTIONS(1990), 3, sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(1964), 35, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(1988), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44852,25 +45070,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23479] = 7, - ACTIONS(1748), 1, + [23696] = 9, + ACTIONS(1766), 1, + sym__line_ending, + ACTIONS(1805), 1, anon_sym_BSLASH, - ACTIONS(1928), 1, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1992), 1, anon_sym_PIPE, - STATE(707), 1, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(789), 1, sym_pipe_table_cell, - STATE(737), 1, + STATE(800), 1, sym__pipe_table_cell_contents, - ACTIONS(1966), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1742), 4, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1746), 30, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44901,18 +45121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [23535] = 5, - ACTIONS(1894), 1, + [23756] = 4, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(775), 1, - sym__table_caption_line, - ACTIONS(1680), 2, - sym__line_ending, - sym__eof, - STATE(555), 2, + STATE(572), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1896), 35, + ACTIONS(1996), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(1994), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44948,17 +45167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23587] = 3, - ACTIONS(1970), 1, + [23806] = 2, + ACTIONS(1998), 1, anon_sym_BSLASH, - ACTIONS(1972), 1, - sym_block_continuation, - ACTIONS(1968), 39, + ACTIONS(1832), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -44993,15 +45211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23635] = 2, - ACTIONS(1974), 1, - sym_block_continuation, - ACTIONS(1321), 39, + [23852] = 2, + ACTIONS(2002), 1, + anon_sym_BSLASH, + ACTIONS(2000), 40, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -45028,7 +45248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45036,17 +45255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23680] = 5, - ACTIONS(1680), 1, - sym__line_ending, - ACTIONS(1694), 1, + [23898] = 4, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(865), 1, - sym__atx_heading_line, - STATE(595), 2, + STATE(566), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1698), 35, + ACTIONS(1968), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(1966), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45082,16 +45301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23731] = 4, - ACTIONS(1894), 1, + [23948] = 4, + ACTIONS(1738), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1978), 2, - sym__line_ending, - sym__eof, - STATE(557), 2, + STATE(560), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1976), 35, + ACTIONS(1990), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2004), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45127,25 +45347,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23780] = 8, - ACTIONS(1744), 1, + [23998] = 6, + ACTIONS(1832), 1, + anon_sym_PIPE, + ACTIONS(2009), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(2012), 1, anon_sym_BSLASH, - STATE(500), 1, - aux_sym_pipe_table_row_repeat1, - STATE(607), 1, + ACTIONS(2015), 1, + sym__code_span_start, + STATE(557), 3, sym__whitespace, - STATE(703), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1742), 4, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2006), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45176,18 +45394,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [23837] = 4, - ACTIONS(1980), 1, + sym__word, + [24052] = 6, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1936), 2, - sym__line_ending, - sym__eof, - STATE(557), 2, + ACTIONS(1837), 1, + anon_sym_PIPE, + ACTIONS(1924), 1, + sym__code_span_start, + ACTIONS(1978), 1, + anon_sym_BSLASH, + STATE(557), 3, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1983), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1976), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45213,25 +45437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23886] = 2, - ACTIONS(1988), 1, - anon_sym_BSLASH, - ACTIONS(1986), 39, + [24106] = 4, + ACTIONS(2018), 1, + aux_sym__commonmark_whitespace_token1, + STATE(559), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2024), 3, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2021), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45257,6 +45481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45264,21 +45489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23931] = 5, - ACTIONS(1938), 1, + [24156] = 4, + ACTIONS(2026), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1958), 1, - anon_sym_BSLASH, - ACTIONS(1827), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(564), 2, + STATE(560), 2, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1956), 34, + aux_sym__code_line_repeat1, + ACTIONS(2024), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2029), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45304,77 +45527,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23982] = 5, - ACTIONS(1993), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1996), 1, + [24206] = 2, + ACTIONS(2034), 1, anon_sym_BSLASH, - ACTIONS(1882), 2, + ACTIONS(2032), 40, sym__line_ending, - anon_sym_PIPE, - STATE(560), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1990), 34, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - sym__word, - [24033] = 8, - ACTIONS(1744), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1869), 1, - anon_sym_BSLASH, - STATE(532), 1, - aux_sym_pipe_table_row_repeat1, - STATE(603), 1, - sym__whitespace, - STATE(747), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45404,19 +45576,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [24090] = 5, - ACTIONS(1938), 1, + sym__word, + [24252] = 6, + ACTIONS(1696), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2001), 1, - anon_sym_BSLASH, - ACTIONS(1888), 2, - sym__line_ending, + ACTIONS(1817), 1, anon_sym_PIPE, - STATE(560), 2, + ACTIONS(1924), 1, + sym__code_span_start, + ACTIONS(2038), 1, + anon_sym_BSLASH, + STATE(558), 3, sym__whitespace, + sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1999), 34, + ACTIONS(2036), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -45451,22 +45627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [24141] = 6, - ACTIONS(1744), 1, + [24306] = 8, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1827), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_BSLASH, - STATE(585), 1, - sym__last_token_punctuation, - STATE(583), 2, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(435), 1, + sym_paragraph, + STATE(525), 1, + aux_sym_paragraph_repeat1, + STATE(555), 1, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2003), 34, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45485,34 +45664,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24194] = 5, - ACTIONS(1938), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2001), 1, + [24364] = 9, + ACTIONS(1805), 1, anon_sym_BSLASH, - ACTIONS(1916), 2, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1896), 1, sym__line_ending, + ACTIONS(1992), 1, anon_sym_PIPE, - STATE(560), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1999), 34, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(782), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45543,22 +45728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [24245] = 5, - ACTIONS(1938), 1, + [24424] = 8, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2009), 1, - anon_sym_BSLASH, - ACTIONS(1916), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(562), 2, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(366), 1, + sym_paragraph, + STATE(527), 1, + aux_sym_paragraph_repeat1, + STATE(555), 1, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2007), 34, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45577,29 +45765,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24296] = 2, - ACTIONS(2011), 1, - sym_block_continuation, - ACTIONS(1321), 39, + [24482] = 4, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(572), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(1986), 3, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, + sym__soft_line_ending, + sym__eof, + ACTIONS(1994), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45633,15 +45824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24341] = 2, - ACTIONS(2013), 1, + [24532] = 2, + ACTIONS(2042), 1, anon_sym_BSLASH, - ACTIONS(1882), 39, + ACTIONS(2040), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -45676,17 +45868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24386] = 2, - ACTIONS(2017), 1, - anon_sym_BSLASH, - ACTIONS(2015), 39, + [24578] = 5, + ACTIONS(1938), 1, + aux_sym__commonmark_whitespace_token1, + STATE(827), 1, + sym__table_caption_line, + ACTIONS(1680), 2, sym__line_ending, sym__eof, - sym__pipe_table_line_ending, + STATE(583), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(1940), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45712,6 +45907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45719,18 +45915,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24431] = 4, - ACTIONS(1792), 1, + [24630] = 8, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1926), 2, - sym__line_ending, - sym__block_close, - STATE(570), 2, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(294), 1, + sym_paragraph, + STATE(529), 1, + aux_sym_paragraph_repeat1, + STATE(555), 1, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2019), 35, + STATE(616), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45749,7 +45952,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -45763,19 +45965,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24480] = 4, - ACTIONS(2021), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1936), 2, + [24688] = 9, + ACTIONS(1758), 1, sym__line_ending, - sym__block_close, - STATE(570), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2024), 35, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1992), 1, + anon_sym_PIPE, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(761), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45801,22 +46011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24529] = 1, - ACTIONS(1394), 39, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + [24748] = 6, + ACTIONS(1696), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1799), 1, + anon_sym_PIPE, + ACTIONS(1922), 1, + anon_sym_BSLASH, + ACTIONS(1924), 1, + sym__code_span_start, + STATE(547), 3, + sym__whitespace, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1920), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45842,22 +46058,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24571] = 1, - ACTIONS(1936), 39, + [24802] = 4, + ACTIONS(2044), 1, + aux_sym__commonmark_whitespace_token1, + STATE(572), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2024), 3, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, + sym__soft_line_ending, + sym__eof, + ACTIONS(2047), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45891,24 +46110,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24613] = 5, - ACTIONS(2030), 1, - anon_sym_DQUOTE, - ACTIONS(2032), 1, - anon_sym_BSLASH, - ACTIONS(2035), 1, - sym__soft_line_ending, - STATE(573), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2027), 33, + [24852] = 5, + ACTIONS(1938), 1, aux_sym__commonmark_whitespace_token1, + STATE(835), 1, + sym__table_caption_line, + ACTIONS(1680), 2, + sym__line_ending, + sym__eof, + STATE(583), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(1940), 35, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -45928,25 +46149,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [24663] = 2, - ACTIONS(2038), 1, + [24904] = 8, + ACTIONS(1700), 1, anon_sym_BSLASH, - ACTIONS(1843), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1859), 1, + anon_sym_PIPE, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(736), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45977,66 +46206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [24707] = 5, - ACTIONS(2042), 1, - anon_sym_DQUOTE, - ACTIONS(2044), 1, - anon_sym_BSLASH, - ACTIONS(2046), 1, - sym__soft_line_ending, - STATE(573), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2040), 33, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, - sym__word, - [24757] = 5, - ACTIONS(1744), 1, + [24961] = 4, + ACTIONS(1861), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1827), 1, - anon_sym_PIPE, - ACTIONS(2005), 1, - anon_sym_BSLASH, - STATE(583), 2, + ACTIONS(1990), 2, + sym__line_ending, + sym__block_close, + STATE(577), 2, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2003), 34, + aux_sym__code_line_repeat1, + ACTIONS(2050), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46062,50 +46243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - sym__word, - [24807] = 5, - ACTIONS(2051), 1, - anon_sym_SQUOTE, - ACTIONS(2053), 1, anon_sym_BSLASH, - ACTIONS(2056), 1, - sym__soft_line_ending, - STATE(577), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2048), 33, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_BSLASH_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -46113,23 +46251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24857] = 7, - ACTIONS(1802), 1, - sym__line_ending, - ACTIONS(1869), 1, + [25010] = 2, + ACTIONS(2052), 1, anon_sym_BSLASH, - ACTIONS(2059), 1, - anon_sym_PIPE, - STATE(756), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + ACTIONS(1793), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46160,14 +46293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [24911] = 1, - ACTIONS(1986), 39, + sym__word, + [25055] = 4, + ACTIONS(2054), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2024), 2, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_backtick, + STATE(577), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2057), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46201,11 +46339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24953] = 1, - ACTIONS(1986), 39, + [25104] = 2, + ACTIONS(2060), 1, + sym_block_continuation, + ACTIONS(1321), 39, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_tilde, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -46242,23 +46382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24995] = 7, - ACTIONS(1869), 1, + [25149] = 2, + ACTIONS(2064), 1, anon_sym_BSLASH, - ACTIONS(1966), 1, + ACTIONS(2062), 39, sym__line_ending, - ACTIONS(2059), 1, - anon_sym_PIPE, - STATE(752), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46289,67 +46424,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [25049] = 7, - ACTIONS(1806), 1, - sym__line_ending, - ACTIONS(1869), 1, + sym__word, + [25194] = 8, + ACTIONS(1700), 1, anon_sym_BSLASH, - ACTIONS(2059), 1, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(1859), 1, anon_sym_PIPE, - STATE(741), 1, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(714), 1, sym_pipe_table_cell, - STATE(783), 1, + STATE(741), 1, sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1867), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [25103] = 5, - ACTIONS(1744), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1916), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, - anon_sym_BSLASH, - STATE(597), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2061), 34, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46380,16 +46474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [25153] = 2, - ACTIONS(2067), 1, + [25251] = 2, + ACTIONS(2068), 1, anon_sym_BSLASH, - ACTIONS(2065), 38, + ACTIONS(2066), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -46423,20 +46517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [25197] = 5, - ACTIONS(1744), 1, + [25296] = 4, + ACTIONS(2070), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1916), 1, - anon_sym_PIPE, - ACTIONS(2071), 1, - anon_sym_BSLASH, - STATE(598), 2, + ACTIONS(2024), 2, + sym__line_ending, + sym__eof, + STATE(582), 2, sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2069), 34, + aux_sym__code_line_repeat1, + ACTIONS(2073), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46462,20 +46554,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25247] = 1, - ACTIONS(1394), 39, + [25345] = 4, + ACTIONS(1938), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2078), 2, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, + sym__eof, + STATE(582), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2076), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46509,23 +46607,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25289] = 5, - ACTIONS(2075), 1, - anon_sym_SQUOTE, - ACTIONS(2077), 1, + [25394] = 8, + ACTIONS(1859), 1, + anon_sym_PIPE, + ACTIONS(1924), 1, + sym__code_span_start, + ACTIONS(2084), 1, anon_sym_BSLASH, - ACTIONS(2079), 1, - sym__soft_line_ending, - STATE(590), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2073), 33, - aux_sym__commonmark_whitespace_token1, + STATE(571), 1, + sym__pipe_table_code_span, + STATE(816), 1, + sym_pipe_table_cell, + STATE(944), 1, + sym__pipe_table_cell_contents, + ACTIONS(2080), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2082), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_BSLASH_SQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -46551,14 +46655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [25339] = 1, - ACTIONS(1986), 39, + [25451] = 2, + ACTIONS(2086), 1, + sym_block_continuation, + ACTIONS(1321), 39, sym__line_ending, - sym__soft_line_ending, - sym__eof, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -46595,15 +46699,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25381] = 2, - ACTIONS(2081), 1, - sym_block_continuation, - ACTIONS(1321), 38, - sym__line_ending, - sym__block_close, + [25496] = 8, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1992), 1, + anon_sym_PIPE, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(761), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, + sym__backslash_escape, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46629,31 +46743,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [25425] = 5, - ACTIONS(2042), 1, - anon_sym_SQUOTE, - ACTIONS(2079), 1, - sym__soft_line_ending, - ACTIONS(2085), 1, + [25553] = 2, + ACTIONS(2088), 1, anon_sym_BSLASH, - STATE(577), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2083), 33, + ACTIONS(1780), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_BSLASH_SQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -46679,20 +46789,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25475] = 2, - ACTIONS(2089), 1, + [25598] = 8, + ACTIONS(1805), 1, anon_sym_BSLASH, - ACTIONS(2087), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(2090), 1, + anon_sym_PIPE, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(787), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46723,15 +46840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [25519] = 1, - ACTIONS(1936), 39, - sym__line_ending, - sym__soft_line_ending, - sym__eof, + [25655] = 8, + ACTIONS(1805), 1, + anon_sym_BSLASH, + ACTIONS(1809), 1, + sym__code_span_start, + ACTIONS(1992), 1, + anon_sym_PIPE, + STATE(544), 1, + sym__pipe_table_code_span, + STATE(789), 1, + sym_pipe_table_cell, + STATE(800), 1, + sym__pipe_table_cell_contents, + ACTIONS(1801), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, + sym__backslash_escape, + sym__word, + ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46757,24 +46884,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, + [25712] = 8, + ACTIONS(1924), 1, + sym__code_span_start, + ACTIONS(1992), 1, + anon_sym_PIPE, + ACTIONS(2084), 1, + anon_sym_BSLASH, + STATE(571), 1, + sym__pipe_table_code_span, + STATE(799), 1, + sym_pipe_table_cell, + STATE(944), 1, + sym__pipe_table_cell_contents, + ACTIONS(2080), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - [25561] = 2, - ACTIONS(2093), 1, - sym_block_continuation, - ACTIONS(2091), 38, + ACTIONS(2082), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + [25769] = 5, + ACTIONS(1680), 1, sym__line_ending, - sym__soft_line_ending, - sym__eof, + ACTIONS(1708), 1, + aux_sym__commonmark_whitespace_token1, + STATE(886), 1, + sym__atx_heading_line, + STATE(613), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(1712), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46793,6 +46969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -46807,14 +46984,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25605] = 1, - ACTIONS(1936), 39, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + [25820] = 8, + ACTIONS(1700), 1, + anon_sym_BSLASH, + ACTIONS(1706), 1, + sym__code_span_start, + ACTIONS(2092), 1, + anon_sym_PIPE, + STATE(501), 1, + sym__pipe_table_code_span, + STATE(730), 1, + sym_pipe_table_cell, + STATE(741), 1, + sym__pipe_table_cell_contents, + ACTIONS(1694), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, + sym__backslash_escape, + sym__word, + ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46840,25 +47028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [25647] = 4, - ACTIONS(1694), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2097), 1, + [25877] = 1, + ACTIONS(1394), 39, sym__line_ending, - STATE(596), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2095), 35, + sym__block_close, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46892,17 +47074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25695] = 4, - ACTIONS(1936), 1, + [25919] = 1, + ACTIONS(2032), 39, sym__line_ending, - ACTIONS(2099), 1, - aux_sym__commonmark_whitespace_token1, - STATE(596), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2102), 35, + sym__block_close, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46936,20 +47115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25743] = 5, - ACTIONS(1882), 1, - anon_sym_PIPE, - ACTIONS(2108), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2111), 1, - anon_sym_BSLASH, - STATE(597), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2105), 34, + [25961] = 1, + ACTIONS(2032), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46975,26 +47148,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25793] = 5, - ACTIONS(1744), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1888), 1, - anon_sym_PIPE, - ACTIONS(2063), 1, + [26003] = 2, + ACTIONS(2034), 1, anon_sym_BSLASH, - STATE(597), 2, - sym__whitespace, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2061), 34, + ACTIONS(2032), 38, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47024,23 +47195,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25843] = 2, - ACTIONS(2114), 1, + [26047] = 5, + ACTIONS(2096), 1, + anon_sym_SQUOTE, + ACTIONS(2098), 1, anon_sym_BSLASH, - ACTIONS(1810), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, + ACTIONS(2100), 1, + sym__soft_line_ending, + STATE(606), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2094), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -47066,20 +47240,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25887] = 5, - ACTIONS(2046), 1, - sym__soft_line_ending, - ACTIONS(2075), 1, + [26097] = 5, + ACTIONS(2104), 1, anon_sym_DQUOTE, - ACTIONS(2118), 1, + ACTIONS(2106), 1, anon_sym_BSLASH, - STATE(575), 3, + ACTIONS(2108), 1, + sym__soft_line_ending, + STATE(604), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(2116), 33, + ACTIONS(2102), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47113,8 +47288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [25937] = 1, - ACTIONS(1936), 38, + [26147] = 2, + ACTIONS(2110), 1, + sym_block_continuation, + ACTIONS(1321), 38, sym__line_ending, sym__block_close, sym__display_math_state_track_marker, @@ -47153,13 +47330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25978] = 1, - ACTIONS(2120), 38, + [26191] = 2, + ACTIONS(1998), 1, + anon_sym_BSLASH, + ACTIONS(1832), 38, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47179,13 +47358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47193,21 +47372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26019] = 6, - ACTIONS(1869), 1, + [26235] = 2, + ACTIONS(2002), 1, anon_sym_BSLASH, - ACTIONS(2059), 1, - anon_sym_PIPE, - STATE(741), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + ACTIONS(2000), 38, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47237,14 +47411,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [26070] = 1, - ACTIONS(1986), 38, + sym__word, + [26279] = 4, + ACTIONS(2024), 1, sym__line_ending, - sym__block_close, + ACTIONS(2112), 1, + aux_sym__commonmark_whitespace_token1, + STATE(602), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2115), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47278,21 +47458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26111] = 6, - ACTIONS(1869), 1, - anon_sym_BSLASH, - ACTIONS(2059), 1, - anon_sym_PIPE, - STATE(756), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + [26327] = 1, + ACTIONS(2024), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47318,25 +47491,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [26162] = 1, - ACTIONS(2122), 38, - sym__line_ending, + sym__word, + [26369] = 5, + ACTIONS(2096), 1, + anon_sym_DQUOTE, + ACTIONS(2108), 1, sym__soft_line_ending, - sym__eof, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(2120), 1, + anon_sym_BSLASH, + STATE(611), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(2118), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -47349,35 +47529,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [26203] = 6, - ACTIONS(1748), 1, + [26419] = 2, + ACTIONS(1982), 1, anon_sym_BSLASH, - ACTIONS(1928), 1, - anon_sym_PIPE, - STATE(721), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1742), 4, + ACTIONS(1980), 38, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47407,15 +47583,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [26254] = 2, - ACTIONS(2013), 1, + sym__word, + [26463] = 5, + ACTIONS(2125), 1, + anon_sym_SQUOTE, + ACTIONS(2127), 1, anon_sym_BSLASH, - ACTIONS(1882), 37, + ACTIONS(2130), 1, + sym__soft_line_ending, + STATE(606), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2122), 33, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_BSLASH_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [26513] = 1, + ACTIONS(2024), 39, sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47442,6 +47664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47449,25 +47672,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26297] = 6, - ACTIONS(1928), 1, - anon_sym_PIPE, - ACTIONS(2128), 1, + [26555] = 5, + ACTIONS(2100), 1, + sym__soft_line_ending, + ACTIONS(2104), 1, + anon_sym_SQUOTE, + ACTIONS(2135), 1, anon_sym_BSLASH, - STATE(816), 1, - sym_pipe_table_cell, - STATE(926), 1, - sym__pipe_table_cell_contents, - ACTIONS(2124), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2126), 30, + STATE(597), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2133), 33, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -47493,11 +47714,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [26348] = 1, - ACTIONS(1394), 38, + sym__word, + [26605] = 2, + ACTIONS(2139), 1, + sym_block_continuation, + ACTIONS(2137), 38, sym__line_ending, - sym__block_close, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -47519,7 +47745,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -47534,21 +47759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26389] = 6, - ACTIONS(1748), 1, - anon_sym_BSLASH, - ACTIONS(2130), 1, - anon_sym_PIPE, - STATE(705), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1742), 4, + [26649] = 1, + ACTIONS(2024), 39, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47574,19 +47792,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [26440] = 2, - ACTIONS(1988), 1, + sym__word, + [26691] = 5, + ACTIONS(2144), 1, + anon_sym_DQUOTE, + ACTIONS(2146), 1, anon_sym_BSLASH, - ACTIONS(1986), 37, + ACTIONS(2149), 1, + sym__soft_line_ending, + STATE(611), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(2141), 33, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, + sym__word, + [26741] = 1, + ACTIONS(2032), 39, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47613,6 +47878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47620,21 +47886,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26483] = 6, - ACTIONS(2059), 1, - anon_sym_PIPE, - ACTIONS(2128), 1, - anon_sym_BSLASH, - STATE(787), 1, - sym_pipe_table_cell, - STATE(926), 1, - sym__pipe_table_cell_contents, - ACTIONS(2124), 4, + [26783] = 4, + ACTIONS(1708), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2154), 1, + sym__line_ending, + STATE(602), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2152), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2126), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47660,26 +47922,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [26534] = 6, - ACTIONS(1869), 1, + sym__word, + [26831] = 1, + ACTIONS(1394), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2132), 1, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, anon_sym_PIPE, - STATE(751), 1, - sym_pipe_table_cell, - STATE(783), 1, - sym__pipe_table_cell_contents, - ACTIONS(1865), 4, + anon_sym_TILDE, + sym__word, + [26873] = 1, + ACTIONS(2024), 38, + sym__line_ending, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1867), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47705,26 +48003,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [26585] = 6, - ACTIONS(1748), 1, + sym__word, + [26914] = 1, + ACTIONS(2156), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(1928), 1, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, anon_sym_PIPE, - STATE(696), 1, - sym_pipe_table_cell, - STATE(737), 1, - sym__pipe_table_cell_contents, - ACTIONS(1742), 4, + anon_sym_TILDE, + sym__word, + [26955] = 2, + ACTIONS(2088), 1, + anon_sym_BSLASH, + ACTIONS(1780), 37, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1746), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47755,12 +48091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [26636] = 1, - ACTIONS(1986), 38, - sym__line_ending, - sym__eof, + sym__word, + [26998] = 2, + ACTIONS(1998), 1, + anon_sym_BSLASH, + ACTIONS(1832), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47787,7 +48126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47795,10 +48133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26677] = 1, - ACTIONS(1936), 38, + [27041] = 1, + ACTIONS(1394), 38, sym__line_ending, - sym__eof, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -47835,19 +48173,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26718] = 3, - ACTIONS(2134), 1, + [27082] = 2, + ACTIONS(2064), 1, anon_sym_BSLASH, - ACTIONS(2136), 1, - sym_block_continuation, - ACTIONS(2091), 35, - sym__soft_line_ending, + ACTIONS(2062), 37, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, - anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -47873,15 +48212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26762] = 2, - ACTIONS(1988), 1, + [27125] = 2, + ACTIONS(2034), 1, anon_sym_BSLASH, - ACTIONS(1986), 36, + ACTIONS(2032), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -47916,12 +48255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26804] = 2, - ACTIONS(2013), 1, + [27168] = 2, + ACTIONS(2052), 1, anon_sym_BSLASH, - ACTIONS(1882), 36, + ACTIONS(1793), 37, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -47953,17 +48294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26846] = 2, - ACTIONS(2038), 1, - anon_sym_BSLASH, - ACTIONS(1843), 36, + [27211] = 1, + ACTIONS(2032), 38, sym__line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47990,19 +48328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26888] = 3, - ACTIONS(2134), 1, + [27252] = 2, + ACTIONS(2002), 1, anon_sym_BSLASH, - ACTIONS(2138), 1, - sym_block_continuation, - ACTIONS(2091), 35, - sym__soft_line_ending, + ACTIONS(2000), 37, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48035,15 +48376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [26932] = 2, - ACTIONS(2067), 1, + [27295] = 2, + ACTIONS(1982), 1, anon_sym_BSLASH, - ACTIONS(2065), 36, - sym__line_ending, + ACTIONS(1980), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -48075,15 +48415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26974] = 2, - ACTIONS(2114), 1, + [27338] = 2, + ACTIONS(2068), 1, anon_sym_BSLASH, - ACTIONS(1810), 36, + ACTIONS(2066), 37, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -48117,9 +48459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [27016] = 1, - ACTIONS(1936), 37, + [27381] = 1, + ACTIONS(2158), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48141,7 +48485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -48156,14 +48499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27056] = 2, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2087), 36, + [27422] = 1, + ACTIONS(2032), 38, sym__line_ending, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48190,15 +48531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27098] = 1, - ACTIONS(1986), 37, + [27463] = 1, + ACTIONS(2024), 38, sym__line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48235,12 +48579,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27138] = 2, - ACTIONS(2140), 1, + [27504] = 4, + ACTIONS(2160), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2166), 1, + sym__code_span_close, + STATE(630), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2163), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2030), 35, - sym__soft_line_ending, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [27550] = 4, + ACTIONS(2168), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2172), 1, + sym__code_span_close, + STATE(634), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2170), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48266,24 +48655,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [27179] = 2, - ACTIONS(2142), 1, + [27596] = 3, + ACTIONS(2174), 1, anon_sym_BSLASH, - ACTIONS(2122), 35, + ACTIONS(2176), 1, + sym_block_continuation, + ACTIONS(2137), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -48311,11 +48703,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [27220] = 1, - ACTIONS(1986), 36, + [27640] = 3, + ACTIONS(2174), 1, + anon_sym_BSLASH, + ACTIONS(2178), 1, + sym_block_continuation, + ACTIONS(2137), 35, sym__soft_line_ending, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, + sym__word, + [27684] = 4, + ACTIONS(2168), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2182), 1, + sym__code_span_close, + STATE(630), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2180), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [27730] = 4, + ACTIONS(2168), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2186), 1, + sym__code_span_close, + STATE(639), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2184), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [27776] = 4, + ACTIONS(2168), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2190), 1, + sym__code_span_close, + STATE(638), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2188), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [27822] = 1, + ACTIONS(2024), 37, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48337,6 +48895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -48351,10 +48910,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27259] = 2, - ACTIONS(2144), 1, + [27862] = 4, + ACTIONS(2168), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2192), 1, + sym__code_span_close, + STATE(630), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2180), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [27908] = 4, + ACTIONS(2168), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2194), 1, + sym__code_span_close, + STATE(630), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2180), 33, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [27954] = 1, + ACTIONS(2032), 37, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [27994] = 2, + ACTIONS(2196), 1, + anon_sym_BSLASH, + ACTIONS(2158), 35, + sym__soft_line_ending, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, + sym__word, + [28035] = 2, + ACTIONS(2196), 1, anon_sym_BSLASH, - ACTIONS(2051), 35, + ACTIONS(2158), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -48390,10 +49111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27300] = 2, - ACTIONS(2142), 1, + [28076] = 2, + ACTIONS(2198), 1, anon_sym_BSLASH, - ACTIONS(2122), 35, + ACTIONS(2125), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -48429,7 +49150,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27341] = 15, + [28117] = 2, + ACTIONS(2200), 1, + anon_sym_BSLASH, + ACTIONS(2144), 35, + sym__soft_line_ending, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, + sym__word, + [28158] = 1, + ACTIONS(2032), 36, + sym__soft_line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [28197] = 1, + ACTIONS(2032), 35, + sym__code_span_close, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [28235] = 1, + ACTIONS(2166), 35, + sym__code_span_close, + aux_sym__commonmark_whitespace_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [28273] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -48442,7 +49314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2146), 1, + ACTIONS(2202), 1, ts_builtin_sym_end, STATE(66), 1, sym__atx_heading1, @@ -48456,31 +49328,31 @@ static const uint16_t ts_small_parse_table[] = { sym__atx_heading5, STATE(114), 1, sym__atx_heading6, - STATE(635), 2, + STATE(649), 2, sym_section, aux_sym_document_repeat2, - STATE(676), 6, + STATE(706), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [27393] = 15, - ACTIONS(17), 1, + [28325] = 15, + ACTIONS(2204), 1, + ts_builtin_sym_end, + ACTIONS(2206), 1, sym_atx_h1_marker, - ACTIONS(19), 1, + ACTIONS(2209), 1, sym_atx_h2_marker, - ACTIONS(21), 1, + ACTIONS(2212), 1, sym_atx_h3_marker, - ACTIONS(23), 1, + ACTIONS(2215), 1, sym_atx_h4_marker, - ACTIONS(25), 1, + ACTIONS(2218), 1, sym_atx_h5_marker, - ACTIONS(27), 1, + ACTIONS(2221), 1, sym_atx_h6_marker, - ACTIONS(2148), 1, - ts_builtin_sym_end, STATE(66), 1, sym__atx_heading1, STATE(77), 1, @@ -48493,31 +49365,31 @@ static const uint16_t ts_small_parse_table[] = { sym__atx_heading5, STATE(114), 1, sym__atx_heading6, - STATE(635), 2, + STATE(649), 2, sym_section, aux_sym_document_repeat2, - STATE(676), 6, + STATE(706), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [27445] = 15, - ACTIONS(2150), 1, - ts_builtin_sym_end, - ACTIONS(2152), 1, + [28377] = 15, + ACTIONS(17), 1, sym_atx_h1_marker, - ACTIONS(2155), 1, + ACTIONS(19), 1, sym_atx_h2_marker, - ACTIONS(2158), 1, + ACTIONS(21), 1, sym_atx_h3_marker, - ACTIONS(2161), 1, + ACTIONS(23), 1, sym_atx_h4_marker, - ACTIONS(2164), 1, + ACTIONS(25), 1, sym_atx_h5_marker, - ACTIONS(2167), 1, + ACTIONS(27), 1, sym_atx_h6_marker, + ACTIONS(2224), 1, + ts_builtin_sym_end, STATE(66), 1, sym__atx_heading1, STATE(77), 1, @@ -48530,17 +49402,17 @@ static const uint16_t ts_small_parse_table[] = { sym__atx_heading5, STATE(114), 1, sym__atx_heading6, - STATE(635), 2, + STATE(649), 2, sym_section, aux_sym_document_repeat2, - STATE(676), 6, + STATE(706), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [27497] = 15, + [28429] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -48567,17 +49439,17 @@ static const uint16_t ts_small_parse_table[] = { sym__atx_heading5, STATE(114), 1, sym__atx_heading6, - STATE(635), 2, + STATE(649), 2, sym_section, aux_sym_document_repeat2, - STATE(676), 6, + STATE(706), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [27549] = 15, + [28481] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -48590,7 +49462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2170), 1, + ACTIONS(2226), 1, ts_builtin_sym_end, STATE(66), 1, sym__atx_heading1, @@ -48604,17 +49476,17 @@ static const uint16_t ts_small_parse_table[] = { sym__atx_heading5, STATE(114), 1, sym__atx_heading6, - STATE(635), 2, + STATE(649), 2, sym_section, aux_sym_document_repeat2, - STATE(676), 6, + STATE(706), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [27601] = 12, + [28533] = 12, ACTIONS(1676), 1, sym_raw_specifier, ACTIONS(1678), 1, @@ -48629,2812 +49501,2812 @@ static const uint16_t ts_small_parse_table[] = { sym_class_specifier, ACTIONS(1692), 1, sym_key_value_key, - STATE(645), 1, + STATE(663), 1, sym__commonmark_whitespace, - STATE(651), 1, + STATE(669), 1, aux_sym_commonmark_attribute_repeat1, - STATE(679), 1, + STATE(705), 1, aux_sym_commonmark_attribute_repeat2, - STATE(729), 1, + STATE(743), 1, sym__attribute, - STATE(733), 1, + STATE(744), 1, aux_sym_commonmark_attribute_repeat3, - [27638] = 8, - ACTIONS(1720), 1, + [28570] = 8, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(2172), 1, + ACTIONS(2228), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, STATE(477), 1, sym__newline, - STATE(658), 1, + STATE(672), 1, sym__whitespace, - STATE(874), 2, + STATE(902), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [27666] = 8, - ACTIONS(1710), 1, + [28598] = 8, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(2172), 1, + ACTIONS(2228), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(478), 1, + STATE(476), 1, sym__newline, - STATE(659), 1, + STATE(670), 1, sym__whitespace, - STATE(880), 2, + STATE(901), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [27694] = 8, - ACTIONS(1710), 1, + [28626] = 8, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(2172), 1, + ACTIONS(2228), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(473), 1, + STATE(485), 1, sym__newline, - STATE(653), 1, + STATE(675), 1, sym__whitespace, - STATE(846), 2, + STATE(904), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [27722] = 8, - ACTIONS(1720), 1, + [28654] = 8, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(2172), 1, + ACTIONS(2228), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(479), 1, + STATE(490), 1, sym__newline, - STATE(657), 1, + STATE(673), 1, sym__whitespace, - STATE(882), 2, + STATE(925), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [27750] = 8, - ACTIONS(1710), 1, + [28682] = 8, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(2172), 1, + ACTIONS(2228), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(486), 1, + STATE(474), 1, sym__newline, - STATE(660), 1, + STATE(671), 1, sym__whitespace, - STATE(906), 2, + STATE(923), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [27778] = 8, - ACTIONS(1720), 1, + [28710] = 8, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(2172), 1, + ACTIONS(2228), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(487), 1, + STATE(486), 1, sym__newline, - STATE(661), 1, + STATE(667), 1, sym__whitespace, - STATE(907), 2, + STATE(920), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [27806] = 10, - ACTIONS(1686), 1, - sym_id_specifier, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, - sym_key_value_key, - ACTIONS(2178), 1, - sym_raw_specifier, - ACTIONS(2180), 1, - anon_sym_RBRACE, - ACTIONS(2182), 1, - sym_commonmark_name, - STATE(654), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(690), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(729), 1, - sym__attribute, - STATE(731), 1, - aux_sym_commonmark_attribute_repeat3, - [27837] = 8, - ACTIONS(2184), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2186), 1, - anon_sym_DASH, - ACTIONS(2188), 1, - anon_sym_COLON, - STATE(647), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(666), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(694), 1, - sym__whitespace, - STATE(704), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2190), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [27864] = 8, - ACTIONS(2192), 1, + [28738] = 8, + ACTIONS(2234), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2195), 1, + ACTIONS(2237), 1, anon_sym_DASH, - ACTIONS(2198), 1, + ACTIONS(2240), 1, anon_sym_COLON, - STATE(647), 1, + STATE(660), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(727), 1, + STATE(751), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(758), 1, + STATE(783), 1, sym__whitespace, - STATE(803), 1, + STATE(817), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2201), 3, + ACTIONS(2243), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [27891] = 8, - ACTIONS(2184), 1, + [28765] = 8, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2186), 1, + ACTIONS(2247), 1, anon_sym_DASH, - ACTIONS(2188), 1, + ACTIONS(2249), 1, anon_sym_COLON, - STATE(647), 1, + STATE(660), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(666), 1, + STATE(681), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(677), 1, + STATE(683), 1, sym__whitespace, - STATE(714), 1, + STATE(723), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2203), 3, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [27918] = 8, - ACTIONS(2184), 1, + [28792] = 8, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2186), 1, + ACTIONS(2247), 1, anon_sym_DASH, - ACTIONS(2188), 1, + ACTIONS(2249), 1, anon_sym_COLON, - STATE(647), 1, + STATE(660), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(666), 1, + STATE(681), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(693), 1, + STATE(687), 1, sym__whitespace, STATE(719), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2205), 3, + ACTIONS(2253), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [27945] = 6, - ACTIONS(2176), 1, - aux_sym_info_string_token1, - ACTIONS(2207), 1, - anon_sym_LBRACE, - ACTIONS(2209), 1, - anon_sym_LBRACE_RBRACE, - ACTIONS(2211), 1, - sym_fenced_div_note_id, - STATE(834), 2, - sym__qmd_attribute, - sym_info_string, - STATE(934), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [27967] = 9, + [28819] = 10, ACTIONS(1686), 1, sym_id_specifier, ACTIONS(1688), 1, sym_class_specifier, ACTIONS(1692), 1, sym_key_value_key, - ACTIONS(2180), 1, + ACTIONS(2255), 1, + sym_raw_specifier, + ACTIONS(2257), 1, anon_sym_RBRACE, - ACTIONS(2182), 1, + ACTIONS(2259), 1, sym_commonmark_name, - STATE(690), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(712), 1, + STATE(666), 1, aux_sym_commonmark_attribute_repeat1, - STATE(729), 1, + STATE(684), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(743), 1, sym__attribute, - STATE(731), 1, + STATE(750), 1, aux_sym_commonmark_attribute_repeat3, - [27995] = 9, - ACTIONS(2213), 1, + [28850] = 8, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2215), 1, + ACTIONS(2247), 1, anon_sym_DASH, - ACTIONS(2217), 1, + ACTIONS(2249), 1, anon_sym_COLON, - ACTIONS(2219), 1, - anon_sym_PIPE, - STATE(649), 1, + STATE(660), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(715), 1, - sym_pipe_table_delimiter_row, - STATE(727), 1, + STATE(681), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(734), 1, + STATE(697), 1, sym__whitespace, - STATE(803), 1, + STATE(735), 1, sym_pipe_table_delimiter_cell, - [28023] = 6, - ACTIONS(1710), 1, + ACTIONS(2261), 3, sym__line_ending, - ACTIONS(2174), 1, - anon_sym_LBRACE, - ACTIONS(2176), 1, - aux_sym_info_string_token1, - STATE(484), 1, - sym__newline, - STATE(932), 2, - sym__qmd_attribute, - sym_info_string, - STATE(934), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [28045] = 9, + sym__eof, + sym__pipe_table_line_ending, + [28877] = 9, + ACTIONS(2263), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2265), 1, + anon_sym_DASH, + ACTIONS(2267), 1, + anon_sym_COLON, + ACTIONS(2269), 1, + anon_sym_PIPE, + STATE(662), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(734), 1, + sym_pipe_table_delimiter_row, + STATE(749), 1, + sym__whitespace, + STATE(751), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(817), 1, + sym_pipe_table_delimiter_cell, + [28905] = 9, ACTIONS(1686), 1, sym_id_specifier, ACTIONS(1688), 1, sym_class_specifier, ACTIONS(1692), 1, sym_key_value_key, - ACTIONS(2182), 1, + ACTIONS(2259), 1, sym_commonmark_name, - ACTIONS(2221), 1, + ACTIONS(2271), 1, anon_sym_RBRACE, - STATE(691), 1, + STATE(682), 1, aux_sym_commonmark_attribute_repeat2, - STATE(712), 1, + STATE(716), 1, aux_sym_commonmark_attribute_repeat1, - STATE(729), 1, + STATE(743), 1, sym__attribute, - STATE(735), 1, + STATE(752), 1, aux_sym_commonmark_attribute_repeat3, - [28073] = 9, - ACTIONS(2213), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2215), 1, - anon_sym_DASH, - ACTIONS(2217), 1, - anon_sym_COLON, - ACTIONS(2219), 1, - anon_sym_PIPE, - STATE(649), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(698), 1, - sym_pipe_table_delimiter_row, - STATE(727), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(734), 1, - sym__whitespace, - STATE(803), 1, - sym_pipe_table_delimiter_cell, - [28101] = 6, - ACTIONS(2176), 1, + [28933] = 6, + ACTIONS(1742), 1, + sym__line_ending, + ACTIONS(2230), 1, + anon_sym_LBRACE, + ACTIONS(2232), 1, + aux_sym_info_string_token1, + STATE(496), 1, + sym__newline, + STATE(942), 2, + sym__qmd_attribute, + sym_info_string, + STATE(993), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [28955] = 6, + ACTIONS(2232), 1, aux_sym_info_string_token1, - ACTIONS(2207), 1, + ACTIONS(2273), 1, anon_sym_LBRACE, - ACTIONS(2223), 1, + ACTIONS(2275), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2225), 1, + ACTIONS(2277), 1, sym_fenced_div_note_id, - STATE(916), 2, + STATE(858), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28123] = 6, - ACTIONS(1720), 1, + [28977] = 9, + ACTIONS(1686), 1, + sym_id_specifier, + ACTIONS(1688), 1, + sym_class_specifier, + ACTIONS(1692), 1, + sym_key_value_key, + ACTIONS(2257), 1, + anon_sym_RBRACE, + ACTIONS(2259), 1, + sym_commonmark_name, + STATE(684), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(716), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(743), 1, + sym__attribute, + STATE(750), 1, + aux_sym_commonmark_attribute_repeat3, + [29005] = 6, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(491), 1, + STATE(479), 1, sym__newline, - STATE(890), 2, + STATE(905), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28145] = 6, - ACTIONS(1720), 1, + [29027] = 6, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(485), 1, + STATE(491), 1, sym__newline, - STATE(897), 2, + STATE(930), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28167] = 6, - ACTIONS(1710), 1, + [29049] = 6, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, STATE(480), 1, sym__newline, - STATE(889), 2, + STATE(906), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28189] = 6, - ACTIONS(1710), 1, + [29071] = 6, + ACTIONS(1742), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(488), 1, + STATE(492), 1, sym__newline, - STATE(912), 2, + STATE(931), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28211] = 6, - ACTIONS(1720), 1, + [29093] = 9, + ACTIONS(2263), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2265), 1, + anon_sym_DASH, + ACTIONS(2267), 1, + anon_sym_COLON, + ACTIONS(2269), 1, + anon_sym_PIPE, + STATE(662), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(728), 1, + sym_pipe_table_delimiter_row, + STATE(749), 1, + sym__whitespace, + STATE(751), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(817), 1, + sym_pipe_table_delimiter_cell, + [29121] = 6, + ACTIONS(1724), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + ACTIONS(2232), 1, aux_sym_info_string_token1, - STATE(489), 1, + STATE(483), 1, sym__newline, - STATE(913), 2, + STATE(929), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28233] = 9, - ACTIONS(2213), 1, + [29143] = 9, + ACTIONS(2263), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2215), 1, + ACTIONS(2265), 1, anon_sym_DASH, - ACTIONS(2217), 1, + ACTIONS(2267), 1, anon_sym_COLON, - ACTIONS(2219), 1, + ACTIONS(2269), 1, anon_sym_PIPE, - STATE(649), 1, + STATE(662), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(710), 1, + STATE(732), 1, sym_pipe_table_delimiter_row, - STATE(727), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(734), 1, + STATE(749), 1, sym__whitespace, - STATE(803), 1, + STATE(751), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(817), 1, sym_pipe_table_delimiter_cell, - [28261] = 6, - ACTIONS(2176), 1, + [29171] = 6, + ACTIONS(2232), 1, + aux_sym_info_string_token1, + ACTIONS(2273), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_LBRACE_RBRACE, + ACTIONS(2281), 1, + sym_fenced_div_note_id, + STATE(909), 2, + sym__qmd_attribute, + sym_info_string, + STATE(993), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [29193] = 6, + ACTIONS(2232), 1, aux_sym_info_string_token1, - ACTIONS(2207), 1, + ACTIONS(2273), 1, anon_sym_LBRACE, - ACTIONS(2227), 1, + ACTIONS(2283), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2229), 1, + ACTIONS(2285), 1, sym_fenced_div_note_id, - STATE(892), 2, + STATE(934), 2, sym__qmd_attribute, sym_info_string, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28283] = 4, - ACTIONS(2233), 1, + [29215] = 3, + ACTIONS(2289), 1, anon_sym_DASH, - ACTIONS(2235), 1, - anon_sym_COLON, - STATE(665), 1, + STATE(679), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2231), 5, + ACTIONS(2287), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, + anon_sym_COLON, anon_sym_PIPE, - [28300] = 3, - ACTIONS(2239), 1, + [29230] = 4, + ACTIONS(2294), 1, anon_sym_DASH, - STATE(665), 1, + ACTIONS(2296), 1, + anon_sym_COLON, + STATE(679), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2237), 6, + ACTIONS(2292), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, - anon_sym_COLON, anon_sym_PIPE, - [28315] = 4, - ACTIONS(2233), 1, + [29247] = 4, + ACTIONS(2294), 1, anon_sym_DASH, - ACTIONS(2244), 1, + ACTIONS(2300), 1, anon_sym_COLON, - STATE(665), 1, + STATE(679), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2242), 5, + ACTIONS(2298), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [28332] = 5, - ACTIONS(1702), 1, + [29264] = 7, + ACTIONS(1688), 1, + sym_class_specifier, + ACTIONS(1692), 1, + sym_key_value_key, + ACTIONS(2259), 1, + sym_commonmark_name, + ACTIONS(2302), 1, + anon_sym_RBRACE, + STATE(739), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(743), 1, + sym__attribute, + STATE(747), 1, + aux_sym_commonmark_attribute_repeat3, + [29286] = 5, + ACTIONS(2247), 1, + anon_sym_DASH, + ACTIONS(2249), 1, + anon_sym_COLON, + STATE(681), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(725), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2304), 3, sym__line_ending, - ACTIONS(2174), 1, + sym__eof, + sym__pipe_table_line_ending, + [29304] = 7, + ACTIONS(1688), 1, + sym_class_specifier, + ACTIONS(1692), 1, + sym_key_value_key, + ACTIONS(2259), 1, + sym_commonmark_name, + ACTIONS(2271), 1, + anon_sym_RBRACE, + STATE(739), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(743), 1, + sym__attribute, + STATE(752), 1, + aux_sym_commonmark_attribute_repeat3, + [29326] = 5, + ACTIONS(1714), 1, + sym__line_ending, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(421), 1, + STATE(431), 1, sym__newline, - STATE(929), 1, + STATE(903), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28350] = 5, - ACTIONS(1700), 1, + [29344] = 7, + ACTIONS(2263), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2265), 1, + anon_sym_DASH, + ACTIONS(2267), 1, + anon_sym_COLON, + STATE(661), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(751), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(783), 1, + sym__whitespace, + STATE(817), 1, + sym_pipe_table_delimiter_cell, + [29366] = 5, + ACTIONS(2247), 1, + anon_sym_DASH, + ACTIONS(2249), 1, + anon_sym_COLON, + STATE(681), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(712), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2261), 3, sym__line_ending, - ACTIONS(2174), 1, + sym__eof, + sym__pipe_table_line_ending, + [29384] = 4, + ACTIONS(2306), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2310), 1, + sym_key_value_key, + STATE(742), 1, + sym__commonmark_whitespace, + ACTIONS(2308), 4, + anon_sym_RBRACE, + sym_commonmark_name, + sym_id_specifier, + sym_class_specifier, + [29400] = 5, + ACTIONS(1718), 1, + sym__line_ending, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(269), 1, sym__newline, - STATE(854), 1, + STATE(875), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28368] = 5, - ACTIONS(1700), 1, + [29418] = 7, + ACTIONS(2263), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2265), 1, + anon_sym_DASH, + ACTIONS(2267), 1, + anon_sym_COLON, + STATE(664), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(751), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(783), 1, + sym__whitespace, + STATE(817), 1, + sym_pipe_table_delimiter_cell, + [29440] = 5, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(273), 1, sym__newline, - STATE(855), 1, + STATE(876), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28386] = 5, - ACTIONS(1700), 1, + [29458] = 5, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(275), 1, sym__newline, - STATE(856), 1, + STATE(877), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28404] = 5, - ACTIONS(1700), 1, + [29476] = 5, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(279), 1, sym__newline, - STATE(857), 1, + STATE(878), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28422] = 5, - ACTIONS(1700), 1, + [29494] = 5, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(282), 1, sym__newline, - STATE(858), 1, + STATE(879), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28440] = 5, - ACTIONS(1700), 1, + [29512] = 5, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(284), 1, sym__newline, - STATE(859), 1, + STATE(880), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28458] = 4, - ACTIONS(2246), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2250), 1, - sym_key_value_key, - STATE(736), 1, - sym__commonmark_whitespace, - ACTIONS(2248), 4, - anon_sym_RBRACE, - sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [28474] = 7, - ACTIONS(2213), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2215), 1, - anon_sym_DASH, - ACTIONS(2217), 1, - anon_sym_COLON, - STATE(648), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(727), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(758), 1, - sym__whitespace, - STATE(803), 1, - sym_pipe_table_delimiter_cell, - [28496] = 1, - ACTIONS(1586), 7, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - ts_builtin_sym_end, - [28506] = 5, - ACTIONS(2186), 1, - anon_sym_DASH, - ACTIONS(2188), 1, - anon_sym_COLON, - STATE(666), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(701), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2190), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [28524] = 5, - ACTIONS(1702), 1, + [29530] = 5, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(433), 1, sym__newline, - STATE(901), 1, + STATE(916), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28542] = 7, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, - sym_key_value_key, - ACTIONS(2180), 1, - anon_sym_RBRACE, - ACTIONS(2182), 1, - sym_commonmark_name, - STATE(728), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(729), 1, - sym__attribute, - STATE(731), 1, - aux_sym_commonmark_attribute_repeat3, - [28564] = 5, - ACTIONS(1702), 1, + [29548] = 5, + ACTIONS(2247), 1, + anon_sym_DASH, + ACTIONS(2249), 1, + anon_sym_COLON, + STATE(681), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(721), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2251), 3, sym__line_ending, - ACTIONS(2174), 1, + sym__eof, + sym__pipe_table_line_ending, + [29566] = 5, + ACTIONS(1714), 1, + sym__line_ending, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(423), 1, sym__newline, - STATE(831), 1, + STATE(883), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28582] = 5, - ACTIONS(1702), 1, + [29584] = 5, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(431), 1, + STATE(427), 1, sym__newline, - STATE(832), 1, + STATE(895), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28600] = 5, - ACTIONS(1704), 1, + [29602] = 5, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(352), 1, + STATE(354), 1, sym__newline, - STATE(904), 1, + STATE(837), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28618] = 5, - ACTIONS(1704), 1, + [29620] = 5, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(356), 1, sym__newline, - STATE(905), 1, + STATE(838), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28636] = 5, - ACTIONS(1704), 1, + [29638] = 5, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(356), 1, + STATE(425), 1, sym__newline, - STATE(908), 1, + STATE(890), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28654] = 5, - ACTIONS(1704), 1, + [29656] = 5, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(358), 1, sym__newline, - STATE(910), 1, + STATE(839), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28672] = 5, - ACTIONS(1704), 1, + [29674] = 5, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(360), 1, sym__newline, - STATE(914), 1, + STATE(840), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28690] = 5, - ACTIONS(1704), 1, + [29692] = 7, + ACTIONS(1688), 1, + sym_class_specifier, + ACTIONS(1692), 1, + sym_key_value_key, + ACTIONS(2257), 1, + anon_sym_RBRACE, + ACTIONS(2259), 1, + sym_commonmark_name, + STATE(739), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(743), 1, + sym__attribute, + STATE(750), 1, + aux_sym_commonmark_attribute_repeat3, + [29714] = 1, + ACTIONS(1586), 7, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + ts_builtin_sym_end, + [29724] = 5, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, STATE(362), 1, sym__newline, - STATE(920), 1, + STATE(841), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28708] = 7, - ACTIONS(2213), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2215), 1, - anon_sym_DASH, - ACTIONS(2217), 1, - anon_sym_COLON, - STATE(646), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(727), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(758), 1, - sym__whitespace, - STATE(803), 1, - sym_pipe_table_delimiter_cell, - [28730] = 5, - ACTIONS(1702), 1, + [29742] = 5, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(425), 1, + STATE(364), 1, sym__newline, - STATE(836), 1, + STATE(842), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28748] = 7, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, - sym_key_value_key, - ACTIONS(2182), 1, - sym_commonmark_name, - ACTIONS(2221), 1, - anon_sym_RBRACE, - STATE(728), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(729), 1, - sym__attribute, - STATE(735), 1, - aux_sym_commonmark_attribute_repeat3, - [28770] = 7, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, - sym_key_value_key, - ACTIONS(2182), 1, - sym_commonmark_name, - ACTIONS(2252), 1, - anon_sym_RBRACE, - STATE(728), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(729), 1, - sym__attribute, - STATE(739), 1, - aux_sym_commonmark_attribute_repeat3, - [28792] = 5, - ACTIONS(1702), 1, + [29760] = 5, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2174), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(423), 1, + STATE(429), 1, sym__newline, - STATE(872), 1, + STATE(898), 1, sym__qmd_attribute, - STATE(934), 3, + STATE(993), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28810] = 5, - ACTIONS(2186), 1, - anon_sym_DASH, - ACTIONS(2188), 1, - anon_sym_COLON, - STATE(666), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(706), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2203), 3, + [29778] = 6, + ACTIONS(2312), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2314), 1, + aux_sym_key_value_value_token1, + ACTIONS(2316), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_DQUOTE, + STATE(764), 1, + sym__commonmark_whitespace, + STATE(770), 1, + sym_key_value_value, + [29797] = 6, + ACTIONS(2314), 1, + aux_sym_key_value_value_token1, + ACTIONS(2316), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_DQUOTE, + ACTIONS(2320), 1, + aux_sym__commonmark_whitespace_token1, + STATE(772), 1, + sym_key_value_value, + STATE(773), 1, + sym__commonmark_whitespace, + [29816] = 4, + ACTIONS(2245), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2322), 1, + anon_sym_PIPE, + STATE(755), 1, + sym__whitespace, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28828] = 5, - ACTIONS(2186), 1, - anon_sym_DASH, - ACTIONS(2188), 1, - anon_sym_COLON, - STATE(666), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(717), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2254), 3, + [29831] = 4, + ACTIONS(2245), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2324), 1, + anon_sym_PIPE, + STATE(760), 1, + sym__whitespace, + ACTIONS(1764), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28846] = 1, - ACTIONS(2256), 6, + [29846] = 4, + ACTIONS(2245), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2326), 1, + anon_sym_PIPE, + STATE(779), 1, + sym__whitespace, + ACTIONS(1896), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, + [29861] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [28855] = 4, - ACTIONS(2184), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2258), 1, + ACTIONS(2324), 1, anon_sym_PIPE, - STATE(771), 1, + STATE(788), 1, sym__whitespace, - ACTIONS(1966), 3, + ACTIONS(1896), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28870] = 1, - ACTIONS(2201), 6, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [28879] = 6, - ACTIONS(1704), 1, + [29876] = 4, + ACTIONS(2330), 1, + sym_id_specifier, + ACTIONS(2333), 1, + sym_key_value_key, + STATE(716), 1, + aux_sym_commonmark_attribute_repeat1, + ACTIONS(2328), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [29891] = 6, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2260), 1, + ACTIONS(2335), 1, sym__eof, - ACTIONS(2262), 1, + ACTIONS(2337), 1, sym__pipe_table_line_ending, - STATE(182), 1, + STATE(174), 1, sym__newline, - STATE(483), 1, + STATE(455), 1, sym__pipe_table_newline, - STATE(700), 1, + STATE(738), 1, aux_sym_pipe_table_repeat1, - [28898] = 4, - ACTIONS(2184), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2264), 1, - anon_sym_PIPE, - STATE(750), 1, - sym__whitespace, - ACTIONS(1966), 3, + [29910] = 1, + ACTIONS(2243), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28913] = 6, - ACTIONS(1704), 1, - sym__line_ending, - ACTIONS(2262), 1, - sym__pipe_table_line_ending, - ACTIONS(2266), 1, - sym__eof, - STATE(175), 1, - sym__newline, - STATE(483), 1, - sym__pipe_table_newline, - STATE(726), 1, - aux_sym_pipe_table_repeat1, - [28932] = 4, - ACTIONS(2184), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2268), 1, + anon_sym_DASH, + anon_sym_COLON, + [29919] = 4, + ACTIONS(2245), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2339), 1, anon_sym_PIPE, - STATE(748), 1, + STATE(769), 1, sym__whitespace, - ACTIONS(2254), 3, + ACTIONS(2261), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28947] = 4, - ACTIONS(2184), 1, + [29934] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2264), 1, + ACTIONS(2326), 1, anon_sym_PIPE, - STATE(749), 1, + STATE(765), 1, sym__whitespace, - ACTIONS(1802), 3, + ACTIONS(2341), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28962] = 4, - ACTIONS(2184), 1, + [29949] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2264), 1, + ACTIONS(2322), 1, anon_sym_PIPE, - STATE(770), 1, + STATE(781), 1, sym__whitespace, - ACTIONS(1806), 3, + ACTIONS(2304), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28977] = 4, - ACTIONS(2184), 1, + [29964] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2270), 1, + ACTIONS(2324), 1, anon_sym_PIPE, - STATE(754), 1, + STATE(756), 1, sym__whitespace, - ACTIONS(2254), 3, + ACTIONS(1758), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28992] = 4, - ACTIONS(2184), 1, + [29979] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2258), 1, + ACTIONS(2339), 1, anon_sym_PIPE, - STATE(744), 1, + STATE(785), 1, sym__whitespace, - ACTIONS(1806), 3, + ACTIONS(2304), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29007] = 4, - ACTIONS(2184), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2268), 1, - anon_sym_PIPE, - STATE(774), 1, - sym__whitespace, - ACTIONS(2190), 3, + [29994] = 1, + ACTIONS(2343), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29022] = 4, - ACTIONS(2184), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2258), 1, + anon_sym_DASH, + anon_sym_COLON, + [30003] = 4, + ACTIONS(2245), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2322), 1, anon_sym_PIPE, - STATE(742), 1, + STATE(759), 1, sym__whitespace, - ACTIONS(2272), 3, + ACTIONS(2345), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29037] = 1, - ACTIONS(1986), 6, + [30018] = 1, + ACTIONS(2347), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, + aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, - anon_sym_PIPE, - [29046] = 6, - ACTIONS(2274), 1, + [30027] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2276), 1, - aux_sym_key_value_value_token1, - ACTIONS(2278), 1, - anon_sym_SQUOTE, - ACTIONS(2280), 1, - anon_sym_DQUOTE, - STATE(740), 1, - sym__commonmark_whitespace, - STATE(772), 1, - sym_key_value_value, - [29065] = 6, - ACTIONS(1700), 1, + ACTIONS(2324), 1, + anon_sym_PIPE, + STATE(786), 1, + sym__whitespace, + ACTIONS(1766), 3, sym__line_ending, - ACTIONS(2262), 1, + sym__eof, sym__pipe_table_line_ending, - ACTIONS(2282), 1, + [30042] = 6, + ACTIONS(1716), 1, + sym__line_ending, + ACTIONS(2337), 1, + sym__pipe_table_line_ending, + ACTIONS(2349), 1, sym__eof, - STATE(144), 1, + STATE(182), 1, sym__newline, - STATE(483), 1, + STATE(455), 1, sym__pipe_table_newline, - STATE(711), 1, + STATE(729), 1, aux_sym_pipe_table_repeat1, - [29084] = 6, - ACTIONS(1700), 1, + [30061] = 6, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2262), 1, + ACTIONS(2337), 1, sym__pipe_table_line_ending, - ACTIONS(2284), 1, + ACTIONS(2351), 1, sym__eof, - STATE(145), 1, + STATE(175), 1, sym__newline, - STATE(483), 1, + STATE(455), 1, sym__pipe_table_newline, - STATE(726), 1, + STATE(738), 1, aux_sym_pipe_table_repeat1, - [29103] = 4, - ACTIONS(2288), 1, - sym_id_specifier, - ACTIONS(2291), 1, - sym_key_value_key, - STATE(712), 1, - aux_sym_commonmark_attribute_repeat1, - ACTIONS(2286), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [29118] = 4, - ACTIONS(2184), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2264), 1, - anon_sym_PIPE, - STATE(765), 1, - sym__whitespace, - ACTIONS(1845), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29133] = 4, - ACTIONS(2184), 1, + [30080] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2270), 1, + ACTIONS(2326), 1, anon_sym_PIPE, - STATE(745), 1, + STATE(780), 1, sym__whitespace, - ACTIONS(2190), 3, + ACTIONS(1766), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29148] = 6, - ACTIONS(1702), 1, - sym__line_ending, - ACTIONS(2262), 1, - sym__pipe_table_line_ending, - ACTIONS(2293), 1, - sym__eof, - STATE(167), 1, - sym__newline, - STATE(483), 1, - sym__pipe_table_newline, - STATE(720), 1, - aux_sym_pipe_table_repeat1, - [29167] = 4, - ACTIONS(2295), 1, + [30095] = 4, + ACTIONS(2353), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2299), 1, + ACTIONS(2357), 1, sym_key_value_key, - STATE(762), 1, + STATE(767), 1, sym__commonmark_whitespace, - ACTIONS(2297), 3, + ACTIONS(2355), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [29182] = 4, - ACTIONS(2184), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2268), 1, - anon_sym_PIPE, - STATE(767), 1, - sym__whitespace, - ACTIONS(2301), 3, + [30110] = 6, + ACTIONS(1718), 1, sym__line_ending, - sym__eof, + ACTIONS(2337), 1, sym__pipe_table_line_ending, - [29197] = 1, - ACTIONS(2303), 6, - sym__line_ending, + ACTIONS(2359), 1, sym__eof, - sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [29206] = 4, - ACTIONS(2184), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2270), 1, - anon_sym_PIPE, - STATE(746), 1, - sym__whitespace, - ACTIONS(2203), 3, + STATE(144), 1, + sym__newline, + STATE(455), 1, + sym__pipe_table_newline, + STATE(733), 1, + aux_sym_pipe_table_repeat1, + [30129] = 6, + ACTIONS(1718), 1, sym__line_ending, - sym__eof, + ACTIONS(2337), 1, sym__pipe_table_line_ending, - [29221] = 6, - ACTIONS(1702), 1, + ACTIONS(2361), 1, + sym__eof, + STATE(145), 1, + sym__newline, + STATE(455), 1, + sym__pipe_table_newline, + STATE(738), 1, + aux_sym_pipe_table_repeat1, + [30148] = 6, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2262), 1, + ACTIONS(2337), 1, sym__pipe_table_line_ending, - ACTIONS(2305), 1, + ACTIONS(2363), 1, sym__eof, - STATE(174), 1, + STATE(167), 1, sym__newline, - STATE(483), 1, + STATE(455), 1, sym__pipe_table_newline, - STATE(726), 1, + STATE(717), 1, aux_sym_pipe_table_repeat1, - [29240] = 4, - ACTIONS(2184), 1, + [30167] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2258), 1, + ACTIONS(2339), 1, anon_sym_PIPE, - STATE(755), 1, + STATE(774), 1, sym__whitespace, - ACTIONS(1802), 3, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29255] = 6, - ACTIONS(2276), 1, - aux_sym_key_value_value_token1, - ACTIONS(2278), 1, - anon_sym_SQUOTE, - ACTIONS(2280), 1, - anon_sym_DQUOTE, - ACTIONS(2307), 1, - aux_sym__commonmark_whitespace_token1, - STATE(766), 1, - sym_key_value_value, - STATE(769), 1, - sym__commonmark_whitespace, - [29274] = 4, - ACTIONS(2309), 1, - anon_sym_DASH, - ACTIONS(2311), 1, - anon_sym_COLON, - STATE(738), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2231), 2, + [30182] = 4, + ACTIONS(2245), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2326), 1, anon_sym_PIPE, - [29288] = 1, - ACTIONS(2313), 5, + STATE(778), 1, + sym__whitespace, + ACTIONS(1758), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [30197] = 1, + ACTIONS(2032), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [29296] = 2, - ACTIONS(2315), 1, - sym_block_continuation, - ACTIONS(1321), 4, - aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, anon_sym_PIPE, - [29306] = 4, - ACTIONS(2319), 1, + [30206] = 4, + ACTIONS(2367), 1, sym__pipe_table_line_ending, - STATE(483), 1, + STATE(455), 1, sym__pipe_table_newline, - STATE(726), 1, + STATE(738), 1, aux_sym_pipe_table_repeat1, - ACTIONS(2317), 2, + ACTIONS(2365), 2, sym__line_ending, sym__eof, - [29320] = 4, - ACTIONS(2309), 1, - anon_sym_DASH, - ACTIONS(2322), 1, - anon_sym_COLON, - STATE(738), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2242), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [29334] = 4, - ACTIONS(2326), 1, + [30220] = 4, + ACTIONS(2372), 1, sym_class_specifier, - ACTIONS(2329), 1, + ACTIONS(2375), 1, sym_key_value_key, - STATE(728), 1, + STATE(739), 1, aux_sym_commonmark_attribute_repeat2, - ACTIONS(2324), 2, + ACTIONS(2370), 2, anon_sym_RBRACE, sym_commonmark_name, - [29348] = 4, - ACTIONS(2331), 1, + [30234] = 1, + ACTIONS(2377), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2335), 1, + anon_sym_PIPE, + [30242] = 1, + ACTIONS(2379), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [30250] = 2, + ACTIONS(2333), 1, sym_key_value_key, - STATE(804), 1, - sym__commonmark_whitespace, - ACTIONS(2333), 2, + ACTIONS(2328), 4, anon_sym_RBRACE, sym_commonmark_name, - [29362] = 5, - ACTIONS(2337), 1, + sym_id_specifier, + sym_class_specifier, + [30260] = 4, + ACTIONS(2381), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2385), 1, + sym_key_value_key, + STATE(823), 1, + sym__commonmark_whitespace, + ACTIONS(2383), 2, anon_sym_RBRACE, - ACTIONS(2339), 1, sym_commonmark_name, - ACTIONS(2342), 1, - sym_key_value_key, - STATE(729), 1, - sym__attribute, - STATE(730), 1, - aux_sym_commonmark_attribute_repeat3, - [29378] = 5, + [30274] = 5, ACTIONS(1692), 1, sym_key_value_key, - ACTIONS(2182), 1, + ACTIONS(2257), 1, + anon_sym_RBRACE, + ACTIONS(2259), 1, sym_commonmark_name, - ACTIONS(2221), 1, + STATE(743), 1, + sym__attribute, + STATE(745), 1, + aux_sym_commonmark_attribute_repeat3, + [30290] = 5, + ACTIONS(2387), 1, anon_sym_RBRACE, - STATE(729), 1, + ACTIONS(2389), 1, + sym_commonmark_name, + ACTIONS(2392), 1, + sym_key_value_key, + STATE(743), 1, sym__attribute, - STATE(730), 1, + STATE(745), 1, aux_sym_commonmark_attribute_repeat3, - [29394] = 1, - ACTIONS(2345), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + [30306] = 3, + ACTIONS(2395), 1, + anon_sym_DASH, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2287), 3, aux_sym__commonmark_whitespace_token1, + anon_sym_COLON, anon_sym_PIPE, - [29402] = 5, + [30318] = 5, ACTIONS(1692), 1, sym_key_value_key, - ACTIONS(2180), 1, - anon_sym_RBRACE, - ACTIONS(2182), 1, + ACTIONS(2259), 1, sym_commonmark_name, - STATE(729), 1, + ACTIONS(2398), 1, + anon_sym_RBRACE, + STATE(743), 1, sym__attribute, - STATE(730), 1, + STATE(745), 1, aux_sym_commonmark_attribute_repeat3, - [29418] = 5, - ACTIONS(2215), 1, + [30334] = 4, + ACTIONS(2400), 1, anon_sym_DASH, - ACTIONS(2217), 1, + ACTIONS(2402), 1, anon_sym_COLON, - ACTIONS(2347), 1, + STATE(746), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2292), 2, + aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - STATE(727), 1, + [30348] = 5, + ACTIONS(2265), 1, + anon_sym_DASH, + ACTIONS(2267), 1, + anon_sym_COLON, + ACTIONS(2404), 1, + anon_sym_PIPE, + STATE(751), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(797), 1, + STATE(805), 1, sym_pipe_table_delimiter_cell, - [29434] = 5, + [30364] = 5, ACTIONS(1692), 1, sym_key_value_key, - ACTIONS(2182), 1, + ACTIONS(2259), 1, sym_commonmark_name, - ACTIONS(2252), 1, + ACTIONS(2271), 1, anon_sym_RBRACE, - STATE(729), 1, + STATE(743), 1, sym__attribute, - STATE(730), 1, + STATE(745), 1, aux_sym_commonmark_attribute_repeat3, - [29450] = 2, - ACTIONS(2291), 1, - sym_key_value_key, - ACTIONS(2286), 4, - anon_sym_RBRACE, - sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [29460] = 1, - ACTIONS(2349), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [29468] = 3, - ACTIONS(2351), 1, + [30380] = 4, + ACTIONS(2400), 1, anon_sym_DASH, - STATE(738), 1, + ACTIONS(2406), 1, + anon_sym_COLON, + STATE(746), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2237), 3, + ACTIONS(2298), 2, aux_sym__commonmark_whitespace_token1, - anon_sym_COLON, anon_sym_PIPE, - [29480] = 5, + [30394] = 5, ACTIONS(1692), 1, sym_key_value_key, - ACTIONS(2182), 1, + ACTIONS(2259), 1, sym_commonmark_name, - ACTIONS(2354), 1, + ACTIONS(2302), 1, anon_sym_RBRACE, - STATE(729), 1, + STATE(743), 1, sym__attribute, - STATE(730), 1, + STATE(745), 1, aux_sym_commonmark_attribute_repeat3, - [29496] = 4, - ACTIONS(2276), 1, - aux_sym_key_value_value_token1, - ACTIONS(2278), 1, - anon_sym_SQUOTE, - ACTIONS(2280), 1, - anon_sym_DQUOTE, - STATE(766), 1, - sym_key_value_value, - [29509] = 4, - ACTIONS(1802), 1, - sym__line_ending, - ACTIONS(2356), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2358), 1, - anon_sym_PIPE, - STATE(921), 1, - sym__whitespace, - [29522] = 2, - ACTIONS(2360), 1, - anon_sym_PIPE, - ACTIONS(2362), 3, + [30410] = 1, + ACTIONS(2408), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29531] = 4, - ACTIONS(2364), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2366), 1, - anon_sym_RBRACE, - ACTIONS(2368), 1, - anon_sym_EQ, - STATE(951), 1, - sym__commonmark_whitespace, - [29544] = 2, - ACTIONS(2360), 1, anon_sym_PIPE, - ACTIONS(1802), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29553] = 2, - ACTIONS(2268), 1, - anon_sym_PIPE, - ACTIONS(2254), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29562] = 2, - ACTIONS(2268), 1, - anon_sym_PIPE, - ACTIONS(2190), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29571] = 4, - ACTIONS(1806), 1, - sym__line_ending, - ACTIONS(2356), 1, + [30418] = 2, + ACTIONS(2410), 1, + sym_block_continuation, + ACTIONS(1321), 4, aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, - anon_sym_PIPE, - STATE(829), 1, - sym__whitespace, - [29584] = 2, - ACTIONS(2372), 1, + anon_sym_DASH, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2301), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29593] = 2, - ACTIONS(2258), 1, + [30428] = 2, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(1966), 3, + ACTIONS(2304), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29602] = 2, - ACTIONS(2258), 1, + [30437] = 2, + ACTIONS(2326), 1, anon_sym_PIPE, - ACTIONS(2272), 3, + ACTIONS(1896), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29611] = 4, - ACTIONS(1806), 1, - sym__line_ending, - ACTIONS(2356), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2358), 1, - anon_sym_PIPE, - STATE(867), 1, - sym__whitespace, - [29624] = 4, - ACTIONS(2272), 1, + [30446] = 4, + ACTIONS(1764), 1, sym__line_ending, - ACTIONS(2356), 1, + ACTIONS(2414), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2358), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - STATE(840), 1, + STATE(888), 1, sym__whitespace, - [29637] = 2, - ACTIONS(2376), 1, + [30459] = 2, + ACTIONS(2420), 1, sym_key_value_key, - ACTIONS(2374), 3, + ACTIONS(2418), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [29646] = 2, - ACTIONS(2268), 1, + [30468] = 2, + ACTIONS(2412), 1, anon_sym_PIPE, - ACTIONS(2301), 3, + ACTIONS(2422), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29655] = 2, - ACTIONS(2360), 1, + [30477] = 2, + ACTIONS(2326), 1, anon_sym_PIPE, - ACTIONS(1966), 3, + ACTIONS(1766), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29664] = 4, - ACTIONS(1966), 1, + [30486] = 4, + ACTIONS(1896), 1, sym__line_ending, - ACTIONS(2356), 1, + ACTIONS(2414), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2358), 1, + ACTIONS(2424), 1, anon_sym_PIPE, - STATE(875), 1, + STATE(907), 1, sym__whitespace, - [29677] = 2, - ACTIONS(2380), 1, - sym_key_value_key, - ACTIONS(2378), 3, + [30499] = 1, + ACTIONS(1394), 4, aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [29686] = 4, - ACTIONS(2215), 1, anon_sym_DASH, - ACTIONS(2217), 1, anon_sym_COLON, - STATE(727), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(797), 1, - sym_pipe_table_delimiter_cell, - [29699] = 2, - ACTIONS(2384), 1, - sym_key_value_key, - ACTIONS(2382), 3, + anon_sym_PIPE, + [30506] = 4, + ACTIONS(2426), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2428), 1, anon_sym_RBRACE, - sym_commonmark_name, - [29708] = 2, - ACTIONS(2388), 1, + ACTIONS(2430), 1, + anon_sym_EQ, + STATE(963), 1, + sym__commonmark_whitespace, + [30519] = 4, + ACTIONS(2314), 1, + aux_sym_key_value_value_token1, + ACTIONS(2316), 1, + anon_sym_SQUOTE, + ACTIONS(2318), 1, + anon_sym_DQUOTE, + STATE(772), 1, + sym_key_value_value, + [30532] = 2, + ACTIONS(2432), 1, + anon_sym_PIPE, + ACTIONS(2434), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [30541] = 2, + ACTIONS(2438), 1, sym_key_value_key, - ACTIONS(2386), 3, + ACTIONS(2436), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [29717] = 4, - ACTIONS(1802), 1, - sym__line_ending, - ACTIONS(2356), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, - anon_sym_PIPE, - STATE(911), 1, - sym__whitespace, - [29730] = 2, - ACTIONS(2329), 1, + [30550] = 2, + ACTIONS(2375), 1, sym_key_value_key, - ACTIONS(2324), 3, + ACTIONS(2370), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [29739] = 4, - ACTIONS(1845), 1, + [30559] = 4, + ACTIONS(1896), 1, sym__line_ending, - ACTIONS(2356), 1, + ACTIONS(2414), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - STATE(828), 1, + STATE(918), 1, sym__whitespace, - [29752] = 2, - ACTIONS(1988), 1, - anon_sym_LBRACE, - ACTIONS(1986), 3, - sym_fenced_div_note_id, - anon_sym_LBRACE_RBRACE, - aux_sym_info_string_token1, - [29761] = 2, - ACTIONS(2258), 1, + [30572] = 2, + ACTIONS(2322), 1, anon_sym_PIPE, - ACTIONS(1806), 3, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29770] = 2, - ACTIONS(2392), 1, + [30581] = 2, + ACTIONS(2442), 1, sym_key_value_key, - ACTIONS(2390), 3, + ACTIONS(2440), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [29779] = 2, - ACTIONS(2372), 1, - anon_sym_PIPE, - ACTIONS(2394), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29788] = 4, - ACTIONS(1966), 1, + [30590] = 4, + ACTIONS(1766), 1, sym__line_ending, - ACTIONS(2356), 1, + ACTIONS(2414), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, + ACTIONS(2416), 1, anon_sym_PIPE, - STATE(879), 1, + STATE(889), 1, sym__whitespace, - [29801] = 4, - ACTIONS(2276), 1, + [30603] = 2, + ACTIONS(2446), 1, + sym_key_value_key, + ACTIONS(2444), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [30612] = 4, + ACTIONS(2314), 1, aux_sym_key_value_value_token1, - ACTIONS(2278), 1, + ACTIONS(2316), 1, anon_sym_SQUOTE, - ACTIONS(2280), 1, + ACTIONS(2318), 1, anon_sym_DQUOTE, - STATE(753), 1, + STATE(777), 1, sym_key_value_value, - [29814] = 2, - ACTIONS(2258), 1, - anon_sym_PIPE, - ACTIONS(1802), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29823] = 2, - ACTIONS(2360), 1, + [30625] = 2, + ACTIONS(2322), 1, anon_sym_PIPE, - ACTIONS(2272), 3, + ACTIONS(2304), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29832] = 2, - ACTIONS(2398), 1, + [30634] = 2, + ACTIONS(2450), 1, sym_key_value_key, - ACTIONS(2396), 3, + ACTIONS(2448), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [29841] = 1, - ACTIONS(1394), 4, + [30643] = 4, + ACTIONS(1758), 1, + sym__line_ending, + ACTIONS(2414), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(2416), 1, anon_sym_PIPE, - [29848] = 2, - ACTIONS(2372), 1, + STATE(859), 1, + sym__whitespace, + [30656] = 2, + ACTIONS(2454), 1, + sym_key_value_key, + ACTIONS(2452), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [30665] = 2, + ACTIONS(2432), 1, anon_sym_PIPE, - ACTIONS(2254), 3, + ACTIONS(1896), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29857] = 3, - ACTIONS(1700), 1, + [30674] = 2, + ACTIONS(2432), 1, + anon_sym_PIPE, + ACTIONS(2341), 3, sym__line_ending, - ACTIONS(2400), 1, sym__eof, - STATE(248), 1, - sym__newline, - [29867] = 3, - ACTIONS(1702), 1, + sym__pipe_table_line_ending, + [30683] = 2, + ACTIONS(2432), 1, + anon_sym_PIPE, + ACTIONS(1758), 3, sym__line_ending, - ACTIONS(2402), 1, sym__eof, - STATE(320), 1, - sym__newline, - [29877] = 1, - ACTIONS(2317), 3, + sym__pipe_table_line_ending, + [30692] = 2, + ACTIONS(2412), 1, + anon_sym_PIPE, + ACTIONS(2345), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29883] = 1, - ACTIONS(1986), 3, + [30701] = 4, + ACTIONS(2341), 1, + sym__line_ending, + ACTIONS(2414), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2424), 1, + anon_sym_PIPE, + STATE(864), 1, + sym__whitespace, + [30714] = 4, + ACTIONS(2265), 1, anon_sym_DASH, + ACTIONS(2267), 1, anon_sym_COLON, + STATE(751), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(805), 1, + sym_pipe_table_delimiter_cell, + [30727] = 2, + ACTIONS(2034), 1, + anon_sym_LBRACE, + ACTIONS(2032), 3, + sym_fenced_div_note_id, + anon_sym_LBRACE_RBRACE, + aux_sym_info_string_token1, + [30736] = 2, + ACTIONS(2322), 1, anon_sym_PIPE, - [29889] = 3, - ACTIONS(1702), 1, + ACTIONS(2345), 3, sym__line_ending, - ACTIONS(2404), 1, sym__eof, - STATE(323), 1, - sym__newline, - [29899] = 3, - ACTIONS(2406), 1, + sym__pipe_table_line_ending, + [30745] = 2, + ACTIONS(2326), 1, + anon_sym_PIPE, + ACTIONS(1758), 3, sym__line_ending, - ACTIONS(2408), 1, sym__eof, - STATE(971), 1, - sym__newline, - [29909] = 3, - ACTIONS(1704), 1, + sym__pipe_table_line_ending, + [30754] = 4, + ACTIONS(1766), 1, sym__line_ending, - ACTIONS(2410), 1, - sym__eof, - STATE(339), 1, - sym__newline, - [29919] = 3, - ACTIONS(1704), 1, + ACTIONS(2414), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2424), 1, + anon_sym_PIPE, + STATE(899), 1, + sym__whitespace, + [30767] = 2, + ACTIONS(2326), 1, + anon_sym_PIPE, + ACTIONS(2341), 3, sym__line_ending, - ACTIONS(2412), 1, sym__eof, - STATE(340), 1, - sym__newline, - [29929] = 1, - ACTIONS(2349), 3, + sym__pipe_table_line_ending, + [30776] = 4, + ACTIONS(1758), 1, sym__line_ending, + ACTIONS(2414), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2424), 1, anon_sym_PIPE, - [29935] = 3, - ACTIONS(2406), 1, + STATE(857), 1, + sym__whitespace, + [30789] = 3, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2456), 1, sym__eof, - STATE(987), 1, + STATE(322), 1, sym__newline, - [29945] = 3, - ACTIONS(1704), 1, + [30799] = 3, + ACTIONS(2458), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2460), 1, + anon_sym_RBRACE, + STATE(1017), 1, + sym__commonmark_whitespace, + [30809] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2416), 1, + ACTIONS(2464), 1, sym__eof, - STATE(368), 1, + STATE(970), 1, sym__newline, - [29955] = 3, - ACTIONS(1704), 1, + [30819] = 3, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2418), 1, + ACTIONS(2466), 1, sym__eof, - STATE(369), 1, + STATE(334), 1, sym__newline, - [29965] = 3, - ACTIONS(2213), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2358), 1, - anon_sym_PIPE, - STATE(952), 1, - sym__whitespace, - [29975] = 3, - ACTIONS(1704), 1, + [30829] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2420), 1, + ACTIONS(2468), 1, sym__eof, - STATE(409), 1, + STATE(1007), 1, sym__newline, - [29985] = 3, - ACTIONS(1704), 1, + [30839] = 3, + ACTIONS(2426), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2430), 1, + anon_sym_EQ, + STATE(963), 1, + sym__commonmark_whitespace, + [30849] = 3, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2422), 1, + ACTIONS(2470), 1, sym__eof, - STATE(412), 1, + STATE(341), 1, sym__newline, - [29995] = 3, - ACTIONS(1700), 1, + [30859] = 3, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2424), 1, + ACTIONS(2472), 1, sym__eof, - STATE(198), 1, + STATE(342), 1, sym__newline, - [30005] = 3, - ACTIONS(2426), 1, + [30869] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2428), 1, + ACTIONS(2474), 1, sym__eof, - STATE(983), 1, + STATE(978), 1, sym__newline, - [30015] = 3, - ACTIONS(2213), 1, + [30879] = 3, + ACTIONS(2263), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2264), 1, + ACTIONS(2424), 1, anon_sym_PIPE, - STATE(1015), 1, + STATE(968), 1, sym__whitespace, - [30025] = 3, - ACTIONS(1702), 1, + [30889] = 1, + ACTIONS(2379), 3, sym__line_ending, - ACTIONS(2430), 1, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [30895] = 3, + ACTIONS(1718), 1, + sym__line_ending, + ACTIONS(2476), 1, sym__eof, - STATE(434), 1, + STATE(196), 1, sym__newline, - [30035] = 3, - ACTIONS(1702), 1, + [30905] = 3, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2432), 1, + ACTIONS(2478), 1, sym__eof, - STATE(435), 1, + STATE(197), 1, sym__newline, - [30045] = 3, - ACTIONS(2406), 1, + [30915] = 3, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2434), 1, + ACTIONS(2480), 1, sym__eof, - STATE(945), 1, + STATE(436), 1, sym__newline, - [30055] = 3, - ACTIONS(1700), 1, + [30925] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2436), 1, + ACTIONS(2482), 1, sym__eof, - STATE(197), 1, + STATE(964), 1, sym__newline, - [30065] = 3, - ACTIONS(2213), 1, + [30935] = 3, + ACTIONS(2263), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2268), 1, + ACTIONS(2322), 1, anon_sym_PIPE, - STATE(1027), 1, + STATE(1053), 1, sym__whitespace, - [30075] = 3, - ACTIONS(1702), 1, + [30945] = 3, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2438), 1, + ACTIONS(2484), 1, sym__eof, - STATE(344), 1, + STATE(370), 1, sym__newline, - [30085] = 3, - ACTIONS(1700), 1, + [30955] = 3, + ACTIONS(1716), 1, + sym__line_ending, + ACTIONS(2486), 1, + sym__eof, + STATE(371), 1, + sym__newline, + [30965] = 3, + ACTIONS(1714), 1, sym__line_ending, - ACTIONS(2440), 1, + ACTIONS(2488), 1, + sym__eof, + STATE(437), 1, + sym__newline, + [30975] = 3, + ACTIONS(1718), 1, + sym__line_ending, + ACTIONS(2490), 1, sym__eof, STATE(297), 1, sym__newline, - [30095] = 3, - ACTIONS(1700), 1, + [30985] = 1, + ACTIONS(2032), 3, sym__line_ending, - ACTIONS(2442), 1, + anon_sym_LBRACE, + aux_sym_info_string_token1, + [30991] = 3, + ACTIONS(1718), 1, + sym__line_ending, + ACTIONS(2492), 1, sym__eof, STATE(249), 1, sym__newline, - [30105] = 3, - ACTIONS(2444), 1, + [31001] = 3, + ACTIONS(2494), 1, sym__line_ending, - ACTIONS(2446), 1, + ACTIONS(2496), 1, sym__eof, - STATE(997), 1, + STATE(1004), 1, sym__newline, - [30115] = 3, - ACTIONS(2448), 1, + [31011] = 3, + ACTIONS(2498), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2450), 1, + ACTIONS(2500), 1, anon_sym_RBRACE, - STATE(960), 1, + STATE(949), 1, sym__commonmark_whitespace, - [30125] = 3, - ACTIONS(2213), 1, + [31021] = 3, + ACTIONS(1714), 1, + sym__line_ending, + ACTIONS(2502), 1, + sym__eof, + STATE(346), 1, + sym__newline, + [31031] = 1, + ACTIONS(2032), 3, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [31037] = 3, + ACTIONS(2263), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2270), 1, + ACTIONS(2326), 1, anon_sym_PIPE, - STATE(965), 1, + STATE(1016), 1, sym__whitespace, - [30135] = 2, - ACTIONS(2452), 1, - sym_key_value_key, - ACTIONS(2337), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [30143] = 3, - ACTIONS(2213), 1, + [31047] = 3, + ACTIONS(2263), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, + ACTIONS(2339), 1, anon_sym_PIPE, - STATE(995), 1, + STATE(1026), 1, sym__whitespace, - [30153] = 3, - ACTIONS(2406), 1, + [31057] = 3, + ACTIONS(2263), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2324), 1, + anon_sym_PIPE, + STATE(966), 1, + sym__whitespace, + [31067] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2454), 1, + ACTIONS(2504), 1, sym__eof, - STATE(1016), 1, + STATE(1008), 1, sym__newline, - [30163] = 3, - ACTIONS(2406), 1, + [31077] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2456), 1, + ACTIONS(2506), 1, sym__eof, - STATE(1017), 1, + STATE(1009), 1, sym__newline, - [30173] = 3, - ACTIONS(2406), 1, + [31087] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2458), 1, + ACTIONS(2508), 1, sym__eof, - STATE(1036), 1, + STATE(1013), 1, sym__newline, - [30183] = 3, - ACTIONS(2406), 1, + [31097] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2460), 1, + ACTIONS(2510), 1, sym__eof, - STATE(1039), 1, + STATE(1014), 1, sym__newline, - [30193] = 1, - ACTIONS(1986), 3, + [31107] = 2, + ACTIONS(2512), 1, + sym_key_value_key, + ACTIONS(2387), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [31115] = 3, + ACTIONS(2263), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2416), 1, + anon_sym_PIPE, + STATE(1042), 1, + sym__whitespace, + [31125] = 3, + ACTIONS(1716), 1, sym__line_ending, - anon_sym_LBRACE, - aux_sym_info_string_token1, - [30199] = 3, - ACTIONS(2406), 1, + ACTIONS(2514), 1, + sym__eof, + STATE(410), 1, + sym__newline, + [31135] = 3, + ACTIONS(1716), 1, sym__line_ending, + ACTIONS(2516), 1, + sym__eof, + STATE(413), 1, + sym__newline, + [31145] = 3, + ACTIONS(1714), 1, + sym__line_ending, + ACTIONS(2518), 1, + sym__eof, + STATE(325), 1, + sym__newline, + [31155] = 1, + ACTIONS(2365), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [31161] = 3, ACTIONS(2462), 1, + sym__line_ending, + ACTIONS(2520), 1, sym__eof, - STATE(980), 1, + STATE(955), 1, sym__newline, - [30209] = 3, - ACTIONS(2406), 1, + [31171] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2464), 1, + ACTIONS(2522), 1, sym__eof, - STATE(962), 1, + STATE(956), 1, sym__newline, - [30219] = 3, - ACTIONS(2466), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2468), 1, - anon_sym_RBRACE, - STATE(939), 1, - sym__commonmark_whitespace, - [30229] = 3, - ACTIONS(1702), 1, + [31181] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2470), 1, + ACTIONS(2524), 1, sym__eof, - STATE(332), 1, + STATE(959), 1, sym__newline, - [30239] = 3, - ACTIONS(2364), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2368), 1, - anon_sym_EQ, - STATE(951), 1, - sym__commonmark_whitespace, - [30249] = 3, - ACTIONS(2213), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2258), 1, - anon_sym_PIPE, - STATE(947), 1, - sym__whitespace, - [30259] = 3, - ACTIONS(2406), 1, + [31191] = 3, + ACTIONS(2462), 1, sym__line_ending, - ACTIONS(2472), 1, + ACTIONS(2526), 1, sym__eof, - STATE(940), 1, + STATE(960), 1, sym__newline, - [30269] = 3, - ACTIONS(2406), 1, + [31201] = 3, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2474), 1, + ACTIONS(2528), 1, sym__eof, - STATE(941), 1, + STATE(198), 1, sym__newline, - [30279] = 3, - ACTIONS(2406), 1, + [31211] = 3, + ACTIONS(2530), 1, sym__line_ending, - ACTIONS(2476), 1, + ACTIONS(2532), 1, sym__eof, - STATE(944), 1, + STATE(1031), 1, sym__newline, - [30289] = 3, - ACTIONS(1700), 1, + [31221] = 3, + ACTIONS(1718), 1, sym__line_ending, - ACTIONS(2478), 1, + ACTIONS(2534), 1, sym__eof, - STATE(196), 1, + STATE(248), 1, sym__newline, - [30299] = 2, - ACTIONS(1702), 1, + [31231] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(419), 1, + STATE(424), 1, sym__newline, - [30306] = 2, - ACTIONS(1734), 1, - sym__block_close, - ACTIONS(1736), 1, - sym__fenced_code_block_end_tilde, - [30313] = 2, - ACTIONS(1738), 1, - sym__block_close, - ACTIONS(1740), 1, - sym__fenced_code_block_end_backtick, - [30320] = 2, - ACTIONS(2406), 1, + [31238] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(998), 1, + STATE(376), 1, sym__newline, - [30327] = 2, - ACTIONS(1738), 1, - sym__block_close, - ACTIONS(1740), 1, - sym__fenced_code_block_end_tilde, - [30334] = 2, - ACTIONS(2480), 1, - sym__block_close, - ACTIONS(2482), 1, - sym__fenced_code_block_end_backtick, - [30341] = 2, - ACTIONS(2480), 1, - sym__block_close, - ACTIONS(2482), 1, - sym__fenced_code_block_end_tilde, - [30348] = 2, - ACTIONS(1806), 1, + [31245] = 2, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2358), 1, - anon_sym_PIPE, - [30355] = 2, - ACTIONS(1802), 1, + STATE(377), 1, + sym__newline, + [31252] = 2, + ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2358), 1, - anon_sym_PIPE, - [30362] = 2, - ACTIONS(1702), 1, + STATE(378), 1, + sym__newline, + [31259] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(430), 1, + STATE(379), 1, sym__newline, - [30369] = 2, - ACTIONS(1702), 1, + [31266] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(443), 1, + STATE(380), 1, sym__newline, - [30376] = 2, - ACTIONS(1702), 1, + [31273] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(444), 1, + STATE(381), 1, sym__newline, - [30383] = 2, - ACTIONS(1700), 1, + [31280] = 2, + ACTIONS(1714), 1, + sym__line_ending, + STATE(426), 1, + sym__newline, + [31287] = 2, + ACTIONS(1744), 1, + sym__block_close, + ACTIONS(1746), 1, + sym__fenced_code_block_end_backtick, + [31294] = 2, + ACTIONS(1744), 1, + sym__block_close, + ACTIONS(1746), 1, + sym__fenced_code_block_end_tilde, + [31301] = 2, + ACTIONS(1748), 1, + sym__block_close, + ACTIONS(1750), 1, + sym__fenced_code_block_end_backtick, + [31308] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(7), 1, sym__newline, - [30390] = 2, - ACTIONS(1700), 1, + [31315] = 2, + ACTIONS(1748), 1, + sym__block_close, + ACTIONS(1750), 1, + sym__fenced_code_block_end_tilde, + [31322] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(8), 1, + STATE(421), 1, sym__newline, - [30397] = 2, - ACTIONS(2484), 1, + [31329] = 2, + ACTIONS(2536), 1, + sym__block_close, + ACTIONS(2538), 1, + sym__fenced_code_block_end_backtick, + [31336] = 2, + ACTIONS(2536), 1, + sym__block_close, + ACTIONS(2538), 1, + sym__fenced_code_block_end_tilde, + [31343] = 2, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - STATE(534), 1, + STATE(563), 1, sym__whitespace, - [30404] = 2, - ACTIONS(1702), 1, + [31350] = 2, + ACTIONS(2494), 1, sym__line_ending, - STATE(441), 1, + STATE(665), 1, sym__newline, - [30411] = 2, - ACTIONS(1321), 1, - sym__close_block, - ACTIONS(2486), 1, - sym_block_continuation, - [30418] = 2, - ACTIONS(2406), 1, + [31357] = 2, + ACTIONS(2542), 1, + sym__block_close, + ACTIONS(2544), 1, + sym__fenced_code_block_end_backtick, + [31364] = 2, + ACTIONS(2542), 1, + sym__block_close, + ACTIONS(2544), 1, + sym__fenced_code_block_end_tilde, + [31371] = 2, + ACTIONS(2546), 1, + aux_sym__commonmark_whitespace_token1, + STATE(668), 1, + sym__whitespace, + [31378] = 2, + ACTIONS(1896), 1, sym__line_ending, - STATE(993), 1, + ACTIONS(2548), 1, + anon_sym_PIPE, + [31385] = 2, + ACTIONS(1718), 1, + sym__line_ending, + STATE(8), 1, sym__newline, - [30425] = 2, - ACTIONS(2488), 1, - anon_sym_DASH, - STATE(664), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [30432] = 2, - ACTIONS(2362), 1, + [31392] = 2, + ACTIONS(1896), 1, sym__line_ending, - ACTIONS(2490), 1, + ACTIONS(2424), 1, anon_sym_PIPE, - [30439] = 2, - ACTIONS(1700), 1, + [31399] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(266), 1, sym__newline, - [30446] = 1, - ACTIONS(1986), 2, + [31406] = 2, + ACTIONS(2462), 1, sym__line_ending, - anon_sym_PIPE, - [30451] = 2, - ACTIONS(1700), 1, + STATE(1012), 1, + sym__newline, + [31413] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(272), 1, sym__newline, - [30458] = 2, - ACTIONS(2492), 1, - sym__block_close, - ACTIONS(2494), 1, - sym__fenced_code_block_end_backtick, - [30465] = 2, - ACTIONS(1700), 1, + [31420] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(274), 1, sym__newline, - [30472] = 2, - ACTIONS(1710), 1, + [31427] = 2, + ACTIONS(2434), 1, sym__line_ending, - STATE(484), 1, - sym__newline, - [30479] = 2, - ACTIONS(1700), 1, + ACTIONS(2548), 1, + anon_sym_PIPE, + [31434] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(276), 1, sym__newline, - [30486] = 2, - ACTIONS(1700), 1, + [31441] = 2, + ACTIONS(1321), 1, + sym__close_block, + ACTIONS(2550), 1, + sym_block_continuation, + [31448] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(281), 1, sym__newline, - [30493] = 2, - ACTIONS(1700), 1, + [31455] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(283), 1, sym__newline, - [30500] = 2, - ACTIONS(2444), 1, + [31462] = 2, + ACTIONS(2552), 1, + anon_sym_DASH, + STATE(680), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [31469] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(652), 1, + STATE(428), 1, sym__newline, - [30507] = 2, - ACTIONS(1754), 1, + [31476] = 2, + ACTIONS(1321), 1, sym__block_close, - ACTIONS(1756), 1, - sym__fenced_code_block_end_backtick, - [30514] = 2, - ACTIONS(1704), 1, + ACTIONS(2554), 1, + sym_block_continuation, + [31483] = 1, + ACTIONS(2032), 2, sym__line_ending, - STATE(351), 1, - sym__newline, - [30521] = 2, - ACTIONS(2406), 1, + anon_sym_PIPE, + [31488] = 2, + ACTIONS(1730), 1, + sym__block_close, + ACTIONS(1732), 1, + sym__fenced_code_block_end_backtick, + [31495] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(956), 1, + STATE(1027), 1, sym__newline, - [30528] = 2, - ACTIONS(1700), 1, + [31502] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(206), 1, sym__newline, - [30535] = 2, - ACTIONS(1700), 1, + [31509] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(207), 1, sym__newline, - [30542] = 2, - ACTIONS(1700), 1, + [31516] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(208), 1, sym__newline, - [30549] = 2, - ACTIONS(1700), 1, + [31523] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(209), 1, sym__newline, - [30556] = 2, - ACTIONS(1700), 1, + [31530] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(210), 1, sym__newline, - [30563] = 2, - ACTIONS(1700), 1, + [31537] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(211), 1, sym__newline, - [30570] = 2, - ACTIONS(1762), 1, - sym__block_close, - ACTIONS(1764), 1, - sym__fenced_code_block_end_backtick, - [30577] = 2, - ACTIONS(1321), 1, - sym__block_close, - ACTIONS(2496), 1, - sym_block_continuation, - [30584] = 2, - ACTIONS(1762), 1, - sym__block_close, - ACTIONS(1764), 1, - sym__fenced_code_block_end_tilde, - [30591] = 2, - ACTIONS(1722), 1, + [31544] = 2, + ACTIONS(1714), 1, + sym__line_ending, + STATE(430), 1, + sym__newline, + [31551] = 2, + ACTIONS(1785), 1, sym__block_close, - ACTIONS(1724), 1, + ACTIONS(1787), 1, sym__fenced_code_block_end_backtick, - [30598] = 2, - ACTIONS(1722), 1, + [31558] = 2, + ACTIONS(1714), 1, + sym__line_ending, + STATE(442), 1, + sym__newline, + [31565] = 2, + ACTIONS(1785), 1, sym__block_close, - ACTIONS(1724), 1, + ACTIONS(1787), 1, sym__fenced_code_block_end_tilde, - [30605] = 1, - ACTIONS(2498), 2, + [31572] = 2, + ACTIONS(1789), 1, + sym__block_close, + ACTIONS(1791), 1, + sym__fenced_code_block_end_backtick, + [31579] = 1, + ACTIONS(2556), 2, sym__line_ending, anon_sym_LBRACE, - [30610] = 2, - ACTIONS(1704), 1, + [31584] = 2, + ACTIONS(1789), 1, + sym__block_close, + ACTIONS(1791), 1, + sym__fenced_code_block_end_tilde, + [31591] = 2, + ACTIONS(1766), 1, sym__line_ending, - STATE(353), 1, - sym__newline, - [30617] = 2, - ACTIONS(1802), 1, + ACTIONS(2424), 1, + anon_sym_PIPE, + [31598] = 2, + ACTIONS(1758), 1, sym__line_ending, - ACTIONS(2490), 1, + ACTIONS(2424), 1, anon_sym_PIPE, - [30624] = 2, - ACTIONS(2500), 1, - anon_sym_DASH, - STATE(723), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [30631] = 2, - ACTIONS(2502), 1, - sym__block_close, - ACTIONS(2504), 1, - sym__fenced_code_block_end_backtick, - [30638] = 2, - ACTIONS(2502), 1, - sym__block_close, - ACTIONS(2504), 1, - sym__fenced_code_block_end_tilde, - [30645] = 2, - ACTIONS(1704), 1, + [31605] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(355), 1, + STATE(443), 1, sym__newline, - [30652] = 2, - ACTIONS(1702), 1, + [31612] = 2, + ACTIONS(2558), 1, + sym__block_close, + ACTIONS(2560), 1, + sym__fenced_code_block_end_backtick, + [31619] = 2, + ACTIONS(2546), 1, + aux_sym__commonmark_whitespace_token1, + STATE(678), 1, + sym__whitespace, + [31626] = 1, + ACTIONS(2377), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [31631] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(439), 1, + STATE(432), 1, sym__newline, - [30659] = 2, - ACTIONS(1704), 1, + [31638] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(357), 1, + STATE(444), 1, sym__newline, - [30666] = 2, - ACTIONS(1720), 1, + [31645] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(485), 1, + STATE(1054), 1, sym__newline, - [30673] = 2, - ACTIONS(2272), 1, - sym__line_ending, - ACTIONS(2490), 1, - anon_sym_PIPE, - [30680] = 2, - ACTIONS(2484), 1, + [31652] = 2, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - STATE(546), 1, + STATE(565), 1, sym__whitespace, - [30687] = 2, - ACTIONS(1726), 1, - sym__block_close, - ACTIONS(1728), 1, - sym__fenced_code_block_end_backtick, - [30694] = 2, - ACTIONS(1704), 1, + [31659] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(359), 1, + STATE(445), 1, sym__newline, - [30701] = 2, - ACTIONS(2272), 1, + [31666] = 2, + ACTIONS(1758), 1, sym__line_ending, - ACTIONS(2358), 1, + ACTIONS(2548), 1, anon_sym_PIPE, - [30708] = 2, - ACTIONS(1710), 1, + [31673] = 2, + ACTIONS(2562), 1, + anon_sym_DASH, + STATE(748), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [31680] = 2, + ACTIONS(1724), 1, sym__line_ending, - STATE(480), 1, + STATE(479), 1, sym__newline, - [30715] = 1, - ACTIONS(2313), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [30720] = 2, - ACTIONS(1720), 1, + [31687] = 2, + ACTIONS(1742), 1, sym__line_ending, - STATE(491), 1, + STATE(480), 1, sym__newline, - [30727] = 2, - ACTIONS(2492), 1, - sym__block_close, - ACTIONS(2494), 1, - sym__fenced_code_block_end_tilde, - [30734] = 2, - ACTIONS(1704), 1, + [31694] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(361), 1, + STATE(447), 1, sym__newline, - [30741] = 2, - ACTIONS(2506), 1, - aux_sym__commonmark_whitespace_token1, - STATE(650), 1, - sym__whitespace, - [30748] = 2, - ACTIONS(1702), 1, + [31701] = 2, + ACTIONS(1724), 1, sym__line_ending, - STATE(424), 1, + STATE(483), 1, sym__newline, - [30755] = 1, - ACTIONS(2508), 2, - sym__line_ending, - anon_sym_LBRACE, - [30760] = 2, - ACTIONS(2510), 1, - sym__block_close, - ACTIONS(2512), 1, - sym_block_continuation, - [30767] = 2, - ACTIONS(1710), 1, + [31708] = 2, + ACTIONS(1724), 1, sym__line_ending, STATE(481), 1, sym__newline, - [30774] = 2, - ACTIONS(1720), 1, + [31715] = 2, + ACTIONS(1742), 1, sym__line_ending, STATE(482), 1, sym__newline, - [30781] = 2, - ACTIONS(1700), 1, + [31722] = 2, + ACTIONS(2341), 1, + sym__line_ending, + ACTIONS(2548), 1, + anon_sym_PIPE, + [31729] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(13), 1, sym__newline, - [30788] = 2, - ACTIONS(1700), 1, + [31736] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(14), 1, sym__newline, - [30795] = 2, - ACTIONS(2406), 1, + [31743] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(996), 1, + STATE(987), 1, sym__newline, - [30802] = 2, - ACTIONS(2406), 1, + [31750] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(1005), 1, + STATE(996), 1, sym__newline, - [30809] = 2, - ACTIONS(2406), 1, + [31757] = 2, + ACTIONS(2462), 1, sym__line_ending, STATE(1006), 1, sym__newline, - [30816] = 2, - ACTIONS(1754), 1, + [31764] = 2, + ACTIONS(1730), 1, sym__block_close, - ACTIONS(1756), 1, + ACTIONS(1732), 1, sym__fenced_code_block_end_tilde, - [30823] = 2, - ACTIONS(1720), 1, + [31771] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(476), 1, + STATE(1010), 1, sym__newline, - [30830] = 2, - ACTIONS(2406), 1, + [31778] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(1026), 1, + STATE(353), 1, sym__newline, - [30837] = 2, - ACTIONS(1702), 1, + [31785] = 2, + ACTIONS(1714), 1, sym__line_ending, - STATE(426), 1, + STATE(448), 1, sym__newline, - [30844] = 2, - ACTIONS(1726), 1, - sym__block_close, - ACTIONS(1728), 1, - sym__fenced_code_block_end_tilde, - [30851] = 2, - ACTIONS(1702), 1, + [31792] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(442), 1, + STATE(355), 1, sym__newline, - [30858] = 1, - ACTIONS(2345), 2, - aux_sym__commonmark_whitespace_token1, + [31799] = 2, + ACTIONS(2341), 1, + sym__line_ending, + ACTIONS(2424), 1, anon_sym_PIPE, - [30863] = 2, - ACTIONS(2484), 1, + [31806] = 2, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - STATE(539), 1, + STATE(569), 1, sym__whitespace, - [30870] = 2, - ACTIONS(1704), 1, - sym__line_ending, - STATE(374), 1, - sym__newline, - [30877] = 2, - ACTIONS(1704), 1, + [31813] = 2, + ACTIONS(1742), 1, sym__line_ending, - STATE(375), 1, + STATE(496), 1, sym__newline, - [30884] = 2, - ACTIONS(1710), 1, + [31820] = 2, + ACTIONS(1752), 1, + sym__block_close, + ACTIONS(1754), 1, + sym__fenced_code_block_end_backtick, + [31827] = 1, + ACTIONS(2564), 2, sym__line_ending, - STATE(488), 1, - sym__newline, - [30891] = 2, - ACTIONS(1720), 1, + anon_sym_LBRACE, + [31832] = 2, + ACTIONS(1724), 1, sym__line_ending, - STATE(489), 1, + STATE(491), 1, sym__newline, - [30898] = 2, - ACTIONS(1704), 1, + [31839] = 1, + ACTIONS(2408), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [31844] = 2, + ACTIONS(1742), 1, sym__line_ending, - STATE(376), 1, + STATE(492), 1, sym__newline, - [30905] = 2, - ACTIONS(1702), 1, + [31851] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(422), 1, + STATE(357), 1, sym__newline, - [30912] = 2, - ACTIONS(1704), 1, + [31858] = 2, + ACTIONS(2566), 1, + sym__block_close, + ACTIONS(2568), 1, + sym_block_continuation, + [31865] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(377), 1, + STATE(359), 1, sym__newline, - [30919] = 2, - ACTIONS(1966), 1, - sym__line_ending, - ACTIONS(2358), 1, - anon_sym_PIPE, - [30926] = 2, - ACTIONS(1710), 1, + [31872] = 2, + ACTIONS(1724), 1, sym__line_ending, - STATE(490), 1, + STATE(475), 1, sym__newline, - [30933] = 2, - ACTIONS(1720), 1, + [31879] = 2, + ACTIONS(1724), 1, sym__line_ending, - STATE(474), 1, + STATE(493), 1, sym__newline, - [30940] = 2, - ACTIONS(1704), 1, + [31886] = 2, + ACTIONS(1742), 1, sym__line_ending, - STATE(378), 1, + STATE(494), 1, sym__newline, - [30947] = 2, - ACTIONS(1700), 1, + [31893] = 2, + ACTIONS(1752), 1, + sym__block_close, + ACTIONS(1754), 1, + sym__fenced_code_block_end_tilde, + [31900] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(18), 1, sym__newline, - [30954] = 2, - ACTIONS(1700), 1, + [31907] = 2, + ACTIONS(1718), 1, sym__line_ending, STATE(19), 1, sym__newline, - [30961] = 2, - ACTIONS(2406), 1, - sym__line_ending, - STATE(1037), 1, - sym__newline, - [30968] = 2, - ACTIONS(2406), 1, + [31914] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(937), 1, + STATE(1041), 1, sym__newline, - [30975] = 2, - ACTIONS(2406), 1, + [31921] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(938), 1, + STATE(952), 1, sym__newline, - [30982] = 2, - ACTIONS(1704), 1, + [31928] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(379), 1, + STATE(953), 1, sym__newline, - [30989] = 2, - ACTIONS(1966), 1, - sym__line_ending, - ACTIONS(2490), 1, - anon_sym_PIPE, - [30996] = 2, - ACTIONS(2406), 1, + [31935] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(942), 1, + STATE(361), 1, sym__newline, - [31003] = 2, - ACTIONS(1734), 1, - sym__block_close, - ACTIONS(1736), 1, - sym__fenced_code_block_end_backtick, - [31010] = 2, - ACTIONS(1702), 1, + [31942] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(428), 1, + STATE(957), 1, sym__newline, - [31017] = 2, - ACTIONS(2444), 1, + [31949] = 2, + ACTIONS(1716), 1, sym__line_ending, - STATE(655), 1, + STATE(363), 1, sym__newline, - [31024] = 1, - ACTIONS(2349), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [31029] = 2, - ACTIONS(2444), 1, + [31956] = 2, + ACTIONS(2462), 1, sym__line_ending, - STATE(662), 1, + STATE(967), 1, sym__newline, - [31036] = 2, - ACTIONS(2406), 1, + [31963] = 2, + ACTIONS(1742), 1, sym__line_ending, - STATE(955), 1, + STATE(478), 1, sym__newline, - [31043] = 2, - ACTIONS(1702), 1, + [31970] = 2, + ACTIONS(2494), 1, sym__line_ending, - STATE(438), 1, + STATE(674), 1, sym__newline, - [31050] = 2, - ACTIONS(2506), 1, + [31977] = 1, + ACTIONS(2379), 2, aux_sym__commonmark_whitespace_token1, - STATE(663), 1, - sym__whitespace, - [31057] = 2, - ACTIONS(2506), 1, - aux_sym__commonmark_whitespace_token1, - STATE(656), 1, - sym__whitespace, - [31064] = 2, - ACTIONS(1710), 1, - sym__line_ending, - STATE(475), 1, - sym__newline, - [31071] = 1, - ACTIONS(2514), 1, - sym__close_block, - [31075] = 1, - ACTIONS(2516), 1, - sym__line_ending, - [31079] = 1, - ACTIONS(2518), 1, - sym__close_block, - [31083] = 1, - ACTIONS(2520), 1, - sym__line_ending, - [31087] = 1, - ACTIONS(2522), 1, - sym__block_close, - [31091] = 1, - ACTIONS(2524), 1, - sym__block_close, - [31095] = 1, - ACTIONS(2450), 1, - anon_sym_RBRACE, - [31099] = 1, - ACTIONS(2526), 1, - sym__block_close, - [31103] = 1, - ACTIONS(2528), 1, - sym__block_close, - [31107] = 1, - ACTIONS(2530), 1, - sym__block_close, - [31111] = 1, - ACTIONS(2532), 1, - sym__close_block, - [31115] = 1, - ACTIONS(2534), 1, - sym__block_close, - [31119] = 1, - ACTIONS(2536), 1, - sym__block_close, - [31123] = 1, - ACTIONS(2538), 1, - sym__line_ending, - [31127] = 1, - ACTIONS(2360), 1, anon_sym_PIPE, - [31131] = 1, - ACTIONS(2540), 1, - sym__line_ending, - [31135] = 1, - ACTIONS(2542), 1, - sym__block_close, - [31139] = 1, - ACTIONS(2544), 1, + [31982] = 2, + ACTIONS(2494), 1, sym__line_ending, - [31143] = 1, + STATE(676), 1, + sym__newline, + [31989] = 2, ACTIONS(2546), 1, - anon_sym_EQ, - [31147] = 1, - ACTIONS(2490), 1, - anon_sym_PIPE, - [31151] = 1, - ACTIONS(2548), 1, - sym__block_close, - [31155] = 1, - ACTIONS(2550), 1, - sym__block_close, - [31159] = 1, - ACTIONS(2552), 1, - sym__block_close, - [31163] = 1, - ACTIONS(2554), 1, - sym__block_close, - [31167] = 1, - ACTIONS(2556), 1, - sym__line_ending, - [31171] = 1, + aux_sym__commonmark_whitespace_token1, + STATE(677), 1, + sym__whitespace, + [31996] = 2, ACTIONS(2558), 1, - sym__close_block, - [31175] = 1, - ACTIONS(2560), 1, - sym__block_close, - [31179] = 1, - ACTIONS(2562), 1, - anon_sym_RBRACE, - [31183] = 1, - ACTIONS(1394), 1, - sym__close_block, - [31187] = 1, - ACTIONS(2564), 1, sym__block_close, - [31191] = 1, - ACTIONS(2566), 1, - sym__close_block, - [31195] = 1, - ACTIONS(2568), 1, - sym__line_ending, - [31199] = 1, - ACTIONS(2268), 1, - anon_sym_PIPE, - [31203] = 1, + ACTIONS(2560), 1, + sym__fenced_code_block_end_tilde, + [32003] = 1, ACTIONS(2570), 1, sym__close_block, - [31207] = 1, + [32007] = 1, ACTIONS(2572), 1, - sym__block_close, - [31211] = 1, + anon_sym_RBRACE, + [32011] = 1, ACTIONS(2574), 1, - sym__block_close, - [31215] = 1, + sym__line_ending, + [32015] = 1, ACTIONS(2576), 1, - sym__block_close, - [31219] = 1, + sym__line_ending, + [32019] = 1, ACTIONS(2578), 1, sym__block_close, - [31223] = 1, + [32023] = 1, ACTIONS(2580), 1, sym__block_close, - [31227] = 1, + [32027] = 1, ACTIONS(2582), 1, - sym__block_close, - [31231] = 1, + sym__line_ending, + [32031] = 1, ACTIONS(2584), 1, sym__block_close, - [31235] = 1, + [32035] = 1, ACTIONS(2586), 1, - sym__close_block, - [31239] = 1, + sym__block_close, + [32039] = 1, ACTIONS(2588), 1, - sym__close_block, - [31243] = 1, + sym__block_close, + [32043] = 1, ACTIONS(2590), 1, - sym__close_block, - [31247] = 1, + sym__block_close, + [32047] = 1, ACTIONS(2592), 1, - anon_sym_COLON, - [31251] = 1, + sym__block_close, + [32051] = 1, ACTIONS(2594), 1, - ts_builtin_sym_end, - [31255] = 1, + sym__block_close, + [32055] = 1, ACTIONS(2596), 1, sym__block_close, - [31259] = 1, + [32059] = 1, ACTIONS(2598), 1, - sym__block_close, - [31263] = 1, + sym__close_block, + [32063] = 1, ACTIONS(2600), 1, - sym__block_close, - [31267] = 1, + anon_sym_EQ, + [32067] = 1, ACTIONS(2602), 1, - sym__line_ending, - [31271] = 1, - ACTIONS(1576), 1, - sym__close_block, - [31275] = 1, + sym__block_close, + [32071] = 1, ACTIONS(2604), 1, - sym__line_ending, - [31279] = 1, + sym__block_close, + [32075] = 1, + ACTIONS(2326), 1, + anon_sym_PIPE, + [32079] = 1, ACTIONS(2606), 1, sym__block_close, - [31283] = 1, + [32083] = 1, + ACTIONS(2548), 1, + anon_sym_PIPE, + [32087] = 1, ACTIONS(2608), 1, - sym__block_close, - [31287] = 1, + sym__line_ending, + [32091] = 1, ACTIONS(2610), 1, sym__block_close, - [31291] = 1, + [32095] = 1, ACTIONS(2612), 1, sym__block_close, - [31295] = 1, - ACTIONS(1394), 1, - sym__block_close, - [31299] = 1, + [32099] = 1, ACTIONS(2614), 1, sym__line_ending, - [31303] = 1, + [32103] = 1, ACTIONS(2616), 1, - sym__line_ending, - [31307] = 1, - ACTIONS(2618), 1, sym__block_close, - [31311] = 1, + [32107] = 1, + ACTIONS(2618), 1, + sym__close_block, + [32111] = 1, ACTIONS(2620), 1, - sym__block_close, - [31315] = 1, + sym__close_block, + [32115] = 1, ACTIONS(2622), 1, - sym__block_close, - [31319] = 1, - ACTIONS(2358), 1, - anon_sym_PIPE, - [31323] = 1, - ACTIONS(2480), 1, - sym__block_close, - [31327] = 1, - ACTIONS(1576), 1, - anon_sym_COLON, - [31331] = 1, - ACTIONS(2492), 1, - sym__block_close, - [31335] = 1, + sym__line_ending, + [32119] = 1, ACTIONS(2624), 1, - sym__close_block, - [31339] = 1, + sym__block_close, + [32123] = 1, ACTIONS(2626), 1, sym__block_close, - [31343] = 1, + [32127] = 1, ACTIONS(2628), 1, - sym__block_close, - [31347] = 1, + ts_builtin_sym_end, + [32131] = 1, ACTIONS(2630), 1, sym__block_close, - [31351] = 1, + [32135] = 1, ACTIONS(2632), 1, sym__block_close, - [31355] = 1, + [32139] = 1, ACTIONS(2634), 1, sym__block_close, - [31359] = 1, + [32143] = 1, ACTIONS(2636), 1, - sym__block_close, - [31363] = 1, + sym__close_block, + [32147] = 1, ACTIONS(2638), 1, - sym__block_close, - [31367] = 1, + sym__close_block, + [32151] = 1, ACTIONS(2640), 1, sym__block_close, - [31371] = 1, + [32155] = 1, + ACTIONS(1394), 1, + sym__close_block, + [32159] = 1, + ACTIONS(2536), 1, + sym__block_close, + [32163] = 1, ACTIONS(2642), 1, sym__block_close, - [31375] = 1, + [32167] = 1, ACTIONS(2644), 1, - anon_sym_COLON, - [31379] = 1, + sym__block_close, + [32171] = 1, ACTIONS(2646), 1, + sym__close_block, + [32175] = 1, + ACTIONS(1394), 1, sym__block_close, - [31383] = 1, + [32179] = 1, ACTIONS(2648), 1, - sym__block_close, - [31387] = 1, + anon_sym_COLON, + [32183] = 1, ACTIONS(2650), 1, - sym__block_close, - [31391] = 1, + sym__line_ending, + [32187] = 1, ACTIONS(2652), 1, sym__block_close, - [31395] = 1, + [32191] = 1, ACTIONS(2654), 1, sym__block_close, - [31399] = 1, - ACTIONS(2258), 1, - anon_sym_PIPE, - [31403] = 1, + [32195] = 1, ACTIONS(2656), 1, sym__block_close, - [31407] = 1, + [32199] = 1, ACTIONS(2658), 1, sym__block_close, - [31411] = 1, + [32203] = 1, ACTIONS(2660), 1, - sym__close_block, - [31415] = 1, + sym__block_close, + [32207] = 1, ACTIONS(2662), 1, - sym__close_block, - [31419] = 1, + sym__block_close, + [32211] = 1, ACTIONS(2664), 1, - sym__close_block, - [31423] = 1, + sym__block_close, + [32215] = 1, ACTIONS(2666), 1, - sym__close_block, - [31427] = 1, + sym__block_close, + [32219] = 1, ACTIONS(2668), 1, - sym__close_block, - [31431] = 1, + sym__block_close, + [32223] = 1, ACTIONS(2670), 1, - sym__close_block, - [31435] = 1, + sym__block_close, + [32227] = 1, + ACTIONS(1576), 1, + anon_sym_COLON, + [32231] = 1, ACTIONS(2672), 1, - sym__close_block, - [31439] = 1, + sym__line_ending, + [32235] = 1, ACTIONS(2674), 1, - sym__close_block, - [31443] = 1, + sym__block_close, + [32239] = 1, ACTIONS(2676), 1, sym__block_close, - [31447] = 1, - ACTIONS(2372), 1, - anon_sym_PIPE, - [31451] = 1, + [32243] = 1, ACTIONS(2678), 1, - sym__close_block, - [31455] = 1, + sym__block_close, + [32247] = 1, ACTIONS(2680), 1, - sym__close_block, - [31459] = 1, + sym__block_close, + [32251] = 1, ACTIONS(2682), 1, - sym__close_block, - [31463] = 1, + sym__block_close, + [32255] = 1, ACTIONS(2684), 1, - sym__close_block, - [31467] = 1, + sym__line_ending, + [32259] = 1, ACTIONS(2686), 1, - sym__close_block, - [31471] = 1, + sym__block_close, + [32263] = 1, ACTIONS(2688), 1, - sym__close_block, - [31475] = 1, + sym__block_close, + [32267] = 1, ACTIONS(2690), 1, sym__block_close, - [31479] = 1, + [32271] = 1, ACTIONS(2692), 1, - sym__close_block, - [31483] = 1, - ACTIONS(2694), 1, - sym__block_close, - [31487] = 1, - ACTIONS(2502), 1, sym__block_close, - [31491] = 1, + [32275] = 1, + ACTIONS(2432), 1, + anon_sym_PIPE, + [32279] = 1, + ACTIONS(2500), 1, + anon_sym_RBRACE, + [32283] = 1, + ACTIONS(2694), 1, + sym__line_ending, + [32287] = 1, ACTIONS(2696), 1, - anon_sym_COLON, - [31495] = 1, + sym__block_close, + [32291] = 1, ACTIONS(2698), 1, sym__block_close, - [31499] = 1, + [32295] = 1, ACTIONS(2700), 1, sym__block_close, + [32299] = 1, + ACTIONS(2702), 1, + sym__block_close, + [32303] = 1, + ACTIONS(2704), 1, + sym__block_close, + [32307] = 1, + ACTIONS(2706), 1, + anon_sym_COLON, + [32311] = 1, + ACTIONS(2708), 1, + sym__block_close, + [32315] = 1, + ACTIONS(2322), 1, + anon_sym_PIPE, + [32319] = 1, + ACTIONS(2542), 1, + sym__block_close, + [32323] = 1, + ACTIONS(2710), 1, + sym__block_close, + [32327] = 1, + ACTIONS(2712), 1, + sym__close_block, + [32331] = 1, + ACTIONS(2714), 1, + sym__block_close, + [32335] = 1, + ACTIONS(1576), 1, + sym__close_block, + [32339] = 1, + ACTIONS(2716), 1, + sym__block_close, + [32343] = 1, + ACTIONS(2718), 1, + sym__close_block, + [32347] = 1, + ACTIONS(2720), 1, + sym__close_block, + [32351] = 1, + ACTIONS(2722), 1, + sym__close_block, + [32355] = 1, + ACTIONS(2724), 1, + sym__close_block, + [32359] = 1, + ACTIONS(2726), 1, + sym__close_block, + [32363] = 1, + ACTIONS(2728), 1, + sym__close_block, + [32367] = 1, + ACTIONS(2730), 1, + sym__close_block, + [32371] = 1, + ACTIONS(2732), 1, + sym__close_block, + [32375] = 1, + ACTIONS(2558), 1, + sym__block_close, + [32379] = 1, + ACTIONS(2424), 1, + anon_sym_PIPE, + [32383] = 1, + ACTIONS(2734), 1, + sym__close_block, + [32387] = 1, + ACTIONS(2736), 1, + sym__close_block, + [32391] = 1, + ACTIONS(2738), 1, + sym__close_block, + [32395] = 1, + ACTIONS(2740), 1, + anon_sym_COLON, + [32399] = 1, + ACTIONS(2742), 1, + sym__close_block, + [32403] = 1, + ACTIONS(2744), 1, + sym__close_block, + [32407] = 1, + ACTIONS(2746), 1, + sym__close_block, + [32411] = 1, + ACTIONS(2748), 1, + sym__close_block, + [32415] = 1, + ACTIONS(2750), 1, + sym__close_block, + [32419] = 1, + ACTIONS(2752), 1, + sym__line_ending, + [32423] = 1, + ACTIONS(2412), 1, + anon_sym_PIPE, + [32427] = 1, + ACTIONS(2754), 1, + sym__block_close, + [32431] = 1, + ACTIONS(2756), 1, + sym__close_block, }; static const uint32_t ts_small_parse_table_map[] = { @@ -51705,707 +52577,722 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(453)] = 17601, [SMALL_STATE(454)] = 17667, [SMALL_STATE(455)] = 17746, - [SMALL_STATE(456)] = 17815, - [SMALL_STATE(457)] = 17884, - [SMALL_STATE(458)] = 17953, - [SMALL_STATE(459)] = 18022, - [SMALL_STATE(460)] = 18091, - [SMALL_STATE(461)] = 18160, - [SMALL_STATE(462)] = 18229, - [SMALL_STATE(463)] = 18298, - [SMALL_STATE(464)] = 18367, - [SMALL_STATE(465)] = 18436, - [SMALL_STATE(466)] = 18505, - [SMALL_STATE(467)] = 18574, - [SMALL_STATE(468)] = 18643, - [SMALL_STATE(469)] = 18712, - [SMALL_STATE(470)] = 18781, - [SMALL_STATE(471)] = 18850, - [SMALL_STATE(472)] = 18919, - [SMALL_STATE(473)] = 18988, - [SMALL_STATE(474)] = 19050, - [SMALL_STATE(475)] = 19112, - [SMALL_STATE(476)] = 19174, - [SMALL_STATE(477)] = 19236, - [SMALL_STATE(478)] = 19298, - [SMALL_STATE(479)] = 19360, - [SMALL_STATE(480)] = 19422, - [SMALL_STATE(481)] = 19484, - [SMALL_STATE(482)] = 19546, - [SMALL_STATE(483)] = 19608, - [SMALL_STATE(484)] = 19676, - [SMALL_STATE(485)] = 19738, - [SMALL_STATE(486)] = 19800, - [SMALL_STATE(487)] = 19862, - [SMALL_STATE(488)] = 19924, - [SMALL_STATE(489)] = 19986, - [SMALL_STATE(490)] = 20048, - [SMALL_STATE(491)] = 20110, - [SMALL_STATE(492)] = 20172, - [SMALL_STATE(493)] = 20229, - [SMALL_STATE(494)] = 20286, - [SMALL_STATE(495)] = 20343, - [SMALL_STATE(496)] = 20400, - [SMALL_STATE(497)] = 20464, - [SMALL_STATE(498)] = 20520, - [SMALL_STATE(499)] = 20582, - [SMALL_STATE(500)] = 20638, - [SMALL_STATE(501)] = 20700, - [SMALL_STATE(502)] = 20756, - [SMALL_STATE(503)] = 20818, - [SMALL_STATE(504)] = 20874, - [SMALL_STATE(505)] = 20930, - [SMALL_STATE(506)] = 20986, - [SMALL_STATE(507)] = 21048, - [SMALL_STATE(508)] = 21110, - [SMALL_STATE(509)] = 21174, - [SMALL_STATE(510)] = 21230, - [SMALL_STATE(511)] = 21294, - [SMALL_STATE(512)] = 21350, - [SMALL_STATE(513)] = 21414, - [SMALL_STATE(514)] = 21478, - [SMALL_STATE(515)] = 21542, - [SMALL_STATE(516)] = 21605, - [SMALL_STATE(517)] = 21668, - [SMALL_STATE(518)] = 21721, - [SMALL_STATE(519)] = 21774, - [SMALL_STATE(520)] = 21827, - [SMALL_STATE(521)] = 21886, - [SMALL_STATE(522)] = 21945, - [SMALL_STATE(523)] = 21998, - [SMALL_STATE(524)] = 22057, - [SMALL_STATE(525)] = 22110, - [SMALL_STATE(526)] = 22163, - [SMALL_STATE(527)] = 22222, - [SMALL_STATE(528)] = 22285, - [SMALL_STATE(529)] = 22345, - [SMALL_STATE(530)] = 22395, - [SMALL_STATE(531)] = 22451, - [SMALL_STATE(532)] = 22501, - [SMALL_STATE(533)] = 22561, - [SMALL_STATE(534)] = 22611, - [SMALL_STATE(535)] = 22669, - [SMALL_STATE(536)] = 22729, - [SMALL_STATE(537)] = 22779, - [SMALL_STATE(538)] = 22829, - [SMALL_STATE(539)] = 22879, - [SMALL_STATE(540)] = 22937, - [SMALL_STATE(541)] = 22989, - [SMALL_STATE(542)] = 23043, - [SMALL_STATE(543)] = 23103, - [SMALL_STATE(544)] = 23153, - [SMALL_STATE(545)] = 23213, - [SMALL_STATE(546)] = 23263, - [SMALL_STATE(547)] = 23321, - [SMALL_STATE(548)] = 23377, - [SMALL_STATE(549)] = 23429, - [SMALL_STATE(550)] = 23479, - [SMALL_STATE(551)] = 23535, - [SMALL_STATE(552)] = 23587, - [SMALL_STATE(553)] = 23635, - [SMALL_STATE(554)] = 23680, - [SMALL_STATE(555)] = 23731, - [SMALL_STATE(556)] = 23780, - [SMALL_STATE(557)] = 23837, - [SMALL_STATE(558)] = 23886, - [SMALL_STATE(559)] = 23931, - [SMALL_STATE(560)] = 23982, - [SMALL_STATE(561)] = 24033, - [SMALL_STATE(562)] = 24090, - [SMALL_STATE(563)] = 24141, - [SMALL_STATE(564)] = 24194, - [SMALL_STATE(565)] = 24245, - [SMALL_STATE(566)] = 24296, - [SMALL_STATE(567)] = 24341, - [SMALL_STATE(568)] = 24386, - [SMALL_STATE(569)] = 24431, - [SMALL_STATE(570)] = 24480, - [SMALL_STATE(571)] = 24529, - [SMALL_STATE(572)] = 24571, - [SMALL_STATE(573)] = 24613, - [SMALL_STATE(574)] = 24663, - [SMALL_STATE(575)] = 24707, - [SMALL_STATE(576)] = 24757, - [SMALL_STATE(577)] = 24807, - [SMALL_STATE(578)] = 24857, - [SMALL_STATE(579)] = 24911, - [SMALL_STATE(580)] = 24953, - [SMALL_STATE(581)] = 24995, - [SMALL_STATE(582)] = 25049, - [SMALL_STATE(583)] = 25103, - [SMALL_STATE(584)] = 25153, - [SMALL_STATE(585)] = 25197, - [SMALL_STATE(586)] = 25247, - [SMALL_STATE(587)] = 25289, - [SMALL_STATE(588)] = 25339, - [SMALL_STATE(589)] = 25381, - [SMALL_STATE(590)] = 25425, - [SMALL_STATE(591)] = 25475, - [SMALL_STATE(592)] = 25519, - [SMALL_STATE(593)] = 25561, - [SMALL_STATE(594)] = 25605, - [SMALL_STATE(595)] = 25647, - [SMALL_STATE(596)] = 25695, - [SMALL_STATE(597)] = 25743, - [SMALL_STATE(598)] = 25793, - [SMALL_STATE(599)] = 25843, - [SMALL_STATE(600)] = 25887, - [SMALL_STATE(601)] = 25937, - [SMALL_STATE(602)] = 25978, - [SMALL_STATE(603)] = 26019, - [SMALL_STATE(604)] = 26070, - [SMALL_STATE(605)] = 26111, - [SMALL_STATE(606)] = 26162, - [SMALL_STATE(607)] = 26203, - [SMALL_STATE(608)] = 26254, - [SMALL_STATE(609)] = 26297, - [SMALL_STATE(610)] = 26348, - [SMALL_STATE(611)] = 26389, - [SMALL_STATE(612)] = 26440, - [SMALL_STATE(613)] = 26483, - [SMALL_STATE(614)] = 26534, - [SMALL_STATE(615)] = 26585, - [SMALL_STATE(616)] = 26636, - [SMALL_STATE(617)] = 26677, - [SMALL_STATE(618)] = 26718, - [SMALL_STATE(619)] = 26762, - [SMALL_STATE(620)] = 26804, - [SMALL_STATE(621)] = 26846, - [SMALL_STATE(622)] = 26888, - [SMALL_STATE(623)] = 26932, - [SMALL_STATE(624)] = 26974, - [SMALL_STATE(625)] = 27016, - [SMALL_STATE(626)] = 27056, - [SMALL_STATE(627)] = 27098, - [SMALL_STATE(628)] = 27138, - [SMALL_STATE(629)] = 27179, - [SMALL_STATE(630)] = 27220, - [SMALL_STATE(631)] = 27259, - [SMALL_STATE(632)] = 27300, - [SMALL_STATE(633)] = 27341, - [SMALL_STATE(634)] = 27393, - [SMALL_STATE(635)] = 27445, - [SMALL_STATE(636)] = 27497, - [SMALL_STATE(637)] = 27549, - [SMALL_STATE(638)] = 27601, - [SMALL_STATE(639)] = 27638, - [SMALL_STATE(640)] = 27666, - [SMALL_STATE(641)] = 27694, - [SMALL_STATE(642)] = 27722, - [SMALL_STATE(643)] = 27750, - [SMALL_STATE(644)] = 27778, - [SMALL_STATE(645)] = 27806, - [SMALL_STATE(646)] = 27837, - [SMALL_STATE(647)] = 27864, - [SMALL_STATE(648)] = 27891, - [SMALL_STATE(649)] = 27918, - [SMALL_STATE(650)] = 27945, - [SMALL_STATE(651)] = 27967, - [SMALL_STATE(652)] = 27995, - [SMALL_STATE(653)] = 28023, - [SMALL_STATE(654)] = 28045, - [SMALL_STATE(655)] = 28073, - [SMALL_STATE(656)] = 28101, - [SMALL_STATE(657)] = 28123, - [SMALL_STATE(658)] = 28145, - [SMALL_STATE(659)] = 28167, - [SMALL_STATE(660)] = 28189, - [SMALL_STATE(661)] = 28211, - [SMALL_STATE(662)] = 28233, - [SMALL_STATE(663)] = 28261, - [SMALL_STATE(664)] = 28283, - [SMALL_STATE(665)] = 28300, - [SMALL_STATE(666)] = 28315, - [SMALL_STATE(667)] = 28332, - [SMALL_STATE(668)] = 28350, - [SMALL_STATE(669)] = 28368, - [SMALL_STATE(670)] = 28386, - [SMALL_STATE(671)] = 28404, - [SMALL_STATE(672)] = 28422, - [SMALL_STATE(673)] = 28440, - [SMALL_STATE(674)] = 28458, - [SMALL_STATE(675)] = 28474, - [SMALL_STATE(676)] = 28496, - [SMALL_STATE(677)] = 28506, - [SMALL_STATE(678)] = 28524, - [SMALL_STATE(679)] = 28542, - [SMALL_STATE(680)] = 28564, - [SMALL_STATE(681)] = 28582, - [SMALL_STATE(682)] = 28600, - [SMALL_STATE(683)] = 28618, - [SMALL_STATE(684)] = 28636, - [SMALL_STATE(685)] = 28654, - [SMALL_STATE(686)] = 28672, - [SMALL_STATE(687)] = 28690, - [SMALL_STATE(688)] = 28708, - [SMALL_STATE(689)] = 28730, - [SMALL_STATE(690)] = 28748, - [SMALL_STATE(691)] = 28770, - [SMALL_STATE(692)] = 28792, - [SMALL_STATE(693)] = 28810, - [SMALL_STATE(694)] = 28828, - [SMALL_STATE(695)] = 28846, - [SMALL_STATE(696)] = 28855, - [SMALL_STATE(697)] = 28870, - [SMALL_STATE(698)] = 28879, - [SMALL_STATE(699)] = 28898, - [SMALL_STATE(700)] = 28913, - [SMALL_STATE(701)] = 28932, - [SMALL_STATE(702)] = 28947, - [SMALL_STATE(703)] = 28962, - [SMALL_STATE(704)] = 28977, - [SMALL_STATE(705)] = 28992, - [SMALL_STATE(706)] = 29007, - [SMALL_STATE(707)] = 29022, - [SMALL_STATE(708)] = 29037, - [SMALL_STATE(709)] = 29046, - [SMALL_STATE(710)] = 29065, - [SMALL_STATE(711)] = 29084, - [SMALL_STATE(712)] = 29103, - [SMALL_STATE(713)] = 29118, - [SMALL_STATE(714)] = 29133, - [SMALL_STATE(715)] = 29148, - [SMALL_STATE(716)] = 29167, - [SMALL_STATE(717)] = 29182, - [SMALL_STATE(718)] = 29197, - [SMALL_STATE(719)] = 29206, - [SMALL_STATE(720)] = 29221, - [SMALL_STATE(721)] = 29240, - [SMALL_STATE(722)] = 29255, - [SMALL_STATE(723)] = 29274, - [SMALL_STATE(724)] = 29288, - [SMALL_STATE(725)] = 29296, - [SMALL_STATE(726)] = 29306, - [SMALL_STATE(727)] = 29320, - [SMALL_STATE(728)] = 29334, - [SMALL_STATE(729)] = 29348, - [SMALL_STATE(730)] = 29362, - [SMALL_STATE(731)] = 29378, - [SMALL_STATE(732)] = 29394, - [SMALL_STATE(733)] = 29402, - [SMALL_STATE(734)] = 29418, - [SMALL_STATE(735)] = 29434, - [SMALL_STATE(736)] = 29450, - [SMALL_STATE(737)] = 29460, - [SMALL_STATE(738)] = 29468, - [SMALL_STATE(739)] = 29480, - [SMALL_STATE(740)] = 29496, - [SMALL_STATE(741)] = 29509, - [SMALL_STATE(742)] = 29522, - [SMALL_STATE(743)] = 29531, - [SMALL_STATE(744)] = 29544, - [SMALL_STATE(745)] = 29553, - [SMALL_STATE(746)] = 29562, - [SMALL_STATE(747)] = 29571, - [SMALL_STATE(748)] = 29584, - [SMALL_STATE(749)] = 29593, - [SMALL_STATE(750)] = 29602, - [SMALL_STATE(751)] = 29611, - [SMALL_STATE(752)] = 29624, - [SMALL_STATE(753)] = 29637, - [SMALL_STATE(754)] = 29646, - [SMALL_STATE(755)] = 29655, - [SMALL_STATE(756)] = 29664, - [SMALL_STATE(757)] = 29677, - [SMALL_STATE(758)] = 29686, - [SMALL_STATE(759)] = 29699, - [SMALL_STATE(760)] = 29708, - [SMALL_STATE(761)] = 29717, - [SMALL_STATE(762)] = 29730, - [SMALL_STATE(763)] = 29739, - [SMALL_STATE(764)] = 29752, - [SMALL_STATE(765)] = 29761, - [SMALL_STATE(766)] = 29770, - [SMALL_STATE(767)] = 29779, - [SMALL_STATE(768)] = 29788, - [SMALL_STATE(769)] = 29801, - [SMALL_STATE(770)] = 29814, - [SMALL_STATE(771)] = 29823, - [SMALL_STATE(772)] = 29832, - [SMALL_STATE(773)] = 29841, - [SMALL_STATE(774)] = 29848, - [SMALL_STATE(775)] = 29857, - [SMALL_STATE(776)] = 29867, - [SMALL_STATE(777)] = 29877, - [SMALL_STATE(778)] = 29883, - [SMALL_STATE(779)] = 29889, - [SMALL_STATE(780)] = 29899, - [SMALL_STATE(781)] = 29909, - [SMALL_STATE(782)] = 29919, - [SMALL_STATE(783)] = 29929, - [SMALL_STATE(784)] = 29935, - [SMALL_STATE(785)] = 29945, - [SMALL_STATE(786)] = 29955, - [SMALL_STATE(787)] = 29965, - [SMALL_STATE(788)] = 29975, - [SMALL_STATE(789)] = 29985, - [SMALL_STATE(790)] = 29995, - [SMALL_STATE(791)] = 30005, - [SMALL_STATE(792)] = 30015, - [SMALL_STATE(793)] = 30025, - [SMALL_STATE(794)] = 30035, - [SMALL_STATE(795)] = 30045, - [SMALL_STATE(796)] = 30055, - [SMALL_STATE(797)] = 30065, - [SMALL_STATE(798)] = 30075, - [SMALL_STATE(799)] = 30085, - [SMALL_STATE(800)] = 30095, - [SMALL_STATE(801)] = 30105, - [SMALL_STATE(802)] = 30115, - [SMALL_STATE(803)] = 30125, - [SMALL_STATE(804)] = 30135, - [SMALL_STATE(805)] = 30143, - [SMALL_STATE(806)] = 30153, - [SMALL_STATE(807)] = 30163, - [SMALL_STATE(808)] = 30173, - [SMALL_STATE(809)] = 30183, - [SMALL_STATE(810)] = 30193, - [SMALL_STATE(811)] = 30199, - [SMALL_STATE(812)] = 30209, - [SMALL_STATE(813)] = 30219, - [SMALL_STATE(814)] = 30229, - [SMALL_STATE(815)] = 30239, - [SMALL_STATE(816)] = 30249, - [SMALL_STATE(817)] = 30259, - [SMALL_STATE(818)] = 30269, - [SMALL_STATE(819)] = 30279, - [SMALL_STATE(820)] = 30289, - [SMALL_STATE(821)] = 30299, - [SMALL_STATE(822)] = 30306, - [SMALL_STATE(823)] = 30313, - [SMALL_STATE(824)] = 30320, - [SMALL_STATE(825)] = 30327, - [SMALL_STATE(826)] = 30334, - [SMALL_STATE(827)] = 30341, - [SMALL_STATE(828)] = 30348, - [SMALL_STATE(829)] = 30355, - [SMALL_STATE(830)] = 30362, - [SMALL_STATE(831)] = 30369, - [SMALL_STATE(832)] = 30376, - [SMALL_STATE(833)] = 30383, - [SMALL_STATE(834)] = 30390, - [SMALL_STATE(835)] = 30397, - [SMALL_STATE(836)] = 30404, - [SMALL_STATE(837)] = 30411, - [SMALL_STATE(838)] = 30418, - [SMALL_STATE(839)] = 30425, - [SMALL_STATE(840)] = 30432, - [SMALL_STATE(841)] = 30439, - [SMALL_STATE(842)] = 30446, - [SMALL_STATE(843)] = 30451, - [SMALL_STATE(844)] = 30458, - [SMALL_STATE(845)] = 30465, - [SMALL_STATE(846)] = 30472, - [SMALL_STATE(847)] = 30479, - [SMALL_STATE(848)] = 30486, - [SMALL_STATE(849)] = 30493, - [SMALL_STATE(850)] = 30500, - [SMALL_STATE(851)] = 30507, - [SMALL_STATE(852)] = 30514, - [SMALL_STATE(853)] = 30521, - [SMALL_STATE(854)] = 30528, - [SMALL_STATE(855)] = 30535, - [SMALL_STATE(856)] = 30542, - [SMALL_STATE(857)] = 30549, - [SMALL_STATE(858)] = 30556, - [SMALL_STATE(859)] = 30563, - [SMALL_STATE(860)] = 30570, - [SMALL_STATE(861)] = 30577, - [SMALL_STATE(862)] = 30584, - [SMALL_STATE(863)] = 30591, - [SMALL_STATE(864)] = 30598, - [SMALL_STATE(865)] = 30605, - [SMALL_STATE(866)] = 30610, - [SMALL_STATE(867)] = 30617, - [SMALL_STATE(868)] = 30624, - [SMALL_STATE(869)] = 30631, - [SMALL_STATE(870)] = 30638, - [SMALL_STATE(871)] = 30645, - [SMALL_STATE(872)] = 30652, - [SMALL_STATE(873)] = 30659, - [SMALL_STATE(874)] = 30666, - [SMALL_STATE(875)] = 30673, - [SMALL_STATE(876)] = 30680, - [SMALL_STATE(877)] = 30687, - [SMALL_STATE(878)] = 30694, - [SMALL_STATE(879)] = 30701, - [SMALL_STATE(880)] = 30708, - [SMALL_STATE(881)] = 30715, - [SMALL_STATE(882)] = 30720, - [SMALL_STATE(883)] = 30727, - [SMALL_STATE(884)] = 30734, - [SMALL_STATE(885)] = 30741, - [SMALL_STATE(886)] = 30748, - [SMALL_STATE(887)] = 30755, - [SMALL_STATE(888)] = 30760, - [SMALL_STATE(889)] = 30767, - [SMALL_STATE(890)] = 30774, - [SMALL_STATE(891)] = 30781, - [SMALL_STATE(892)] = 30788, - [SMALL_STATE(893)] = 30795, - [SMALL_STATE(894)] = 30802, - [SMALL_STATE(895)] = 30809, - [SMALL_STATE(896)] = 30816, - [SMALL_STATE(897)] = 30823, - [SMALL_STATE(898)] = 30830, - [SMALL_STATE(899)] = 30837, - [SMALL_STATE(900)] = 30844, - [SMALL_STATE(901)] = 30851, - [SMALL_STATE(902)] = 30858, - [SMALL_STATE(903)] = 30863, - [SMALL_STATE(904)] = 30870, - [SMALL_STATE(905)] = 30877, - [SMALL_STATE(906)] = 30884, - [SMALL_STATE(907)] = 30891, - [SMALL_STATE(908)] = 30898, - [SMALL_STATE(909)] = 30905, - [SMALL_STATE(910)] = 30912, - [SMALL_STATE(911)] = 30919, - [SMALL_STATE(912)] = 30926, - [SMALL_STATE(913)] = 30933, - [SMALL_STATE(914)] = 30940, - [SMALL_STATE(915)] = 30947, - [SMALL_STATE(916)] = 30954, - [SMALL_STATE(917)] = 30961, - [SMALL_STATE(918)] = 30968, - [SMALL_STATE(919)] = 30975, - [SMALL_STATE(920)] = 30982, - [SMALL_STATE(921)] = 30989, - [SMALL_STATE(922)] = 30996, - [SMALL_STATE(923)] = 31003, - [SMALL_STATE(924)] = 31010, - [SMALL_STATE(925)] = 31017, - [SMALL_STATE(926)] = 31024, - [SMALL_STATE(927)] = 31029, - [SMALL_STATE(928)] = 31036, - [SMALL_STATE(929)] = 31043, - [SMALL_STATE(930)] = 31050, - [SMALL_STATE(931)] = 31057, - [SMALL_STATE(932)] = 31064, - [SMALL_STATE(933)] = 31071, - [SMALL_STATE(934)] = 31075, - [SMALL_STATE(935)] = 31079, - [SMALL_STATE(936)] = 31083, - [SMALL_STATE(937)] = 31087, - [SMALL_STATE(938)] = 31091, - [SMALL_STATE(939)] = 31095, - [SMALL_STATE(940)] = 31099, - [SMALL_STATE(941)] = 31103, - [SMALL_STATE(942)] = 31107, - [SMALL_STATE(943)] = 31111, - [SMALL_STATE(944)] = 31115, - [SMALL_STATE(945)] = 31119, - [SMALL_STATE(946)] = 31123, - [SMALL_STATE(947)] = 31127, - [SMALL_STATE(948)] = 31131, - [SMALL_STATE(949)] = 31135, - [SMALL_STATE(950)] = 31139, - [SMALL_STATE(951)] = 31143, - [SMALL_STATE(952)] = 31147, - [SMALL_STATE(953)] = 31151, - [SMALL_STATE(954)] = 31155, - [SMALL_STATE(955)] = 31159, - [SMALL_STATE(956)] = 31163, - [SMALL_STATE(957)] = 31167, - [SMALL_STATE(958)] = 31171, - [SMALL_STATE(959)] = 31175, - [SMALL_STATE(960)] = 31179, - [SMALL_STATE(961)] = 31183, - [SMALL_STATE(962)] = 31187, - [SMALL_STATE(963)] = 31191, - [SMALL_STATE(964)] = 31195, - [SMALL_STATE(965)] = 31199, - [SMALL_STATE(966)] = 31203, - [SMALL_STATE(967)] = 31207, - [SMALL_STATE(968)] = 31211, - [SMALL_STATE(969)] = 31215, - [SMALL_STATE(970)] = 31219, - [SMALL_STATE(971)] = 31223, - [SMALL_STATE(972)] = 31227, - [SMALL_STATE(973)] = 31231, - [SMALL_STATE(974)] = 31235, - [SMALL_STATE(975)] = 31239, - [SMALL_STATE(976)] = 31243, - [SMALL_STATE(977)] = 31247, - [SMALL_STATE(978)] = 31251, - [SMALL_STATE(979)] = 31255, - [SMALL_STATE(980)] = 31259, - [SMALL_STATE(981)] = 31263, - [SMALL_STATE(982)] = 31267, - [SMALL_STATE(983)] = 31271, - [SMALL_STATE(984)] = 31275, - [SMALL_STATE(985)] = 31279, - [SMALL_STATE(986)] = 31283, - [SMALL_STATE(987)] = 31287, - [SMALL_STATE(988)] = 31291, - [SMALL_STATE(989)] = 31295, - [SMALL_STATE(990)] = 31299, - [SMALL_STATE(991)] = 31303, - [SMALL_STATE(992)] = 31307, - [SMALL_STATE(993)] = 31311, - [SMALL_STATE(994)] = 31315, - [SMALL_STATE(995)] = 31319, - [SMALL_STATE(996)] = 31323, - [SMALL_STATE(997)] = 31327, - [SMALL_STATE(998)] = 31331, - [SMALL_STATE(999)] = 31335, - [SMALL_STATE(1000)] = 31339, - [SMALL_STATE(1001)] = 31343, - [SMALL_STATE(1002)] = 31347, - [SMALL_STATE(1003)] = 31351, - [SMALL_STATE(1004)] = 31355, - [SMALL_STATE(1005)] = 31359, - [SMALL_STATE(1006)] = 31363, - [SMALL_STATE(1007)] = 31367, - [SMALL_STATE(1008)] = 31371, - [SMALL_STATE(1009)] = 31375, - [SMALL_STATE(1010)] = 31379, - [SMALL_STATE(1011)] = 31383, - [SMALL_STATE(1012)] = 31387, - [SMALL_STATE(1013)] = 31391, - [SMALL_STATE(1014)] = 31395, - [SMALL_STATE(1015)] = 31399, - [SMALL_STATE(1016)] = 31403, - [SMALL_STATE(1017)] = 31407, - [SMALL_STATE(1018)] = 31411, - [SMALL_STATE(1019)] = 31415, - [SMALL_STATE(1020)] = 31419, - [SMALL_STATE(1021)] = 31423, - [SMALL_STATE(1022)] = 31427, - [SMALL_STATE(1023)] = 31431, - [SMALL_STATE(1024)] = 31435, - [SMALL_STATE(1025)] = 31439, - [SMALL_STATE(1026)] = 31443, - [SMALL_STATE(1027)] = 31447, - [SMALL_STATE(1028)] = 31451, - [SMALL_STATE(1029)] = 31455, - [SMALL_STATE(1030)] = 31459, - [SMALL_STATE(1031)] = 31463, - [SMALL_STATE(1032)] = 31467, - [SMALL_STATE(1033)] = 31471, - [SMALL_STATE(1034)] = 31475, - [SMALL_STATE(1035)] = 31479, - [SMALL_STATE(1036)] = 31483, - [SMALL_STATE(1037)] = 31487, - [SMALL_STATE(1038)] = 31491, - [SMALL_STATE(1039)] = 31495, - [SMALL_STATE(1040)] = 31499, + [SMALL_STATE(456)] = 17820, + [SMALL_STATE(457)] = 17889, + [SMALL_STATE(458)] = 17958, + [SMALL_STATE(459)] = 18027, + [SMALL_STATE(460)] = 18096, + [SMALL_STATE(461)] = 18165, + [SMALL_STATE(462)] = 18234, + [SMALL_STATE(463)] = 18303, + [SMALL_STATE(464)] = 18372, + [SMALL_STATE(465)] = 18441, + [SMALL_STATE(466)] = 18510, + [SMALL_STATE(467)] = 18579, + [SMALL_STATE(468)] = 18648, + [SMALL_STATE(469)] = 18717, + [SMALL_STATE(470)] = 18786, + [SMALL_STATE(471)] = 18855, + [SMALL_STATE(472)] = 18924, + [SMALL_STATE(473)] = 18993, + [SMALL_STATE(474)] = 19062, + [SMALL_STATE(475)] = 19124, + [SMALL_STATE(476)] = 19186, + [SMALL_STATE(477)] = 19248, + [SMALL_STATE(478)] = 19310, + [SMALL_STATE(479)] = 19372, + [SMALL_STATE(480)] = 19434, + [SMALL_STATE(481)] = 19496, + [SMALL_STATE(482)] = 19558, + [SMALL_STATE(483)] = 19620, + [SMALL_STATE(484)] = 19682, + [SMALL_STATE(485)] = 19750, + [SMALL_STATE(486)] = 19812, + [SMALL_STATE(487)] = 19874, + [SMALL_STATE(488)] = 19942, + [SMALL_STATE(489)] = 20010, + [SMALL_STATE(490)] = 20078, + [SMALL_STATE(491)] = 20140, + [SMALL_STATE(492)] = 20202, + [SMALL_STATE(493)] = 20264, + [SMALL_STATE(494)] = 20326, + [SMALL_STATE(495)] = 20388, + [SMALL_STATE(496)] = 20456, + [SMALL_STATE(497)] = 20518, + [SMALL_STATE(498)] = 20578, + [SMALL_STATE(499)] = 20647, + [SMALL_STATE(500)] = 20704, + [SMALL_STATE(501)] = 20773, + [SMALL_STATE(502)] = 20830, + [SMALL_STATE(503)] = 20887, + [SMALL_STATE(504)] = 20944, + [SMALL_STATE(505)] = 21001, + [SMALL_STATE(506)] = 21058, + [SMALL_STATE(507)] = 21115, + [SMALL_STATE(508)] = 21172, + [SMALL_STATE(509)] = 21229, + [SMALL_STATE(510)] = 21298, + [SMALL_STATE(511)] = 21360, + [SMALL_STATE(512)] = 21416, + [SMALL_STATE(513)] = 21482, + [SMALL_STATE(514)] = 21548, + [SMALL_STATE(515)] = 21614, + [SMALL_STATE(516)] = 21670, + [SMALL_STATE(517)] = 21726, + [SMALL_STATE(518)] = 21788, + [SMALL_STATE(519)] = 21846, + [SMALL_STATE(520)] = 21902, + [SMALL_STATE(521)] = 21968, + [SMALL_STATE(522)] = 22032, + [SMALL_STATE(523)] = 22088, + [SMALL_STATE(524)] = 22150, + [SMALL_STATE(525)] = 22206, + [SMALL_STATE(526)] = 22270, + [SMALL_STATE(527)] = 22326, + [SMALL_STATE(528)] = 22390, + [SMALL_STATE(529)] = 22454, + [SMALL_STATE(530)] = 22518, + [SMALL_STATE(531)] = 22584, + [SMALL_STATE(532)] = 22648, + [SMALL_STATE(533)] = 22703, + [SMALL_STATE(534)] = 22760, + [SMALL_STATE(535)] = 22815, + [SMALL_STATE(536)] = 22874, + [SMALL_STATE(537)] = 22929, + [SMALL_STATE(538)] = 22988, + [SMALL_STATE(539)] = 23043, + [SMALL_STATE(540)] = 23106, + [SMALL_STATE(541)] = 23165, + [SMALL_STATE(542)] = 23224, + [SMALL_STATE(543)] = 23287, + [SMALL_STATE(544)] = 23340, + [SMALL_STATE(545)] = 23395, + [SMALL_STATE(546)] = 23444, + [SMALL_STATE(547)] = 23496, + [SMALL_STATE(548)] = 23550, + [SMALL_STATE(549)] = 23596, + [SMALL_STATE(550)] = 23646, + [SMALL_STATE(551)] = 23696, + [SMALL_STATE(552)] = 23756, + [SMALL_STATE(553)] = 23806, + [SMALL_STATE(554)] = 23852, + [SMALL_STATE(555)] = 23898, + [SMALL_STATE(556)] = 23948, + [SMALL_STATE(557)] = 23998, + [SMALL_STATE(558)] = 24052, + [SMALL_STATE(559)] = 24106, + [SMALL_STATE(560)] = 24156, + [SMALL_STATE(561)] = 24206, + [SMALL_STATE(562)] = 24252, + [SMALL_STATE(563)] = 24306, + [SMALL_STATE(564)] = 24364, + [SMALL_STATE(565)] = 24424, + [SMALL_STATE(566)] = 24482, + [SMALL_STATE(567)] = 24532, + [SMALL_STATE(568)] = 24578, + [SMALL_STATE(569)] = 24630, + [SMALL_STATE(570)] = 24688, + [SMALL_STATE(571)] = 24748, + [SMALL_STATE(572)] = 24802, + [SMALL_STATE(573)] = 24852, + [SMALL_STATE(574)] = 24904, + [SMALL_STATE(575)] = 24961, + [SMALL_STATE(576)] = 25010, + [SMALL_STATE(577)] = 25055, + [SMALL_STATE(578)] = 25104, + [SMALL_STATE(579)] = 25149, + [SMALL_STATE(580)] = 25194, + [SMALL_STATE(581)] = 25251, + [SMALL_STATE(582)] = 25296, + [SMALL_STATE(583)] = 25345, + [SMALL_STATE(584)] = 25394, + [SMALL_STATE(585)] = 25451, + [SMALL_STATE(586)] = 25496, + [SMALL_STATE(587)] = 25553, + [SMALL_STATE(588)] = 25598, + [SMALL_STATE(589)] = 25655, + [SMALL_STATE(590)] = 25712, + [SMALL_STATE(591)] = 25769, + [SMALL_STATE(592)] = 25820, + [SMALL_STATE(593)] = 25877, + [SMALL_STATE(594)] = 25919, + [SMALL_STATE(595)] = 25961, + [SMALL_STATE(596)] = 26003, + [SMALL_STATE(597)] = 26047, + [SMALL_STATE(598)] = 26097, + [SMALL_STATE(599)] = 26147, + [SMALL_STATE(600)] = 26191, + [SMALL_STATE(601)] = 26235, + [SMALL_STATE(602)] = 26279, + [SMALL_STATE(603)] = 26327, + [SMALL_STATE(604)] = 26369, + [SMALL_STATE(605)] = 26419, + [SMALL_STATE(606)] = 26463, + [SMALL_STATE(607)] = 26513, + [SMALL_STATE(608)] = 26555, + [SMALL_STATE(609)] = 26605, + [SMALL_STATE(610)] = 26649, + [SMALL_STATE(611)] = 26691, + [SMALL_STATE(612)] = 26741, + [SMALL_STATE(613)] = 26783, + [SMALL_STATE(614)] = 26831, + [SMALL_STATE(615)] = 26873, + [SMALL_STATE(616)] = 26914, + [SMALL_STATE(617)] = 26955, + [SMALL_STATE(618)] = 26998, + [SMALL_STATE(619)] = 27041, + [SMALL_STATE(620)] = 27082, + [SMALL_STATE(621)] = 27125, + [SMALL_STATE(622)] = 27168, + [SMALL_STATE(623)] = 27211, + [SMALL_STATE(624)] = 27252, + [SMALL_STATE(625)] = 27295, + [SMALL_STATE(626)] = 27338, + [SMALL_STATE(627)] = 27381, + [SMALL_STATE(628)] = 27422, + [SMALL_STATE(629)] = 27463, + [SMALL_STATE(630)] = 27504, + [SMALL_STATE(631)] = 27550, + [SMALL_STATE(632)] = 27596, + [SMALL_STATE(633)] = 27640, + [SMALL_STATE(634)] = 27684, + [SMALL_STATE(635)] = 27730, + [SMALL_STATE(636)] = 27776, + [SMALL_STATE(637)] = 27822, + [SMALL_STATE(638)] = 27862, + [SMALL_STATE(639)] = 27908, + [SMALL_STATE(640)] = 27954, + [SMALL_STATE(641)] = 27994, + [SMALL_STATE(642)] = 28035, + [SMALL_STATE(643)] = 28076, + [SMALL_STATE(644)] = 28117, + [SMALL_STATE(645)] = 28158, + [SMALL_STATE(646)] = 28197, + [SMALL_STATE(647)] = 28235, + [SMALL_STATE(648)] = 28273, + [SMALL_STATE(649)] = 28325, + [SMALL_STATE(650)] = 28377, + [SMALL_STATE(651)] = 28429, + [SMALL_STATE(652)] = 28481, + [SMALL_STATE(653)] = 28533, + [SMALL_STATE(654)] = 28570, + [SMALL_STATE(655)] = 28598, + [SMALL_STATE(656)] = 28626, + [SMALL_STATE(657)] = 28654, + [SMALL_STATE(658)] = 28682, + [SMALL_STATE(659)] = 28710, + [SMALL_STATE(660)] = 28738, + [SMALL_STATE(661)] = 28765, + [SMALL_STATE(662)] = 28792, + [SMALL_STATE(663)] = 28819, + [SMALL_STATE(664)] = 28850, + [SMALL_STATE(665)] = 28877, + [SMALL_STATE(666)] = 28905, + [SMALL_STATE(667)] = 28933, + [SMALL_STATE(668)] = 28955, + [SMALL_STATE(669)] = 28977, + [SMALL_STATE(670)] = 29005, + [SMALL_STATE(671)] = 29027, + [SMALL_STATE(672)] = 29049, + [SMALL_STATE(673)] = 29071, + [SMALL_STATE(674)] = 29093, + [SMALL_STATE(675)] = 29121, + [SMALL_STATE(676)] = 29143, + [SMALL_STATE(677)] = 29171, + [SMALL_STATE(678)] = 29193, + [SMALL_STATE(679)] = 29215, + [SMALL_STATE(680)] = 29230, + [SMALL_STATE(681)] = 29247, + [SMALL_STATE(682)] = 29264, + [SMALL_STATE(683)] = 29286, + [SMALL_STATE(684)] = 29304, + [SMALL_STATE(685)] = 29326, + [SMALL_STATE(686)] = 29344, + [SMALL_STATE(687)] = 29366, + [SMALL_STATE(688)] = 29384, + [SMALL_STATE(689)] = 29400, + [SMALL_STATE(690)] = 29418, + [SMALL_STATE(691)] = 29440, + [SMALL_STATE(692)] = 29458, + [SMALL_STATE(693)] = 29476, + [SMALL_STATE(694)] = 29494, + [SMALL_STATE(695)] = 29512, + [SMALL_STATE(696)] = 29530, + [SMALL_STATE(697)] = 29548, + [SMALL_STATE(698)] = 29566, + [SMALL_STATE(699)] = 29584, + [SMALL_STATE(700)] = 29602, + [SMALL_STATE(701)] = 29620, + [SMALL_STATE(702)] = 29638, + [SMALL_STATE(703)] = 29656, + [SMALL_STATE(704)] = 29674, + [SMALL_STATE(705)] = 29692, + [SMALL_STATE(706)] = 29714, + [SMALL_STATE(707)] = 29724, + [SMALL_STATE(708)] = 29742, + [SMALL_STATE(709)] = 29760, + [SMALL_STATE(710)] = 29778, + [SMALL_STATE(711)] = 29797, + [SMALL_STATE(712)] = 29816, + [SMALL_STATE(713)] = 29831, + [SMALL_STATE(714)] = 29846, + [SMALL_STATE(715)] = 29861, + [SMALL_STATE(716)] = 29876, + [SMALL_STATE(717)] = 29891, + [SMALL_STATE(718)] = 29910, + [SMALL_STATE(719)] = 29919, + [SMALL_STATE(720)] = 29934, + [SMALL_STATE(721)] = 29949, + [SMALL_STATE(722)] = 29964, + [SMALL_STATE(723)] = 29979, + [SMALL_STATE(724)] = 29994, + [SMALL_STATE(725)] = 30003, + [SMALL_STATE(726)] = 30018, + [SMALL_STATE(727)] = 30027, + [SMALL_STATE(728)] = 30042, + [SMALL_STATE(729)] = 30061, + [SMALL_STATE(730)] = 30080, + [SMALL_STATE(731)] = 30095, + [SMALL_STATE(732)] = 30110, + [SMALL_STATE(733)] = 30129, + [SMALL_STATE(734)] = 30148, + [SMALL_STATE(735)] = 30167, + [SMALL_STATE(736)] = 30182, + [SMALL_STATE(737)] = 30197, + [SMALL_STATE(738)] = 30206, + [SMALL_STATE(739)] = 30220, + [SMALL_STATE(740)] = 30234, + [SMALL_STATE(741)] = 30242, + [SMALL_STATE(742)] = 30250, + [SMALL_STATE(743)] = 30260, + [SMALL_STATE(744)] = 30274, + [SMALL_STATE(745)] = 30290, + [SMALL_STATE(746)] = 30306, + [SMALL_STATE(747)] = 30318, + [SMALL_STATE(748)] = 30334, + [SMALL_STATE(749)] = 30348, + [SMALL_STATE(750)] = 30364, + [SMALL_STATE(751)] = 30380, + [SMALL_STATE(752)] = 30394, + [SMALL_STATE(753)] = 30410, + [SMALL_STATE(754)] = 30418, + [SMALL_STATE(755)] = 30428, + [SMALL_STATE(756)] = 30437, + [SMALL_STATE(757)] = 30446, + [SMALL_STATE(758)] = 30459, + [SMALL_STATE(759)] = 30468, + [SMALL_STATE(760)] = 30477, + [SMALL_STATE(761)] = 30486, + [SMALL_STATE(762)] = 30499, + [SMALL_STATE(763)] = 30506, + [SMALL_STATE(764)] = 30519, + [SMALL_STATE(765)] = 30532, + [SMALL_STATE(766)] = 30541, + [SMALL_STATE(767)] = 30550, + [SMALL_STATE(768)] = 30559, + [SMALL_STATE(769)] = 30572, + [SMALL_STATE(770)] = 30581, + [SMALL_STATE(771)] = 30590, + [SMALL_STATE(772)] = 30603, + [SMALL_STATE(773)] = 30612, + [SMALL_STATE(774)] = 30625, + [SMALL_STATE(775)] = 30634, + [SMALL_STATE(776)] = 30643, + [SMALL_STATE(777)] = 30656, + [SMALL_STATE(778)] = 30665, + [SMALL_STATE(779)] = 30674, + [SMALL_STATE(780)] = 30683, + [SMALL_STATE(781)] = 30692, + [SMALL_STATE(782)] = 30701, + [SMALL_STATE(783)] = 30714, + [SMALL_STATE(784)] = 30727, + [SMALL_STATE(785)] = 30736, + [SMALL_STATE(786)] = 30745, + [SMALL_STATE(787)] = 30754, + [SMALL_STATE(788)] = 30767, + [SMALL_STATE(789)] = 30776, + [SMALL_STATE(790)] = 30789, + [SMALL_STATE(791)] = 30799, + [SMALL_STATE(792)] = 30809, + [SMALL_STATE(793)] = 30819, + [SMALL_STATE(794)] = 30829, + [SMALL_STATE(795)] = 30839, + [SMALL_STATE(796)] = 30849, + [SMALL_STATE(797)] = 30859, + [SMALL_STATE(798)] = 30869, + [SMALL_STATE(799)] = 30879, + [SMALL_STATE(800)] = 30889, + [SMALL_STATE(801)] = 30895, + [SMALL_STATE(802)] = 30905, + [SMALL_STATE(803)] = 30915, + [SMALL_STATE(804)] = 30925, + [SMALL_STATE(805)] = 30935, + [SMALL_STATE(806)] = 30945, + [SMALL_STATE(807)] = 30955, + [SMALL_STATE(808)] = 30965, + [SMALL_STATE(809)] = 30975, + [SMALL_STATE(810)] = 30985, + [SMALL_STATE(811)] = 30991, + [SMALL_STATE(812)] = 31001, + [SMALL_STATE(813)] = 31011, + [SMALL_STATE(814)] = 31021, + [SMALL_STATE(815)] = 31031, + [SMALL_STATE(816)] = 31037, + [SMALL_STATE(817)] = 31047, + [SMALL_STATE(818)] = 31057, + [SMALL_STATE(819)] = 31067, + [SMALL_STATE(820)] = 31077, + [SMALL_STATE(821)] = 31087, + [SMALL_STATE(822)] = 31097, + [SMALL_STATE(823)] = 31107, + [SMALL_STATE(824)] = 31115, + [SMALL_STATE(825)] = 31125, + [SMALL_STATE(826)] = 31135, + [SMALL_STATE(827)] = 31145, + [SMALL_STATE(828)] = 31155, + [SMALL_STATE(829)] = 31161, + [SMALL_STATE(830)] = 31171, + [SMALL_STATE(831)] = 31181, + [SMALL_STATE(832)] = 31191, + [SMALL_STATE(833)] = 31201, + [SMALL_STATE(834)] = 31211, + [SMALL_STATE(835)] = 31221, + [SMALL_STATE(836)] = 31231, + [SMALL_STATE(837)] = 31238, + [SMALL_STATE(838)] = 31245, + [SMALL_STATE(839)] = 31252, + [SMALL_STATE(840)] = 31259, + [SMALL_STATE(841)] = 31266, + [SMALL_STATE(842)] = 31273, + [SMALL_STATE(843)] = 31280, + [SMALL_STATE(844)] = 31287, + [SMALL_STATE(845)] = 31294, + [SMALL_STATE(846)] = 31301, + [SMALL_STATE(847)] = 31308, + [SMALL_STATE(848)] = 31315, + [SMALL_STATE(849)] = 31322, + [SMALL_STATE(850)] = 31329, + [SMALL_STATE(851)] = 31336, + [SMALL_STATE(852)] = 31343, + [SMALL_STATE(853)] = 31350, + [SMALL_STATE(854)] = 31357, + [SMALL_STATE(855)] = 31364, + [SMALL_STATE(856)] = 31371, + [SMALL_STATE(857)] = 31378, + [SMALL_STATE(858)] = 31385, + [SMALL_STATE(859)] = 31392, + [SMALL_STATE(860)] = 31399, + [SMALL_STATE(861)] = 31406, + [SMALL_STATE(862)] = 31413, + [SMALL_STATE(863)] = 31420, + [SMALL_STATE(864)] = 31427, + [SMALL_STATE(865)] = 31434, + [SMALL_STATE(866)] = 31441, + [SMALL_STATE(867)] = 31448, + [SMALL_STATE(868)] = 31455, + [SMALL_STATE(869)] = 31462, + [SMALL_STATE(870)] = 31469, + [SMALL_STATE(871)] = 31476, + [SMALL_STATE(872)] = 31483, + [SMALL_STATE(873)] = 31488, + [SMALL_STATE(874)] = 31495, + [SMALL_STATE(875)] = 31502, + [SMALL_STATE(876)] = 31509, + [SMALL_STATE(877)] = 31516, + [SMALL_STATE(878)] = 31523, + [SMALL_STATE(879)] = 31530, + [SMALL_STATE(880)] = 31537, + [SMALL_STATE(881)] = 31544, + [SMALL_STATE(882)] = 31551, + [SMALL_STATE(883)] = 31558, + [SMALL_STATE(884)] = 31565, + [SMALL_STATE(885)] = 31572, + [SMALL_STATE(886)] = 31579, + [SMALL_STATE(887)] = 31584, + [SMALL_STATE(888)] = 31591, + [SMALL_STATE(889)] = 31598, + [SMALL_STATE(890)] = 31605, + [SMALL_STATE(891)] = 31612, + [SMALL_STATE(892)] = 31619, + [SMALL_STATE(893)] = 31626, + [SMALL_STATE(894)] = 31631, + [SMALL_STATE(895)] = 31638, + [SMALL_STATE(896)] = 31645, + [SMALL_STATE(897)] = 31652, + [SMALL_STATE(898)] = 31659, + [SMALL_STATE(899)] = 31666, + [SMALL_STATE(900)] = 31673, + [SMALL_STATE(901)] = 31680, + [SMALL_STATE(902)] = 31687, + [SMALL_STATE(903)] = 31694, + [SMALL_STATE(904)] = 31701, + [SMALL_STATE(905)] = 31708, + [SMALL_STATE(906)] = 31715, + [SMALL_STATE(907)] = 31722, + [SMALL_STATE(908)] = 31729, + [SMALL_STATE(909)] = 31736, + [SMALL_STATE(910)] = 31743, + [SMALL_STATE(911)] = 31750, + [SMALL_STATE(912)] = 31757, + [SMALL_STATE(913)] = 31764, + [SMALL_STATE(914)] = 31771, + [SMALL_STATE(915)] = 31778, + [SMALL_STATE(916)] = 31785, + [SMALL_STATE(917)] = 31792, + [SMALL_STATE(918)] = 31799, + [SMALL_STATE(919)] = 31806, + [SMALL_STATE(920)] = 31813, + [SMALL_STATE(921)] = 31820, + [SMALL_STATE(922)] = 31827, + [SMALL_STATE(923)] = 31832, + [SMALL_STATE(924)] = 31839, + [SMALL_STATE(925)] = 31844, + [SMALL_STATE(926)] = 31851, + [SMALL_STATE(927)] = 31858, + [SMALL_STATE(928)] = 31865, + [SMALL_STATE(929)] = 31872, + [SMALL_STATE(930)] = 31879, + [SMALL_STATE(931)] = 31886, + [SMALL_STATE(932)] = 31893, + [SMALL_STATE(933)] = 31900, + [SMALL_STATE(934)] = 31907, + [SMALL_STATE(935)] = 31914, + [SMALL_STATE(936)] = 31921, + [SMALL_STATE(937)] = 31928, + [SMALL_STATE(938)] = 31935, + [SMALL_STATE(939)] = 31942, + [SMALL_STATE(940)] = 31949, + [SMALL_STATE(941)] = 31956, + [SMALL_STATE(942)] = 31963, + [SMALL_STATE(943)] = 31970, + [SMALL_STATE(944)] = 31977, + [SMALL_STATE(945)] = 31982, + [SMALL_STATE(946)] = 31989, + [SMALL_STATE(947)] = 31996, + [SMALL_STATE(948)] = 32003, + [SMALL_STATE(949)] = 32007, + [SMALL_STATE(950)] = 32011, + [SMALL_STATE(951)] = 32015, + [SMALL_STATE(952)] = 32019, + [SMALL_STATE(953)] = 32023, + [SMALL_STATE(954)] = 32027, + [SMALL_STATE(955)] = 32031, + [SMALL_STATE(956)] = 32035, + [SMALL_STATE(957)] = 32039, + [SMALL_STATE(958)] = 32043, + [SMALL_STATE(959)] = 32047, + [SMALL_STATE(960)] = 32051, + [SMALL_STATE(961)] = 32055, + [SMALL_STATE(962)] = 32059, + [SMALL_STATE(963)] = 32063, + [SMALL_STATE(964)] = 32067, + [SMALL_STATE(965)] = 32071, + [SMALL_STATE(966)] = 32075, + [SMALL_STATE(967)] = 32079, + [SMALL_STATE(968)] = 32083, + [SMALL_STATE(969)] = 32087, + [SMALL_STATE(970)] = 32091, + [SMALL_STATE(971)] = 32095, + [SMALL_STATE(972)] = 32099, + [SMALL_STATE(973)] = 32103, + [SMALL_STATE(974)] = 32107, + [SMALL_STATE(975)] = 32111, + [SMALL_STATE(976)] = 32115, + [SMALL_STATE(977)] = 32119, + [SMALL_STATE(978)] = 32123, + [SMALL_STATE(979)] = 32127, + [SMALL_STATE(980)] = 32131, + [SMALL_STATE(981)] = 32135, + [SMALL_STATE(982)] = 32139, + [SMALL_STATE(983)] = 32143, + [SMALL_STATE(984)] = 32147, + [SMALL_STATE(985)] = 32151, + [SMALL_STATE(986)] = 32155, + [SMALL_STATE(987)] = 32159, + [SMALL_STATE(988)] = 32163, + [SMALL_STATE(989)] = 32167, + [SMALL_STATE(990)] = 32171, + [SMALL_STATE(991)] = 32175, + [SMALL_STATE(992)] = 32179, + [SMALL_STATE(993)] = 32183, + [SMALL_STATE(994)] = 32187, + [SMALL_STATE(995)] = 32191, + [SMALL_STATE(996)] = 32195, + [SMALL_STATE(997)] = 32199, + [SMALL_STATE(998)] = 32203, + [SMALL_STATE(999)] = 32207, + [SMALL_STATE(1000)] = 32211, + [SMALL_STATE(1001)] = 32215, + [SMALL_STATE(1002)] = 32219, + [SMALL_STATE(1003)] = 32223, + [SMALL_STATE(1004)] = 32227, + [SMALL_STATE(1005)] = 32231, + [SMALL_STATE(1006)] = 32235, + [SMALL_STATE(1007)] = 32239, + [SMALL_STATE(1008)] = 32243, + [SMALL_STATE(1009)] = 32247, + [SMALL_STATE(1010)] = 32251, + [SMALL_STATE(1011)] = 32255, + [SMALL_STATE(1012)] = 32259, + [SMALL_STATE(1013)] = 32263, + [SMALL_STATE(1014)] = 32267, + [SMALL_STATE(1015)] = 32271, + [SMALL_STATE(1016)] = 32275, + [SMALL_STATE(1017)] = 32279, + [SMALL_STATE(1018)] = 32283, + [SMALL_STATE(1019)] = 32287, + [SMALL_STATE(1020)] = 32291, + [SMALL_STATE(1021)] = 32295, + [SMALL_STATE(1022)] = 32299, + [SMALL_STATE(1023)] = 32303, + [SMALL_STATE(1024)] = 32307, + [SMALL_STATE(1025)] = 32311, + [SMALL_STATE(1026)] = 32315, + [SMALL_STATE(1027)] = 32319, + [SMALL_STATE(1028)] = 32323, + [SMALL_STATE(1029)] = 32327, + [SMALL_STATE(1030)] = 32331, + [SMALL_STATE(1031)] = 32335, + [SMALL_STATE(1032)] = 32339, + [SMALL_STATE(1033)] = 32343, + [SMALL_STATE(1034)] = 32347, + [SMALL_STATE(1035)] = 32351, + [SMALL_STATE(1036)] = 32355, + [SMALL_STATE(1037)] = 32359, + [SMALL_STATE(1038)] = 32363, + [SMALL_STATE(1039)] = 32367, + [SMALL_STATE(1040)] = 32371, + [SMALL_STATE(1041)] = 32375, + [SMALL_STATE(1042)] = 32379, + [SMALL_STATE(1043)] = 32383, + [SMALL_STATE(1044)] = 32387, + [SMALL_STATE(1045)] = 32391, + [SMALL_STATE(1046)] = 32395, + [SMALL_STATE(1047)] = 32399, + [SMALL_STATE(1048)] = 32403, + [SMALL_STATE(1049)] = 32407, + [SMALL_STATE(1050)] = 32411, + [SMALL_STATE(1051)] = 32415, + [SMALL_STATE(1052)] = 32419, + [SMALL_STATE(1053)] = 32423, + [SMALL_STATE(1054)] = 32427, + [SMALL_STATE(1055)] = 32431, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(609), [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), @@ -52414,14 +53301,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), @@ -52437,23 +53324,23 @@ static const TSParseActionEntry ts_parse_actions[] = { [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(897), [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), @@ -52464,182 +53351,182 @@ static const TSParseActionEntry ts_parse_actions[] = { [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 4), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(609), [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 1), [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 1), [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(897), [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(473), [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(457), [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(458), [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(852), [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(609), [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 1), [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 1), [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(463), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(897), [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(511), [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(457), [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(458), [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(852), [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 1), [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 1), [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(609), [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(897), [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(511), [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(458), [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(852), [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), @@ -52648,151 +53535,151 @@ static const TSParseActionEntry ts_parse_actions[] = { [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 1), [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(609), [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(511), [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(852), [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(897), [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(609), [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(455), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 1), [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 1), [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(897), [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(852), [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 1), [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 1), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(609), [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(515), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(931), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(930), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(876), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(326), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(897), [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), @@ -52803,45 +53690,45 @@ static const TSParseActionEntry ts_parse_actions[] = { [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(416), [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(414), [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(298), [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(418), [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(417), [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(811), [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(519), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(797), [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(814), [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), @@ -52874,9 +53761,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), @@ -52886,14 +53773,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), @@ -52902,7 +53789,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), @@ -52912,543 +53799,568 @@ static const TSParseActionEntry ts_parse_actions[] = { [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 9, 0, 0), [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 5, 0, 0), [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 4, 0, 0), [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(529), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(576), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(563), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(517), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(558), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(517), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(537), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(531), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(571), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(621), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(578), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(599), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(636), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(543), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_caption_line, 1, 0, 0), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(557), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(604), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(573), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(573), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(622), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(627), - [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(596), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(619), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(461), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(456), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(457), - [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(458), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(459), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(460), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(778), - [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(727), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(552), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(716), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(815), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(815), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), - [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 10), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2594] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(621), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(594), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(623), + [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_caption_line, 1, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(611), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(611), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(633), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(460), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(473), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(457), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(458), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(459), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(456), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(900), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(688), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(731), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(795), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(795), + [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2628] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 10), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), }; enum ts_external_scanner_symbol_identifiers { @@ -53497,6 +54409,8 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_fenced_div_note_id = 42, ts_external_token__display_math_state_track_marker = 43, ts_external_token__inline_math_state_track_marker = 44, + ts_external_token__code_span_start = 45, + ts_external_token__code_span_close = 46, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -53545,9 +54459,11 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_fenced_div_note_id] = sym_fenced_div_note_id, [ts_external_token__display_math_state_track_marker] = sym__display_math_state_track_marker, [ts_external_token__inline_math_state_track_marker] = sym__inline_math_state_track_marker, + [ts_external_token__code_span_start] = sym__code_span_start, + [ts_external_token__code_span_close] = sym__code_span_close, }; -static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, @@ -53594,6 +54510,8 @@ static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_fenced_div_note_id] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, + [ts_external_token__code_span_start] = true, + [ts_external_token__code_span_close] = true, }, [2] = { [ts_external_token__soft_line_ending] = true, @@ -54004,31 +54922,30 @@ static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { }, [15] = { [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__eof] = true, + [ts_external_token__pipe_table_line_ending] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, + [ts_external_token__code_span_start] = true, }, [16] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, [17] = { [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, - [ts_external_token__pipe_table_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, [18] = { - [ts_external_token__line_ending] = true, - [ts_external_token__soft_line_ending] = true, - [ts_external_token__eof] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, + [ts_external_token__code_span_start] = true, }, [19] = { [ts_external_token__line_ending] = true, @@ -54037,17 +54954,21 @@ static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_math_state_track_marker] = true, }, [20] = { + [ts_external_token__line_ending] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, + [ts_external_token__code_span_start] = true, }, [21] = { [ts_external_token__line_ending] = true, + [ts_external_token__soft_line_ending] = true, [ts_external_token__eof] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, [22] = { - [ts_external_token__soft_line_ending] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, @@ -54058,12 +54979,10 @@ static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__pipe_table_line_ending] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, + [ts_external_token__code_span_start] = true, }, [24] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token_block_continuation] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__soft_line_ending] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, @@ -54076,16 +54995,24 @@ static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_math_state_track_marker] = true, }, [26] = { - [ts_external_token__soft_line_ending] = true, + [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__display_math_state_track_marker] = true, + [ts_external_token__inline_math_state_track_marker] = true, }, [27] = { + [ts_external_token__soft_line_ending] = true, + }, + [28] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, - [28] = { + [29] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, @@ -54093,11 +55020,14 @@ static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, - [29] = { + [30] = { + [ts_external_token__code_span_close] = true, + }, + [31] = { [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, }, - [30] = { + [32] = { [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -54105,44 +55035,44 @@ static const bool ts_external_scanner_states[42][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, }, - [31] = { + [33] = { [ts_external_token__line_ending] = true, }, - [32] = { + [34] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, [ts_external_token__pipe_table_line_ending] = true, }, - [33] = { + [35] = { [ts_external_token_fenced_div_note_id] = true, }, - [34] = { + [36] = { [ts_external_token_block_continuation] = true, }, - [35] = { + [37] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, }, - [36] = { + [38] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, }, - [37] = { + [39] = { [ts_external_token__block_close] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, }, - [38] = { + [40] = { [ts_external_token_block_continuation] = true, [ts_external_token__close_block] = true, }, - [39] = { + [41] = { [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, }, - [40] = { + [42] = { [ts_external_token__close_block] = true, }, - [41] = { + [43] = { [ts_external_token__block_close] = true, }, }; diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c index f4fe0af..6d4be12 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c @@ -52,7 +52,10 @@ typedef enum { FENCED_DIV_NOTE_ID, // special tokens to trigger serialization to track in-display-math mode DISPLAY_MATH_STATE_TRACK_MARKER, - INLINE_MATH_STATE_TRACK_MARKER + INLINE_MATH_STATE_TRACK_MARKER, + // code span delimiters for parsing pipe table cells + CODE_SPAN_START, + CODE_SPAN_CLOSE, } TokenType; // Description of a block on the block stack. @@ -244,6 +247,10 @@ typedef struct { uint8_t column; // The delimiter length of the currently open fenced code block uint8_t fenced_code_block_delimiter_length; + // The delimiter length of the currently open code span (for pipe table cells) + uint8_t code_span_delimiter_length; + // Whether we're inside a code span (for pipe table cells) + uint8_t inside_code_span; bool simulate; } Scanner; @@ -289,6 +296,8 @@ static unsigned serialize(Scanner *s, char *buffer) { buffer[size++] = (char)s->indentation; buffer[size++] = (char)s->column; buffer[size++] = (char)s->fenced_code_block_delimiter_length; + buffer[size++] = (char)s->code_span_delimiter_length; + buffer[size++] = (char)s->inside_code_span; size_t blocks_count = s->open_blocks.size; if (blocks_count > 0) { memcpy(&buffer[size], s->open_blocks.items, @@ -310,6 +319,8 @@ static void deserialize(Scanner *s, const char *buffer, unsigned length) { s->indentation = 0; s->column = 0; s->fenced_code_block_delimiter_length = 0; + s->code_span_delimiter_length = 0; + s->inside_code_span = 0; if (length > 0) { size_t size = 0; s->own_size = length; @@ -319,6 +330,8 @@ static void deserialize(Scanner *s, const char *buffer, unsigned length) { s->indentation = (uint8_t)buffer[size++]; s->column = (uint8_t)buffer[size++]; s->fenced_code_block_delimiter_length = (uint8_t)buffer[size++]; + s->code_span_delimiter_length = (uint8_t)buffer[size++]; + s->inside_code_span = (uint8_t)buffer[size++]; size_t blocks_size = length - size; if (blocks_size > 0) { size_t blocks_count = blocks_size / sizeof(Block); @@ -1229,7 +1242,7 @@ static bool parse_fenced_div_note_id(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { // unused (void)(valid_symbols); - + // precondition: lexer->lookahead == '^' advance(s, lexer); @@ -1245,6 +1258,55 @@ static bool parse_fenced_div_note_id(Scanner *s, TSLexer *lexer, return true; } +// Parse code span delimiters for pipe table cells +// This is similar to the inline scanner's parse_backtick but simplified +// since we only need to handle code spans within a single line +static bool parse_code_span(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { + // Count backticks + uint8_t level = 0; + while (lexer->lookahead == '`') { + lexer->advance(lexer, false); + level++; + } + mark_end(s, lexer); + + // Try to close an open code span + if (level == s->code_span_delimiter_length && valid_symbols[CODE_SPAN_CLOSE]) { + s->code_span_delimiter_length = 0; + s->inside_code_span = 0; + lexer->result_symbol = CODE_SPAN_CLOSE; + return true; + } + + // Try to open a new code span by looking ahead for a matching closing delimiter + if (valid_symbols[CODE_SPAN_START]) { + size_t close_level = 0; + // Look ahead within the same line to find a closing delimiter + while (!lexer->eof(lexer) && lexer->lookahead != '\n' && lexer->lookahead != '\r') { + if (lexer->lookahead == '`') { + close_level++; + } else { + if (close_level == level) { + // Found a matching delimiter + break; + } + close_level = 0; + } + lexer->advance(lexer, false); + } + + if (close_level == level) { + // Found matching closing delimiter + s->code_span_delimiter_length = level; + s->inside_code_span = 1; + lexer->result_symbol = CODE_SPAN_START; + return true; + } + } + + return false; +} + static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { // printf("-- scan() state=%d\n", s->state); // A normal tree-sitter rule decided that the current branch is invalid and @@ -1255,7 +1317,7 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { // the logic here is tricky. We're trying to see a $$, mark STATE_IN_DISPLAY_MATH // and go on. But we can only serialize state if we successfully return an external - // token. + // token. // if (!s->simulate && lexer->lookahead == '$' && valid_symbols[DISPLAY_MATH_STATE_TRACK_MARKER]) { advance(s, lexer); @@ -1274,6 +1336,11 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return true; } + // Handle code spans for pipe table cells + if (lexer->lookahead == '`' && (valid_symbols[CODE_SPAN_START] || valid_symbols[CODE_SPAN_CLOSE])) { + return parse_code_span(s, lexer, valid_symbols); + } + // Close the inner most block after the next line break as requested. See // `$._close_block` in grammar.js if (valid_symbols[CLOSE_BLOCK]) { diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/extension_pipe_table.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/extension_pipe_table.txt index 91f10c1..3c488db 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/extension_pipe_table.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/extension_pipe_table.txt @@ -223,5 +223,31 @@ Example 205 - https://github.github.com/gfm/#example-205 (pipe_table_delimiter_cell)) (pipe_table_row (pipe_table_cell) + (pipe_table_cell + (inline)))))) + +================================================================================ +#29 - Pipe table with backtick code containing pipe +================================================================================ +| a | b | +|---|---| +| `|` | oh no | + +-------------------------------------------------------------------------------- + +(document + (section + (pipe_table + (pipe_table_header + (pipe_table_cell + (inline)) + (pipe_table_cell + (inline))) + (pipe_table_delimiter_row + (pipe_table_delimiter_cell) + (pipe_table_delimiter_cell)) + (pipe_table_row + (pipe_table_cell + (inline)) (pipe_table_cell (inline)))))) \ No newline at end of file From f911592263aebdb6e46a18a496aa2ec957f0af36 Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Tue, 14 Oct 2025 17:28:14 -0500 Subject: [PATCH 2/3] Add tests for pipe tables with code spans containing pipes (issue #29) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These tests verify that the parser correctly handles code spans containing pipe characters within pipe tables. The fix in the block parser now properly parses code spans to avoid treating pipes inside backticks as table delimiters. Test cases cover: - Simple code span with single pipe - Multiple code spans with pipes in different cells - Mixed backtick delimiters (double and triple backticks) All tests pass and match Pandoc's output. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../pandoc-match-corpus/markdown/pipe-table-code-span.qmd | 3 +++ .../markdown/pipe-table-mixed-backticks.qmd | 5 +++++ .../markdown/pipe-table-multiple-code-spans.qmd | 5 +++++ 3 files changed, 13 insertions(+) create mode 100644 crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-code-span.qmd create mode 100644 crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-mixed-backticks.qmd create mode 100644 crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-multiple-code-spans.qmd diff --git a/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-code-span.qmd b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-code-span.qmd new file mode 100644 index 0000000..d448499 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-code-span.qmd @@ -0,0 +1,3 @@ +| a | b | +|---|---| +| `|` | oh no | diff --git a/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-mixed-backticks.qmd b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-mixed-backticks.qmd new file mode 100644 index 0000000..a63bb36 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-mixed-backticks.qmd @@ -0,0 +1,5 @@ +| Test | Description | +|------|-------------| +| `` ` `` | backtick in code | +| ``` | ``` | pipe in triple backtick code | +| `a|b|c` | multiple pipes | diff --git a/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-multiple-code-spans.qmd b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-multiple-code-spans.qmd new file mode 100644 index 0000000..351e907 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/pipe-table-multiple-code-spans.qmd @@ -0,0 +1,5 @@ +| Column 1 | Column 2 | Column 3 | +|----------|----------|----------| +| `|` | normal text | `a|b` | +| regular | `||` | more text | +| `x | y` | text | `|>` | From 69676807a699355170e89729730962221babc6fa Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Tue, 14 Oct 2025 19:21:55 -0500 Subject: [PATCH 3/3] Add support to (@) lists (#6) --- .../src/pandoc/ast_context.rs | 8 + .../quarto-markdown-pandoc/src/pandoc/list.rs | 1 + .../src/pandoc/treesitter.rs | 33 +- .../pandoc/treesitter_utils/list_marker.rs | 14 +- .../pandoc/treesitter_utils/postprocess.rs | 1 - .../src/readers/json.rs | 5 +- .../src/writers/json.rs | 1 + .../src/writers/native.rs | 1 + .../quarto-markdown-pandoc/src/writers/qmd.rs | 43 +- .../pandoc-match-corpus/markdown/060.qmd | 9 + .../tests/smoke/020.qmd | 5 + .../tests/smoke/021.qmd | 9 + .../tree-sitter-markdown/grammar.js | 14 +- .../tree-sitter-markdown/src/grammar.json | 82 + .../tree-sitter-markdown/src/node-types.json | 9 + .../tree-sitter-markdown/src/parser.c | 79803 ++++++++-------- .../tree-sitter-markdown/src/scanner.c | 67 + .../tree-sitter-markdown/test/corpus/qmd.txt | 66 +- 18 files changed, 41900 insertions(+), 38271 deletions(-) create mode 100644 crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/060.qmd create mode 100644 crates/quarto-markdown-pandoc/tests/smoke/020.qmd create mode 100644 crates/quarto-markdown-pandoc/tests/smoke/021.qmd diff --git a/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs b/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs index 08d7ff7..564fe38 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs @@ -3,6 +3,8 @@ * Copyright (c) 2025 Posit, PBC */ +use std::cell::Cell; + /// Context passed through the parsing pipeline to provide information /// about the current parse operation and manage string ownership. /// The filenames vector will eventually be used to deduplicate strings @@ -10,24 +12,30 @@ #[derive(Debug, Clone)] pub struct ASTContext { pub filenames: Vec, + /// Counter for example list numbering across the document + /// Example lists continue numbering even when interrupted by other content + pub example_list_counter: Cell, } impl ASTContext { pub fn new() -> Self { ASTContext { filenames: Vec::new(), + example_list_counter: Cell::new(1), } } pub fn with_filename(filename: impl Into) -> Self { ASTContext { filenames: vec![filename.into()], + example_list_counter: Cell::new(1), } } pub fn anonymous() -> Self { ASTContext { filenames: Vec::new(), + example_list_counter: Cell::new(1), } } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/list.rs b/crates/quarto-markdown-pandoc/src/pandoc/list.rs index 68b25c3..e22edce 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/list.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/list.rs @@ -6,6 +6,7 @@ #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)] pub enum ListNumberStyle { Default, + Example, Decimal, LowerRoman, UpperRoman, diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs index 24a32f2..3a823c1 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs @@ -112,7 +112,10 @@ fn process_list( // this is a marker node, we don't need to do anything with it continue; } - if node == "list_marker_parenthesis" || node == "list_marker_dot" { + if node == "list_marker_parenthesis" + || node == "list_marker_dot" + || node == "list_marker_example" + { // this is an ordered list, so we need to set the flag let PandocNativeIntermediate::IntermediateOrderedListMarker(marker_number, _) = child else { @@ -121,10 +124,14 @@ fn process_list( is_ordered_list = Some(( marker_number, - ListNumberStyle::Decimal, + match node.as_str() { + "list_marker_example" => ListNumberStyle::Example, + _ => ListNumberStyle::Decimal, + }, match node.as_str() { "list_marker_parenthesis" => ListNumberDelim::OneParen, "list_marker_dot" => ListNumberDelim::Period, + "list_marker_example" => ListNumberDelim::TwoParens, _ => panic!("Unexpected list marker node: {}", node), }, )); @@ -244,7 +251,14 @@ fn process_list( }; match is_ordered_list { - Some(attr) => { + Some(mut attr) => { + // For example lists, use and update the global counter + if attr.1 == ListNumberStyle::Example { + let start_num = context.example_list_counter.get(); + attr.0 = start_num; + // Increment counter by the number of items in this list + context.example_list_counter.set(start_num + content.len()); + } PandocNativeIntermediate::IntermediateBlock(Block::OrderedList(OrderedList { attr, content, @@ -267,7 +281,10 @@ fn process_list_item( let children = children .into_iter() .filter_map(|(node, child)| { - if node == "list_marker_dot" || node == "list_marker_parenthesis" { + if node == "list_marker_dot" + || node == "list_marker_parenthesis" + || node == "list_marker_example" + { // this is an ordered list, so we need to set the flag let PandocNativeIntermediate::IntermediateOrderedListMarker(marker_number, _) = child @@ -276,10 +293,14 @@ fn process_list_item( }; list_attr = Some(( marker_number, - ListNumberStyle::Decimal, + match node.as_str() { + "list_marker_example" => ListNumberStyle::Example, + _ => ListNumberStyle::Decimal, + }, match node.as_str() { "list_marker_parenthesis" => ListNumberDelim::OneParen, "list_marker_dot" => ListNumberDelim::Period, + "list_marker_example" => ListNumberDelim::TwoParens, _ => panic!("Unexpected list marker node: {}", node), }, )); @@ -568,7 +589,7 @@ fn native_visitor( "shortcode_boolean" => process_shortcode_boolean(node, input_bytes, context), "shortcode_number" => process_shortcode_number(node, input_bytes, context), "code_fence_content" => process_code_fence_content(node, children, input_bytes, context), - "list_marker_parenthesis" | "list_marker_dot" => { + "list_marker_parenthesis" | "list_marker_dot" | "list_marker_example" => { process_list_marker(node, input_bytes, context) } // These are marker nodes, we don't need to do anything with it diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs index 9abefb4..ba6aca6 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs @@ -20,7 +20,19 @@ pub fn process_list_marker( // we trim both ends instead of just trim_end() // because the lexer might hand us a marker with tabs at the beginning, // as a result of weird mixed-spaces-and-tabs cases like "> \t1." - .trim() + .trim(); + + // Check if this is an example list marker (@) + if marker_text == "(@)" { + // For example lists, we use 1 as the starting number + // The actual numbering will be handled in postprocessing + return PandocNativeIntermediate::IntermediateOrderedListMarker( + 1, + node_source_info_with_context(node, context).range, + ); + } + + let marker_text = marker_text .trim_end_matches('.') .trim_end_matches(')') .to_string(); diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs index d0f16f8..767acde 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs @@ -259,7 +259,6 @@ fn transform_definition_list_div(div: Div) -> Block { }) } - /// Apply post-processing transformations to the Pandoc AST pub fn postprocess(doc: Pandoc) -> Result> { let mut errors = Vec::new(); diff --git a/crates/quarto-markdown-pandoc/src/readers/json.rs b/crates/quarto-markdown-pandoc/src/readers/json.rs index be760bf..81f9c12 100644 --- a/crates/quarto-markdown-pandoc/src/readers/json.rs +++ b/crates/quarto-markdown-pandoc/src/readers/json.rs @@ -640,7 +640,10 @@ fn read_ast_context(value: &Value) -> Result { }) .collect::>>()?; - Ok(ASTContext { filenames }) + Ok(ASTContext { + filenames, + example_list_counter: std::cell::Cell::new(1), + }) } pub fn read(reader: &mut R) -> Result<(Pandoc, ASTContext)> { diff --git a/crates/quarto-markdown-pandoc/src/writers/json.rs b/crates/quarto-markdown-pandoc/src/writers/json.rs index 37c3392..6ae7c3b 100644 --- a/crates/quarto-markdown-pandoc/src/writers/json.rs +++ b/crates/quarto-markdown-pandoc/src/writers/json.rs @@ -192,6 +192,7 @@ fn write_list_attributes(attr: &ListAttributes) -> Value { crate::pandoc::ListNumberStyle::UpperAlpha => json!({"t": "UpperAlpha"}), crate::pandoc::ListNumberStyle::LowerRoman => json!({"t": "LowerRoman"}), crate::pandoc::ListNumberStyle::UpperRoman => json!({"t": "UpperRoman"}), + crate::pandoc::ListNumberStyle::Example => json!({"t": "Example"}), crate::pandoc::ListNumberStyle::Default => json!({"t": "Default"}), }; let number_delimiter = match attr.2 { diff --git a/crates/quarto-markdown-pandoc/src/writers/native.rs b/crates/quarto-markdown-pandoc/src/writers/native.rs index fb58398..fe9899c 100644 --- a/crates/quarto-markdown-pandoc/src/writers/native.rs +++ b/crates/quarto-markdown-pandoc/src/writers/native.rs @@ -358,6 +358,7 @@ fn write_list_number_style( crate::pandoc::ListNumberStyle::UpperAlpha => write!(buf, "UpperAlpha"), crate::pandoc::ListNumberStyle::LowerRoman => write!(buf, "LowerRoman"), crate::pandoc::ListNumberStyle::UpperRoman => write!(buf, "UpperRoman"), + crate::pandoc::ListNumberStyle::Example => write!(buf, "Example"), crate::pandoc::ListNumberStyle::Default => write!(buf, "Decimal"), // Is this supposed to be the default? } } diff --git a/crates/quarto-markdown-pandoc/src/writers/qmd.rs b/crates/quarto-markdown-pandoc/src/writers/qmd.rs index d1b4076..79b01d2 100644 --- a/crates/quarto-markdown-pandoc/src/writers/qmd.rs +++ b/crates/quarto-markdown-pandoc/src/writers/qmd.rs @@ -5,7 +5,7 @@ use crate::pandoc::attr::is_empty_attr; use crate::pandoc::block::MetaBlock; -use crate::pandoc::list::ListNumberDelim; +use crate::pandoc::list::{ListNumberDelim, ListNumberStyle}; use crate::pandoc::meta::MetaValue; use crate::pandoc::table::{Alignment, Cell, Table}; use crate::pandoc::{ @@ -101,12 +101,18 @@ struct OrderedListContext<'a, W: Write + ?Sized> { at_line_start: bool, is_first_line: bool, number: usize, + number_style: ListNumberStyle, delimiter: ListNumberDelim, indent: String, } impl<'a, W: Write + ?Sized> OrderedListContext<'a, W> { - fn new(inner: &'a mut W, number: usize, delimiter: ListNumberDelim) -> Self { + fn new( + inner: &'a mut W, + number: usize, + number_style: ListNumberStyle, + delimiter: ListNumberDelim, + ) -> Self { // Pandoc uses consistent spacing: for numbers < 10, uses two spaces after delimiter // For numbers >= 10, uses one space. Continuation lines always use 4 spaces indent. let indent = " ".to_string(); // Always 4 spaces for continuation lines @@ -116,6 +122,7 @@ impl<'a, W: Write + ?Sized> OrderedListContext<'a, W> { at_line_start: true, is_first_line: true, number, + number_style, delimiter, indent, } @@ -128,18 +135,23 @@ impl<'a, W: Write + ?Sized> Write for OrderedListContext<'a, W> { for &byte in buf { if self.at_line_start { if self.is_first_line { - let delim_str = match self.delimiter { - ListNumberDelim::Period => ".", - ListNumberDelim::OneParen => ")", - ListNumberDelim::TwoParens => ")", - _ => ".", - }; - // Pandoc style: numbers < 10 get two spaces after delimiter, - // numbers >= 10 get one space - if self.number < 10 { - write!(self.inner, "{}{} ", self.number, delim_str)?; + // For example lists, always use (@) marker + if matches!(self.number_style, ListNumberStyle::Example) { + write!(self.inner, "(@) ")?; } else { - write!(self.inner, "{}{} ", self.number, delim_str)?; + let delim_str = match self.delimiter { + ListNumberDelim::Period => ".", + ListNumberDelim::OneParen => ")", + ListNumberDelim::TwoParens => ")", + _ => ".", + }; + // Pandoc style: numbers < 10 get two spaces after delimiter, + // numbers >= 10 get one space + if self.number < 10 { + write!(self.inner, "{}{} ", self.number, delim_str)?; + } else { + write!(self.inner, "{}{} ", self.number, delim_str)?; + } } self.is_first_line = false; } else { @@ -331,7 +343,7 @@ fn write_orderedlist( orderedlist: &OrderedList, buf: &mut dyn std::io::Write, ) -> std::io::Result<()> { - let (start_num, _number_style, delimiter) = &orderedlist.attr; + let (start_num, number_style, delimiter) = &orderedlist.attr; // Determine if this is a tight list // A list is tight if the first block of all items is Plain (not Para) @@ -346,7 +358,8 @@ fn write_orderedlist( writeln!(buf)?; } let current_num = start_num + i; - let mut item_writer = OrderedListContext::new(buf, current_num, delimiter.clone()); + let mut item_writer = + OrderedListContext::new(buf, current_num, number_style.clone(), delimiter.clone()); for (j, block) in item.iter().enumerate() { if j > 0 && !is_tight { // Add a blank line between blocks within a list item in loose lists diff --git a/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/060.qmd b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/060.qmd new file mode 100644 index 0000000..8050c9a --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/060.qmd @@ -0,0 +1,9 @@ +(@) First item + +(@) Second item + +Some text in between. + +(@) Third item + +(@) Fourth item diff --git a/crates/quarto-markdown-pandoc/tests/smoke/020.qmd b/crates/quarto-markdown-pandoc/tests/smoke/020.qmd new file mode 100644 index 0000000..0f8f0c3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/020.qmd @@ -0,0 +1,5 @@ +(@) First item + +(@) Second item + +(@) Third item diff --git a/crates/quarto-markdown-pandoc/tests/smoke/021.qmd b/crates/quarto-markdown-pandoc/tests/smoke/021.qmd new file mode 100644 index 0000000..8050c9a --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/021.qmd @@ -0,0 +1,9 @@ +(@) First item + +(@) Second item + +Some text in between. + +(@) Third item + +(@) Fourth item diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index 2cc9a1f..c51d067 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -277,13 +277,15 @@ module.exports = grammar({ $._list_minus, $._list_star, $._list_dot, - $._list_parenthesis + $._list_parenthesis, + $._list_example )), _list_plus: $ => prec.right(repeat1(alias($._list_item_plus, $.list_item))), _list_minus: $ => prec.right(repeat1(alias($._list_item_minus, $.list_item))), _list_star: $ => prec.right(repeat1(alias($._list_item_star, $.list_item))), _list_dot: $ => prec.right(repeat1(alias($._list_item_dot, $.list_item))), _list_parenthesis: $ => prec.right(repeat1(alias($._list_item_parenthesis, $.list_item))), + _list_example: $ => prec.right(repeat1(alias($._list_item_example, $.list_item))), // Some list items can not interrupt a paragraph and are marked as such by the external // scanner. list_marker_plus: $ => choice($._list_marker_plus, $._list_marker_plus_dont_interrupt), @@ -291,6 +293,7 @@ module.exports = grammar({ list_marker_star: $ => choice($._list_marker_star, $._list_marker_star_dont_interrupt), list_marker_dot: $ => choice($._list_marker_dot, $._list_marker_dot_dont_interrupt), list_marker_parenthesis: $ => choice($._list_marker_parenthesis, $._list_marker_parenthesis_dont_interrupt), + list_marker_example: $ => choice($._list_marker_example, $._list_marker_example_dont_interrupt), _list_item_plus: $ => seq( $.list_marker_plus, optional($.block_continuation), @@ -326,6 +329,13 @@ module.exports = grammar({ $._block_close, optional($.block_continuation) ), + _list_item_example: $ => seq( + $.list_marker_example, + optional($.block_continuation), + $._list_item_content, + $._block_close, + optional($.block_continuation) + ), // List items are closed after two consecutive blank lines _list_item_content: $ => choice( prec(1, seq( @@ -540,6 +550,8 @@ module.exports = grammar({ $._list_marker_star_dont_interrupt, $._list_marker_parenthesis_dont_interrupt, $._list_marker_dot_dont_interrupt, + $._list_marker_example, + $._list_marker_example_dont_interrupt, $._fenced_code_block_start_backtick, $._fenced_code_block_start_tilde, $._blank_line_start, // Does not contain the newline characters. Blank lines do not need a `$._block_close` diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json index 9b517c8..89536f8 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -3492,6 +3492,10 @@ { "type": "SYMBOL", "name": "_list_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_list_example" } ] } @@ -3576,6 +3580,22 @@ } } }, + "_list_example": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_example" + }, + "named": true, + "value": "list_item" + } + } + }, "list_marker_plus": { "type": "CHOICE", "members": [ @@ -3641,6 +3661,19 @@ } ] }, + "list_marker_example": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_example" + }, + { + "type": "SYMBOL", + "name": "_list_marker_example_dont_interrupt" + } + ] + }, "_list_item_plus": { "type": "SEQ", "members": [ @@ -3846,6 +3879,47 @@ } ] }, + "_list_item_example": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "list_marker_example" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_content" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "_list_item_content": { "type": "CHOICE", "members": [ @@ -6029,6 +6103,14 @@ "type": "SYMBOL", "name": "_list_marker_dot_dont_interrupt" }, + { + "type": "SYMBOL", + "name": "_list_marker_example" + }, + { + "type": "SYMBOL", + "name": "_list_marker_example_dont_interrupt" + }, { "type": "SYMBOL", "name": "_fenced_code_block_start_backtick" diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json index 10ead75..bb93d82 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json @@ -495,6 +495,10 @@ "type": "list_marker_dot", "named": true }, + { + "type": "list_marker_example", + "named": true + }, { "type": "list_marker_minus", "named": true @@ -547,6 +551,11 @@ "named": true, "fields": {} }, + { + "type": "list_marker_example", + "named": true, + "fields": {} + }, { "type": "list_marker_minus", "named": true, diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c index 50daa5e..2cd2ae0 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -7,12 +7,12 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1056 -#define LARGE_STATE_COUNT 189 -#define SYMBOL_COUNT 194 +#define STATE_COUNT 1087 +#define LARGE_STATE_COUNT 479 +#define SYMBOL_COUNT 200 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 93 -#define EXTERNAL_TOKEN_COUNT 47 +#define TOKEN_COUNT 95 +#define EXTERNAL_TOKEN_COUNT 49 #define FIELD_COUNT 1 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -90,133 +90,139 @@ enum ts_symbol_identifiers { sym__list_marker_star_dont_interrupt = 68, sym__list_marker_parenthesis_dont_interrupt = 69, sym__list_marker_dot_dont_interrupt = 70, - sym__fenced_code_block_start_backtick = 71, - sym__fenced_code_block_start_tilde = 72, - sym__blank_line_start = 73, - sym__fenced_code_block_end_backtick = 74, - sym__fenced_code_block_end_tilde = 75, - sym__close_block = 76, - sym__no_indented_chunk = 77, - sym__error = 78, - sym__trigger_error = 79, - sym__eof = 80, - sym_minus_metadata = 81, - sym_plus_metadata = 82, - sym__pipe_table_start = 83, - sym__pipe_table_line_ending = 84, - sym__fenced_div_start = 85, - sym__fenced_div_end = 86, - sym_ref_id_specifier = 87, - sym_fenced_div_note_id = 88, - sym__display_math_state_track_marker = 89, - sym__inline_math_state_track_marker = 90, - sym__code_span_start = 91, - sym__code_span_close = 92, - sym_document = 93, - sym__qmd_attribute = 94, - sym__commonmark_whitespace = 95, - sym_raw_attribute = 96, - sym_commonmark_attribute = 97, - sym_language_attribute = 98, - sym__attribute = 99, - sym_key_value_value = 100, - sym__last_token_punctuation = 101, - sym__block = 102, - sym__block_not_section = 103, - sym_section = 104, - sym__section1 = 105, - sym__section2 = 106, - sym__section3 = 107, - sym__section4 = 108, - sym__section5 = 109, - sym__section6 = 110, - sym_thematic_break = 111, - sym__atx_heading1 = 112, - sym__atx_heading2 = 113, - sym__atx_heading3 = 114, - sym__atx_heading4 = 115, - sym__atx_heading5 = 116, - sym__atx_heading6 = 117, - sym__atx_heading_content = 118, - sym__setext_heading1 = 119, - sym__setext_heading2 = 120, - sym_indented_code_block = 121, - sym__indented_chunk = 122, - sym_fenced_div_block = 123, - sym_fenced_code_block = 124, - sym_code_fence_content = 125, - sym_info_string = 126, - sym_paragraph = 127, - sym_inline_ref_def = 128, - sym_note_definition_fenced_block = 129, - sym__blank_line = 130, - sym_block_quote = 131, - sym_list = 132, - sym__list_plus = 133, - sym__list_minus = 134, - sym__list_star = 135, - sym__list_dot = 136, - sym__list_parenthesis = 137, - sym_list_marker_plus = 138, - sym_list_marker_minus = 139, - sym_list_marker_star = 140, - sym_list_marker_dot = 141, - sym_list_marker_parenthesis = 142, - sym__list_item_plus = 143, - sym__list_item_minus = 144, - sym__list_item_star = 145, - sym__list_item_dot = 146, - sym__list_item_parenthesis = 147, - sym__list_item_content = 148, - sym__newline = 149, - sym__soft_line_break = 150, - sym__code_line = 151, - sym__line = 152, - sym__atx_heading_line = 153, - sym__whitespace = 154, - sym_pipe_table = 155, - sym_table_caption = 156, - sym__table_caption_line = 157, - sym__pipe_table_newline = 158, - sym_pipe_table_delimiter_row = 159, - sym_pipe_table_delimiter_cell = 160, - sym_pipe_table_row = 161, - sym__pipe_table_code_span = 162, - sym__pipe_table_cell_contents = 163, - sym_pipe_table_cell = 164, - aux_sym_document_repeat1 = 165, - aux_sym_document_repeat2 = 166, - aux_sym_commonmark_attribute_repeat1 = 167, - aux_sym_commonmark_attribute_repeat2 = 168, - aux_sym_commonmark_attribute_repeat3 = 169, - aux_sym_key_value_value_repeat1 = 170, - aux_sym_key_value_value_repeat2 = 171, - aux_sym__section1_repeat1 = 172, - aux_sym__section2_repeat1 = 173, - aux_sym__section3_repeat1 = 174, - aux_sym__section4_repeat1 = 175, - aux_sym__section5_repeat1 = 176, - aux_sym_indented_code_block_repeat1 = 177, - aux_sym__indented_chunk_repeat1 = 178, - aux_sym_fenced_div_block_repeat1 = 179, - aux_sym_code_fence_content_repeat1 = 180, - aux_sym_paragraph_repeat1 = 181, - aux_sym__list_plus_repeat1 = 182, - aux_sym__list_minus_repeat1 = 183, - aux_sym__list_star_repeat1 = 184, - aux_sym__list_dot_repeat1 = 185, - aux_sym__list_parenthesis_repeat1 = 186, - aux_sym__code_line_repeat1 = 187, - aux_sym_pipe_table_repeat1 = 188, - aux_sym_pipe_table_delimiter_row_repeat1 = 189, - aux_sym_pipe_table_delimiter_cell_repeat1 = 190, - aux_sym_pipe_table_row_repeat1 = 191, - aux_sym__pipe_table_code_span_repeat1 = 192, - aux_sym__pipe_table_cell_contents_repeat1 = 193, - alias_sym_attribute = 194, - alias_sym_pipe_table_align_left = 195, - alias_sym_pipe_table_align_right = 196, - alias_sym_pipe_table_header = 197, + sym__list_marker_example = 71, + sym__list_marker_example_dont_interrupt = 72, + sym__fenced_code_block_start_backtick = 73, + sym__fenced_code_block_start_tilde = 74, + sym__blank_line_start = 75, + sym__fenced_code_block_end_backtick = 76, + sym__fenced_code_block_end_tilde = 77, + sym__close_block = 78, + sym__no_indented_chunk = 79, + sym__error = 80, + sym__trigger_error = 81, + sym__eof = 82, + sym_minus_metadata = 83, + sym_plus_metadata = 84, + sym__pipe_table_start = 85, + sym__pipe_table_line_ending = 86, + sym__fenced_div_start = 87, + sym__fenced_div_end = 88, + sym_ref_id_specifier = 89, + sym_fenced_div_note_id = 90, + sym__display_math_state_track_marker = 91, + sym__inline_math_state_track_marker = 92, + sym__code_span_start = 93, + sym__code_span_close = 94, + sym_document = 95, + sym__qmd_attribute = 96, + sym__commonmark_whitespace = 97, + sym_raw_attribute = 98, + sym_commonmark_attribute = 99, + sym_language_attribute = 100, + sym__attribute = 101, + sym_key_value_value = 102, + sym__last_token_punctuation = 103, + sym__block = 104, + sym__block_not_section = 105, + sym_section = 106, + sym__section1 = 107, + sym__section2 = 108, + sym__section3 = 109, + sym__section4 = 110, + sym__section5 = 111, + sym__section6 = 112, + sym_thematic_break = 113, + sym__atx_heading1 = 114, + sym__atx_heading2 = 115, + sym__atx_heading3 = 116, + sym__atx_heading4 = 117, + sym__atx_heading5 = 118, + sym__atx_heading6 = 119, + sym__atx_heading_content = 120, + sym__setext_heading1 = 121, + sym__setext_heading2 = 122, + sym_indented_code_block = 123, + sym__indented_chunk = 124, + sym_fenced_div_block = 125, + sym_fenced_code_block = 126, + sym_code_fence_content = 127, + sym_info_string = 128, + sym_paragraph = 129, + sym_inline_ref_def = 130, + sym_note_definition_fenced_block = 131, + sym__blank_line = 132, + sym_block_quote = 133, + sym_list = 134, + sym__list_plus = 135, + sym__list_minus = 136, + sym__list_star = 137, + sym__list_dot = 138, + sym__list_parenthesis = 139, + sym__list_example = 140, + sym_list_marker_plus = 141, + sym_list_marker_minus = 142, + sym_list_marker_star = 143, + sym_list_marker_dot = 144, + sym_list_marker_parenthesis = 145, + sym_list_marker_example = 146, + sym__list_item_plus = 147, + sym__list_item_minus = 148, + sym__list_item_star = 149, + sym__list_item_dot = 150, + sym__list_item_parenthesis = 151, + sym__list_item_example = 152, + sym__list_item_content = 153, + sym__newline = 154, + sym__soft_line_break = 155, + sym__code_line = 156, + sym__line = 157, + sym__atx_heading_line = 158, + sym__whitespace = 159, + sym_pipe_table = 160, + sym_table_caption = 161, + sym__table_caption_line = 162, + sym__pipe_table_newline = 163, + sym_pipe_table_delimiter_row = 164, + sym_pipe_table_delimiter_cell = 165, + sym_pipe_table_row = 166, + sym__pipe_table_code_span = 167, + sym__pipe_table_cell_contents = 168, + sym_pipe_table_cell = 169, + aux_sym_document_repeat1 = 170, + aux_sym_document_repeat2 = 171, + aux_sym_commonmark_attribute_repeat1 = 172, + aux_sym_commonmark_attribute_repeat2 = 173, + aux_sym_commonmark_attribute_repeat3 = 174, + aux_sym_key_value_value_repeat1 = 175, + aux_sym_key_value_value_repeat2 = 176, + aux_sym__section1_repeat1 = 177, + aux_sym__section2_repeat1 = 178, + aux_sym__section3_repeat1 = 179, + aux_sym__section4_repeat1 = 180, + aux_sym__section5_repeat1 = 181, + aux_sym_indented_code_block_repeat1 = 182, + aux_sym__indented_chunk_repeat1 = 183, + aux_sym_fenced_div_block_repeat1 = 184, + aux_sym_code_fence_content_repeat1 = 185, + aux_sym_paragraph_repeat1 = 186, + aux_sym__list_plus_repeat1 = 187, + aux_sym__list_minus_repeat1 = 188, + aux_sym__list_star_repeat1 = 189, + aux_sym__list_dot_repeat1 = 190, + aux_sym__list_parenthesis_repeat1 = 191, + aux_sym__list_example_repeat1 = 192, + aux_sym__code_line_repeat1 = 193, + aux_sym_pipe_table_repeat1 = 194, + aux_sym_pipe_table_delimiter_row_repeat1 = 195, + aux_sym_pipe_table_delimiter_cell_repeat1 = 196, + aux_sym_pipe_table_row_repeat1 = 197, + aux_sym__pipe_table_code_span_repeat1 = 198, + aux_sym__pipe_table_cell_contents_repeat1 = 199, + alias_sym_attribute = 200, + alias_sym_pipe_table_align_left = 201, + alias_sym_pipe_table_align_right = 202, + alias_sym_pipe_table_header = 203, }; static const char * const ts_symbol_names[] = { @@ -291,6 +297,8 @@ static const char * const ts_symbol_names[] = { [sym__list_marker_star_dont_interrupt] = "_list_marker_star_dont_interrupt", [sym__list_marker_parenthesis_dont_interrupt] = "_list_marker_parenthesis_dont_interrupt", [sym__list_marker_dot_dont_interrupt] = "_list_marker_dot_dont_interrupt", + [sym__list_marker_example] = "_list_marker_example", + [sym__list_marker_example_dont_interrupt] = "_list_marker_example_dont_interrupt", [sym__fenced_code_block_start_backtick] = "fenced_code_block_delimiter", [sym__fenced_code_block_start_tilde] = "fenced_code_block_delimiter", [sym__blank_line_start] = "_blank_line_start", @@ -358,16 +366,19 @@ static const char * const ts_symbol_names[] = { [sym__list_star] = "_list_star", [sym__list_dot] = "_list_dot", [sym__list_parenthesis] = "_list_parenthesis", + [sym__list_example] = "_list_example", [sym_list_marker_plus] = "list_marker_plus", [sym_list_marker_minus] = "list_marker_minus", [sym_list_marker_star] = "list_marker_star", [sym_list_marker_dot] = "list_marker_dot", [sym_list_marker_parenthesis] = "list_marker_parenthesis", + [sym_list_marker_example] = "list_marker_example", [sym__list_item_plus] = "list_item", [sym__list_item_minus] = "list_item", [sym__list_item_star] = "list_item", [sym__list_item_dot] = "list_item", [sym__list_item_parenthesis] = "list_item", + [sym__list_item_example] = "list_item", [sym__list_item_content] = "_list_item_content", [sym__newline] = "_newline", [sym__soft_line_break] = "_soft_line_break", @@ -407,6 +418,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__list_star_repeat1] = "_list_star_repeat1", [aux_sym__list_dot_repeat1] = "_list_dot_repeat1", [aux_sym__list_parenthesis_repeat1] = "_list_parenthesis_repeat1", + [aux_sym__list_example_repeat1] = "_list_example_repeat1", [aux_sym__code_line_repeat1] = "_code_line_repeat1", [aux_sym_pipe_table_repeat1] = "pipe_table_repeat1", [aux_sym_pipe_table_delimiter_row_repeat1] = "pipe_table_delimiter_row_repeat1", @@ -492,6 +504,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__list_marker_star_dont_interrupt] = sym__list_marker_star_dont_interrupt, [sym__list_marker_parenthesis_dont_interrupt] = sym__list_marker_parenthesis_dont_interrupt, [sym__list_marker_dot_dont_interrupt] = sym__list_marker_dot_dont_interrupt, + [sym__list_marker_example] = sym__list_marker_example, + [sym__list_marker_example_dont_interrupt] = sym__list_marker_example_dont_interrupt, [sym__fenced_code_block_start_backtick] = sym__fenced_code_block_start_backtick, [sym__fenced_code_block_start_tilde] = sym__fenced_code_block_start_backtick, [sym__blank_line_start] = sym__blank_line_start, @@ -559,16 +573,19 @@ static const TSSymbol ts_symbol_map[] = { [sym__list_star] = sym__list_star, [sym__list_dot] = sym__list_dot, [sym__list_parenthesis] = sym__list_parenthesis, + [sym__list_example] = sym__list_example, [sym_list_marker_plus] = sym_list_marker_plus, [sym_list_marker_minus] = sym_list_marker_minus, [sym_list_marker_star] = sym_list_marker_star, [sym_list_marker_dot] = sym_list_marker_dot, [sym_list_marker_parenthesis] = sym_list_marker_parenthesis, + [sym_list_marker_example] = sym_list_marker_example, [sym__list_item_plus] = sym__list_item_plus, [sym__list_item_minus] = sym__list_item_plus, [sym__list_item_star] = sym__list_item_plus, [sym__list_item_dot] = sym__list_item_plus, [sym__list_item_parenthesis] = sym__list_item_plus, + [sym__list_item_example] = sym__list_item_plus, [sym__list_item_content] = sym__list_item_content, [sym__newline] = sym__newline, [sym__soft_line_break] = sym__soft_line_break, @@ -608,6 +625,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__list_star_repeat1] = aux_sym__list_star_repeat1, [aux_sym__list_dot_repeat1] = aux_sym__list_dot_repeat1, [aux_sym__list_parenthesis_repeat1] = aux_sym__list_parenthesis_repeat1, + [aux_sym__list_example_repeat1] = aux_sym__list_example_repeat1, [aux_sym__code_line_repeat1] = aux_sym__code_line_repeat1, [aux_sym_pipe_table_repeat1] = aux_sym_pipe_table_repeat1, [aux_sym_pipe_table_delimiter_row_repeat1] = aux_sym_pipe_table_delimiter_row_repeat1, @@ -906,6 +924,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__list_marker_example] = { + .visible = false, + .named = true, + }, + [sym__list_marker_example_dont_interrupt] = { + .visible = false, + .named = true, + }, [sym__fenced_code_block_start_backtick] = { .visible = true, .named = true, @@ -1174,6 +1200,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__list_example] = { + .visible = false, + .named = true, + }, [sym_list_marker_plus] = { .visible = true, .named = true, @@ -1194,6 +1224,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_list_marker_example] = { + .visible = true, + .named = true, + }, [sym__list_item_plus] = { .visible = true, .named = true, @@ -1214,6 +1248,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__list_item_example] = { + .visible = true, + .named = true, + }, [sym__list_item_content] = { .visible = false, .named = true, @@ -1370,6 +1408,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__list_example_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__code_line_repeat1] = { .visible = false, .named = false, @@ -1526,119 +1568,119 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 9, - [10] = 2, + [9] = 2, + [10] = 10, [11] = 11, [12] = 12, - [13] = 7, - [14] = 8, - [15] = 9, - [16] = 12, - [17] = 12, - [18] = 7, - [19] = 8, - [20] = 9, - [21] = 2, - [22] = 22, - [23] = 3, - [24] = 4, - [25] = 5, - [26] = 6, - [27] = 22, - [28] = 22, - [29] = 3, - [30] = 4, - [31] = 5, - [32] = 6, - [33] = 33, - [34] = 34, - [35] = 35, + [13] = 13, + [14] = 7, + [15] = 5, + [16] = 10, + [17] = 11, + [18] = 18, + [19] = 7, + [20] = 2, + [21] = 10, + [22] = 11, + [23] = 12, + [24] = 18, + [25] = 6, + [26] = 8, + [27] = 3, + [28] = 4, + [29] = 5, + [30] = 18, + [31] = 6, + [32] = 8, + [33] = 3, + [34] = 4, + [35] = 12, [36] = 36, [37] = 37, - [38] = 33, + [38] = 38, [39] = 39, - [40] = 11, + [40] = 40, [41] = 41, [42] = 42, [43] = 43, - [44] = 39, + [44] = 13, [45] = 45, - [46] = 42, - [47] = 43, - [48] = 39, - [49] = 42, - [50] = 43, - [51] = 51, - [52] = 37, - [53] = 35, - [54] = 36, - [55] = 55, - [56] = 37, - [57] = 35, - [58] = 36, - [59] = 55, - [60] = 33, - [61] = 55, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 62, - [66] = 63, - [67] = 62, - [68] = 64, - [69] = 63, - [70] = 64, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 71, - [75] = 72, - [76] = 73, - [77] = 73, - [78] = 71, - [79] = 72, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 82, - [84] = 82, - [85] = 81, - [86] = 81, - [87] = 80, - [88] = 80, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 89, - [93] = 91, - [94] = 90, - [95] = 90, - [96] = 91, - [97] = 89, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 99, - [102] = 98, - [103] = 100, - [104] = 98, - [105] = 100, - [106] = 99, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 109, - [111] = 107, - [112] = 109, - [113] = 108, - [114] = 107, - [115] = 108, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, + [46] = 46, + [47] = 47, + [48] = 43, + [49] = 46, + [50] = 47, + [51] = 43, + [52] = 46, + [53] = 47, + [54] = 54, + [55] = 38, + [56] = 39, + [57] = 40, + [58] = 41, + [59] = 42, + [60] = 60, + [61] = 54, + [62] = 54, + [63] = 38, + [64] = 39, + [65] = 40, + [66] = 41, + [67] = 42, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 68, + [72] = 68, + [73] = 69, + [74] = 70, + [75] = 70, + [76] = 69, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 79, + [81] = 78, + [82] = 78, + [83] = 77, + [84] = 79, + [85] = 77, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 88, + [90] = 86, + [91] = 86, + [92] = 87, + [93] = 88, + [94] = 87, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 96, + [99] = 97, + [100] = 95, + [101] = 97, + [102] = 95, + [103] = 96, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 106, + [108] = 105, + [109] = 104, + [110] = 105, + [111] = 104, + [112] = 106, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 113, + [117] = 115, + [118] = 114, + [119] = 115, + [120] = 113, + [121] = 114, [122] = 122, [123] = 123, [124] = 124, @@ -1647,64 +1689,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [127] = 127, [128] = 128, [129] = 129, - [130] = 118, - [131] = 128, - [132] = 124, - [133] = 125, - [134] = 126, - [135] = 127, - [136] = 116, - [137] = 118, - [138] = 138, - [139] = 129, - [140] = 119, - [141] = 120, - [142] = 121, - [143] = 122, - [144] = 144, - [145] = 145, - [146] = 117, - [147] = 147, - [148] = 117, - [149] = 149, - [150] = 123, - [151] = 128, - [152] = 129, - [153] = 119, - [154] = 116, - [155] = 120, - [156] = 121, - [157] = 122, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 127, + [139] = 122, + [140] = 131, + [141] = 141, + [142] = 134, + [143] = 135, + [144] = 124, + [145] = 137, + [146] = 122, + [147] = 129, + [148] = 130, + [149] = 132, + [150] = 136, + [151] = 125, + [152] = 126, + [153] = 128, + [154] = 127, + [155] = 131, + [156] = 156, + [157] = 157, [158] = 123, - [159] = 124, - [160] = 125, - [161] = 126, - [162] = 127, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 138, - [167] = 144, - [168] = 149, - [169] = 147, - [170] = 149, - [171] = 117, - [172] = 172, - [173] = 138, - [174] = 145, - [175] = 145, + [159] = 159, + [160] = 123, + [161] = 133, + [162] = 162, + [163] = 134, + [164] = 135, + [165] = 124, + [166] = 137, + [167] = 130, + [168] = 132, + [169] = 136, + [170] = 125, + [171] = 126, + [172] = 128, + [173] = 129, + [174] = 133, + [175] = 156, [176] = 176, [177] = 177, [178] = 178, - [179] = 179, - [180] = 180, + [179] = 141, + [180] = 157, [181] = 181, - [182] = 144, - [183] = 147, - [184] = 184, - [185] = 185, - [186] = 186, - [187] = 187, + [182] = 162, + [183] = 183, + [184] = 162, + [185] = 123, + [186] = 157, + [187] = 159, [188] = 188, [189] = 189, [190] = 190, @@ -1715,309 +1757,309 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [195] = 195, [196] = 196, [197] = 197, - [198] = 198, + [198] = 159, [199] = 199, - [200] = 185, + [200] = 141, [201] = 201, - [202] = 165, - [203] = 203, + [202] = 156, + [203] = 189, [204] = 204, - [205] = 205, + [205] = 195, [206] = 206, [207] = 207, [208] = 208, [209] = 209, [210] = 210, - [211] = 211, + [211] = 177, [212] = 212, - [213] = 186, + [213] = 213, [214] = 214, [215] = 215, [216] = 216, [217] = 217, - [218] = 178, + [218] = 218, [219] = 219, [220] = 220, [221] = 221, [222] = 222, [223] = 223, [224] = 224, - [225] = 187, + [225] = 225, [226] = 226, [227] = 227, [228] = 228, [229] = 229, - [230] = 230, + [230] = 183, [231] = 231, [232] = 232, [233] = 233, [234] = 234, - [235] = 180, - [236] = 236, + [235] = 235, + [236] = 188, [237] = 237, [238] = 238, [239] = 239, - [240] = 240, + [240] = 123, [241] = 241, [242] = 242, [243] = 243, [244] = 244, - [245] = 179, + [245] = 245, [246] = 246, [247] = 247, [248] = 248, [249] = 249, [250] = 250, - [251] = 181, + [251] = 178, [252] = 252, - [253] = 117, - [254] = 147, + [253] = 253, + [254] = 254, [255] = 255, - [256] = 186, - [257] = 187, - [258] = 149, + [256] = 256, + [257] = 257, + [258] = 258, [259] = 259, - [260] = 163, + [260] = 260, [261] = 261, - [262] = 172, - [263] = 117, - [264] = 164, - [265] = 184, - [266] = 266, - [267] = 176, - [268] = 177, - [269] = 269, - [270] = 178, - [271] = 179, + [262] = 262, + [263] = 176, + [264] = 264, + [265] = 265, + [266] = 189, + [267] = 190, + [268] = 191, + [269] = 123, + [270] = 159, + [271] = 192, [272] = 272, [273] = 273, - [274] = 274, + [274] = 162, [275] = 275, [276] = 276, - [277] = 172, - [278] = 180, + [277] = 277, + [278] = 278, [279] = 279, - [280] = 164, + [280] = 280, [281] = 281, [282] = 282, [283] = 283, [284] = 284, [285] = 285, - [286] = 188, + [286] = 181, [287] = 181, - [288] = 165, - [289] = 188, - [290] = 290, - [291] = 163, - [292] = 184, - [293] = 185, + [288] = 183, + [289] = 289, + [290] = 188, + [291] = 291, + [292] = 196, + [293] = 178, [294] = 294, - [295] = 176, - [296] = 177, - [297] = 297, - [298] = 298, - [299] = 222, - [300] = 223, - [301] = 224, + [295] = 295, + [296] = 197, + [297] = 199, + [298] = 201, + [299] = 299, + [300] = 300, + [301] = 190, [302] = 191, - [303] = 226, - [304] = 227, - [305] = 228, - [306] = 229, - [307] = 230, - [308] = 231, - [309] = 220, - [310] = 233, - [311] = 234, - [312] = 192, - [313] = 236, - [314] = 237, - [315] = 238, - [316] = 239, - [317] = 240, - [318] = 241, - [319] = 242, - [320] = 243, - [321] = 244, - [322] = 297, - [323] = 246, - [324] = 247, - [325] = 248, - [326] = 252, - [327] = 255, - [328] = 193, - [329] = 194, - [330] = 217, - [331] = 221, - [332] = 250, - [333] = 195, - [334] = 198, - [335] = 190, - [336] = 191, - [337] = 192, - [338] = 193, - [339] = 194, - [340] = 195, - [341] = 198, - [342] = 249, - [343] = 199, - [344] = 201, - [345] = 204, - [346] = 249, - [347] = 215, - [348] = 252, - [349] = 219, - [350] = 259, - [351] = 149, - [352] = 261, - [353] = 266, - [354] = 269, - [355] = 272, - [356] = 273, - [357] = 274, - [358] = 275, - [359] = 276, - [360] = 279, - [361] = 281, - [362] = 282, - [363] = 283, - [364] = 284, - [365] = 285, - [366] = 294, - [367] = 199, - [368] = 201, - [369] = 204, - [370] = 196, - [371] = 197, - [372] = 215, - [373] = 219, - [374] = 203, - [375] = 205, - [376] = 206, - [377] = 207, - [378] = 208, - [379] = 209, - [380] = 210, - [381] = 211, - [382] = 212, - [383] = 214, - [384] = 216, - [385] = 189, - [386] = 217, - [387] = 220, - [388] = 221, - [389] = 222, - [390] = 223, - [391] = 224, - [392] = 226, - [393] = 227, - [394] = 228, - [395] = 229, - [396] = 230, - [397] = 231, - [398] = 232, - [399] = 233, - [400] = 234, - [401] = 236, - [402] = 237, - [403] = 238, - [404] = 239, - [405] = 240, - [406] = 241, - [407] = 242, - [408] = 243, - [409] = 244, - [410] = 297, - [411] = 246, - [412] = 247, - [413] = 248, - [414] = 414, - [415] = 250, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 259, - [420] = 261, - [421] = 266, - [422] = 147, - [423] = 269, - [424] = 272, - [425] = 273, - [426] = 274, - [427] = 275, - [428] = 276, - [429] = 279, - [430] = 281, - [431] = 282, - [432] = 283, - [433] = 284, - [434] = 285, - [435] = 294, - [436] = 196, - [437] = 197, - [438] = 203, - [439] = 205, - [440] = 189, - [441] = 147, - [442] = 206, - [443] = 207, - [444] = 208, - [445] = 209, - [446] = 149, - [447] = 210, - [448] = 211, - [449] = 212, - [450] = 190, - [451] = 214, - [452] = 216, - [453] = 232, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 460, - [462] = 462, - [463] = 457, - [464] = 458, - [465] = 459, - [466] = 456, - [467] = 460, - [468] = 462, - [469] = 457, - [470] = 458, - [471] = 459, - [472] = 456, - [473] = 462, - [474] = 474, - [475] = 475, - [476] = 474, - [477] = 477, - [478] = 478, + [303] = 192, + [304] = 193, + [305] = 194, + [306] = 195, + [307] = 196, + [308] = 197, + [309] = 199, + [310] = 201, + [311] = 176, + [312] = 177, + [313] = 193, + [314] = 194, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 207, + [319] = 319, + [320] = 241, + [321] = 242, + [322] = 243, + [323] = 244, + [324] = 245, + [325] = 246, + [326] = 247, + [327] = 248, + [328] = 249, + [329] = 250, + [330] = 252, + [331] = 253, + [332] = 254, + [333] = 255, + [334] = 256, + [335] = 257, + [336] = 258, + [337] = 259, + [338] = 260, + [339] = 261, + [340] = 262, + [341] = 317, + [342] = 264, + [343] = 214, + [344] = 218, + [345] = 219, + [346] = 220, + [347] = 221, + [348] = 222, + [349] = 223, + [350] = 224, + [351] = 225, + [352] = 352, + [353] = 217, + [354] = 227, + [355] = 228, + [356] = 229, + [357] = 231, + [358] = 233, + [359] = 235, + [360] = 315, + [361] = 237, + [362] = 238, + [363] = 239, + [364] = 241, + [365] = 242, + [366] = 243, + [367] = 244, + [368] = 245, + [369] = 159, + [370] = 246, + [371] = 247, + [372] = 248, + [373] = 249, + [374] = 250, + [375] = 252, + [376] = 253, + [377] = 254, + [378] = 255, + [379] = 256, + [380] = 257, + [381] = 258, + [382] = 259, + [383] = 260, + [384] = 261, + [385] = 262, + [386] = 317, + [387] = 264, + [388] = 315, + [389] = 316, + [390] = 215, + [391] = 226, + [392] = 392, + [393] = 215, + [394] = 226, + [395] = 213, + [396] = 232, + [397] = 234, + [398] = 273, + [399] = 276, + [400] = 272, + [401] = 204, + [402] = 206, + [403] = 403, + [404] = 275, + [405] = 232, + [406] = 234, + [407] = 273, + [408] = 276, + [409] = 204, + [410] = 206, + [411] = 207, + [412] = 265, + [413] = 210, + [414] = 212, + [415] = 214, + [416] = 277, + [417] = 217, + [418] = 278, + [419] = 228, + [420] = 279, + [421] = 280, + [422] = 281, + [423] = 282, + [424] = 283, + [425] = 284, + [426] = 285, + [427] = 289, + [428] = 291, + [429] = 294, + [430] = 272, + [431] = 295, + [432] = 162, + [433] = 275, + [434] = 277, + [435] = 278, + [436] = 279, + [437] = 280, + [438] = 281, + [439] = 282, + [440] = 283, + [441] = 284, + [442] = 285, + [443] = 159, + [444] = 289, + [445] = 291, + [446] = 294, + [447] = 295, + [448] = 162, + [449] = 299, + [450] = 299, + [451] = 208, + [452] = 209, + [453] = 265, + [454] = 213, + [455] = 216, + [456] = 208, + [457] = 218, + [458] = 219, + [459] = 220, + [460] = 221, + [461] = 222, + [462] = 223, + [463] = 224, + [464] = 225, + [465] = 209, + [466] = 227, + [467] = 229, + [468] = 468, + [469] = 231, + [470] = 210, + [471] = 233, + [472] = 472, + [473] = 235, + [474] = 212, + [475] = 237, + [476] = 238, + [477] = 239, + [478] = 216, [479] = 479, [480] = 480, - [481] = 475, - [482] = 478, - [483] = 479, + [481] = 481, + [482] = 482, + [483] = 483, [484] = 484, - [485] = 474, - [486] = 477, + [485] = 482, + [486] = 481, [487] = 487, [488] = 488, - [489] = 489, - [490] = 477, - [491] = 479, - [492] = 480, - [493] = 475, - [494] = 478, - [495] = 495, - [496] = 480, - [497] = 497, - [498] = 498, + [489] = 487, + [490] = 483, + [491] = 484, + [492] = 482, + [493] = 481, + [494] = 487, + [495] = 488, + [496] = 488, + [497] = 483, + [498] = 484, [499] = 499, - [500] = 498, + [500] = 500, [501] = 501, [502] = 502, [503] = 503, @@ -2025,554 +2067,585 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [505] = 505, [506] = 506, [507] = 507, - [508] = 507, - [509] = 498, - [510] = 510, - [511] = 511, - [512] = 488, - [513] = 495, - [514] = 489, - [515] = 515, - [516] = 516, + [508] = 499, + [509] = 505, + [510] = 506, + [511] = 507, + [512] = 501, + [513] = 513, + [514] = 501, + [515] = 513, + [516] = 513, [517] = 517, - [518] = 497, - [519] = 511, - [520] = 487, - [521] = 521, - [522] = 516, + [518] = 518, + [519] = 506, + [520] = 520, + [521] = 505, + [522] = 507, [523] = 523, - [524] = 511, - [525] = 521, - [526] = 516, - [527] = 521, - [528] = 521, - [529] = 521, - [530] = 484, - [531] = 521, - [532] = 502, - [533] = 497, - [534] = 505, - [535] = 535, - [536] = 503, - [537] = 535, - [538] = 506, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 524, + [528] = 528, + [529] = 523, + [530] = 528, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 524, + [535] = 500, + [536] = 536, + [537] = 536, + [538] = 538, [539] = 539, - [540] = 535, - [541] = 541, - [542] = 539, - [543] = 543, - [544] = 501, - [545] = 545, + [540] = 502, + [541] = 503, + [542] = 542, + [543] = 518, + [544] = 539, + [545] = 517, [546] = 546, - [547] = 502, - [548] = 548, + [547] = 520, + [548] = 536, [549] = 549, - [550] = 550, - [551] = 510, - [552] = 552, + [550] = 539, + [551] = 538, + [552] = 538, [553] = 553, - [554] = 554, - [555] = 555, - [556] = 550, - [557] = 505, - [558] = 506, - [559] = 559, - [560] = 559, - [561] = 561, - [562] = 503, + [554] = 536, + [555] = 536, + [556] = 536, + [557] = 557, + [558] = 558, + [559] = 503, + [560] = 531, + [561] = 526, + [562] = 533, [563] = 563, - [564] = 523, - [565] = 563, + [564] = 563, + [565] = 525, [566] = 566, - [567] = 567, - [568] = 546, - [569] = 563, - [570] = 517, - [571] = 501, - [572] = 559, - [573] = 546, + [567] = 558, + [568] = 563, + [569] = 532, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 549, [574] = 574, - [575] = 550, + [575] = 575, [576] = 576, - [577] = 559, - [578] = 117, + [577] = 577, + [578] = 578, [579] = 579, - [580] = 580, + [580] = 572, [581] = 581, - [582] = 559, - [583] = 583, - [584] = 584, - [585] = 117, - [586] = 580, - [587] = 587, - [588] = 588, - [589] = 574, - [590] = 584, - [591] = 591, - [592] = 588, - [593] = 149, - [594] = 561, - [595] = 561, - [596] = 561, - [597] = 597, + [582] = 582, + [583] = 546, + [584] = 531, + [585] = 574, + [586] = 525, + [587] = 576, + [588] = 576, + [589] = 589, + [590] = 577, + [591] = 533, + [592] = 577, + [593] = 526, + [594] = 542, + [595] = 572, + [596] = 596, + [597] = 532, [598] = 598, - [599] = 117, - [600] = 553, - [601] = 554, - [602] = 559, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, [603] = 603, - [604] = 604, - [605] = 548, - [606] = 606, + [604] = 123, + [605] = 605, + [606] = 123, [607] = 603, - [608] = 608, - [609] = 609, - [610] = 603, - [611] = 611, - [612] = 561, - [613] = 613, - [614] = 149, - [615] = 603, + [608] = 574, + [609] = 576, + [610] = 610, + [611] = 576, + [612] = 612, + [613] = 602, + [614] = 614, + [615] = 599, [616] = 616, - [617] = 587, - [618] = 553, - [619] = 149, - [620] = 579, - [621] = 561, - [622] = 576, - [623] = 561, - [624] = 554, - [625] = 548, - [626] = 581, - [627] = 627, - [628] = 561, - [629] = 603, - [630] = 630, + [617] = 610, + [618] = 618, + [619] = 123, + [620] = 589, + [621] = 589, + [622] = 622, + [623] = 162, + [624] = 576, + [625] = 625, + [626] = 626, + [627] = 162, + [628] = 626, + [629] = 629, + [630] = 581, [631] = 631, - [632] = 609, - [633] = 609, - [634] = 634, - [635] = 631, - [636] = 631, - [637] = 603, - [638] = 634, - [639] = 634, - [640] = 561, - [641] = 627, - [642] = 627, - [643] = 643, - [644] = 644, - [645] = 561, - [646] = 561, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 650, + [632] = 582, + [633] = 633, + [634] = 626, + [635] = 589, + [636] = 578, + [637] = 637, + [638] = 638, + [639] = 589, + [640] = 162, + [641] = 589, + [642] = 626, + [643] = 600, + [644] = 589, + [645] = 589, + [646] = 646, + [647] = 578, + [648] = 614, + [649] = 612, + [650] = 605, [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 655, - [657] = 654, - [658] = 655, - [659] = 654, - [660] = 660, - [661] = 661, - [662] = 662, + [652] = 582, + [653] = 581, + [654] = 626, + [655] = 625, + [656] = 626, + [657] = 657, + [658] = 658, + [659] = 658, + [660] = 589, + [661] = 657, + [662] = 625, [663] = 663, - [664] = 664, - [665] = 665, + [664] = 658, + [665] = 657, [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, + [667] = 646, + [668] = 589, + [669] = 646, [670] = 670, - [671] = 670, - [672] = 667, - [673] = 667, - [674] = 665, - [675] = 670, - [676] = 665, - [677] = 668, - [678] = 668, + [671] = 589, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, [679] = 679, - [680] = 680, + [680] = 679, [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, + [682] = 681, + [683] = 681, + [684] = 679, [685] = 685, [686] = 686, [687] = 687, [688] = 688, [689] = 689, [690] = 690, - [691] = 691, + [691] = 690, [692] = 692, [693] = 693, - [694] = 685, - [695] = 695, - [696] = 695, + [694] = 694, + [695] = 694, + [696] = 696, [697] = 697, - [698] = 689, - [699] = 692, - [700] = 689, - [701] = 691, - [702] = 691, - [703] = 692, - [704] = 693, + [698] = 696, + [699] = 694, + [700] = 697, + [701] = 696, + [702] = 697, + [703] = 690, + [704] = 704, [705] = 705, - [706] = 255, - [707] = 685, - [708] = 695, - [709] = 693, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, [710] = 710, - [711] = 711, + [711] = 316, [712] = 712, [713] = 713, [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, + [715] = 708, + [716] = 709, + [717] = 710, + [718] = 712, [719] = 719, [720] = 720, [721] = 721, - [722] = 722, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 717, + [722] = 719, + [723] = 714, + [724] = 708, + [725] = 709, + [726] = 710, + [727] = 712, + [728] = 719, + [729] = 729, [730] = 730, - [731] = 731, - [732] = 728, - [733] = 717, - [734] = 728, + [731] = 714, + [732] = 732, + [733] = 733, + [734] = 734, [735] = 735, [736] = 736, - [737] = 561, + [737] = 737, [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, - [743] = 743, + [743] = 589, [744] = 744, [745] = 745, - [746] = 679, + [746] = 746, [747] = 747, - [748] = 680, + [748] = 748, [749] = 749, - [750] = 750, - [751] = 681, + [750] = 738, + [751] = 751, [752] = 752, - [753] = 753, - [754] = 117, + [753] = 740, + [754] = 754, [755] = 755, [756] = 756, - [757] = 713, + [757] = 738, [758] = 758, [759] = 759, [760] = 760, - [761] = 714, - [762] = 149, - [763] = 763, + [761] = 740, + [762] = 762, + [763] = 706, [764] = 764, - [765] = 765, + [765] = 705, [766] = 766, [767] = 767, - [768] = 715, + [768] = 768, [769] = 769, - [770] = 770, - [771] = 727, + [770] = 123, + [771] = 704, [772] = 772, [773] = 773, [774] = 774, [775] = 775, - [776] = 722, + [776] = 776, [777] = 777, [778] = 778, [779] = 779, [780] = 780, [781] = 781, - [782] = 720, + [782] = 782, [783] = 783, - [784] = 561, + [784] = 784, [785] = 785, [786] = 786, - [787] = 730, - [788] = 788, - [789] = 736, + [787] = 787, + [788] = 589, + [789] = 758, [790] = 790, [791] = 791, [792] = 792, - [793] = 793, + [793] = 736, [794] = 794, [795] = 795, - [796] = 793, + [796] = 751, [797] = 797, [798] = 798, - [799] = 799, - [800] = 741, + [799] = 759, + [800] = 735, [801] = 801, [802] = 802, - [803] = 801, - [804] = 804, + [803] = 803, + [804] = 162, [805] = 805, - [806] = 801, - [807] = 802, - [808] = 802, - [809] = 790, - [810] = 561, - [811] = 797, - [812] = 797, - [813] = 813, - [814] = 797, - [815] = 561, - [816] = 799, + [806] = 742, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 747, + [813] = 749, + [814] = 814, + [815] = 815, + [816] = 816, [817] = 817, [818] = 818, - [819] = 804, - [820] = 792, - [821] = 794, - [822] = 798, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 815, [823] = 823, - [824] = 818, - [825] = 790, - [826] = 826, - [827] = 826, + [824] = 819, + [825] = 823, + [826] = 589, + [827] = 827, [828] = 828, - [829] = 804, - [830] = 792, - [831] = 794, - [832] = 798, - [833] = 793, - [834] = 797, - [835] = 826, + [829] = 829, + [830] = 830, + [831] = 821, + [832] = 820, + [833] = 815, + [834] = 816, + [835] = 823, [836] = 836, [837] = 837, [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, + [839] = 837, + [840] = 775, + [841] = 818, + [842] = 836, [843] = 843, [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, + [845] = 829, + [846] = 589, + [847] = 843, [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 850, - [855] = 851, - [856] = 856, - [857] = 778, - [858] = 858, - [859] = 756, - [860] = 849, + [849] = 819, + [850] = 829, + [851] = 830, + [852] = 821, + [853] = 820, + [854] = 830, + [855] = 843, + [856] = 837, + [857] = 819, + [858] = 819, + [859] = 818, + [860] = 860, [861] = 861, - [862] = 836, - [863] = 843, - [864] = 765, - [865] = 865, - [866] = 117, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 862, + [866] = 866, [867] = 867, [868] = 868, [869] = 869, - [870] = 865, - [871] = 117, - [872] = 561, - [873] = 846, - [874] = 874, - [875] = 837, - [876] = 838, - [877] = 839, - [878] = 840, - [879] = 841, - [880] = 842, - [881] = 867, - [882] = 844, - [883] = 837, - [884] = 845, - [885] = 846, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 867, + [875] = 875, + [876] = 795, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 861, + [881] = 881, + [882] = 877, + [883] = 873, + [884] = 884, + [885] = 885, [886] = 886, - [887] = 848, - [888] = 760, - [889] = 786, - [890] = 838, - [891] = 850, - [892] = 856, - [893] = 740, - [894] = 868, - [895] = 839, + [887] = 875, + [888] = 888, + [889] = 889, + [890] = 870, + [891] = 881, + [892] = 792, + [893] = 884, + [894] = 768, + [895] = 895, [896] = 896, - [897] = 852, - [898] = 840, - [899] = 780, - [900] = 869, - [901] = 901, - [902] = 902, - [903] = 841, - [904] = 901, - [905] = 905, - [906] = 906, - [907] = 779, - [908] = 847, - [909] = 858, - [910] = 874, - [911] = 911, - [912] = 896, - [913] = 848, - [914] = 861, - [915] = 849, - [916] = 842, - [917] = 836, - [918] = 788, - [919] = 852, - [920] = 902, - [921] = 844, - [922] = 922, - [923] = 901, - [924] = 753, - [925] = 902, - [926] = 843, - [927] = 927, - [928] = 865, - [929] = 905, - [930] = 905, - [931] = 906, - [932] = 845, - [933] = 847, - [934] = 858, - [935] = 874, - [936] = 911, - [937] = 896, - [938] = 867, - [939] = 861, - [940] = 868, - [941] = 911, - [942] = 906, - [943] = 853, - [944] = 741, - [945] = 853, - [946] = 856, - [947] = 851, - [948] = 948, + [897] = 897, + [898] = 863, + [899] = 864, + [900] = 862, + [901] = 866, + [902] = 867, + [903] = 868, + [904] = 868, + [905] = 869, + [906] = 781, + [907] = 871, + [908] = 873, + [909] = 875, + [910] = 775, + [911] = 895, + [912] = 786, + [913] = 877, + [914] = 878, + [915] = 888, + [916] = 916, + [917] = 794, + [918] = 918, + [919] = 863, + [920] = 920, + [921] = 123, + [922] = 811, + [923] = 123, + [924] = 886, + [925] = 589, + [926] = 916, + [927] = 780, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 866, + [932] = 879, + [933] = 861, + [934] = 885, + [935] = 872, + [936] = 897, + [937] = 889, + [938] = 896, + [939] = 920, + [940] = 869, + [941] = 941, + [942] = 878, + [943] = 886, + [944] = 916, + [945] = 888, + [946] = 920, + [947] = 929, + [948] = 870, [949] = 949, [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 955, - [965] = 965, + [951] = 881, + [952] = 929, + [953] = 930, + [954] = 871, + [955] = 879, + [956] = 884, + [957] = 885, + [958] = 872, + [959] = 897, + [960] = 864, + [961] = 895, + [962] = 889, + [963] = 797, + [964] = 896, + [965] = 930, [966] = 966, - [967] = 952, - [968] = 968, - [969] = 969, - [970] = 956, - [971] = 971, - [972] = 972, + [967] = 966, + [968] = 966, + [969] = 928, + [970] = 918, + [971] = 918, + [972] = 774, [973] = 973, [974] = 974, [975] = 975, [976] = 976, [977] = 977, - [978] = 960, + [978] = 978, [979] = 979, - [980] = 980, - [981] = 977, - [982] = 971, + [980] = 974, + [981] = 981, + [982] = 982, [983] = 983, - [984] = 984, + [984] = 977, [985] = 985, - [986] = 149, + [986] = 986, [987] = 987, [988] = 988, [989] = 989, - [990] = 948, - [991] = 149, - [992] = 992, + [990] = 990, + [991] = 991, + [992] = 978, [993] = 993, - [994] = 985, - [995] = 973, - [996] = 952, - [997] = 958, - [998] = 973, - [999] = 977, - [1000] = 985, - [1001] = 988, - [1002] = 989, - [1003] = 988, - [1004] = 249, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 162, + [999] = 993, + [1000] = 1000, + [1001] = 1001, + [1002] = 162, + [1003] = 1003, + [1004] = 1004, [1005] = 1005, - [1006] = 953, - [1007] = 959, - [1008] = 955, - [1009] = 956, - [1010] = 957, - [1011] = 1011, - [1012] = 957, - [1013] = 959, - [1014] = 960, - [1015] = 989, - [1016] = 968, + [1006] = 988, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 986, + [1012] = 1012, + [1013] = 1013, + [1014] = 985, + [1015] = 1007, + [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 961, - [1020] = 980, - [1021] = 958, - [1022] = 965, - [1023] = 971, - [1024] = 992, - [1025] = 965, + [1019] = 979, + [1020] = 1020, + [1021] = 1008, + [1022] = 994, + [1023] = 987, + [1024] = 1024, + [1025] = 1020, [1026] = 1026, - [1027] = 987, - [1028] = 961, + [1027] = 996, + [1028] = 1028, [1029] = 1029, - [1030] = 1030, - [1031] = 249, - [1032] = 980, - [1033] = 1033, - [1034] = 975, + [1030] = 1009, + [1031] = 1031, + [1032] = 973, + [1033] = 1013, + [1034] = 993, [1035] = 1035, - [1036] = 948, - [1037] = 984, - [1038] = 974, - [1039] = 983, - [1040] = 1029, - [1041] = 987, - [1042] = 966, - [1043] = 1033, - [1044] = 975, - [1045] = 1035, - [1046] = 992, - [1047] = 984, - [1048] = 974, - [1049] = 983, - [1050] = 1029, - [1051] = 1035, - [1052] = 1052, - [1053] = 1053, - [1054] = 953, - [1055] = 1033, + [1036] = 1009, + [1037] = 985, + [1038] = 1038, + [1039] = 1007, + [1040] = 1020, + [1041] = 996, + [1042] = 1042, + [1043] = 1005, + [1044] = 979, + [1045] = 974, + [1046] = 1042, + [1047] = 982, + [1048] = 983, + [1049] = 977, + [1050] = 1050, + [1051] = 986, + [1052] = 987, + [1053] = 982, + [1054] = 1005, + [1055] = 1008, + [1056] = 1042, + [1057] = 981, + [1058] = 978, + [1059] = 988, + [1060] = 994, + [1061] = 1013, + [1062] = 1018, + [1063] = 981, + [1064] = 1012, + [1065] = 976, + [1066] = 1050, + [1067] = 990, + [1068] = 973, + [1069] = 1026, + [1070] = 1001, + [1071] = 1003, + [1072] = 265, + [1073] = 1073, + [1074] = 1012, + [1075] = 976, + [1076] = 1050, + [1077] = 990, + [1078] = 983, + [1079] = 1026, + [1080] = 1001, + [1081] = 1003, + [1082] = 1082, + [1083] = 1083, + [1084] = 1082, + [1085] = 1085, + [1086] = 265, }; static const TSCharacterRange aux_sym_key_value_value_token1_character_set_1[] = { @@ -2738,7 +2811,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 50, '@', 51, '[', 52, - '\\', 56, + '\\', 54, ']', 58, '^', 59, '_', 60, @@ -2780,7 +2853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 50, '@', 51, '[', 52, - '\\', 54, + '\\', 56, ']', 58, '^', 59, '_', 60, @@ -3155,23 +3228,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4] = {.lex_state = 12, .external_lex_state = 4}, [5] = {.lex_state = 12, .external_lex_state = 4}, [6] = {.lex_state = 12, .external_lex_state = 4}, - [7] = {.lex_state = 12, .external_lex_state = 3}, - [8] = {.lex_state = 12, .external_lex_state = 3}, + [7] = {.lex_state = 12, .external_lex_state = 5}, + [8] = {.lex_state = 12, .external_lex_state = 4}, [9] = {.lex_state = 12, .external_lex_state = 3}, [10] = {.lex_state = 12, .external_lex_state = 3}, [11] = {.lex_state = 12, .external_lex_state = 3}, - [12] = {.lex_state = 12, .external_lex_state = 5}, + [12] = {.lex_state = 12, .external_lex_state = 3}, [13] = {.lex_state = 12, .external_lex_state = 3}, - [14] = {.lex_state = 12, .external_lex_state = 3}, - [15] = {.lex_state = 12, .external_lex_state = 3}, - [16] = {.lex_state = 12, .external_lex_state = 5}, - [17] = {.lex_state = 12, .external_lex_state = 5}, - [18] = {.lex_state = 12, .external_lex_state = 3}, - [19] = {.lex_state = 12, .external_lex_state = 3}, + [14] = {.lex_state = 12, .external_lex_state = 5}, + [15] = {.lex_state = 12, .external_lex_state = 4}, + [16] = {.lex_state = 12, .external_lex_state = 3}, + [17] = {.lex_state = 12, .external_lex_state = 3}, + [18] = {.lex_state = 12, .external_lex_state = 4}, + [19] = {.lex_state = 12, .external_lex_state = 5}, [20] = {.lex_state = 12, .external_lex_state = 3}, [21] = {.lex_state = 12, .external_lex_state = 3}, - [22] = {.lex_state = 12, .external_lex_state = 4}, - [23] = {.lex_state = 12, .external_lex_state = 4}, + [22] = {.lex_state = 12, .external_lex_state = 3}, + [23] = {.lex_state = 12, .external_lex_state = 3}, [24] = {.lex_state = 12, .external_lex_state = 4}, [25] = {.lex_state = 12, .external_lex_state = 4}, [26] = {.lex_state = 12, .external_lex_state = 4}, @@ -3181,16 +3254,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [30] = {.lex_state = 12, .external_lex_state = 4}, [31] = {.lex_state = 12, .external_lex_state = 4}, [32] = {.lex_state = 12, .external_lex_state = 4}, - [33] = {.lex_state = 12, .external_lex_state = 2}, - [34] = {.lex_state = 12, .external_lex_state = 6}, - [35] = {.lex_state = 12, .external_lex_state = 2}, + [33] = {.lex_state = 12, .external_lex_state = 4}, + [34] = {.lex_state = 12, .external_lex_state = 4}, + [35] = {.lex_state = 12, .external_lex_state = 3}, [36] = {.lex_state = 12, .external_lex_state = 2}, - [37] = {.lex_state = 12, .external_lex_state = 2}, + [37] = {.lex_state = 12, .external_lex_state = 6}, [38] = {.lex_state = 12, .external_lex_state = 2}, - [39] = {.lex_state = 12, .external_lex_state = 6}, - [40] = {.lex_state = 12, .external_lex_state = 6}, + [39] = {.lex_state = 12, .external_lex_state = 2}, + [40] = {.lex_state = 12, .external_lex_state = 2}, [41] = {.lex_state = 12, .external_lex_state = 2}, - [42] = {.lex_state = 12, .external_lex_state = 6}, + [42] = {.lex_state = 12, .external_lex_state = 2}, [43] = {.lex_state = 12, .external_lex_state = 6}, [44] = {.lex_state = 12, .external_lex_state = 6}, [45] = {.lex_state = 12, .external_lex_state = 2}, @@ -3199,9 +3272,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [48] = {.lex_state = 12, .external_lex_state = 6}, [49] = {.lex_state = 12, .external_lex_state = 6}, [50] = {.lex_state = 12, .external_lex_state = 6}, - [51] = {.lex_state = 12, .external_lex_state = 2}, - [52] = {.lex_state = 12, .external_lex_state = 2}, - [53] = {.lex_state = 12, .external_lex_state = 2}, + [51] = {.lex_state = 12, .external_lex_state = 6}, + [52] = {.lex_state = 12, .external_lex_state = 6}, + [53] = {.lex_state = 12, .external_lex_state = 6}, [54] = {.lex_state = 12, .external_lex_state = 2}, [55] = {.lex_state = 12, .external_lex_state = 2}, [56] = {.lex_state = 12, .external_lex_state = 2}, @@ -3210,190 +3283,190 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [59] = {.lex_state = 12, .external_lex_state = 2}, [60] = {.lex_state = 12, .external_lex_state = 2}, [61] = {.lex_state = 12, .external_lex_state = 2}, - [62] = {.lex_state = 12, .external_lex_state = 3}, - [63] = {.lex_state = 12, .external_lex_state = 3}, - [64] = {.lex_state = 12, .external_lex_state = 3}, - [65] = {.lex_state = 12, .external_lex_state = 6}, + [62] = {.lex_state = 12, .external_lex_state = 2}, + [63] = {.lex_state = 12, .external_lex_state = 2}, + [64] = {.lex_state = 12, .external_lex_state = 2}, + [65] = {.lex_state = 12, .external_lex_state = 2}, [66] = {.lex_state = 12, .external_lex_state = 2}, [67] = {.lex_state = 12, .external_lex_state = 2}, - [68] = {.lex_state = 12, .external_lex_state = 6}, - [69] = {.lex_state = 12, .external_lex_state = 6}, - [70] = {.lex_state = 12, .external_lex_state = 2}, - [71] = {.lex_state = 12, .external_lex_state = 3}, - [72] = {.lex_state = 12, .external_lex_state = 3}, - [73] = {.lex_state = 12, .external_lex_state = 3}, + [68] = {.lex_state = 12, .external_lex_state = 3}, + [69] = {.lex_state = 12, .external_lex_state = 3}, + [70] = {.lex_state = 12, .external_lex_state = 3}, + [71] = {.lex_state = 12, .external_lex_state = 6}, + [72] = {.lex_state = 12, .external_lex_state = 2}, + [73] = {.lex_state = 12, .external_lex_state = 2}, [74] = {.lex_state = 12, .external_lex_state = 6}, [75] = {.lex_state = 12, .external_lex_state = 2}, [76] = {.lex_state = 12, .external_lex_state = 6}, - [77] = {.lex_state = 12, .external_lex_state = 2}, - [78] = {.lex_state = 12, .external_lex_state = 2}, - [79] = {.lex_state = 12, .external_lex_state = 6}, - [80] = {.lex_state = 12, .external_lex_state = 3}, - [81] = {.lex_state = 12, .external_lex_state = 3}, - [82] = {.lex_state = 12, .external_lex_state = 3}, - [83] = {.lex_state = 12, .external_lex_state = 6}, + [77] = {.lex_state = 12, .external_lex_state = 3}, + [78] = {.lex_state = 12, .external_lex_state = 3}, + [79] = {.lex_state = 12, .external_lex_state = 3}, + [80] = {.lex_state = 12, .external_lex_state = 6}, + [81] = {.lex_state = 12, .external_lex_state = 2}, + [82] = {.lex_state = 12, .external_lex_state = 6}, + [83] = {.lex_state = 12, .external_lex_state = 2}, [84] = {.lex_state = 12, .external_lex_state = 2}, [85] = {.lex_state = 12, .external_lex_state = 6}, - [86] = {.lex_state = 12, .external_lex_state = 2}, - [87] = {.lex_state = 12, .external_lex_state = 2}, - [88] = {.lex_state = 12, .external_lex_state = 6}, - [89] = {.lex_state = 12, .external_lex_state = 3}, - [90] = {.lex_state = 12, .external_lex_state = 3}, - [91] = {.lex_state = 12, .external_lex_state = 3}, - [92] = {.lex_state = 12, .external_lex_state = 6}, + [86] = {.lex_state = 12, .external_lex_state = 3}, + [87] = {.lex_state = 12, .external_lex_state = 3}, + [88] = {.lex_state = 12, .external_lex_state = 3}, + [89] = {.lex_state = 12, .external_lex_state = 6}, + [90] = {.lex_state = 12, .external_lex_state = 6}, + [91] = {.lex_state = 12, .external_lex_state = 2}, + [92] = {.lex_state = 12, .external_lex_state = 2}, [93] = {.lex_state = 12, .external_lex_state = 2}, [94] = {.lex_state = 12, .external_lex_state = 6}, - [95] = {.lex_state = 12, .external_lex_state = 2}, - [96] = {.lex_state = 12, .external_lex_state = 6}, - [97] = {.lex_state = 12, .external_lex_state = 2}, - [98] = {.lex_state = 12, .external_lex_state = 3}, - [99] = {.lex_state = 12, .external_lex_state = 3}, - [100] = {.lex_state = 12, .external_lex_state = 3}, + [95] = {.lex_state = 12, .external_lex_state = 3}, + [96] = {.lex_state = 12, .external_lex_state = 3}, + [97] = {.lex_state = 12, .external_lex_state = 3}, + [98] = {.lex_state = 12, .external_lex_state = 2}, + [99] = {.lex_state = 12, .external_lex_state = 6}, + [100] = {.lex_state = 12, .external_lex_state = 2}, [101] = {.lex_state = 12, .external_lex_state = 2}, [102] = {.lex_state = 12, .external_lex_state = 6}, [103] = {.lex_state = 12, .external_lex_state = 6}, - [104] = {.lex_state = 12, .external_lex_state = 2}, - [105] = {.lex_state = 12, .external_lex_state = 2}, - [106] = {.lex_state = 12, .external_lex_state = 6}, - [107] = {.lex_state = 12, .external_lex_state = 3}, - [108] = {.lex_state = 12, .external_lex_state = 3}, - [109] = {.lex_state = 12, .external_lex_state = 3}, + [104] = {.lex_state = 12, .external_lex_state = 3}, + [105] = {.lex_state = 12, .external_lex_state = 3}, + [106] = {.lex_state = 12, .external_lex_state = 3}, + [107] = {.lex_state = 12, .external_lex_state = 6}, + [108] = {.lex_state = 12, .external_lex_state = 6}, + [109] = {.lex_state = 12, .external_lex_state = 2}, [110] = {.lex_state = 12, .external_lex_state = 2}, [111] = {.lex_state = 12, .external_lex_state = 6}, - [112] = {.lex_state = 12, .external_lex_state = 6}, - [113] = {.lex_state = 12, .external_lex_state = 2}, - [114] = {.lex_state = 12, .external_lex_state = 2}, - [115] = {.lex_state = 12, .external_lex_state = 6}, - [116] = {.lex_state = 12, .external_lex_state = 3}, - [117] = {.lex_state = 12, .external_lex_state = 7}, - [118] = {.lex_state = 12, .external_lex_state = 3}, - [119] = {.lex_state = 12, .external_lex_state = 3}, - [120] = {.lex_state = 12, .external_lex_state = 3}, - [121] = {.lex_state = 12, .external_lex_state = 3}, + [112] = {.lex_state = 12, .external_lex_state = 2}, + [113] = {.lex_state = 12, .external_lex_state = 3}, + [114] = {.lex_state = 12, .external_lex_state = 3}, + [115] = {.lex_state = 12, .external_lex_state = 3}, + [116] = {.lex_state = 12, .external_lex_state = 2}, + [117] = {.lex_state = 12, .external_lex_state = 2}, + [118] = {.lex_state = 12, .external_lex_state = 2}, + [119] = {.lex_state = 12, .external_lex_state = 6}, + [120] = {.lex_state = 12, .external_lex_state = 6}, + [121] = {.lex_state = 12, .external_lex_state = 6}, [122] = {.lex_state = 12, .external_lex_state = 3}, - [123] = {.lex_state = 12, .external_lex_state = 3}, + [123] = {.lex_state = 12, .external_lex_state = 7}, [124] = {.lex_state = 12, .external_lex_state = 3}, [125] = {.lex_state = 12, .external_lex_state = 3}, [126] = {.lex_state = 12, .external_lex_state = 3}, [127] = {.lex_state = 12, .external_lex_state = 3}, [128] = {.lex_state = 12, .external_lex_state = 3}, [129] = {.lex_state = 12, .external_lex_state = 3}, - [130] = {.lex_state = 12, .external_lex_state = 2}, - [131] = {.lex_state = 12, .external_lex_state = 6}, - [132] = {.lex_state = 12, .external_lex_state = 2}, - [133] = {.lex_state = 12, .external_lex_state = 2}, - [134] = {.lex_state = 12, .external_lex_state = 2}, - [135] = {.lex_state = 12, .external_lex_state = 2}, - [136] = {.lex_state = 12, .external_lex_state = 2}, - [137] = {.lex_state = 12, .external_lex_state = 6}, - [138] = {.lex_state = 12, .external_lex_state = 8}, + [130] = {.lex_state = 12, .external_lex_state = 3}, + [131] = {.lex_state = 12, .external_lex_state = 3}, + [132] = {.lex_state = 12, .external_lex_state = 3}, + [133] = {.lex_state = 12, .external_lex_state = 3}, + [134] = {.lex_state = 12, .external_lex_state = 3}, + [135] = {.lex_state = 12, .external_lex_state = 3}, + [136] = {.lex_state = 12, .external_lex_state = 3}, + [137] = {.lex_state = 12, .external_lex_state = 3}, + [138] = {.lex_state = 12, .external_lex_state = 2}, [139] = {.lex_state = 12, .external_lex_state = 6}, - [140] = {.lex_state = 12, .external_lex_state = 6}, - [141] = {.lex_state = 12, .external_lex_state = 6}, - [142] = {.lex_state = 12, .external_lex_state = 6}, - [143] = {.lex_state = 12, .external_lex_state = 6}, - [144] = {.lex_state = 12, .external_lex_state = 3}, - [145] = {.lex_state = 12, .external_lex_state = 3}, - [146] = {.lex_state = 12, .external_lex_state = 9}, - [147] = {.lex_state = 12, .external_lex_state = 8}, - [148] = {.lex_state = 12, .external_lex_state = 10}, - [149] = {.lex_state = 12, .external_lex_state = 8}, + [140] = {.lex_state = 12, .external_lex_state = 2}, + [141] = {.lex_state = 12, .external_lex_state = 8}, + [142] = {.lex_state = 12, .external_lex_state = 2}, + [143] = {.lex_state = 12, .external_lex_state = 2}, + [144] = {.lex_state = 12, .external_lex_state = 2}, + [145] = {.lex_state = 12, .external_lex_state = 2}, + [146] = {.lex_state = 12, .external_lex_state = 2}, + [147] = {.lex_state = 12, .external_lex_state = 6}, + [148] = {.lex_state = 12, .external_lex_state = 6}, + [149] = {.lex_state = 12, .external_lex_state = 6}, [150] = {.lex_state = 12, .external_lex_state = 6}, - [151] = {.lex_state = 12, .external_lex_state = 2}, - [152] = {.lex_state = 12, .external_lex_state = 2}, - [153] = {.lex_state = 12, .external_lex_state = 2}, + [151] = {.lex_state = 12, .external_lex_state = 6}, + [152] = {.lex_state = 12, .external_lex_state = 6}, + [153] = {.lex_state = 12, .external_lex_state = 6}, [154] = {.lex_state = 12, .external_lex_state = 6}, - [155] = {.lex_state = 12, .external_lex_state = 2}, - [156] = {.lex_state = 12, .external_lex_state = 2}, - [157] = {.lex_state = 12, .external_lex_state = 2}, - [158] = {.lex_state = 12, .external_lex_state = 2}, - [159] = {.lex_state = 12, .external_lex_state = 6}, - [160] = {.lex_state = 12, .external_lex_state = 6}, + [155] = {.lex_state = 12, .external_lex_state = 6}, + [156] = {.lex_state = 12, .external_lex_state = 3}, + [157] = {.lex_state = 12, .external_lex_state = 3}, + [158] = {.lex_state = 12, .external_lex_state = 9}, + [159] = {.lex_state = 12, .external_lex_state = 8}, + [160] = {.lex_state = 12, .external_lex_state = 10}, [161] = {.lex_state = 12, .external_lex_state = 6}, - [162] = {.lex_state = 12, .external_lex_state = 6}, - [163] = {.lex_state = 12, .external_lex_state = 11}, - [164] = {.lex_state = 12, .external_lex_state = 11}, - [165] = {.lex_state = 12, .external_lex_state = 11}, - [166] = {.lex_state = 12, .external_lex_state = 12}, + [162] = {.lex_state = 12, .external_lex_state = 8}, + [163] = {.lex_state = 12, .external_lex_state = 6}, + [164] = {.lex_state = 12, .external_lex_state = 6}, + [165] = {.lex_state = 12, .external_lex_state = 6}, + [166] = {.lex_state = 12, .external_lex_state = 6}, [167] = {.lex_state = 12, .external_lex_state = 2}, - [168] = {.lex_state = 12, .external_lex_state = 13}, - [169] = {.lex_state = 12, .external_lex_state = 13}, - [170] = {.lex_state = 12, .external_lex_state = 12}, - [171] = {.lex_state = 12, .external_lex_state = 11}, - [172] = {.lex_state = 12, .external_lex_state = 11}, - [173] = {.lex_state = 12, .external_lex_state = 13}, + [168] = {.lex_state = 12, .external_lex_state = 2}, + [169] = {.lex_state = 12, .external_lex_state = 2}, + [170] = {.lex_state = 12, .external_lex_state = 2}, + [171] = {.lex_state = 12, .external_lex_state = 2}, + [172] = {.lex_state = 12, .external_lex_state = 2}, + [173] = {.lex_state = 12, .external_lex_state = 2}, [174] = {.lex_state = 12, .external_lex_state = 2}, - [175] = {.lex_state = 12, .external_lex_state = 6}, + [175] = {.lex_state = 12, .external_lex_state = 2}, [176] = {.lex_state = 12, .external_lex_state = 11}, [177] = {.lex_state = 12, .external_lex_state = 11}, [178] = {.lex_state = 12, .external_lex_state = 11}, - [179] = {.lex_state = 12, .external_lex_state = 11}, - [180] = {.lex_state = 12, .external_lex_state = 11}, + [179] = {.lex_state = 12, .external_lex_state = 12}, + [180] = {.lex_state = 12, .external_lex_state = 6}, [181] = {.lex_state = 12, .external_lex_state = 11}, - [182] = {.lex_state = 12, .external_lex_state = 6}, - [183] = {.lex_state = 12, .external_lex_state = 12}, - [184] = {.lex_state = 12, .external_lex_state = 11}, + [182] = {.lex_state = 12, .external_lex_state = 13}, + [183] = {.lex_state = 12, .external_lex_state = 11}, + [184] = {.lex_state = 12, .external_lex_state = 12}, [185] = {.lex_state = 12, .external_lex_state = 11}, - [186] = {.lex_state = 12, .external_lex_state = 11}, - [187] = {.lex_state = 12, .external_lex_state = 11}, + [186] = {.lex_state = 12, .external_lex_state = 2}, + [187] = {.lex_state = 12, .external_lex_state = 12}, [188] = {.lex_state = 12, .external_lex_state = 11}, - [189] = {.lex_state = 12, .external_lex_state = 3}, - [190] = {.lex_state = 12, .external_lex_state = 3}, - [191] = {.lex_state = 12, .external_lex_state = 3}, - [192] = {.lex_state = 12, .external_lex_state = 3}, - [193] = {.lex_state = 12, .external_lex_state = 3}, - [194] = {.lex_state = 12, .external_lex_state = 3}, - [195] = {.lex_state = 12, .external_lex_state = 3}, - [196] = {.lex_state = 12, .external_lex_state = 3}, - [197] = {.lex_state = 12, .external_lex_state = 3}, - [198] = {.lex_state = 12, .external_lex_state = 3}, - [199] = {.lex_state = 12, .external_lex_state = 3}, - [200] = {.lex_state = 12, .external_lex_state = 5}, - [201] = {.lex_state = 12, .external_lex_state = 3}, - [202] = {.lex_state = 12, .external_lex_state = 4}, - [203] = {.lex_state = 12, .external_lex_state = 3}, + [189] = {.lex_state = 12, .external_lex_state = 11}, + [190] = {.lex_state = 12, .external_lex_state = 11}, + [191] = {.lex_state = 12, .external_lex_state = 11}, + [192] = {.lex_state = 12, .external_lex_state = 11}, + [193] = {.lex_state = 12, .external_lex_state = 11}, + [194] = {.lex_state = 12, .external_lex_state = 11}, + [195] = {.lex_state = 12, .external_lex_state = 11}, + [196] = {.lex_state = 12, .external_lex_state = 11}, + [197] = {.lex_state = 12, .external_lex_state = 11}, + [198] = {.lex_state = 12, .external_lex_state = 13}, + [199] = {.lex_state = 12, .external_lex_state = 11}, + [200] = {.lex_state = 12, .external_lex_state = 13}, + [201] = {.lex_state = 12, .external_lex_state = 11}, + [202] = {.lex_state = 12, .external_lex_state = 6}, + [203] = {.lex_state = 12, .external_lex_state = 5}, [204] = {.lex_state = 12, .external_lex_state = 3}, - [205] = {.lex_state = 12, .external_lex_state = 3}, + [205] = {.lex_state = 12, .external_lex_state = 4}, [206] = {.lex_state = 12, .external_lex_state = 3}, [207] = {.lex_state = 12, .external_lex_state = 3}, [208] = {.lex_state = 12, .external_lex_state = 3}, [209] = {.lex_state = 12, .external_lex_state = 3}, [210] = {.lex_state = 12, .external_lex_state = 3}, - [211] = {.lex_state = 12, .external_lex_state = 3}, + [211] = {.lex_state = 12, .external_lex_state = 4}, [212] = {.lex_state = 12, .external_lex_state = 3}, - [213] = {.lex_state = 12, .external_lex_state = 5}, + [213] = {.lex_state = 12, .external_lex_state = 3}, [214] = {.lex_state = 12, .external_lex_state = 3}, [215] = {.lex_state = 12, .external_lex_state = 3}, [216] = {.lex_state = 12, .external_lex_state = 3}, [217] = {.lex_state = 12, .external_lex_state = 3}, - [218] = {.lex_state = 12, .external_lex_state = 5}, + [218] = {.lex_state = 12, .external_lex_state = 3}, [219] = {.lex_state = 12, .external_lex_state = 3}, [220] = {.lex_state = 12, .external_lex_state = 3}, [221] = {.lex_state = 12, .external_lex_state = 3}, [222] = {.lex_state = 12, .external_lex_state = 3}, [223] = {.lex_state = 12, .external_lex_state = 3}, [224] = {.lex_state = 12, .external_lex_state = 3}, - [225] = {.lex_state = 12, .external_lex_state = 5}, + [225] = {.lex_state = 12, .external_lex_state = 3}, [226] = {.lex_state = 12, .external_lex_state = 3}, [227] = {.lex_state = 12, .external_lex_state = 3}, [228] = {.lex_state = 12, .external_lex_state = 3}, [229] = {.lex_state = 12, .external_lex_state = 3}, - [230] = {.lex_state = 12, .external_lex_state = 3}, + [230] = {.lex_state = 12, .external_lex_state = 4}, [231] = {.lex_state = 12, .external_lex_state = 3}, [232] = {.lex_state = 12, .external_lex_state = 3}, [233] = {.lex_state = 12, .external_lex_state = 3}, [234] = {.lex_state = 12, .external_lex_state = 3}, - [235] = {.lex_state = 12, .external_lex_state = 5}, - [236] = {.lex_state = 12, .external_lex_state = 3}, + [235] = {.lex_state = 12, .external_lex_state = 3}, + [236] = {.lex_state = 12, .external_lex_state = 5}, [237] = {.lex_state = 12, .external_lex_state = 3}, [238] = {.lex_state = 12, .external_lex_state = 3}, [239] = {.lex_state = 12, .external_lex_state = 3}, - [240] = {.lex_state = 12, .external_lex_state = 3}, + [240] = {.lex_state = 12, .external_lex_state = 4}, [241] = {.lex_state = 12, .external_lex_state = 3}, [242] = {.lex_state = 12, .external_lex_state = 3}, [243] = {.lex_state = 12, .external_lex_state = 3}, [244] = {.lex_state = 12, .external_lex_state = 3}, - [245] = {.lex_state = 12, .external_lex_state = 5}, + [245] = {.lex_state = 12, .external_lex_state = 3}, [246] = {.lex_state = 12, .external_lex_state = 3}, [247] = {.lex_state = 12, .external_lex_state = 3}, [248] = {.lex_state = 12, .external_lex_state = 3}, @@ -3401,34 +3474,34 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [250] = {.lex_state = 12, .external_lex_state = 3}, [251] = {.lex_state = 12, .external_lex_state = 5}, [252] = {.lex_state = 12, .external_lex_state = 3}, - [253] = {.lex_state = 12, .external_lex_state = 5}, + [253] = {.lex_state = 12, .external_lex_state = 3}, [254] = {.lex_state = 12, .external_lex_state = 3}, [255] = {.lex_state = 12, .external_lex_state = 3}, - [256] = {.lex_state = 12, .external_lex_state = 4}, - [257] = {.lex_state = 12, .external_lex_state = 4}, + [256] = {.lex_state = 12, .external_lex_state = 3}, + [257] = {.lex_state = 12, .external_lex_state = 3}, [258] = {.lex_state = 12, .external_lex_state = 3}, [259] = {.lex_state = 12, .external_lex_state = 3}, - [260] = {.lex_state = 12, .external_lex_state = 5}, + [260] = {.lex_state = 12, .external_lex_state = 3}, [261] = {.lex_state = 12, .external_lex_state = 3}, - [262] = {.lex_state = 12, .external_lex_state = 5}, + [262] = {.lex_state = 12, .external_lex_state = 3}, [263] = {.lex_state = 12, .external_lex_state = 4}, - [264] = {.lex_state = 12, .external_lex_state = 5}, - [265] = {.lex_state = 12, .external_lex_state = 5}, - [266] = {.lex_state = 12, .external_lex_state = 3}, + [264] = {.lex_state = 12, .external_lex_state = 3}, + [265] = {.lex_state = 12, .external_lex_state = 3}, + [266] = {.lex_state = 12, .external_lex_state = 4}, [267] = {.lex_state = 12, .external_lex_state = 4}, [268] = {.lex_state = 12, .external_lex_state = 4}, - [269] = {.lex_state = 12, .external_lex_state = 3}, - [270] = {.lex_state = 12, .external_lex_state = 4}, + [269] = {.lex_state = 12, .external_lex_state = 5}, + [270] = {.lex_state = 12, .external_lex_state = 3}, [271] = {.lex_state = 12, .external_lex_state = 4}, [272] = {.lex_state = 12, .external_lex_state = 3}, [273] = {.lex_state = 12, .external_lex_state = 3}, [274] = {.lex_state = 12, .external_lex_state = 3}, [275] = {.lex_state = 12, .external_lex_state = 3}, [276] = {.lex_state = 12, .external_lex_state = 3}, - [277] = {.lex_state = 12, .external_lex_state = 4}, - [278] = {.lex_state = 12, .external_lex_state = 4}, + [277] = {.lex_state = 12, .external_lex_state = 3}, + [278] = {.lex_state = 12, .external_lex_state = 3}, [279] = {.lex_state = 12, .external_lex_state = 3}, - [280] = {.lex_state = 12, .external_lex_state = 4}, + [280] = {.lex_state = 12, .external_lex_state = 3}, [281] = {.lex_state = 12, .external_lex_state = 3}, [282] = {.lex_state = 12, .external_lex_state = 3}, [283] = {.lex_state = 12, .external_lex_state = 3}, @@ -3437,52 +3510,52 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [286] = {.lex_state = 12, .external_lex_state = 5}, [287] = {.lex_state = 12, .external_lex_state = 4}, [288] = {.lex_state = 12, .external_lex_state = 5}, - [289] = {.lex_state = 12, .external_lex_state = 4}, - [290] = {.lex_state = 12, .external_lex_state = 6}, - [291] = {.lex_state = 12, .external_lex_state = 4}, + [289] = {.lex_state = 12, .external_lex_state = 3}, + [290] = {.lex_state = 12, .external_lex_state = 4}, + [291] = {.lex_state = 12, .external_lex_state = 3}, [292] = {.lex_state = 12, .external_lex_state = 4}, [293] = {.lex_state = 12, .external_lex_state = 4}, [294] = {.lex_state = 12, .external_lex_state = 3}, - [295] = {.lex_state = 12, .external_lex_state = 5}, - [296] = {.lex_state = 12, .external_lex_state = 5}, - [297] = {.lex_state = 12, .external_lex_state = 3}, + [295] = {.lex_state = 12, .external_lex_state = 3}, + [296] = {.lex_state = 12, .external_lex_state = 4}, + [297] = {.lex_state = 12, .external_lex_state = 4}, [298] = {.lex_state = 12, .external_lex_state = 4}, - [299] = {.lex_state = 12, .external_lex_state = 2}, - [300] = {.lex_state = 12, .external_lex_state = 2}, - [301] = {.lex_state = 12, .external_lex_state = 2}, - [302] = {.lex_state = 12, .external_lex_state = 2}, - [303] = {.lex_state = 12, .external_lex_state = 2}, - [304] = {.lex_state = 12, .external_lex_state = 2}, - [305] = {.lex_state = 12, .external_lex_state = 2}, - [306] = {.lex_state = 12, .external_lex_state = 2}, - [307] = {.lex_state = 12, .external_lex_state = 2}, - [308] = {.lex_state = 12, .external_lex_state = 2}, - [309] = {.lex_state = 12, .external_lex_state = 2}, - [310] = {.lex_state = 12, .external_lex_state = 2}, - [311] = {.lex_state = 12, .external_lex_state = 2}, - [312] = {.lex_state = 12, .external_lex_state = 2}, - [313] = {.lex_state = 12, .external_lex_state = 2}, - [314] = {.lex_state = 12, .external_lex_state = 2}, - [315] = {.lex_state = 12, .external_lex_state = 2}, - [316] = {.lex_state = 12, .external_lex_state = 2}, - [317] = {.lex_state = 12, .external_lex_state = 2}, + [299] = {.lex_state = 12, .external_lex_state = 3}, + [300] = {.lex_state = 12, .external_lex_state = 6}, + [301] = {.lex_state = 12, .external_lex_state = 5}, + [302] = {.lex_state = 12, .external_lex_state = 5}, + [303] = {.lex_state = 12, .external_lex_state = 5}, + [304] = {.lex_state = 12, .external_lex_state = 5}, + [305] = {.lex_state = 12, .external_lex_state = 5}, + [306] = {.lex_state = 12, .external_lex_state = 5}, + [307] = {.lex_state = 12, .external_lex_state = 5}, + [308] = {.lex_state = 12, .external_lex_state = 5}, + [309] = {.lex_state = 12, .external_lex_state = 5}, + [310] = {.lex_state = 12, .external_lex_state = 5}, + [311] = {.lex_state = 12, .external_lex_state = 5}, + [312] = {.lex_state = 12, .external_lex_state = 5}, + [313] = {.lex_state = 12, .external_lex_state = 4}, + [314] = {.lex_state = 12, .external_lex_state = 4}, + [315] = {.lex_state = 12, .external_lex_state = 3}, + [316] = {.lex_state = 12, .external_lex_state = 3}, + [317] = {.lex_state = 12, .external_lex_state = 3}, [318] = {.lex_state = 12, .external_lex_state = 2}, - [319] = {.lex_state = 12, .external_lex_state = 2}, - [320] = {.lex_state = 12, .external_lex_state = 2}, - [321] = {.lex_state = 12, .external_lex_state = 2}, - [322] = {.lex_state = 12, .external_lex_state = 2}, - [323] = {.lex_state = 12, .external_lex_state = 2}, - [324] = {.lex_state = 12, .external_lex_state = 2}, - [325] = {.lex_state = 12, .external_lex_state = 2}, + [319] = {.lex_state = 12, .external_lex_state = 4}, + [320] = {.lex_state = 12, .external_lex_state = 6}, + [321] = {.lex_state = 12, .external_lex_state = 6}, + [322] = {.lex_state = 12, .external_lex_state = 6}, + [323] = {.lex_state = 12, .external_lex_state = 6}, + [324] = {.lex_state = 12, .external_lex_state = 6}, + [325] = {.lex_state = 12, .external_lex_state = 6}, [326] = {.lex_state = 12, .external_lex_state = 6}, [327] = {.lex_state = 12, .external_lex_state = 6}, - [328] = {.lex_state = 12, .external_lex_state = 2}, - [329] = {.lex_state = 12, .external_lex_state = 2}, + [328] = {.lex_state = 12, .external_lex_state = 6}, + [329] = {.lex_state = 12, .external_lex_state = 6}, [330] = {.lex_state = 12, .external_lex_state = 6}, [331] = {.lex_state = 12, .external_lex_state = 6}, [332] = {.lex_state = 12, .external_lex_state = 6}, - [333] = {.lex_state = 12, .external_lex_state = 2}, - [334] = {.lex_state = 12, .external_lex_state = 2}, + [333] = {.lex_state = 12, .external_lex_state = 6}, + [334] = {.lex_state = 12, .external_lex_state = 6}, [335] = {.lex_state = 12, .external_lex_state = 6}, [336] = {.lex_state = 12, .external_lex_state = 6}, [337] = {.lex_state = 12, .external_lex_state = 6}, @@ -3491,68 +3564,68 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [340] = {.lex_state = 12, .external_lex_state = 6}, [341] = {.lex_state = 12, .external_lex_state = 6}, [342] = {.lex_state = 12, .external_lex_state = 6}, - [343] = {.lex_state = 12, .external_lex_state = 6}, - [344] = {.lex_state = 12, .external_lex_state = 6}, - [345] = {.lex_state = 12, .external_lex_state = 6}, + [343] = {.lex_state = 12, .external_lex_state = 2}, + [344] = {.lex_state = 12, .external_lex_state = 2}, + [345] = {.lex_state = 12, .external_lex_state = 2}, [346] = {.lex_state = 12, .external_lex_state = 2}, - [347] = {.lex_state = 12, .external_lex_state = 6}, + [347] = {.lex_state = 12, .external_lex_state = 2}, [348] = {.lex_state = 12, .external_lex_state = 2}, - [349] = {.lex_state = 12, .external_lex_state = 6}, - [350] = {.lex_state = 12, .external_lex_state = 6}, + [349] = {.lex_state = 12, .external_lex_state = 2}, + [350] = {.lex_state = 12, .external_lex_state = 2}, [351] = {.lex_state = 12, .external_lex_state = 2}, - [352] = {.lex_state = 12, .external_lex_state = 6}, - [353] = {.lex_state = 12, .external_lex_state = 6}, - [354] = {.lex_state = 12, .external_lex_state = 6}, - [355] = {.lex_state = 12, .external_lex_state = 6}, - [356] = {.lex_state = 12, .external_lex_state = 6}, - [357] = {.lex_state = 12, .external_lex_state = 6}, - [358] = {.lex_state = 12, .external_lex_state = 6}, - [359] = {.lex_state = 12, .external_lex_state = 6}, - [360] = {.lex_state = 12, .external_lex_state = 6}, - [361] = {.lex_state = 12, .external_lex_state = 6}, - [362] = {.lex_state = 12, .external_lex_state = 6}, - [363] = {.lex_state = 12, .external_lex_state = 6}, - [364] = {.lex_state = 12, .external_lex_state = 6}, - [365] = {.lex_state = 12, .external_lex_state = 6}, - [366] = {.lex_state = 12, .external_lex_state = 6}, + [352] = {.lex_state = 12, .external_lex_state = 4}, + [353] = {.lex_state = 12, .external_lex_state = 2}, + [354] = {.lex_state = 12, .external_lex_state = 2}, + [355] = {.lex_state = 12, .external_lex_state = 2}, + [356] = {.lex_state = 12, .external_lex_state = 2}, + [357] = {.lex_state = 12, .external_lex_state = 2}, + [358] = {.lex_state = 12, .external_lex_state = 2}, + [359] = {.lex_state = 12, .external_lex_state = 2}, + [360] = {.lex_state = 12, .external_lex_state = 2}, + [361] = {.lex_state = 12, .external_lex_state = 2}, + [362] = {.lex_state = 12, .external_lex_state = 2}, + [363] = {.lex_state = 12, .external_lex_state = 2}, + [364] = {.lex_state = 12, .external_lex_state = 2}, + [365] = {.lex_state = 12, .external_lex_state = 2}, + [366] = {.lex_state = 12, .external_lex_state = 2}, [367] = {.lex_state = 12, .external_lex_state = 2}, [368] = {.lex_state = 12, .external_lex_state = 2}, [369] = {.lex_state = 12, .external_lex_state = 2}, - [370] = {.lex_state = 12, .external_lex_state = 6}, - [371] = {.lex_state = 12, .external_lex_state = 6}, + [370] = {.lex_state = 12, .external_lex_state = 2}, + [371] = {.lex_state = 12, .external_lex_state = 2}, [372] = {.lex_state = 12, .external_lex_state = 2}, [373] = {.lex_state = 12, .external_lex_state = 2}, - [374] = {.lex_state = 12, .external_lex_state = 6}, - [375] = {.lex_state = 12, .external_lex_state = 6}, - [376] = {.lex_state = 12, .external_lex_state = 6}, - [377] = {.lex_state = 12, .external_lex_state = 6}, - [378] = {.lex_state = 12, .external_lex_state = 6}, - [379] = {.lex_state = 12, .external_lex_state = 6}, - [380] = {.lex_state = 12, .external_lex_state = 6}, - [381] = {.lex_state = 12, .external_lex_state = 6}, - [382] = {.lex_state = 12, .external_lex_state = 6}, - [383] = {.lex_state = 12, .external_lex_state = 6}, - [384] = {.lex_state = 12, .external_lex_state = 6}, - [385] = {.lex_state = 12, .external_lex_state = 6}, + [374] = {.lex_state = 12, .external_lex_state = 2}, + [375] = {.lex_state = 12, .external_lex_state = 2}, + [376] = {.lex_state = 12, .external_lex_state = 2}, + [377] = {.lex_state = 12, .external_lex_state = 2}, + [378] = {.lex_state = 12, .external_lex_state = 2}, + [379] = {.lex_state = 12, .external_lex_state = 2}, + [380] = {.lex_state = 12, .external_lex_state = 2}, + [381] = {.lex_state = 12, .external_lex_state = 2}, + [382] = {.lex_state = 12, .external_lex_state = 2}, + [383] = {.lex_state = 12, .external_lex_state = 2}, + [384] = {.lex_state = 12, .external_lex_state = 2}, + [385] = {.lex_state = 12, .external_lex_state = 2}, [386] = {.lex_state = 12, .external_lex_state = 2}, - [387] = {.lex_state = 12, .external_lex_state = 6}, - [388] = {.lex_state = 12, .external_lex_state = 2}, + [387] = {.lex_state = 12, .external_lex_state = 2}, + [388] = {.lex_state = 12, .external_lex_state = 6}, [389] = {.lex_state = 12, .external_lex_state = 6}, - [390] = {.lex_state = 12, .external_lex_state = 6}, - [391] = {.lex_state = 12, .external_lex_state = 6}, - [392] = {.lex_state = 12, .external_lex_state = 6}, + [390] = {.lex_state = 12, .external_lex_state = 2}, + [391] = {.lex_state = 12, .external_lex_state = 2}, + [392] = {.lex_state = 12, .external_lex_state = 4}, [393] = {.lex_state = 12, .external_lex_state = 6}, [394] = {.lex_state = 12, .external_lex_state = 6}, [395] = {.lex_state = 12, .external_lex_state = 6}, - [396] = {.lex_state = 12, .external_lex_state = 6}, - [397] = {.lex_state = 12, .external_lex_state = 6}, - [398] = {.lex_state = 12, .external_lex_state = 6}, - [399] = {.lex_state = 12, .external_lex_state = 6}, - [400] = {.lex_state = 12, .external_lex_state = 6}, - [401] = {.lex_state = 12, .external_lex_state = 6}, - [402] = {.lex_state = 12, .external_lex_state = 6}, - [403] = {.lex_state = 12, .external_lex_state = 6}, - [404] = {.lex_state = 12, .external_lex_state = 6}, + [396] = {.lex_state = 12, .external_lex_state = 2}, + [397] = {.lex_state = 12, .external_lex_state = 2}, + [398] = {.lex_state = 12, .external_lex_state = 2}, + [399] = {.lex_state = 12, .external_lex_state = 2}, + [400] = {.lex_state = 12, .external_lex_state = 2}, + [401] = {.lex_state = 12, .external_lex_state = 2}, + [402] = {.lex_state = 12, .external_lex_state = 2}, + [403] = {.lex_state = 12, .external_lex_state = 4}, + [404] = {.lex_state = 12, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 6}, [406] = {.lex_state = 12, .external_lex_state = 6}, [407] = {.lex_state = 12, .external_lex_state = 6}, @@ -3562,12 +3635,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [411] = {.lex_state = 12, .external_lex_state = 6}, [412] = {.lex_state = 12, .external_lex_state = 6}, [413] = {.lex_state = 12, .external_lex_state = 6}, - [414] = {.lex_state = 12, .external_lex_state = 4}, - [415] = {.lex_state = 12, .external_lex_state = 2}, - [416] = {.lex_state = 12, .external_lex_state = 4}, - [417] = {.lex_state = 12, .external_lex_state = 4}, - [418] = {.lex_state = 12, .external_lex_state = 4}, - [419] = {.lex_state = 12, .external_lex_state = 2}, + [414] = {.lex_state = 12, .external_lex_state = 6}, + [415] = {.lex_state = 12, .external_lex_state = 6}, + [416] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 6}, + [418] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 12, .external_lex_state = 6}, [420] = {.lex_state = 12, .external_lex_state = 2}, [421] = {.lex_state = 12, .external_lex_state = 2}, [422] = {.lex_state = 12, .external_lex_state = 2}, @@ -3578,632 +3651,663 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [427] = {.lex_state = 12, .external_lex_state = 2}, [428] = {.lex_state = 12, .external_lex_state = 2}, [429] = {.lex_state = 12, .external_lex_state = 2}, - [430] = {.lex_state = 12, .external_lex_state = 2}, + [430] = {.lex_state = 12, .external_lex_state = 6}, [431] = {.lex_state = 12, .external_lex_state = 2}, [432] = {.lex_state = 12, .external_lex_state = 2}, - [433] = {.lex_state = 12, .external_lex_state = 2}, - [434] = {.lex_state = 12, .external_lex_state = 2}, - [435] = {.lex_state = 12, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 2}, - [437] = {.lex_state = 12, .external_lex_state = 2}, - [438] = {.lex_state = 12, .external_lex_state = 2}, - [439] = {.lex_state = 12, .external_lex_state = 2}, - [440] = {.lex_state = 12, .external_lex_state = 2}, + [433] = {.lex_state = 12, .external_lex_state = 6}, + [434] = {.lex_state = 12, .external_lex_state = 6}, + [435] = {.lex_state = 12, .external_lex_state = 6}, + [436] = {.lex_state = 12, .external_lex_state = 6}, + [437] = {.lex_state = 12, .external_lex_state = 6}, + [438] = {.lex_state = 12, .external_lex_state = 6}, + [439] = {.lex_state = 12, .external_lex_state = 6}, + [440] = {.lex_state = 12, .external_lex_state = 6}, [441] = {.lex_state = 12, .external_lex_state = 6}, - [442] = {.lex_state = 12, .external_lex_state = 2}, - [443] = {.lex_state = 12, .external_lex_state = 2}, - [444] = {.lex_state = 12, .external_lex_state = 2}, - [445] = {.lex_state = 12, .external_lex_state = 2}, + [442] = {.lex_state = 12, .external_lex_state = 6}, + [443] = {.lex_state = 12, .external_lex_state = 6}, + [444] = {.lex_state = 12, .external_lex_state = 6}, + [445] = {.lex_state = 12, .external_lex_state = 6}, [446] = {.lex_state = 12, .external_lex_state = 6}, - [447] = {.lex_state = 12, .external_lex_state = 2}, - [448] = {.lex_state = 12, .external_lex_state = 2}, - [449] = {.lex_state = 12, .external_lex_state = 2}, + [447] = {.lex_state = 12, .external_lex_state = 6}, + [448] = {.lex_state = 12, .external_lex_state = 6}, + [449] = {.lex_state = 12, .external_lex_state = 6}, [450] = {.lex_state = 12, .external_lex_state = 2}, - [451] = {.lex_state = 12, .external_lex_state = 2}, - [452] = {.lex_state = 12, .external_lex_state = 2}, + [451] = {.lex_state = 12, .external_lex_state = 6}, + [452] = {.lex_state = 12, .external_lex_state = 6}, [453] = {.lex_state = 12, .external_lex_state = 2}, - [454] = {.lex_state = 1, .external_lex_state = 14}, - [455] = {.lex_state = 2, .external_lex_state = 15}, - [456] = {.lex_state = 12, .external_lex_state = 14}, - [457] = {.lex_state = 12, .external_lex_state = 14}, - [458] = {.lex_state = 12, .external_lex_state = 14}, - [459] = {.lex_state = 12, .external_lex_state = 14}, - [460] = {.lex_state = 12, .external_lex_state = 14}, - [461] = {.lex_state = 12, .external_lex_state = 14}, - [462] = {.lex_state = 12, .external_lex_state = 14}, - [463] = {.lex_state = 12, .external_lex_state = 14}, - [464] = {.lex_state = 12, .external_lex_state = 14}, - [465] = {.lex_state = 12, .external_lex_state = 14}, - [466] = {.lex_state = 12, .external_lex_state = 14}, - [467] = {.lex_state = 12, .external_lex_state = 14}, - [468] = {.lex_state = 12, .external_lex_state = 14}, - [469] = {.lex_state = 12, .external_lex_state = 14}, - [470] = {.lex_state = 12, .external_lex_state = 14}, - [471] = {.lex_state = 12, .external_lex_state = 14}, - [472] = {.lex_state = 12, .external_lex_state = 14}, - [473] = {.lex_state = 12, .external_lex_state = 14}, - [474] = {.lex_state = 12, .external_lex_state = 16}, - [475] = {.lex_state = 12, .external_lex_state = 16}, - [476] = {.lex_state = 12, .external_lex_state = 16}, - [477] = {.lex_state = 12, .external_lex_state = 17}, - [478] = {.lex_state = 12, .external_lex_state = 17}, - [479] = {.lex_state = 12, .external_lex_state = 16}, - [480] = {.lex_state = 12, .external_lex_state = 17}, - [481] = {.lex_state = 12, .external_lex_state = 16}, - [482] = {.lex_state = 12, .external_lex_state = 17}, - [483] = {.lex_state = 12, .external_lex_state = 16}, - [484] = {.lex_state = 2, .external_lex_state = 15}, - [485] = {.lex_state = 12, .external_lex_state = 16}, - [486] = {.lex_state = 12, .external_lex_state = 17}, - [487] = {.lex_state = 2, .external_lex_state = 15}, - [488] = {.lex_state = 2, .external_lex_state = 15}, - [489] = {.lex_state = 2, .external_lex_state = 15}, - [490] = {.lex_state = 12, .external_lex_state = 17}, - [491] = {.lex_state = 12, .external_lex_state = 16}, - [492] = {.lex_state = 12, .external_lex_state = 17}, - [493] = {.lex_state = 12, .external_lex_state = 16}, - [494] = {.lex_state = 12, .external_lex_state = 17}, - [495] = {.lex_state = 2, .external_lex_state = 15}, - [496] = {.lex_state = 12, .external_lex_state = 17}, - [497] = {.lex_state = 2, .external_lex_state = 15}, - [498] = {.lex_state = 2, .external_lex_state = 18}, - [499] = {.lex_state = 12, .external_lex_state = 17}, - [500] = {.lex_state = 2, .external_lex_state = 18}, - [501] = {.lex_state = 2, .external_lex_state = 15}, + [454] = {.lex_state = 12, .external_lex_state = 2}, + [455] = {.lex_state = 12, .external_lex_state = 6}, + [456] = {.lex_state = 12, .external_lex_state = 2}, + [457] = {.lex_state = 12, .external_lex_state = 6}, + [458] = {.lex_state = 12, .external_lex_state = 6}, + [459] = {.lex_state = 12, .external_lex_state = 6}, + [460] = {.lex_state = 12, .external_lex_state = 6}, + [461] = {.lex_state = 12, .external_lex_state = 6}, + [462] = {.lex_state = 12, .external_lex_state = 6}, + [463] = {.lex_state = 12, .external_lex_state = 6}, + [464] = {.lex_state = 12, .external_lex_state = 6}, + [465] = {.lex_state = 12, .external_lex_state = 2}, + [466] = {.lex_state = 12, .external_lex_state = 6}, + [467] = {.lex_state = 12, .external_lex_state = 6}, + [468] = {.lex_state = 12, .external_lex_state = 4}, + [469] = {.lex_state = 12, .external_lex_state = 6}, + [470] = {.lex_state = 12, .external_lex_state = 2}, + [471] = {.lex_state = 12, .external_lex_state = 6}, + [472] = {.lex_state = 12, .external_lex_state = 4}, + [473] = {.lex_state = 12, .external_lex_state = 6}, + [474] = {.lex_state = 12, .external_lex_state = 2}, + [475] = {.lex_state = 12, .external_lex_state = 6}, + [476] = {.lex_state = 12, .external_lex_state = 6}, + [477] = {.lex_state = 12, .external_lex_state = 6}, + [478] = {.lex_state = 12, .external_lex_state = 2}, + [479] = {.lex_state = 1, .external_lex_state = 14}, + [480] = {.lex_state = 2, .external_lex_state = 15}, + [481] = {.lex_state = 12, .external_lex_state = 14}, + [482] = {.lex_state = 12, .external_lex_state = 14}, + [483] = {.lex_state = 12, .external_lex_state = 14}, + [484] = {.lex_state = 12, .external_lex_state = 14}, + [485] = {.lex_state = 12, .external_lex_state = 14}, + [486] = {.lex_state = 12, .external_lex_state = 14}, + [487] = {.lex_state = 12, .external_lex_state = 14}, + [488] = {.lex_state = 12, .external_lex_state = 14}, + [489] = {.lex_state = 12, .external_lex_state = 14}, + [490] = {.lex_state = 12, .external_lex_state = 14}, + [491] = {.lex_state = 12, .external_lex_state = 14}, + [492] = {.lex_state = 12, .external_lex_state = 14}, + [493] = {.lex_state = 12, .external_lex_state = 14}, + [494] = {.lex_state = 12, .external_lex_state = 14}, + [495] = {.lex_state = 12, .external_lex_state = 14}, + [496] = {.lex_state = 12, .external_lex_state = 14}, + [497] = {.lex_state = 12, .external_lex_state = 14}, + [498] = {.lex_state = 12, .external_lex_state = 14}, + [499] = {.lex_state = 12, .external_lex_state = 16}, + [500] = {.lex_state = 2, .external_lex_state = 15}, + [501] = {.lex_state = 12, .external_lex_state = 16}, [502] = {.lex_state = 2, .external_lex_state = 15}, [503] = {.lex_state = 2, .external_lex_state = 15}, [504] = {.lex_state = 12, .external_lex_state = 16}, - [505] = {.lex_state = 2, .external_lex_state = 15}, - [506] = {.lex_state = 2, .external_lex_state = 15}, + [505] = {.lex_state = 12, .external_lex_state = 17}, + [506] = {.lex_state = 12, .external_lex_state = 16}, [507] = {.lex_state = 12, .external_lex_state = 17}, [508] = {.lex_state = 12, .external_lex_state = 16}, - [509] = {.lex_state = 2, .external_lex_state = 18}, - [510] = {.lex_state = 2, .external_lex_state = 15}, - [511] = {.lex_state = 12, .external_lex_state = 19}, - [512] = {.lex_state = 2, .external_lex_state = 20}, - [513] = {.lex_state = 2, .external_lex_state = 20}, - [514] = {.lex_state = 2, .external_lex_state = 20}, - [515] = {.lex_state = 12, .external_lex_state = 19}, - [516] = {.lex_state = 12, .external_lex_state = 19}, + [509] = {.lex_state = 12, .external_lex_state = 17}, + [510] = {.lex_state = 12, .external_lex_state = 16}, + [511] = {.lex_state = 12, .external_lex_state = 17}, + [512] = {.lex_state = 12, .external_lex_state = 16}, + [513] = {.lex_state = 12, .external_lex_state = 17}, + [514] = {.lex_state = 12, .external_lex_state = 16}, + [515] = {.lex_state = 12, .external_lex_state = 17}, + [516] = {.lex_state = 12, .external_lex_state = 17}, [517] = {.lex_state = 2, .external_lex_state = 15}, - [518] = {.lex_state = 2, .external_lex_state = 20}, - [519] = {.lex_state = 12, .external_lex_state = 19}, - [520] = {.lex_state = 2, .external_lex_state = 20}, - [521] = {.lex_state = 12, .external_lex_state = 21}, - [522] = {.lex_state = 12, .external_lex_state = 19}, - [523] = {.lex_state = 2, .external_lex_state = 15}, - [524] = {.lex_state = 12, .external_lex_state = 19}, - [525] = {.lex_state = 12, .external_lex_state = 21}, - [526] = {.lex_state = 12, .external_lex_state = 19}, - [527] = {.lex_state = 12, .external_lex_state = 21}, - [528] = {.lex_state = 12, .external_lex_state = 21}, - [529] = {.lex_state = 12, .external_lex_state = 21}, - [530] = {.lex_state = 2, .external_lex_state = 20}, - [531] = {.lex_state = 12, .external_lex_state = 21}, - [532] = {.lex_state = 2, .external_lex_state = 20}, - [533] = {.lex_state = 2, .external_lex_state = 18}, - [534] = {.lex_state = 2, .external_lex_state = 20}, - [535] = {.lex_state = 12, .external_lex_state = 22}, - [536] = {.lex_state = 2, .external_lex_state = 20}, - [537] = {.lex_state = 12, .external_lex_state = 22}, - [538] = {.lex_state = 2, .external_lex_state = 20}, - [539] = {.lex_state = 2, .external_lex_state = 18}, - [540] = {.lex_state = 12, .external_lex_state = 22}, - [541] = {.lex_state = 12, .external_lex_state = 21}, - [542] = {.lex_state = 2, .external_lex_state = 18}, - [543] = {.lex_state = 12, .external_lex_state = 21}, - [544] = {.lex_state = 2, .external_lex_state = 20}, - [545] = {.lex_state = 2, .external_lex_state = 23}, - [546] = {.lex_state = 12, .external_lex_state = 22}, - [547] = {.lex_state = 2, .external_lex_state = 18}, - [548] = {.lex_state = 2, .external_lex_state = 15}, - [549] = {.lex_state = 12, .external_lex_state = 21}, - [550] = {.lex_state = 12, .external_lex_state = 16}, - [551] = {.lex_state = 2, .external_lex_state = 20}, + [518] = {.lex_state = 2, .external_lex_state = 15}, + [519] = {.lex_state = 12, .external_lex_state = 16}, + [520] = {.lex_state = 2, .external_lex_state = 15}, + [521] = {.lex_state = 12, .external_lex_state = 17}, + [522] = {.lex_state = 12, .external_lex_state = 17}, + [523] = {.lex_state = 12, .external_lex_state = 17}, + [524] = {.lex_state = 2, .external_lex_state = 18}, + [525] = {.lex_state = 2, .external_lex_state = 15}, + [526] = {.lex_state = 2, .external_lex_state = 15}, + [527] = {.lex_state = 2, .external_lex_state = 18}, + [528] = {.lex_state = 12, .external_lex_state = 17}, + [529] = {.lex_state = 12, .external_lex_state = 16}, + [530] = {.lex_state = 12, .external_lex_state = 16}, + [531] = {.lex_state = 2, .external_lex_state = 15}, + [532] = {.lex_state = 2, .external_lex_state = 15}, + [533] = {.lex_state = 2, .external_lex_state = 15}, + [534] = {.lex_state = 2, .external_lex_state = 18}, + [535] = {.lex_state = 2, .external_lex_state = 19}, + [536] = {.lex_state = 12, .external_lex_state = 20}, + [537] = {.lex_state = 12, .external_lex_state = 20}, + [538] = {.lex_state = 12, .external_lex_state = 21}, + [539] = {.lex_state = 12, .external_lex_state = 21}, + [540] = {.lex_state = 2, .external_lex_state = 19}, + [541] = {.lex_state = 2, .external_lex_state = 19}, + [542] = {.lex_state = 2, .external_lex_state = 15}, + [543] = {.lex_state = 2, .external_lex_state = 19}, + [544] = {.lex_state = 12, .external_lex_state = 21}, + [545] = {.lex_state = 2, .external_lex_state = 19}, + [546] = {.lex_state = 2, .external_lex_state = 15}, + [547] = {.lex_state = 2, .external_lex_state = 19}, + [548] = {.lex_state = 12, .external_lex_state = 20}, + [549] = {.lex_state = 2, .external_lex_state = 15}, + [550] = {.lex_state = 12, .external_lex_state = 21}, + [551] = {.lex_state = 12, .external_lex_state = 21}, [552] = {.lex_state = 12, .external_lex_state = 21}, - [553] = {.lex_state = 2, .external_lex_state = 15}, - [554] = {.lex_state = 2, .external_lex_state = 15}, - [555] = {.lex_state = 12, .external_lex_state = 21}, - [556] = {.lex_state = 12, .external_lex_state = 17}, - [557] = {.lex_state = 2, .external_lex_state = 18}, + [553] = {.lex_state = 12, .external_lex_state = 21}, + [554] = {.lex_state = 12, .external_lex_state = 20}, + [555] = {.lex_state = 12, .external_lex_state = 20}, + [556] = {.lex_state = 12, .external_lex_state = 20}, + [557] = {.lex_state = 12, .external_lex_state = 20}, [558] = {.lex_state = 2, .external_lex_state = 18}, - [559] = {.lex_state = 12, .external_lex_state = 16}, - [560] = {.lex_state = 12, .external_lex_state = 17}, - [561] = {.lex_state = 2, .external_lex_state = 15}, - [562] = {.lex_state = 2, .external_lex_state = 18}, - [563] = {.lex_state = 12, .external_lex_state = 24}, - [564] = {.lex_state = 2, .external_lex_state = 20}, - [565] = {.lex_state = 12, .external_lex_state = 24}, - [566] = {.lex_state = 12, .external_lex_state = 21}, - [567] = {.lex_state = 2, .external_lex_state = 15}, + [559] = {.lex_state = 2, .external_lex_state = 18}, + [560] = {.lex_state = 2, .external_lex_state = 19}, + [561] = {.lex_state = 2, .external_lex_state = 19}, + [562] = {.lex_state = 2, .external_lex_state = 19}, + [563] = {.lex_state = 12, .external_lex_state = 22}, + [564] = {.lex_state = 12, .external_lex_state = 22}, + [565] = {.lex_state = 2, .external_lex_state = 19}, + [566] = {.lex_state = 12, .external_lex_state = 20}, + [567] = {.lex_state = 2, .external_lex_state = 18}, [568] = {.lex_state = 12, .external_lex_state = 22}, - [569] = {.lex_state = 12, .external_lex_state = 24}, - [570] = {.lex_state = 2, .external_lex_state = 20}, - [571] = {.lex_state = 2, .external_lex_state = 18}, - [572] = {.lex_state = 12, .external_lex_state = 21}, - [573] = {.lex_state = 12, .external_lex_state = 22}, - [574] = {.lex_state = 2, .external_lex_state = 18}, - [575] = {.lex_state = 12, .external_lex_state = 19}, - [576] = {.lex_state = 2, .external_lex_state = 15}, - [577] = {.lex_state = 12, .external_lex_state = 19}, - [578] = {.lex_state = 12, .external_lex_state = 25}, - [579] = {.lex_state = 2, .external_lex_state = 15}, - [580] = {.lex_state = 2, .external_lex_state = 18}, + [569] = {.lex_state = 2, .external_lex_state = 19}, + [570] = {.lex_state = 2, .external_lex_state = 23}, + [571] = {.lex_state = 12, .external_lex_state = 20}, + [572] = {.lex_state = 12, .external_lex_state = 22}, + [573] = {.lex_state = 2, .external_lex_state = 19}, + [574] = {.lex_state = 12, .external_lex_state = 17}, + [575] = {.lex_state = 2, .external_lex_state = 15}, + [576] = {.lex_state = 12, .external_lex_state = 20}, + [577] = {.lex_state = 12, .external_lex_state = 24}, + [578] = {.lex_state = 2, .external_lex_state = 15}, + [579] = {.lex_state = 12, .external_lex_state = 20}, + [580] = {.lex_state = 12, .external_lex_state = 22}, [581] = {.lex_state = 2, .external_lex_state = 15}, - [582] = {.lex_state = 12, .external_lex_state = 22}, - [583] = {.lex_state = 12, .external_lex_state = 22}, + [582] = {.lex_state = 2, .external_lex_state = 15}, + [583] = {.lex_state = 2, .external_lex_state = 19}, [584] = {.lex_state = 2, .external_lex_state = 18}, - [585] = {.lex_state = 12, .external_lex_state = 26}, + [585] = {.lex_state = 12, .external_lex_state = 16}, [586] = {.lex_state = 2, .external_lex_state = 18}, - [587] = {.lex_state = 2, .external_lex_state = 15}, - [588] = {.lex_state = 2, .external_lex_state = 18}, - [589] = {.lex_state = 2, .external_lex_state = 18}, - [590] = {.lex_state = 2, .external_lex_state = 18}, - [591] = {.lex_state = 12, .external_lex_state = 14}, - [592] = {.lex_state = 2, .external_lex_state = 18}, - [593] = {.lex_state = 12, .external_lex_state = 16}, - [594] = {.lex_state = 12, .external_lex_state = 16}, - [595] = {.lex_state = 12, .external_lex_state = 17}, - [596] = {.lex_state = 2, .external_lex_state = 20}, - [597] = {.lex_state = 3, .external_lex_state = 27}, - [598] = {.lex_state = 4, .external_lex_state = 27}, - [599] = {.lex_state = 12, .external_lex_state = 28}, - [600] = {.lex_state = 2, .external_lex_state = 20}, - [601] = {.lex_state = 2, .external_lex_state = 20}, - [602] = {.lex_state = 12, .external_lex_state = 14}, - [603] = {.lex_state = 12, .external_lex_state = 16}, - [604] = {.lex_state = 4, .external_lex_state = 27}, - [605] = {.lex_state = 2, .external_lex_state = 20}, - [606] = {.lex_state = 3, .external_lex_state = 27}, - [607] = {.lex_state = 12, .external_lex_state = 17}, - [608] = {.lex_state = 3, .external_lex_state = 27}, - [609] = {.lex_state = 12, .external_lex_state = 29}, - [610] = {.lex_state = 12, .external_lex_state = 21}, - [611] = {.lex_state = 4, .external_lex_state = 27}, - [612] = {.lex_state = 12, .external_lex_state = 21}, - [613] = {.lex_state = 12, .external_lex_state = 14}, - [614] = {.lex_state = 12, .external_lex_state = 17}, - [615] = {.lex_state = 12, .external_lex_state = 19}, - [616] = {.lex_state = 12, .external_lex_state = 21}, - [617] = {.lex_state = 2, .external_lex_state = 20}, - [618] = {.lex_state = 2, .external_lex_state = 18}, - [619] = {.lex_state = 12, .external_lex_state = 19}, - [620] = {.lex_state = 2, .external_lex_state = 20}, - [621] = {.lex_state = 2, .external_lex_state = 18}, - [622] = {.lex_state = 2, .external_lex_state = 20}, - [623] = {.lex_state = 12, .external_lex_state = 22}, - [624] = {.lex_state = 2, .external_lex_state = 18}, - [625] = {.lex_state = 2, .external_lex_state = 18}, - [626] = {.lex_state = 2, .external_lex_state = 20}, - [627] = {.lex_state = 12, .external_lex_state = 21}, - [628] = {.lex_state = 12, .external_lex_state = 19}, - [629] = {.lex_state = 12, .external_lex_state = 22}, - [630] = {.lex_state = 12, .external_lex_state = 30}, - [631] = {.lex_state = 12, .external_lex_state = 30}, - [632] = {.lex_state = 3, .external_lex_state = 31}, - [633] = {.lex_state = 4, .external_lex_state = 31}, - [634] = {.lex_state = 12, .external_lex_state = 30}, - [635] = {.lex_state = 12, .external_lex_state = 30}, - [636] = {.lex_state = 12, .external_lex_state = 30}, - [637] = {.lex_state = 12, .external_lex_state = 14}, - [638] = {.lex_state = 12, .external_lex_state = 30}, - [639] = {.lex_state = 12, .external_lex_state = 30}, - [640] = {.lex_state = 12, .external_lex_state = 14}, - [641] = {.lex_state = 4, .external_lex_state = 27}, - [642] = {.lex_state = 3, .external_lex_state = 27}, - [643] = {.lex_state = 3, .external_lex_state = 27}, - [644] = {.lex_state = 4, .external_lex_state = 27}, - [645] = {.lex_state = 12, .external_lex_state = 24}, - [646] = {.lex_state = 12, .external_lex_state = 30}, - [647] = {.lex_state = 12, .external_lex_state = 30}, - [648] = {.lex_state = 0, .external_lex_state = 32}, - [649] = {.lex_state = 0, .external_lex_state = 32}, - [650] = {.lex_state = 0, .external_lex_state = 32}, - [651] = {.lex_state = 0, .external_lex_state = 32}, - [652] = {.lex_state = 0, .external_lex_state = 32}, - [653] = {.lex_state = 6}, - [654] = {.lex_state = 8, .external_lex_state = 33}, - [655] = {.lex_state = 8, .external_lex_state = 33}, - [656] = {.lex_state = 8, .external_lex_state = 33}, - [657] = {.lex_state = 8, .external_lex_state = 33}, - [658] = {.lex_state = 8, .external_lex_state = 33}, - [659] = {.lex_state = 8, .external_lex_state = 33}, - [660] = {.lex_state = 0, .external_lex_state = 34}, - [661] = {.lex_state = 0, .external_lex_state = 34}, - [662] = {.lex_state = 0, .external_lex_state = 34}, - [663] = {.lex_state = 6}, - [664] = {.lex_state = 0, .external_lex_state = 34}, - [665] = {.lex_state = 0}, - [666] = {.lex_state = 6}, - [667] = {.lex_state = 8, .external_lex_state = 33}, - [668] = {.lex_state = 7, .external_lex_state = 35}, - [669] = {.lex_state = 6}, - [670] = {.lex_state = 8, .external_lex_state = 33}, - [671] = {.lex_state = 8, .external_lex_state = 33}, - [672] = {.lex_state = 8, .external_lex_state = 33}, - [673] = {.lex_state = 8, .external_lex_state = 33}, - [674] = {.lex_state = 0}, - [675] = {.lex_state = 8, .external_lex_state = 33}, - [676] = {.lex_state = 0}, - [677] = {.lex_state = 7, .external_lex_state = 35}, - [678] = {.lex_state = 7, .external_lex_state = 35}, - [679] = {.lex_state = 0, .external_lex_state = 34}, - [680] = {.lex_state = 0, .external_lex_state = 34}, - [681] = {.lex_state = 0, .external_lex_state = 34}, - [682] = {.lex_state = 6}, - [683] = {.lex_state = 0, .external_lex_state = 34}, - [684] = {.lex_state = 6}, - [685] = {.lex_state = 12, .external_lex_state = 33}, - [686] = {.lex_state = 0}, + [587] = {.lex_state = 12, .external_lex_state = 16}, + [588] = {.lex_state = 12, .external_lex_state = 17}, + [589] = {.lex_state = 2, .external_lex_state = 15}, + [590] = {.lex_state = 12, .external_lex_state = 24}, + [591] = {.lex_state = 2, .external_lex_state = 18}, + [592] = {.lex_state = 12, .external_lex_state = 24}, + [593] = {.lex_state = 2, .external_lex_state = 18}, + [594] = {.lex_state = 2, .external_lex_state = 19}, + [595] = {.lex_state = 12, .external_lex_state = 22}, + [596] = {.lex_state = 12, .external_lex_state = 20}, + [597] = {.lex_state = 2, .external_lex_state = 18}, + [598] = {.lex_state = 12, .external_lex_state = 20}, + [599] = {.lex_state = 2, .external_lex_state = 18}, + [600] = {.lex_state = 2, .external_lex_state = 15}, + [601] = {.lex_state = 12, .external_lex_state = 14}, + [602] = {.lex_state = 2, .external_lex_state = 18}, + [603] = {.lex_state = 2, .external_lex_state = 18}, + [604] = {.lex_state = 12, .external_lex_state = 25}, + [605] = {.lex_state = 2, .external_lex_state = 15}, + [606] = {.lex_state = 12, .external_lex_state = 26}, + [607] = {.lex_state = 2, .external_lex_state = 18}, + [608] = {.lex_state = 12, .external_lex_state = 21}, + [609] = {.lex_state = 12, .external_lex_state = 22}, + [610] = {.lex_state = 2, .external_lex_state = 18}, + [611] = {.lex_state = 12, .external_lex_state = 21}, + [612] = {.lex_state = 2, .external_lex_state = 15}, + [613] = {.lex_state = 2, .external_lex_state = 18}, + [614] = {.lex_state = 2, .external_lex_state = 15}, + [615] = {.lex_state = 2, .external_lex_state = 18}, + [616] = {.lex_state = 12, .external_lex_state = 22}, + [617] = {.lex_state = 2, .external_lex_state = 18}, + [618] = {.lex_state = 3, .external_lex_state = 27}, + [619] = {.lex_state = 12, .external_lex_state = 28}, + [620] = {.lex_state = 12, .external_lex_state = 17}, + [621] = {.lex_state = 2, .external_lex_state = 19}, + [622] = {.lex_state = 4, .external_lex_state = 27}, + [623] = {.lex_state = 12, .external_lex_state = 16}, + [624] = {.lex_state = 12, .external_lex_state = 14}, + [625] = {.lex_state = 12, .external_lex_state = 29}, + [626] = {.lex_state = 12, .external_lex_state = 20}, + [627] = {.lex_state = 12, .external_lex_state = 17}, + [628] = {.lex_state = 12, .external_lex_state = 16}, + [629] = {.lex_state = 3, .external_lex_state = 27}, + [630] = {.lex_state = 2, .external_lex_state = 19}, + [631] = {.lex_state = 12, .external_lex_state = 14}, + [632] = {.lex_state = 2, .external_lex_state = 19}, + [633] = {.lex_state = 4, .external_lex_state = 27}, + [634] = {.lex_state = 12, .external_lex_state = 17}, + [635] = {.lex_state = 12, .external_lex_state = 20}, + [636] = {.lex_state = 2, .external_lex_state = 19}, + [637] = {.lex_state = 4, .external_lex_state = 27}, + [638] = {.lex_state = 3, .external_lex_state = 27}, + [639] = {.lex_state = 12, .external_lex_state = 16}, + [640] = {.lex_state = 12, .external_lex_state = 21}, + [641] = {.lex_state = 2, .external_lex_state = 18}, + [642] = {.lex_state = 12, .external_lex_state = 22}, + [643] = {.lex_state = 2, .external_lex_state = 19}, + [644] = {.lex_state = 12, .external_lex_state = 22}, + [645] = {.lex_state = 12, .external_lex_state = 21}, + [646] = {.lex_state = 12, .external_lex_state = 20}, + [647] = {.lex_state = 2, .external_lex_state = 18}, + [648] = {.lex_state = 2, .external_lex_state = 19}, + [649] = {.lex_state = 2, .external_lex_state = 19}, + [650] = {.lex_state = 2, .external_lex_state = 19}, + [651] = {.lex_state = 12, .external_lex_state = 20}, + [652] = {.lex_state = 2, .external_lex_state = 18}, + [653] = {.lex_state = 2, .external_lex_state = 18}, + [654] = {.lex_state = 12, .external_lex_state = 21}, + [655] = {.lex_state = 3, .external_lex_state = 30}, + [656] = {.lex_state = 12, .external_lex_state = 14}, + [657] = {.lex_state = 12, .external_lex_state = 31}, + [658] = {.lex_state = 12, .external_lex_state = 31}, + [659] = {.lex_state = 12, .external_lex_state = 31}, + [660] = {.lex_state = 12, .external_lex_state = 14}, + [661] = {.lex_state = 12, .external_lex_state = 31}, + [662] = {.lex_state = 4, .external_lex_state = 30}, + [663] = {.lex_state = 12, .external_lex_state = 31}, + [664] = {.lex_state = 12, .external_lex_state = 31}, + [665] = {.lex_state = 12, .external_lex_state = 31}, + [666] = {.lex_state = 4, .external_lex_state = 27}, + [667] = {.lex_state = 4, .external_lex_state = 27}, + [668] = {.lex_state = 12, .external_lex_state = 24}, + [669] = {.lex_state = 3, .external_lex_state = 27}, + [670] = {.lex_state = 3, .external_lex_state = 27}, + [671] = {.lex_state = 12, .external_lex_state = 31}, + [672] = {.lex_state = 12, .external_lex_state = 31}, + [673] = {.lex_state = 0, .external_lex_state = 32}, + [674] = {.lex_state = 0, .external_lex_state = 32}, + [675] = {.lex_state = 0, .external_lex_state = 32}, + [676] = {.lex_state = 0, .external_lex_state = 32}, + [677] = {.lex_state = 0, .external_lex_state = 32}, + [678] = {.lex_state = 6}, + [679] = {.lex_state = 8, .external_lex_state = 33}, + [680] = {.lex_state = 8, .external_lex_state = 33}, + [681] = {.lex_state = 8, .external_lex_state = 33}, + [682] = {.lex_state = 8, .external_lex_state = 33}, + [683] = {.lex_state = 8, .external_lex_state = 33}, + [684] = {.lex_state = 8, .external_lex_state = 33}, + [685] = {.lex_state = 0, .external_lex_state = 34}, + [686] = {.lex_state = 0, .external_lex_state = 34}, [687] = {.lex_state = 0, .external_lex_state = 34}, - [688] = {.lex_state = 6}, - [689] = {.lex_state = 12, .external_lex_state = 33}, - [690] = {.lex_state = 0}, - [691] = {.lex_state = 12, .external_lex_state = 33}, - [692] = {.lex_state = 12, .external_lex_state = 33}, - [693] = {.lex_state = 12, .external_lex_state = 33}, - [694] = {.lex_state = 12, .external_lex_state = 33}, - [695] = {.lex_state = 12, .external_lex_state = 33}, - [696] = {.lex_state = 12, .external_lex_state = 33}, - [697] = {.lex_state = 0, .external_lex_state = 34}, - [698] = {.lex_state = 12, .external_lex_state = 33}, - [699] = {.lex_state = 12, .external_lex_state = 33}, - [700] = {.lex_state = 12, .external_lex_state = 33}, - [701] = {.lex_state = 12, .external_lex_state = 33}, - [702] = {.lex_state = 12, .external_lex_state = 33}, - [703] = {.lex_state = 12, .external_lex_state = 33}, - [704] = {.lex_state = 12, .external_lex_state = 33}, - [705] = {.lex_state = 6}, - [706] = {.lex_state = 0, .external_lex_state = 32}, - [707] = {.lex_state = 12, .external_lex_state = 33}, + [688] = {.lex_state = 0, .external_lex_state = 34}, + [689] = {.lex_state = 6}, + [690] = {.lex_state = 7, .external_lex_state = 35}, + [691] = {.lex_state = 7, .external_lex_state = 35}, + [692] = {.lex_state = 6}, + [693] = {.lex_state = 6}, + [694] = {.lex_state = 8, .external_lex_state = 33}, + [695] = {.lex_state = 8, .external_lex_state = 33}, + [696] = {.lex_state = 8, .external_lex_state = 33}, + [697] = {.lex_state = 0}, + [698] = {.lex_state = 8, .external_lex_state = 33}, + [699] = {.lex_state = 8, .external_lex_state = 33}, + [700] = {.lex_state = 0}, + [701] = {.lex_state = 8, .external_lex_state = 33}, + [702] = {.lex_state = 0}, + [703] = {.lex_state = 7, .external_lex_state = 35}, + [704] = {.lex_state = 0, .external_lex_state = 34}, + [705] = {.lex_state = 0, .external_lex_state = 34}, + [706] = {.lex_state = 0, .external_lex_state = 34}, + [707] = {.lex_state = 6}, [708] = {.lex_state = 12, .external_lex_state = 33}, [709] = {.lex_state = 12, .external_lex_state = 33}, - [710] = {.lex_state = 5}, - [711] = {.lex_state = 5}, - [712] = {.lex_state = 0, .external_lex_state = 34}, + [710] = {.lex_state = 12, .external_lex_state = 33}, + [711] = {.lex_state = 0, .external_lex_state = 32}, + [712] = {.lex_state = 12, .external_lex_state = 33}, [713] = {.lex_state = 0, .external_lex_state = 34}, - [714] = {.lex_state = 0, .external_lex_state = 34}, - [715] = {.lex_state = 0, .external_lex_state = 34}, - [716] = {.lex_state = 6}, - [717] = {.lex_state = 0, .external_lex_state = 34}, - [718] = {.lex_state = 0, .external_lex_state = 34}, - [719] = {.lex_state = 0, .external_lex_state = 34}, - [720] = {.lex_state = 0, .external_lex_state = 34}, - [721] = {.lex_state = 0, .external_lex_state = 34}, - [722] = {.lex_state = 0, .external_lex_state = 34}, - [723] = {.lex_state = 0, .external_lex_state = 34}, - [724] = {.lex_state = 0, .external_lex_state = 34}, - [725] = {.lex_state = 0, .external_lex_state = 34}, - [726] = {.lex_state = 0, .external_lex_state = 34}, - [727] = {.lex_state = 0, .external_lex_state = 34}, - [728] = {.lex_state = 0, .external_lex_state = 34}, + [714] = {.lex_state = 12, .external_lex_state = 33}, + [715] = {.lex_state = 12, .external_lex_state = 33}, + [716] = {.lex_state = 12, .external_lex_state = 33}, + [717] = {.lex_state = 12, .external_lex_state = 33}, + [718] = {.lex_state = 12, .external_lex_state = 33}, + [719] = {.lex_state = 12, .external_lex_state = 33}, + [720] = {.lex_state = 6}, + [721] = {.lex_state = 6}, + [722] = {.lex_state = 12, .external_lex_state = 33}, + [723] = {.lex_state = 12, .external_lex_state = 33}, + [724] = {.lex_state = 12, .external_lex_state = 33}, + [725] = {.lex_state = 12, .external_lex_state = 33}, + [726] = {.lex_state = 12, .external_lex_state = 33}, + [727] = {.lex_state = 12, .external_lex_state = 33}, + [728] = {.lex_state = 12, .external_lex_state = 33}, [729] = {.lex_state = 0, .external_lex_state = 34}, - [730] = {.lex_state = 0, .external_lex_state = 34}, - [731] = {.lex_state = 6}, - [732] = {.lex_state = 0, .external_lex_state = 34}, - [733] = {.lex_state = 0, .external_lex_state = 34}, + [730] = {.lex_state = 0}, + [731] = {.lex_state = 12, .external_lex_state = 33}, + [732] = {.lex_state = 0}, + [733] = {.lex_state = 6}, [734] = {.lex_state = 0, .external_lex_state = 34}, [735] = {.lex_state = 0, .external_lex_state = 34}, [736] = {.lex_state = 0, .external_lex_state = 34}, - [737] = {.lex_state = 0, .external_lex_state = 34}, + [737] = {.lex_state = 6}, [738] = {.lex_state = 0, .external_lex_state = 34}, - [739] = {.lex_state = 6}, + [739] = {.lex_state = 0, .external_lex_state = 34}, [740] = {.lex_state = 0, .external_lex_state = 34}, [741] = {.lex_state = 0, .external_lex_state = 34}, - [742] = {.lex_state = 6}, - [743] = {.lex_state = 6}, - [744] = {.lex_state = 6}, - [745] = {.lex_state = 6}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 6}, - [748] = {.lex_state = 0}, - [749] = {.lex_state = 0}, - [750] = {.lex_state = 6}, - [751] = {.lex_state = 0}, - [752] = {.lex_state = 6}, + [742] = {.lex_state = 0, .external_lex_state = 34}, + [743] = {.lex_state = 0, .external_lex_state = 34}, + [744] = {.lex_state = 0, .external_lex_state = 34}, + [745] = {.lex_state = 5}, + [746] = {.lex_state = 5}, + [747] = {.lex_state = 0, .external_lex_state = 34}, + [748] = {.lex_state = 6}, + [749] = {.lex_state = 0, .external_lex_state = 34}, + [750] = {.lex_state = 0, .external_lex_state = 34}, + [751] = {.lex_state = 0, .external_lex_state = 34}, + [752] = {.lex_state = 0, .external_lex_state = 34}, [753] = {.lex_state = 0, .external_lex_state = 34}, - [754] = {.lex_state = 0, .external_lex_state = 36}, + [754] = {.lex_state = 0, .external_lex_state = 34}, [755] = {.lex_state = 0, .external_lex_state = 34}, [756] = {.lex_state = 0, .external_lex_state = 34}, - [757] = {.lex_state = 0, .external_lex_state = 33}, - [758] = {.lex_state = 6}, + [757] = {.lex_state = 0, .external_lex_state = 34}, + [758] = {.lex_state = 0, .external_lex_state = 34}, [759] = {.lex_state = 0, .external_lex_state = 34}, [760] = {.lex_state = 0, .external_lex_state = 34}, - [761] = {.lex_state = 0, .external_lex_state = 33}, - [762] = {.lex_state = 0}, - [763] = {.lex_state = 12}, - [764] = {.lex_state = 5}, - [765] = {.lex_state = 0, .external_lex_state = 34}, + [761] = {.lex_state = 0, .external_lex_state = 34}, + [762] = {.lex_state = 0, .external_lex_state = 34}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 0, .external_lex_state = 34}, + [765] = {.lex_state = 0}, [766] = {.lex_state = 6}, - [767] = {.lex_state = 6}, - [768] = {.lex_state = 0, .external_lex_state = 33}, - [769] = {.lex_state = 0, .external_lex_state = 34}, - [770] = {.lex_state = 6}, - [771] = {.lex_state = 0, .external_lex_state = 33}, + [767] = {.lex_state = 0}, + [768] = {.lex_state = 0, .external_lex_state = 34}, + [769] = {.lex_state = 6}, + [770] = {.lex_state = 0, .external_lex_state = 36}, + [771] = {.lex_state = 0}, [772] = {.lex_state = 6}, - [773] = {.lex_state = 5}, + [773] = {.lex_state = 6}, [774] = {.lex_state = 0, .external_lex_state = 34}, - [775] = {.lex_state = 6}, - [776] = {.lex_state = 0, .external_lex_state = 33}, + [775] = {.lex_state = 0, .external_lex_state = 34}, + [776] = {.lex_state = 6}, [777] = {.lex_state = 6}, - [778] = {.lex_state = 0, .external_lex_state = 34}, - [779] = {.lex_state = 0, .external_lex_state = 34}, + [778] = {.lex_state = 6}, + [779] = {.lex_state = 6}, [780] = {.lex_state = 0, .external_lex_state = 34}, [781] = {.lex_state = 0, .external_lex_state = 34}, - [782] = {.lex_state = 0, .external_lex_state = 33}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 7, .external_lex_state = 35}, - [785] = {.lex_state = 0, .external_lex_state = 34}, + [782] = {.lex_state = 6}, + [783] = {.lex_state = 12}, + [784] = {.lex_state = 6}, + [785] = {.lex_state = 6}, [786] = {.lex_state = 0, .external_lex_state = 34}, - [787] = {.lex_state = 0, .external_lex_state = 33}, - [788] = {.lex_state = 0, .external_lex_state = 34}, + [787] = {.lex_state = 6}, + [788] = {.lex_state = 7, .external_lex_state = 35}, [789] = {.lex_state = 0, .external_lex_state = 33}, - [790] = {.lex_state = 0, .external_lex_state = 37}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 0, .external_lex_state = 37}, - [793] = {.lex_state = 0, .external_lex_state = 37}, - [794] = {.lex_state = 0, .external_lex_state = 37}, - [795] = {.lex_state = 12}, - [796] = {.lex_state = 0, .external_lex_state = 37}, - [797] = {.lex_state = 0, .external_lex_state = 37}, - [798] = {.lex_state = 0, .external_lex_state = 37}, - [799] = {.lex_state = 0}, + [790] = {.lex_state = 5}, + [791] = {.lex_state = 6}, + [792] = {.lex_state = 0, .external_lex_state = 34}, + [793] = {.lex_state = 0, .external_lex_state = 33}, + [794] = {.lex_state = 0, .external_lex_state = 34}, + [795] = {.lex_state = 0, .external_lex_state = 34}, + [796] = {.lex_state = 0, .external_lex_state = 33}, + [797] = {.lex_state = 0, .external_lex_state = 34}, + [798] = {.lex_state = 0, .external_lex_state = 34}, + [799] = {.lex_state = 0, .external_lex_state = 33}, [800] = {.lex_state = 0, .external_lex_state = 33}, - [801] = {.lex_state = 0, .external_lex_state = 37}, - [802] = {.lex_state = 0, .external_lex_state = 37}, - [803] = {.lex_state = 0, .external_lex_state = 37}, - [804] = {.lex_state = 0, .external_lex_state = 37}, + [801] = {.lex_state = 0, .external_lex_state = 34}, + [802] = {.lex_state = 5}, + [803] = {.lex_state = 0, .external_lex_state = 34}, + [804] = {.lex_state = 0}, [805] = {.lex_state = 0}, - [806] = {.lex_state = 0, .external_lex_state = 37}, - [807] = {.lex_state = 0, .external_lex_state = 37}, - [808] = {.lex_state = 0, .external_lex_state = 37}, - [809] = {.lex_state = 0, .external_lex_state = 37}, - [810] = {.lex_state = 8, .external_lex_state = 33}, - [811] = {.lex_state = 0, .external_lex_state = 37}, - [812] = {.lex_state = 0, .external_lex_state = 37}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 0, .external_lex_state = 37}, - [815] = {.lex_state = 0}, + [806] = {.lex_state = 0, .external_lex_state = 33}, + [807] = {.lex_state = 6}, + [808] = {.lex_state = 0, .external_lex_state = 34}, + [809] = {.lex_state = 6}, + [810] = {.lex_state = 0, .external_lex_state = 34}, + [811] = {.lex_state = 0, .external_lex_state = 34}, + [812] = {.lex_state = 0, .external_lex_state = 33}, + [813] = {.lex_state = 0, .external_lex_state = 33}, + [814] = {.lex_state = 0, .external_lex_state = 34}, + [815] = {.lex_state = 0, .external_lex_state = 37}, [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 0}, + [817] = {.lex_state = 12}, + [818] = {.lex_state = 0, .external_lex_state = 37}, [819] = {.lex_state = 0, .external_lex_state = 37}, [820] = {.lex_state = 0, .external_lex_state = 37}, [821] = {.lex_state = 0, .external_lex_state = 37}, [822] = {.lex_state = 0, .external_lex_state = 37}, - [823] = {.lex_state = 6}, - [824] = {.lex_state = 0}, + [823] = {.lex_state = 0, .external_lex_state = 37}, + [824] = {.lex_state = 0, .external_lex_state = 37}, [825] = {.lex_state = 0, .external_lex_state = 37}, - [826] = {.lex_state = 0, .external_lex_state = 37}, - [827] = {.lex_state = 0, .external_lex_state = 37}, - [828] = {.lex_state = 0, .external_lex_state = 34}, + [826] = {.lex_state = 8, .external_lex_state = 33}, + [827] = {.lex_state = 0}, + [828] = {.lex_state = 6}, [829] = {.lex_state = 0, .external_lex_state = 37}, [830] = {.lex_state = 0, .external_lex_state = 37}, [831] = {.lex_state = 0, .external_lex_state = 37}, [832] = {.lex_state = 0, .external_lex_state = 37}, [833] = {.lex_state = 0, .external_lex_state = 37}, - [834] = {.lex_state = 0, .external_lex_state = 37}, + [834] = {.lex_state = 0}, [835] = {.lex_state = 0, .external_lex_state = 37}, - [836] = {.lex_state = 0, .external_lex_state = 33}, - [837] = {.lex_state = 0, .external_lex_state = 33}, - [838] = {.lex_state = 0, .external_lex_state = 33}, - [839] = {.lex_state = 0, .external_lex_state = 33}, + [836] = {.lex_state = 0}, + [837] = {.lex_state = 0, .external_lex_state = 37}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 0, .external_lex_state = 37}, [840] = {.lex_state = 0, .external_lex_state = 33}, - [841] = {.lex_state = 0, .external_lex_state = 33}, - [842] = {.lex_state = 0, .external_lex_state = 33}, - [843] = {.lex_state = 0, .external_lex_state = 33}, - [844] = {.lex_state = 0, .external_lex_state = 38}, - [845] = {.lex_state = 0, .external_lex_state = 39}, - [846] = {.lex_state = 0, .external_lex_state = 38}, - [847] = {.lex_state = 0, .external_lex_state = 33}, - [848] = {.lex_state = 0, .external_lex_state = 39}, - [849] = {.lex_state = 0, .external_lex_state = 33}, - [850] = {.lex_state = 0, .external_lex_state = 38}, - [851] = {.lex_state = 0, .external_lex_state = 39}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0, .external_lex_state = 33}, - [854] = {.lex_state = 0, .external_lex_state = 38}, - [855] = {.lex_state = 0, .external_lex_state = 39}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 0, .external_lex_state = 33}, - [858] = {.lex_state = 0, .external_lex_state = 33}, - [859] = {.lex_state = 0, .external_lex_state = 33}, - [860] = {.lex_state = 0, .external_lex_state = 33}, + [841] = {.lex_state = 0, .external_lex_state = 37}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 0, .external_lex_state = 37}, + [844] = {.lex_state = 0}, + [845] = {.lex_state = 0, .external_lex_state = 37}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 0, .external_lex_state = 37}, + [848] = {.lex_state = 0}, + [849] = {.lex_state = 0, .external_lex_state = 37}, + [850] = {.lex_state = 0, .external_lex_state = 37}, + [851] = {.lex_state = 0, .external_lex_state = 37}, + [852] = {.lex_state = 0, .external_lex_state = 37}, + [853] = {.lex_state = 0, .external_lex_state = 37}, + [854] = {.lex_state = 0, .external_lex_state = 37}, + [855] = {.lex_state = 0, .external_lex_state = 37}, + [856] = {.lex_state = 0, .external_lex_state = 37}, + [857] = {.lex_state = 0, .external_lex_state = 37}, + [858] = {.lex_state = 0, .external_lex_state = 37}, + [859] = {.lex_state = 0, .external_lex_state = 37}, + [860] = {.lex_state = 0, .external_lex_state = 34}, [861] = {.lex_state = 0, .external_lex_state = 33}, [862] = {.lex_state = 0, .external_lex_state = 33}, [863] = {.lex_state = 0, .external_lex_state = 33}, [864] = {.lex_state = 0, .external_lex_state = 33}, [865] = {.lex_state = 0, .external_lex_state = 33}, - [866] = {.lex_state = 0, .external_lex_state = 40}, + [866] = {.lex_state = 0, .external_lex_state = 33}, [867] = {.lex_state = 0, .external_lex_state = 33}, [868] = {.lex_state = 0, .external_lex_state = 33}, - [869] = {.lex_state = 0}, + [869] = {.lex_state = 0, .external_lex_state = 38}, [870] = {.lex_state = 0, .external_lex_state = 33}, - [871] = {.lex_state = 0, .external_lex_state = 41}, + [871] = {.lex_state = 0, .external_lex_state = 39}, [872] = {.lex_state = 0, .external_lex_state = 33}, [873] = {.lex_state = 0, .external_lex_state = 38}, [874] = {.lex_state = 0, .external_lex_state = 33}, - [875] = {.lex_state = 0, .external_lex_state = 33}, + [875] = {.lex_state = 0, .external_lex_state = 39}, [876] = {.lex_state = 0, .external_lex_state = 33}, - [877] = {.lex_state = 0, .external_lex_state = 33}, - [878] = {.lex_state = 0, .external_lex_state = 33}, + [877] = {.lex_state = 0, .external_lex_state = 38}, + [878] = {.lex_state = 0, .external_lex_state = 39}, [879] = {.lex_state = 0, .external_lex_state = 33}, [880] = {.lex_state = 0, .external_lex_state = 33}, [881] = {.lex_state = 0, .external_lex_state = 33}, [882] = {.lex_state = 0, .external_lex_state = 38}, - [883] = {.lex_state = 0, .external_lex_state = 33}, - [884] = {.lex_state = 0, .external_lex_state = 39}, - [885] = {.lex_state = 0, .external_lex_state = 38}, - [886] = {.lex_state = 12, .external_lex_state = 33}, + [883] = {.lex_state = 0, .external_lex_state = 38}, + [884] = {.lex_state = 0, .external_lex_state = 33}, + [885] = {.lex_state = 0, .external_lex_state = 33}, + [886] = {.lex_state = 0, .external_lex_state = 33}, [887] = {.lex_state = 0, .external_lex_state = 39}, [888] = {.lex_state = 0, .external_lex_state = 33}, [889] = {.lex_state = 0, .external_lex_state = 33}, [890] = {.lex_state = 0, .external_lex_state = 33}, - [891] = {.lex_state = 0, .external_lex_state = 38}, - [892] = {.lex_state = 0}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 0, .external_lex_state = 33}, + [891] = {.lex_state = 0, .external_lex_state = 33}, + [892] = {.lex_state = 0, .external_lex_state = 33}, + [893] = {.lex_state = 0, .external_lex_state = 33}, + [894] = {.lex_state = 0}, [895] = {.lex_state = 0, .external_lex_state = 33}, [896] = {.lex_state = 0, .external_lex_state = 33}, - [897] = {.lex_state = 0}, + [897] = {.lex_state = 0, .external_lex_state = 33}, [898] = {.lex_state = 0, .external_lex_state = 33}, [899] = {.lex_state = 0, .external_lex_state = 33}, - [900] = {.lex_state = 0}, + [900] = {.lex_state = 0, .external_lex_state = 33}, [901] = {.lex_state = 0, .external_lex_state = 33}, [902] = {.lex_state = 0, .external_lex_state = 33}, [903] = {.lex_state = 0, .external_lex_state = 33}, [904] = {.lex_state = 0, .external_lex_state = 33}, - [905] = {.lex_state = 0, .external_lex_state = 33}, + [905] = {.lex_state = 0, .external_lex_state = 38}, [906] = {.lex_state = 0, .external_lex_state = 33}, - [907] = {.lex_state = 0, .external_lex_state = 33}, - [908] = {.lex_state = 0, .external_lex_state = 33}, - [909] = {.lex_state = 0, .external_lex_state = 33}, - [910] = {.lex_state = 0, .external_lex_state = 33}, + [907] = {.lex_state = 0, .external_lex_state = 39}, + [908] = {.lex_state = 0, .external_lex_state = 38}, + [909] = {.lex_state = 0, .external_lex_state = 39}, + [910] = {.lex_state = 0}, [911] = {.lex_state = 0, .external_lex_state = 33}, [912] = {.lex_state = 0, .external_lex_state = 33}, - [913] = {.lex_state = 0, .external_lex_state = 39}, - [914] = {.lex_state = 0, .external_lex_state = 33}, + [913] = {.lex_state = 0, .external_lex_state = 38}, + [914] = {.lex_state = 0, .external_lex_state = 39}, [915] = {.lex_state = 0, .external_lex_state = 33}, [916] = {.lex_state = 0, .external_lex_state = 33}, [917] = {.lex_state = 0, .external_lex_state = 33}, - [918] = {.lex_state = 0, .external_lex_state = 33}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0, .external_lex_state = 33}, - [921] = {.lex_state = 0, .external_lex_state = 38}, - [922] = {.lex_state = 12, .external_lex_state = 33}, - [923] = {.lex_state = 0, .external_lex_state = 33}, - [924] = {.lex_state = 0}, + [918] = {.lex_state = 0}, + [919] = {.lex_state = 0, .external_lex_state = 33}, + [920] = {.lex_state = 0}, + [921] = {.lex_state = 0, .external_lex_state = 40}, + [922] = {.lex_state = 0, .external_lex_state = 33}, + [923] = {.lex_state = 0, .external_lex_state = 41}, + [924] = {.lex_state = 0, .external_lex_state = 33}, [925] = {.lex_state = 0, .external_lex_state = 33}, [926] = {.lex_state = 0, .external_lex_state = 33}, - [927] = {.lex_state = 0, .external_lex_state = 41}, - [928] = {.lex_state = 0, .external_lex_state = 33}, + [927] = {.lex_state = 0, .external_lex_state = 33}, + [928] = {.lex_state = 0}, [929] = {.lex_state = 0, .external_lex_state = 33}, [930] = {.lex_state = 0, .external_lex_state = 33}, [931] = {.lex_state = 0, .external_lex_state = 33}, - [932] = {.lex_state = 0, .external_lex_state = 39}, + [932] = {.lex_state = 0, .external_lex_state = 33}, [933] = {.lex_state = 0, .external_lex_state = 33}, [934] = {.lex_state = 0, .external_lex_state = 33}, [935] = {.lex_state = 0, .external_lex_state = 33}, [936] = {.lex_state = 0, .external_lex_state = 33}, [937] = {.lex_state = 0, .external_lex_state = 33}, [938] = {.lex_state = 0, .external_lex_state = 33}, - [939] = {.lex_state = 0, .external_lex_state = 33}, - [940] = {.lex_state = 0, .external_lex_state = 33}, - [941] = {.lex_state = 0, .external_lex_state = 33}, - [942] = {.lex_state = 0, .external_lex_state = 33}, + [939] = {.lex_state = 0}, + [940] = {.lex_state = 0, .external_lex_state = 38}, + [941] = {.lex_state = 12, .external_lex_state = 33}, + [942] = {.lex_state = 0, .external_lex_state = 39}, [943] = {.lex_state = 0, .external_lex_state = 33}, - [944] = {.lex_state = 0}, + [944] = {.lex_state = 0, .external_lex_state = 33}, [945] = {.lex_state = 0, .external_lex_state = 33}, [946] = {.lex_state = 0}, - [947] = {.lex_state = 0, .external_lex_state = 39}, - [948] = {.lex_state = 0, .external_lex_state = 42}, - [949] = {.lex_state = 0}, - [950] = {.lex_state = 0, .external_lex_state = 33}, + [947] = {.lex_state = 0, .external_lex_state = 33}, + [948] = {.lex_state = 0, .external_lex_state = 33}, + [949] = {.lex_state = 0, .external_lex_state = 41}, + [950] = {.lex_state = 12, .external_lex_state = 33}, [951] = {.lex_state = 0, .external_lex_state = 33}, - [952] = {.lex_state = 0, .external_lex_state = 43}, - [953] = {.lex_state = 0, .external_lex_state = 43}, - [954] = {.lex_state = 0, .external_lex_state = 33}, - [955] = {.lex_state = 0, .external_lex_state = 43}, - [956] = {.lex_state = 0, .external_lex_state = 43}, - [957] = {.lex_state = 0, .external_lex_state = 43}, - [958] = {.lex_state = 0, .external_lex_state = 43}, - [959] = {.lex_state = 0, .external_lex_state = 43}, - [960] = {.lex_state = 0, .external_lex_state = 43}, - [961] = {.lex_state = 0, .external_lex_state = 43}, - [962] = {.lex_state = 0, .external_lex_state = 42}, - [963] = {.lex_state = 12}, - [964] = {.lex_state = 0, .external_lex_state = 43}, - [965] = {.lex_state = 0, .external_lex_state = 43}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 0, .external_lex_state = 43}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0, .external_lex_state = 33}, - [970] = {.lex_state = 0, .external_lex_state = 43}, - [971] = {.lex_state = 0, .external_lex_state = 43}, - [972] = {.lex_state = 0, .external_lex_state = 33}, - [973] = {.lex_state = 0, .external_lex_state = 43}, - [974] = {.lex_state = 0, .external_lex_state = 42}, - [975] = {.lex_state = 0, .external_lex_state = 42}, - [976] = {.lex_state = 0, .external_lex_state = 33}, + [952] = {.lex_state = 0, .external_lex_state = 33}, + [953] = {.lex_state = 0, .external_lex_state = 33}, + [954] = {.lex_state = 0, .external_lex_state = 39}, + [955] = {.lex_state = 0, .external_lex_state = 33}, + [956] = {.lex_state = 0, .external_lex_state = 33}, + [957] = {.lex_state = 0, .external_lex_state = 33}, + [958] = {.lex_state = 0, .external_lex_state = 33}, + [959] = {.lex_state = 0, .external_lex_state = 33}, + [960] = {.lex_state = 0, .external_lex_state = 33}, + [961] = {.lex_state = 0, .external_lex_state = 33}, + [962] = {.lex_state = 0, .external_lex_state = 33}, + [963] = {.lex_state = 0, .external_lex_state = 33}, + [964] = {.lex_state = 0, .external_lex_state = 33}, + [965] = {.lex_state = 0, .external_lex_state = 33}, + [966] = {.lex_state = 0, .external_lex_state = 33}, + [967] = {.lex_state = 0, .external_lex_state = 33}, + [968] = {.lex_state = 0, .external_lex_state = 33}, + [969] = {.lex_state = 0}, + [970] = {.lex_state = 0}, + [971] = {.lex_state = 0}, + [972] = {.lex_state = 0}, + [973] = {.lex_state = 0, .external_lex_state = 42}, + [974] = {.lex_state = 0, .external_lex_state = 43}, + [975] = {.lex_state = 0, .external_lex_state = 33}, + [976] = {.lex_state = 0, .external_lex_state = 42}, [977] = {.lex_state = 0, .external_lex_state = 43}, [978] = {.lex_state = 0, .external_lex_state = 43}, - [979] = {.lex_state = 0}, + [979] = {.lex_state = 0, .external_lex_state = 43}, [980] = {.lex_state = 0, .external_lex_state = 43}, [981] = {.lex_state = 0, .external_lex_state = 43}, [982] = {.lex_state = 0, .external_lex_state = 43}, - [983] = {.lex_state = 0, .external_lex_state = 42}, - [984] = {.lex_state = 0, .external_lex_state = 42}, + [983] = {.lex_state = 0, .external_lex_state = 43}, + [984] = {.lex_state = 0, .external_lex_state = 43}, [985] = {.lex_state = 0, .external_lex_state = 43}, - [986] = {.lex_state = 0, .external_lex_state = 42}, + [986] = {.lex_state = 0, .external_lex_state = 43}, [987] = {.lex_state = 0, .external_lex_state = 43}, [988] = {.lex_state = 0, .external_lex_state = 43}, - [989] = {.lex_state = 0, .external_lex_state = 43}, + [989] = {.lex_state = 0, .external_lex_state = 33}, [990] = {.lex_state = 0, .external_lex_state = 42}, - [991] = {.lex_state = 0, .external_lex_state = 43}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0, .external_lex_state = 33}, + [991] = {.lex_state = 0, .external_lex_state = 33}, + [992] = {.lex_state = 0, .external_lex_state = 43}, + [993] = {.lex_state = 0, .external_lex_state = 43}, [994] = {.lex_state = 0, .external_lex_state = 43}, - [995] = {.lex_state = 0, .external_lex_state = 43}, + [995] = {.lex_state = 0, .external_lex_state = 33}, [996] = {.lex_state = 0, .external_lex_state = 43}, - [997] = {.lex_state = 0, .external_lex_state = 43}, - [998] = {.lex_state = 0, .external_lex_state = 43}, + [997] = {.lex_state = 0, .external_lex_state = 33}, + [998] = {.lex_state = 0, .external_lex_state = 42}, [999] = {.lex_state = 0, .external_lex_state = 43}, - [1000] = {.lex_state = 0, .external_lex_state = 43}, - [1001] = {.lex_state = 0, .external_lex_state = 43}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 0, .external_lex_state = 42}, [1002] = {.lex_state = 0, .external_lex_state = 43}, - [1003] = {.lex_state = 0, .external_lex_state = 43}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0, .external_lex_state = 33}, + [1003] = {.lex_state = 0, .external_lex_state = 42}, + [1004] = {.lex_state = 0, .external_lex_state = 33}, + [1005] = {.lex_state = 0, .external_lex_state = 43}, [1006] = {.lex_state = 0, .external_lex_state = 43}, [1007] = {.lex_state = 0, .external_lex_state = 43}, - [1008] = {.lex_state = 0, .external_lex_state = 43}, + [1008] = {.lex_state = 0}, [1009] = {.lex_state = 0, .external_lex_state = 43}, - [1010] = {.lex_state = 0, .external_lex_state = 43}, - [1011] = {.lex_state = 0, .external_lex_state = 33}, - [1012] = {.lex_state = 0, .external_lex_state = 43}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 0, .external_lex_state = 43}, + [1012] = {.lex_state = 0, .external_lex_state = 42}, [1013] = {.lex_state = 0, .external_lex_state = 43}, [1014] = {.lex_state = 0, .external_lex_state = 43}, [1015] = {.lex_state = 0, .external_lex_state = 43}, - [1016] = {.lex_state = 0}, + [1016] = {.lex_state = 0, .external_lex_state = 42}, [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0, .external_lex_state = 33}, + [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0, .external_lex_state = 43}, [1020] = {.lex_state = 0, .external_lex_state = 43}, - [1021] = {.lex_state = 0, .external_lex_state = 43}, + [1021] = {.lex_state = 0}, [1022] = {.lex_state = 0, .external_lex_state = 43}, [1023] = {.lex_state = 0, .external_lex_state = 43}, [1024] = {.lex_state = 0}, [1025] = {.lex_state = 0, .external_lex_state = 43}, - [1026] = {.lex_state = 0}, + [1026] = {.lex_state = 0, .external_lex_state = 42}, [1027] = {.lex_state = 0, .external_lex_state = 43}, - [1028] = {.lex_state = 0, .external_lex_state = 43}, - [1029] = {.lex_state = 0, .external_lex_state = 42}, + [1028] = {.lex_state = 0, .external_lex_state = 33}, + [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0, .external_lex_state = 43}, - [1031] = {.lex_state = 0, .external_lex_state = 42}, - [1032] = {.lex_state = 0, .external_lex_state = 43}, - [1033] = {.lex_state = 0, .external_lex_state = 42}, - [1034] = {.lex_state = 0, .external_lex_state = 42}, - [1035] = {.lex_state = 0, .external_lex_state = 42}, - [1036] = {.lex_state = 0, .external_lex_state = 42}, - [1037] = {.lex_state = 0, .external_lex_state = 42}, - [1038] = {.lex_state = 0, .external_lex_state = 42}, - [1039] = {.lex_state = 0, .external_lex_state = 42}, - [1040] = {.lex_state = 0, .external_lex_state = 42}, + [1031] = {.lex_state = 0, .external_lex_state = 33}, + [1032] = {.lex_state = 0, .external_lex_state = 42}, + [1033] = {.lex_state = 0, .external_lex_state = 43}, + [1034] = {.lex_state = 0, .external_lex_state = 43}, + [1035] = {.lex_state = 12}, + [1036] = {.lex_state = 0, .external_lex_state = 43}, + [1037] = {.lex_state = 0, .external_lex_state = 43}, + [1038] = {.lex_state = 0, .external_lex_state = 43}, + [1039] = {.lex_state = 0, .external_lex_state = 43}, + [1040] = {.lex_state = 0, .external_lex_state = 43}, [1041] = {.lex_state = 0, .external_lex_state = 43}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0, .external_lex_state = 42}, - [1044] = {.lex_state = 0, .external_lex_state = 42}, - [1045] = {.lex_state = 0, .external_lex_state = 42}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0, .external_lex_state = 42}, - [1048] = {.lex_state = 0, .external_lex_state = 42}, - [1049] = {.lex_state = 0, .external_lex_state = 42}, + [1042] = {.lex_state = 0, .external_lex_state = 43}, + [1043] = {.lex_state = 0, .external_lex_state = 43}, + [1044] = {.lex_state = 0, .external_lex_state = 43}, + [1045] = {.lex_state = 0, .external_lex_state = 43}, + [1046] = {.lex_state = 0, .external_lex_state = 43}, + [1047] = {.lex_state = 0, .external_lex_state = 43}, + [1048] = {.lex_state = 0, .external_lex_state = 43}, + [1049] = {.lex_state = 0, .external_lex_state = 43}, [1050] = {.lex_state = 0, .external_lex_state = 42}, - [1051] = {.lex_state = 0, .external_lex_state = 42}, - [1052] = {.lex_state = 0, .external_lex_state = 33}, - [1053] = {.lex_state = 0}, + [1051] = {.lex_state = 0, .external_lex_state = 43}, + [1052] = {.lex_state = 0, .external_lex_state = 43}, + [1053] = {.lex_state = 0, .external_lex_state = 43}, [1054] = {.lex_state = 0, .external_lex_state = 43}, - [1055] = {.lex_state = 0, .external_lex_state = 42}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 0, .external_lex_state = 43}, + [1057] = {.lex_state = 0, .external_lex_state = 43}, + [1058] = {.lex_state = 0, .external_lex_state = 43}, + [1059] = {.lex_state = 0, .external_lex_state = 43}, + [1060] = {.lex_state = 0, .external_lex_state = 43}, + [1061] = {.lex_state = 0, .external_lex_state = 43}, + [1062] = {.lex_state = 0}, + [1063] = {.lex_state = 0, .external_lex_state = 43}, + [1064] = {.lex_state = 0, .external_lex_state = 42}, + [1065] = {.lex_state = 0, .external_lex_state = 42}, + [1066] = {.lex_state = 0, .external_lex_state = 42}, + [1067] = {.lex_state = 0, .external_lex_state = 42}, + [1068] = {.lex_state = 0, .external_lex_state = 42}, + [1069] = {.lex_state = 0, .external_lex_state = 42}, + [1070] = {.lex_state = 0, .external_lex_state = 42}, + [1071] = {.lex_state = 0, .external_lex_state = 42}, + [1072] = {.lex_state = 0, .external_lex_state = 42}, + [1073] = {.lex_state = 0, .external_lex_state = 33}, + [1074] = {.lex_state = 0, .external_lex_state = 42}, + [1075] = {.lex_state = 0, .external_lex_state = 42}, + [1076] = {.lex_state = 0, .external_lex_state = 42}, + [1077] = {.lex_state = 0, .external_lex_state = 42}, + [1078] = {.lex_state = 0, .external_lex_state = 43}, + [1079] = {.lex_state = 0, .external_lex_state = 42}, + [1080] = {.lex_state = 0, .external_lex_state = 42}, + [1081] = {.lex_state = 0, .external_lex_state = 42}, + [1082] = {.lex_state = 0}, + [1083] = {.lex_state = 0, .external_lex_state = 33}, + [1084] = {.lex_state = 0}, + [1085] = {.lex_state = 0, .external_lex_state = 33}, + [1086] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4277,6 +4381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(1), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1), + [sym__list_marker_example] = ACTIONS(1), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1), [sym__fenced_code_block_start_backtick] = ACTIONS(1), [sym__fenced_code_block_start_tilde] = ACTIONS(1), [sym__blank_line_start] = ACTIONS(1), @@ -4301,61 +4407,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__code_span_close] = ACTIONS(1), }, [STATE(1)] = { - [sym_document] = STATE(979), - [sym__block_not_section] = STATE(348), - [sym_section] = STATE(651), - [sym__section1] = STATE(706), - [sym__section2] = STATE(706), - [sym__section3] = STATE(706), - [sym__section4] = STATE(706), - [sym__section5] = STATE(706), - [sym__section6] = STATE(706), - [sym_thematic_break] = STATE(348), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(348), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(348), - [sym_fenced_code_block] = STATE(348), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(348), - [sym_note_definition_fenced_block] = STATE(348), - [sym__blank_line] = STATE(348), - [sym_block_quote] = STATE(348), - [sym_list] = STATE(348), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(348), + [sym_document] = STATE(1017), + [sym__block_not_section] = STATE(360), + [sym_section] = STATE(677), + [sym__section1] = STATE(711), + [sym__section2] = STATE(711), + [sym__section3] = STATE(711), + [sym__section4] = STATE(711), + [sym__section5] = STATE(711), + [sym__section6] = STATE(711), + [sym_thematic_break] = STATE(360), + [sym__atx_heading1] = STATE(75), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(360), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(360), + [sym_fenced_code_block] = STATE(360), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(360), + [sym_note_definition_fenced_block] = STATE(360), + [sym__blank_line] = STATE(360), + [sym_block_quote] = STATE(360), + [sym_list] = STATE(360), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(360), [aux_sym_document_repeat1] = STATE(45), - [aux_sym_document_repeat2] = STATE(651), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), + [aux_sym_document_repeat2] = STATE(677), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), [ts_builtin_sym_end] = ACTIONS(3), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -4410,71 +4520,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(47), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(49), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(2)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(17), + [sym__block_not_section] = STATE(17), + [sym_section] = STATE(17), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(17), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(17), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(17), + [sym_fenced_code_block] = STATE(17), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(17), + [sym_note_definition_fenced_block] = STATE(17), + [sym__blank_line] = STATE(17), + [sym_block_quote] = STATE(17), + [sym_list] = STATE(17), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(17), + [aux_sym_fenced_div_block_repeat1] = STATE(17), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4509,16 +4625,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(55), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(57), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4529,73 +4645,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(87), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(83), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(89), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(3)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(981), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1007), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4630,16 +4752,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(91), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4650,72 +4772,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(4)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(994), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1025), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4750,16 +4878,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(127), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4770,72 +4898,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(5)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1003), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1027), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4870,16 +5004,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(127), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(129), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4890,72 +5024,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(6)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1015), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1030), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4990,16 +5130,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(129), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(131), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5010,71 +5150,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(7)] = { - [sym__block] = STATE(9), - [sym__block_not_section] = STATE(9), - [sym_section] = STATE(9), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(9), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(9), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(9), - [sym_fenced_code_block] = STATE(9), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(9), - [sym_note_definition_fenced_block] = STATE(9), - [sym__blank_line] = STATE(9), - [sym_block_quote] = STATE(9), - [sym_list] = STATE(9), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(9), - [aux_sym_fenced_div_block_repeat1] = STATE(9), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(53), + [sym__block_not_section] = STATE(53), + [sym_section] = STATE(53), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(53), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(53), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(53), + [sym_fenced_code_block] = STATE(53), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(53), + [sym_note_definition_fenced_block] = STATE(53), + [sym__blank_line] = STATE(53), + [sym_block_quote] = STATE(53), + [sym_list] = STATE(53), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(53), + [aux_sym_fenced_div_block_repeat1] = STATE(53), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5109,16 +5255,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(131), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(133), + [sym_block_continuation] = ACTIONS(135), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5129,72 +5276,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(133), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(135), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(137), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(8)] = { - [sym__block] = STATE(10), - [sym__block_not_section] = STATE(10), - [sym_section] = STATE(10), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(10), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(10), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(10), - [sym_fenced_code_block] = STATE(10), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(10), - [sym_note_definition_fenced_block] = STATE(10), - [sym__blank_line] = STATE(10), - [sym_block_quote] = STATE(10), - [sym_list] = STATE(10), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(10), - [aux_sym_fenced_div_block_repeat1] = STATE(10), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(985), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5229,16 +5382,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(137), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym_block_continuation] = ACTIONS(139), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5249,14 +5402,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(139), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -5264,57 +5418,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(11), [sym__block_not_section] = STATE(11), [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(129), [sym_fenced_div_block] = STATE(11), [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(141), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), [sym__blank_line] = STATE(11), [sym_block_quote] = STATE(11), [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5349,16 +5507,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(143), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(141), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5369,72 +5527,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(143), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), [sym__fenced_div_end] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(89), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(10)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(12), + [sym__block_not_section] = STATE(12), + [sym_section] = STATE(12), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(12), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(12), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(12), + [sym_fenced_code_block] = STATE(12), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(12), + [sym_note_definition_fenced_block] = STATE(12), + [sym__blank_line] = STATE(12), + [sym_block_quote] = STATE(12), + [sym_list] = STATE(12), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(12), + [aux_sym_fenced_div_block_repeat1] = STATE(12), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5470,15 +5634,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), [sym__block_close] = ACTIONS(147), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5489,192 +5653,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(149), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(151), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(11)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_SQUOTE] = ACTIONS(154), - [anon_sym_BANG] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(154), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_AMP] = ACTIONS(154), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_QMARK] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_BSLASH] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_CARET] = ACTIONS(154), - [anon_sym__] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_PIPE] = ACTIONS(154), - [anon_sym_TILDE] = ACTIONS(154), - [sym__word] = ACTIONS(157), - [sym__soft_line_ending] = ACTIONS(160), - [sym__block_close] = ACTIONS(163), - [sym__block_quote_start] = ACTIONS(165), - [sym__indented_chunk_start] = ACTIONS(168), - [sym_atx_h1_marker] = ACTIONS(171), - [sym_atx_h2_marker] = ACTIONS(174), - [sym_atx_h3_marker] = ACTIONS(177), - [sym_atx_h4_marker] = ACTIONS(180), - [sym_atx_h5_marker] = ACTIONS(183), - [sym_atx_h6_marker] = ACTIONS(186), - [sym__thematic_break] = ACTIONS(189), - [sym__list_marker_minus] = ACTIONS(192), - [sym__list_marker_plus] = ACTIONS(195), - [sym__list_marker_star] = ACTIONS(198), - [sym__list_marker_parenthesis] = ACTIONS(201), - [sym__list_marker_dot] = ACTIONS(204), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(192), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(195), - [sym__list_marker_star_dont_interrupt] = ACTIONS(198), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(201), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(204), - [sym__fenced_code_block_start_backtick] = ACTIONS(207), - [sym__fenced_code_block_start_tilde] = ACTIONS(210), - [sym__blank_line_start] = ACTIONS(213), - [sym_minus_metadata] = ACTIONS(216), - [sym__pipe_table_start] = ACTIONS(219), - [sym__fenced_div_start] = ACTIONS(222), - [sym__fenced_div_end] = ACTIONS(163), - [sym_ref_id_specifier] = ACTIONS(225), - [sym__display_math_state_track_marker] = ACTIONS(157), - [sym__inline_math_state_track_marker] = ACTIONS(157), - }, - [STATE(12)] = { - [sym__block] = STATE(43), - [sym__block_not_section] = STATE(43), - [sym_section] = STATE(43), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(43), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(43), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(43), - [sym_fenced_code_block] = STATE(43), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(43), - [sym_note_definition_fenced_block] = STATE(43), - [sym__blank_line] = STATE(43), - [sym_block_quote] = STATE(43), - [sym_list] = STATE(43), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(43), - [aux_sym_fenced_div_block_repeat1] = STATE(43), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(13), + [sym__block_not_section] = STATE(13), + [sym_section] = STATE(13), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(13), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(13), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(13), + [sym_fenced_code_block] = STATE(13), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(13), + [sym_note_definition_fenced_block] = STATE(13), + [sym__blank_line] = STATE(13), + [sym_block_quote] = STATE(13), + [sym_list] = STATE(13), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(13), + [aux_sym_fenced_div_block_repeat1] = STATE(13), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5709,17 +5759,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(228), - [sym_block_continuation] = ACTIONS(230), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(153), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5730,71 +5779,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(232), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(155), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(157), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(13)] = { - [sym__block] = STATE(15), - [sym__block_not_section] = STATE(15), - [sym_section] = STATE(15), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(15), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(15), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(15), - [sym_fenced_code_block] = STATE(15), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(15), - [sym_note_definition_fenced_block] = STATE(15), - [sym__blank_line] = STATE(15), - [sym_block_quote] = STATE(15), - [sym_list] = STATE(15), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(15), - [aux_sym_fenced_div_block_repeat1] = STATE(15), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(12)] = { + [sym__block] = STATE(13), + [sym__block_not_section] = STATE(13), + [sym_section] = STATE(13), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(13), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(13), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(13), + [sym_fenced_code_block] = STATE(13), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(13), + [sym_note_definition_fenced_block] = STATE(13), + [sym__blank_line] = STATE(13), + [sym_block_quote] = STATE(13), + [sym_list] = STATE(13), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(13), + [aux_sym_fenced_div_block_repeat1] = STATE(13), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5829,16 +5885,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(234), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(159), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5849,72 +5905,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(236), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(238), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(155), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(161), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, + [STATE(13)] = { + [sym__block] = STATE(13), + [sym__block_not_section] = STATE(13), + [sym_section] = STATE(13), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(13), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(13), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(13), + [sym_fenced_code_block] = STATE(13), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(13), + [sym_note_definition_fenced_block] = STATE(13), + [sym__blank_line] = STATE(13), + [sym_block_quote] = STATE(13), + [sym_list] = STATE(13), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(13), + [aux_sym_fenced_div_block_repeat1] = STATE(13), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(166), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BANG] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(166), + [anon_sym_POUND] = ACTIONS(166), + [anon_sym_DOLLAR] = ACTIONS(166), + [anon_sym_PERCENT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_SLASH] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_GT] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_AT] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_RBRACK] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [sym__word] = ACTIONS(169), + [sym__soft_line_ending] = ACTIONS(172), + [sym__block_close] = ACTIONS(175), + [sym__block_quote_start] = ACTIONS(177), + [sym__indented_chunk_start] = ACTIONS(180), + [sym_atx_h1_marker] = ACTIONS(183), + [sym_atx_h2_marker] = ACTIONS(186), + [sym_atx_h3_marker] = ACTIONS(189), + [sym_atx_h4_marker] = ACTIONS(192), + [sym_atx_h5_marker] = ACTIONS(195), + [sym_atx_h6_marker] = ACTIONS(198), + [sym__thematic_break] = ACTIONS(201), + [sym__list_marker_minus] = ACTIONS(204), + [sym__list_marker_plus] = ACTIONS(207), + [sym__list_marker_star] = ACTIONS(210), + [sym__list_marker_parenthesis] = ACTIONS(213), + [sym__list_marker_dot] = ACTIONS(216), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(204), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(207), + [sym__list_marker_star_dont_interrupt] = ACTIONS(210), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(213), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(216), + [sym__list_marker_example] = ACTIONS(219), + [sym__list_marker_example_dont_interrupt] = ACTIONS(219), + [sym__fenced_code_block_start_backtick] = ACTIONS(222), + [sym__fenced_code_block_start_tilde] = ACTIONS(225), + [sym__blank_line_start] = ACTIONS(228), + [sym_minus_metadata] = ACTIONS(231), + [sym__pipe_table_start] = ACTIONS(234), + [sym__fenced_div_start] = ACTIONS(237), + [sym__fenced_div_end] = ACTIONS(175), + [sym_ref_id_specifier] = ACTIONS(240), + [sym__display_math_state_track_marker] = ACTIONS(169), + [sym__inline_math_state_track_marker] = ACTIONS(169), + }, [STATE(14)] = { - [sym__block] = STATE(2), - [sym__block_not_section] = STATE(2), - [sym_section] = STATE(2), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(2), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(2), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(2), - [sym_fenced_code_block] = STATE(2), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(2), - [sym_note_definition_fenced_block] = STATE(2), - [sym__blank_line] = STATE(2), - [sym_block_quote] = STATE(2), - [sym_list] = STATE(2), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(2), - [aux_sym_fenced_div_block_repeat1] = STATE(2), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(47), + [sym__block_not_section] = STATE(47), + [sym_section] = STATE(47), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(47), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(47), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(47), + [sym_fenced_code_block] = STATE(47), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(47), + [sym_note_definition_fenced_block] = STATE(47), + [sym__blank_line] = STATE(47), + [sym_block_quote] = STATE(47), + [sym_list] = STATE(47), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(47), + [aux_sym_fenced_div_block_repeat1] = STATE(47), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5949,16 +6137,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(240), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(243), + [sym_block_continuation] = ACTIONS(245), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5969,72 +6158,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(242), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(244), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(247), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(15)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1041), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6069,16 +6264,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(246), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym_block_continuation] = ACTIONS(249), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6089,72 +6284,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(248), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(16)] = { - [sym__block] = STATE(50), - [sym__block_not_section] = STATE(50), - [sym_section] = STATE(50), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(50), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(50), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(50), - [sym_fenced_code_block] = STATE(50), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(50), - [sym_note_definition_fenced_block] = STATE(50), - [sym__blank_line] = STATE(50), - [sym_block_quote] = STATE(50), - [sym_list] = STATE(50), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(50), - [aux_sym_fenced_div_block_repeat1] = STATE(50), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(35), + [sym__block_not_section] = STATE(35), + [sym_section] = STATE(35), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(35), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(35), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(35), + [sym_fenced_code_block] = STATE(35), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(35), + [sym_note_definition_fenced_block] = STATE(35), + [sym__blank_line] = STATE(35), + [sym_block_quote] = STATE(35), + [sym_list] = STATE(35), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(35), + [aux_sym_fenced_div_block_repeat1] = STATE(35), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6189,17 +6389,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(250), - [sym_block_continuation] = ACTIONS(252), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(251), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6210,71 +6409,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(254), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(253), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(255), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(17)] = { - [sym__block] = STATE(47), - [sym__block_not_section] = STATE(47), - [sym_section] = STATE(47), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(47), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(47), - [sym_fenced_code_block] = STATE(47), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(47), - [sym_note_definition_fenced_block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(47), - [aux_sym_fenced_div_block_repeat1] = STATE(47), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(13), + [sym__block_not_section] = STATE(13), + [sym_section] = STATE(13), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(13), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(13), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(13), + [sym_fenced_code_block] = STATE(13), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(13), + [sym_note_definition_fenced_block] = STATE(13), + [sym__blank_line] = STATE(13), + [sym_block_quote] = STATE(13), + [sym_list] = STATE(13), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(13), + [aux_sym_fenced_div_block_repeat1] = STATE(13), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6309,17 +6515,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(256), - [sym_block_continuation] = ACTIONS(258), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(257), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6330,71 +6535,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(260), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(155), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(259), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(18)] = { - [sym__block] = STATE(20), - [sym__block_not_section] = STATE(20), - [sym_section] = STATE(20), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(20), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(20), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(20), - [sym_fenced_code_block] = STATE(20), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(20), - [sym_note_definition_fenced_block] = STATE(20), - [sym__blank_line] = STATE(20), - [sym_block_quote] = STATE(20), - [sym_list] = STATE(20), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(20), - [aux_sym_fenced_div_block_repeat1] = STATE(20), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(993), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6429,16 +6642,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(262), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym_block_continuation] = ACTIONS(261), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6449,72 +6662,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(264), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(266), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(19)] = { - [sym__block] = STATE(21), - [sym__block_not_section] = STATE(21), - [sym_section] = STATE(21), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(21), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(21), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(21), - [sym_fenced_code_block] = STATE(21), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(21), - [sym_note_definition_fenced_block] = STATE(21), - [sym__blank_line] = STATE(21), - [sym_block_quote] = STATE(21), - [sym_list] = STATE(21), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(21), - [aux_sym_fenced_div_block_repeat1] = STATE(21), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(50), + [sym__block_not_section] = STATE(50), + [sym_section] = STATE(50), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(50), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(50), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(50), + [sym_fenced_code_block] = STATE(50), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(50), + [sym_note_definition_fenced_block] = STATE(50), + [sym__blank_line] = STATE(50), + [sym_block_quote] = STATE(50), + [sym_list] = STATE(50), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(50), + [aux_sym_fenced_div_block_repeat1] = STATE(50), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6549,16 +6767,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(268), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(263), + [sym_block_continuation] = ACTIONS(265), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6569,72 +6788,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(270), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(272), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(267), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(20)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(22), + [sym__block_not_section] = STATE(22), + [sym_section] = STATE(22), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(22), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(22), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(22), + [sym_fenced_code_block] = STATE(22), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(22), + [sym_note_definition_fenced_block] = STATE(22), + [sym__blank_line] = STATE(22), + [sym_block_quote] = STATE(22), + [sym_list] = STATE(22), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(22), + [aux_sym_fenced_div_block_repeat1] = STATE(22), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6669,16 +6893,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(274), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(269), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6689,72 +6913,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(276), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(271), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(273), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(21)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(23), + [sym__block_not_section] = STATE(23), + [sym_section] = STATE(23), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(23), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(23), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(23), + [sym_fenced_code_block] = STATE(23), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(23), + [sym_note_definition_fenced_block] = STATE(23), + [sym__blank_line] = STATE(23), + [sym_block_quote] = STATE(23), + [sym_list] = STATE(23), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(23), + [aux_sym_fenced_div_block_repeat1] = STATE(23), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6789,16 +7019,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(278), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(275), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6809,73 +7039,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(280), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(277), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(279), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(22)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(973), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(13), + [sym__block_not_section] = STATE(13), + [sym_section] = STATE(13), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(13), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(13), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(13), + [sym_fenced_code_block] = STATE(13), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(13), + [sym_note_definition_fenced_block] = STATE(13), + [sym__blank_line] = STATE(13), + [sym_block_quote] = STATE(13), + [sym_list] = STATE(13), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(13), + [aux_sym_fenced_div_block_repeat1] = STATE(13), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6910,16 +7145,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(282), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(281), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6930,72 +7165,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(155), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(283), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(23)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(977), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(13), + [sym__block_not_section] = STATE(13), + [sym_section] = STATE(13), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(13), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(13), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(13), + [sym_fenced_code_block] = STATE(13), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(13), + [sym_note_definition_fenced_block] = STATE(13), + [sym__blank_line] = STATE(13), + [sym_block_quote] = STATE(13), + [sym_list] = STATE(13), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(13), + [aux_sym_fenced_div_block_repeat1] = STATE(13), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7030,16 +7271,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(284), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(285), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7050,72 +7291,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(155), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(287), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(24)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(985), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(999), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7150,16 +7398,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(286), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(289), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7170,72 +7418,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(25)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(988), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1009), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7270,16 +7524,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(288), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(291), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7290,72 +7544,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(26)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(989), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1014), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7390,16 +7650,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(290), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(293), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7410,72 +7670,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(27)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(995), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1015), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7510,16 +7776,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(292), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(295), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7530,72 +7796,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(28)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(998), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1020), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7630,16 +7902,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(294), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(297), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7650,72 +7922,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(29)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(999), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(996), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7750,16 +8028,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(296), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(299), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7770,72 +8048,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(30)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1000), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1034), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7870,16 +8154,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(298), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(301), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7890,72 +8174,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(31)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1001), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1036), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7990,16 +8280,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(300), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(303), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8010,72 +8300,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(32)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1002), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1037), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8110,16 +8406,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(302), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(305), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8130,72 +8426,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(33)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(971), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1039), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8230,15 +8532,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(307), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8249,71 +8552,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(34)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1040), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8348,16 +8658,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(304), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(309), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8368,72 +8678,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(35)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(980), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(13), + [sym__block_not_section] = STATE(13), + [sym_section] = STATE(13), + [sym__section1] = STATE(316), + [sym__section2] = STATE(316), + [sym__section3] = STATE(316), + [sym__section4] = STATE(316), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(13), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(13), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(13), + [sym_fenced_code_block] = STATE(13), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(13), + [sym_note_definition_fenced_block] = STATE(13), + [sym__blank_line] = STATE(13), + [sym_block_quote] = STATE(13), + [sym_list] = STATE(13), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(13), + [aux_sym_fenced_div_block_repeat1] = STATE(13), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8468,15 +8783,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(311), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8487,72 +8803,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(155), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(313), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(36)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(997), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block_not_section] = STATE(360), + [sym_section] = STATE(673), + [sym__section1] = STATE(711), + [sym__section2] = STATE(711), + [sym__section3] = STATE(711), + [sym__section4] = STATE(711), + [sym__section5] = STATE(711), + [sym__section6] = STATE(711), + [sym_thematic_break] = STATE(360), + [sym__atx_heading1] = STATE(75), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(360), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(360), + [sym_fenced_code_block] = STATE(360), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(360), + [sym_note_definition_fenced_block] = STATE(360), + [sym__blank_line] = STATE(360), + [sym_block_quote] = STATE(360), + [sym_list] = STATE(360), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(360), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_document_repeat2] = STATE(673), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(315), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8587,15 +8910,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8606,72 +8929,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(37)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(961), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8706,15 +9034,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(319), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8725,72 +9054,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(321), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(38)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(982), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1042), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8825,15 +9160,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8844,71 +9179,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(39)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(981), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8943,16 +9285,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(308), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8963,191 +9304,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(40)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_SQUOTE] = ACTIONS(154), - [anon_sym_BANG] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(154), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_AMP] = ACTIONS(154), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_QMARK] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_BSLASH] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_CARET] = ACTIONS(154), - [anon_sym__] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_PIPE] = ACTIONS(154), - [anon_sym_TILDE] = ACTIONS(154), - [sym__word] = ACTIONS(157), - [sym__soft_line_ending] = ACTIONS(160), - [sym__block_close] = ACTIONS(163), - [sym__block_quote_start] = ACTIONS(310), - [sym__indented_chunk_start] = ACTIONS(313), - [sym_atx_h1_marker] = ACTIONS(316), - [sym_atx_h2_marker] = ACTIONS(319), - [sym_atx_h3_marker] = ACTIONS(322), - [sym_atx_h4_marker] = ACTIONS(325), - [sym_atx_h5_marker] = ACTIONS(328), - [sym_atx_h6_marker] = ACTIONS(331), - [sym__thematic_break] = ACTIONS(334), - [sym__list_marker_minus] = ACTIONS(192), - [sym__list_marker_plus] = ACTIONS(195), - [sym__list_marker_star] = ACTIONS(198), - [sym__list_marker_parenthesis] = ACTIONS(201), - [sym__list_marker_dot] = ACTIONS(204), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(192), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(195), - [sym__list_marker_star_dont_interrupt] = ACTIONS(198), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(201), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(204), - [sym__fenced_code_block_start_backtick] = ACTIONS(337), - [sym__fenced_code_block_start_tilde] = ACTIONS(340), - [sym__blank_line_start] = ACTIONS(343), - [sym_minus_metadata] = ACTIONS(346), - [sym__pipe_table_start] = ACTIONS(349), - [sym__fenced_div_start] = ACTIONS(352), - [sym_ref_id_specifier] = ACTIONS(355), - [sym__display_math_state_track_marker] = ACTIONS(157), - [sym__inline_math_state_track_marker] = ACTIONS(157), - }, - [STATE(41)] = { - [sym__block_not_section] = STATE(348), - [sym_section] = STATE(650), - [sym__section1] = STATE(706), - [sym__section2] = STATE(706), - [sym__section3] = STATE(706), - [sym__section4] = STATE(706), - [sym__section5] = STATE(706), - [sym__section6] = STATE(706), - [sym_thematic_break] = STATE(348), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(348), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(348), - [sym_fenced_code_block] = STATE(348), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(348), - [sym_note_definition_fenced_block] = STATE(348), - [sym__blank_line] = STATE(348), - [sym_block_quote] = STATE(348), - [sym_list] = STATE(348), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(348), - [aux_sym_document_repeat1] = STATE(51), - [aux_sym_document_repeat2] = STATE(650), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(358), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(992), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9182,15 +9410,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(17), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9201,71 +9429,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(42)] = { - [sym__block] = STATE(44), - [sym__block_not_section] = STATE(44), - [sym_section] = STATE(44), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(44), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(44), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(44), - [sym_fenced_code_block] = STATE(44), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(44), - [sym_note_definition_fenced_block] = STATE(44), - [sym__blank_line] = STATE(44), - [sym_block_quote] = STATE(44), - [sym_list] = STATE(44), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(44), - [aux_sym_fenced_div_block_repeat1] = STATE(44), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(41)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1006), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9300,16 +9535,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(362), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9320,71 +9554,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(364), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(43)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(42)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1022), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9419,16 +9660,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(362), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9439,71 +9679,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(44)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(43)] = { + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9538,16 +9784,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(366), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(323), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9558,72 +9804,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(321), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, + [STATE(44)] = { + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(166), + [anon_sym_RBRACE] = ACTIONS(166), + [anon_sym_EQ] = ACTIONS(166), + [anon_sym_SQUOTE] = ACTIONS(166), + [anon_sym_BANG] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(166), + [anon_sym_POUND] = ACTIONS(166), + [anon_sym_DOLLAR] = ACTIONS(166), + [anon_sym_PERCENT] = ACTIONS(166), + [anon_sym_AMP] = ACTIONS(166), + [anon_sym_LPAREN] = ACTIONS(166), + [anon_sym_RPAREN] = ACTIONS(166), + [anon_sym_STAR] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(166), + [anon_sym_COMMA] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(166), + [anon_sym_DOT] = ACTIONS(166), + [anon_sym_SLASH] = ACTIONS(166), + [anon_sym_SEMI] = ACTIONS(166), + [anon_sym_LT] = ACTIONS(166), + [anon_sym_GT] = ACTIONS(166), + [anon_sym_QMARK] = ACTIONS(166), + [anon_sym_AT] = ACTIONS(166), + [anon_sym_LBRACK] = ACTIONS(166), + [anon_sym_BSLASH] = ACTIONS(166), + [anon_sym_RBRACK] = ACTIONS(166), + [anon_sym_CARET] = ACTIONS(166), + [anon_sym__] = ACTIONS(166), + [anon_sym_BQUOTE] = ACTIONS(166), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_TILDE] = ACTIONS(166), + [sym__word] = ACTIONS(169), + [sym__soft_line_ending] = ACTIONS(172), + [sym__block_close] = ACTIONS(175), + [sym__block_quote_start] = ACTIONS(325), + [sym__indented_chunk_start] = ACTIONS(328), + [sym_atx_h1_marker] = ACTIONS(331), + [sym_atx_h2_marker] = ACTIONS(334), + [sym_atx_h3_marker] = ACTIONS(337), + [sym_atx_h4_marker] = ACTIONS(340), + [sym_atx_h5_marker] = ACTIONS(343), + [sym_atx_h6_marker] = ACTIONS(346), + [sym__thematic_break] = ACTIONS(349), + [sym__list_marker_minus] = ACTIONS(204), + [sym__list_marker_plus] = ACTIONS(207), + [sym__list_marker_star] = ACTIONS(210), + [sym__list_marker_parenthesis] = ACTIONS(213), + [sym__list_marker_dot] = ACTIONS(216), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(204), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(207), + [sym__list_marker_star_dont_interrupt] = ACTIONS(210), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(213), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(216), + [sym__list_marker_example] = ACTIONS(219), + [sym__list_marker_example_dont_interrupt] = ACTIONS(219), + [sym__fenced_code_block_start_backtick] = ACTIONS(352), + [sym__fenced_code_block_start_tilde] = ACTIONS(355), + [sym__blank_line_start] = ACTIONS(358), + [sym_minus_metadata] = ACTIONS(361), + [sym__pipe_table_start] = ACTIONS(364), + [sym__fenced_div_start] = ACTIONS(367), + [sym_ref_id_specifier] = ACTIONS(370), + [sym__display_math_state_track_marker] = ACTIONS(169), + [sym__inline_math_state_track_marker] = ACTIONS(169), + }, [STATE(45)] = { - [sym__block_not_section] = STATE(348), - [sym_section] = STATE(652), - [sym__section1] = STATE(706), - [sym__section2] = STATE(706), - [sym__section3] = STATE(706), - [sym__section4] = STATE(706), - [sym__section5] = STATE(706), - [sym__section6] = STATE(706), - [sym_thematic_break] = STATE(348), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(348), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(348), - [sym_fenced_code_block] = STATE(348), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(348), - [sym_note_definition_fenced_block] = STATE(348), - [sym__blank_line] = STATE(348), - [sym_block_quote] = STATE(348), - [sym_list] = STATE(348), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(348), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_document_repeat2] = STATE(652), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(368), + [sym__block_not_section] = STATE(360), + [sym_section] = STATE(674), + [sym__section1] = STATE(711), + [sym__section2] = STATE(711), + [sym__section3] = STATE(711), + [sym__section4] = STATE(711), + [sym__section5] = STATE(711), + [sym__section6] = STATE(711), + [sym_thematic_break] = STATE(360), + [sym__atx_heading1] = STATE(75), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(360), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(360), + [sym_fenced_code_block] = STATE(360), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(360), + [sym_note_definition_fenced_block] = STATE(360), + [sym__blank_line] = STATE(360), + [sym_block_quote] = STATE(360), + [sym_list] = STATE(360), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(360), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_document_repeat2] = STATE(674), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(373), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9677,13 +10054,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -9691,57 +10070,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(48), [sym__block_not_section] = STATE(48), [sym_section] = STATE(48), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), [sym_thematic_break] = STATE(48), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), [sym_indented_code_block] = STATE(48), - [sym__indented_chunk] = STATE(137), + [sym__indented_chunk] = STATE(147), [sym_fenced_div_block] = STATE(48), [sym_fenced_code_block] = STATE(48), - [sym_paragraph] = STATE(166), + [sym_paragraph] = STATE(179), [sym_inline_ref_def] = STATE(48), [sym_note_definition_fenced_block] = STATE(48), [sym__blank_line] = STATE(48), [sym_block_quote] = STATE(48), [sym_list] = STATE(48), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), [sym_pipe_table] = STATE(48), [aux_sym_fenced_div_block_repeat1] = STATE(48), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9776,16 +10159,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(370), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(375), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9796,71 +10179,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(372), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(377), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(47)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9895,16 +10284,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(370), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(375), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9915,81 +10304,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(321), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(48)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(7), - [anon_sym_PERCENT] = ACTIONS(7), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), [anon_sym_AMP] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_RPAREN] = ACTIONS(7), @@ -10014,16 +10409,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(374), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(379), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10034,71 +10429,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(321), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(49)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(39), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(39), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(39), - [sym_fenced_code_block] = STATE(39), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__blank_line] = STATE(39), - [sym_block_quote] = STATE(39), - [sym_list] = STATE(39), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(39), - [aux_sym_fenced_div_block_repeat1] = STATE(39), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(51), + [sym__block_not_section] = STATE(51), + [sym_section] = STATE(51), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(51), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(51), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(51), + [sym_fenced_code_block] = STATE(51), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(51), + [sym_note_definition_fenced_block] = STATE(51), + [sym__blank_line] = STATE(51), + [sym_block_quote] = STATE(51), + [sym_list] = STATE(51), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(51), + [aux_sym_fenced_div_block_repeat1] = STATE(51), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10133,16 +10534,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(376), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(381), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10153,71 +10554,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(378), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(383), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(50)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10252,16 +10659,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(376), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(381), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10272,72 +10679,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(321), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(51)] = { - [sym__block_not_section] = STATE(348), - [sym_section] = STATE(648), - [sym__section1] = STATE(706), - [sym__section2] = STATE(706), - [sym__section3] = STATE(706), - [sym__section4] = STATE(706), - [sym__section5] = STATE(706), - [sym__section6] = STATE(706), - [sym_thematic_break] = STATE(348), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(348), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(348), - [sym_fenced_code_block] = STATE(348), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(348), - [sym_note_definition_fenced_block] = STATE(348), - [sym__blank_line] = STATE(348), - [sym_block_quote] = STATE(348), - [sym_list] = STATE(348), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(348), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_document_repeat2] = STATE(648), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(380), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10372,15 +10784,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(17), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(385), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10391,72 +10804,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(321), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(52)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1028), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(43), + [sym__block_not_section] = STATE(43), + [sym_section] = STATE(43), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(43), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(43), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(43), + [sym_fenced_code_block] = STATE(43), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(43), + [sym_note_definition_fenced_block] = STATE(43), + [sym__blank_line] = STATE(43), + [sym_block_quote] = STATE(43), + [sym_list] = STATE(43), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(43), + [aux_sym_fenced_div_block_repeat1] = STATE(43), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10491,15 +10909,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(387), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10510,72 +10929,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(389), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(53)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1032), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10610,15 +11034,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(387), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10629,72 +11054,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(321), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(54)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(958), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1043), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10729,15 +11160,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10748,72 +11179,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(55)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(965), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1046), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10848,15 +11285,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10867,72 +11304,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(56)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1019), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1063), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10967,15 +11410,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10986,72 +11429,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(57)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1020), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(978), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11086,15 +11535,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11105,72 +11554,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(58)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1021), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(988), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11205,15 +11660,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11224,72 +11679,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(59)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1022), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(994), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11324,15 +11785,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11343,72 +11804,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(60)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1023), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block_not_section] = STATE(360), + [sym_section] = STATE(675), + [sym__section1] = STATE(711), + [sym__section2] = STATE(711), + [sym__section3] = STATE(711), + [sym__section4] = STATE(711), + [sym__section5] = STATE(711), + [sym__section6] = STATE(711), + [sym_thematic_break] = STATE(360), + [sym__atx_heading1] = STATE(75), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(360), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(360), + [sym_fenced_code_block] = STATE(360), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(360), + [sym_note_definition_fenced_block] = STATE(360), + [sym__blank_line] = STATE(360), + [sym_block_quote] = STATE(360), + [sym_list] = STATE(360), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(360), + [aux_sym_document_repeat1] = STATE(36), + [aux_sym_document_repeat2] = STATE(675), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(391), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11443,15 +11910,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11462,72 +11929,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(61)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(327), - [sym__section2] = STATE(327), - [sym__section3] = STATE(327), - [sym__section4] = STATE(327), - [sym__section5] = STATE(327), - [sym__section6] = STATE(327), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1025), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1005), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11562,15 +12035,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11581,183 +12054,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(62)] = { - [sym__block_not_section] = STATE(62), - [sym__section2] = STATE(199), - [sym__section3] = STATE(199), - [sym__section4] = STATE(199), - [sym__section5] = STATE(199), - [sym__section6] = STATE(199), - [sym_thematic_break] = STATE(62), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(62), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(62), - [sym_fenced_code_block] = STATE(62), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(62), - [sym_note_definition_fenced_block] = STATE(62), - [sym__blank_line] = STATE(62), - [sym_block_quote] = STATE(62), - [sym_list] = STATE(62), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(62), - [aux_sym__section1_repeat1] = STATE(62), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_BSLASH] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym__] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(385), - [sym__word] = ACTIONS(388), - [sym__soft_line_ending] = ACTIONS(391), - [sym__block_close] = ACTIONS(394), - [sym__block_quote_start] = ACTIONS(396), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(394), - [sym_atx_h2_marker] = ACTIONS(402), - [sym_atx_h3_marker] = ACTIONS(405), - [sym_atx_h4_marker] = ACTIONS(408), - [sym_atx_h5_marker] = ACTIONS(411), - [sym_atx_h6_marker] = ACTIONS(414), - [sym__thematic_break] = ACTIONS(417), - [sym__list_marker_minus] = ACTIONS(420), - [sym__list_marker_plus] = ACTIONS(423), - [sym__list_marker_star] = ACTIONS(426), - [sym__list_marker_parenthesis] = ACTIONS(429), - [sym__list_marker_dot] = ACTIONS(432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(426), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(432), - [sym__fenced_code_block_start_backtick] = ACTIONS(435), - [sym__fenced_code_block_start_tilde] = ACTIONS(438), - [sym__blank_line_start] = ACTIONS(441), - [sym_minus_metadata] = ACTIONS(444), - [sym__pipe_table_start] = ACTIONS(447), - [sym__fenced_div_start] = ACTIONS(450), - [sym__fenced_div_end] = ACTIONS(394), - [sym_ref_id_specifier] = ACTIONS(453), - [sym__display_math_state_track_marker] = ACTIONS(388), - [sym__inline_math_state_track_marker] = ACTIONS(388), - }, - [STATE(63)] = { - [sym__block_not_section] = STATE(64), - [sym__section2] = STATE(199), - [sym__section3] = STATE(199), - [sym__section4] = STATE(199), - [sym__section5] = STATE(199), - [sym__section6] = STATE(199), - [sym_thematic_break] = STATE(64), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(64), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(64), - [sym_fenced_code_block] = STATE(64), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__blank_line] = STATE(64), - [sym_block_quote] = STATE(64), - [sym_list] = STATE(64), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(64), - [aux_sym__section1_repeat1] = STATE(64), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1054), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11792,16 +12160,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(456), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(456), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11812,68 +12179,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(458), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(456), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(64)] = { - [sym__block_not_section] = STATE(62), - [sym__section2] = STATE(199), - [sym__section3] = STATE(199), - [sym__section4] = STATE(199), - [sym__section5] = STATE(199), - [sym__section6] = STATE(199), - [sym_thematic_break] = STATE(62), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(62), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(62), - [sym_fenced_code_block] = STATE(62), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(62), - [sym_note_definition_fenced_block] = STATE(62), - [sym__blank_line] = STATE(62), - [sym_block_quote] = STATE(62), - [sym_list] = STATE(62), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(62), - [aux_sym__section1_repeat1] = STATE(62), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(63)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1056), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11908,16 +12285,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(460), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(460), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11928,184 +12304,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(462), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(460), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(65)] = { - [sym__block_not_section] = STATE(65), - [sym__section2] = STATE(343), - [sym__section3] = STATE(343), - [sym__section4] = STATE(343), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), - [sym_thematic_break] = STATE(65), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(65), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(65), - [sym_fenced_code_block] = STATE(65), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(65), - [sym_note_definition_fenced_block] = STATE(65), - [sym__blank_line] = STATE(65), - [sym_block_quote] = STATE(65), - [sym_list] = STATE(65), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(65), - [aux_sym__section1_repeat1] = STATE(65), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_BSLASH] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym__] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(385), - [sym__word] = ACTIONS(388), - [sym__soft_line_ending] = ACTIONS(391), - [sym__block_close] = ACTIONS(394), - [sym__block_quote_start] = ACTIONS(464), - [sym__indented_chunk_start] = ACTIONS(467), - [sym_atx_h1_marker] = ACTIONS(394), - [sym_atx_h2_marker] = ACTIONS(470), - [sym_atx_h3_marker] = ACTIONS(473), - [sym_atx_h4_marker] = ACTIONS(476), - [sym_atx_h5_marker] = ACTIONS(479), - [sym_atx_h6_marker] = ACTIONS(482), - [sym__thematic_break] = ACTIONS(485), - [sym__list_marker_minus] = ACTIONS(420), - [sym__list_marker_plus] = ACTIONS(423), - [sym__list_marker_star] = ACTIONS(426), - [sym__list_marker_parenthesis] = ACTIONS(429), - [sym__list_marker_dot] = ACTIONS(432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(426), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(432), - [sym__fenced_code_block_start_backtick] = ACTIONS(488), - [sym__fenced_code_block_start_tilde] = ACTIONS(491), - [sym__blank_line_start] = ACTIONS(494), - [sym_minus_metadata] = ACTIONS(497), - [sym__pipe_table_start] = ACTIONS(500), - [sym__fenced_div_start] = ACTIONS(503), - [sym_ref_id_specifier] = ACTIONS(506), - [sym__display_math_state_track_marker] = ACTIONS(388), - [sym__inline_math_state_track_marker] = ACTIONS(388), - }, - [STATE(66)] = { - [sym__block_not_section] = STATE(70), - [sym__section2] = STATE(367), - [sym__section3] = STATE(367), - [sym__section4] = STATE(367), - [sym__section5] = STATE(367), - [sym__section6] = STATE(367), - [sym_thematic_break] = STATE(70), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(70), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(70), - [sym_fenced_code_block] = STATE(70), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(70), - [sym_note_definition_fenced_block] = STATE(70), - [sym__blank_line] = STATE(70), - [sym_block_quote] = STATE(70), - [sym_list] = STATE(70), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(70), - [aux_sym__section1_repeat1] = STATE(70), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(456), + [STATE(64)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1057), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12140,15 +12410,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(456), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12159,182 +12429,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(509), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(67)] = { - [sym__block_not_section] = STATE(67), - [sym__section2] = STATE(367), - [sym__section3] = STATE(367), - [sym__section4] = STATE(367), - [sym__section5] = STATE(367), - [sym__section6] = STATE(367), - [sym_thematic_break] = STATE(67), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(67), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(67), - [sym_fenced_code_block] = STATE(67), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__blank_line] = STATE(67), - [sym_block_quote] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(67), - [aux_sym__section1_repeat1] = STATE(67), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(394), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_BSLASH] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym__] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(385), - [sym__word] = ACTIONS(388), - [sym__soft_line_ending] = ACTIONS(391), - [sym__block_quote_start] = ACTIONS(511), - [sym__indented_chunk_start] = ACTIONS(514), - [sym_atx_h1_marker] = ACTIONS(394), - [sym_atx_h2_marker] = ACTIONS(517), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(523), - [sym_atx_h5_marker] = ACTIONS(526), - [sym_atx_h6_marker] = ACTIONS(529), - [sym__thematic_break] = ACTIONS(532), - [sym__list_marker_minus] = ACTIONS(420), - [sym__list_marker_plus] = ACTIONS(423), - [sym__list_marker_star] = ACTIONS(426), - [sym__list_marker_parenthesis] = ACTIONS(429), - [sym__list_marker_dot] = ACTIONS(432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(426), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(432), - [sym__fenced_code_block_start_backtick] = ACTIONS(535), - [sym__fenced_code_block_start_tilde] = ACTIONS(538), - [sym__blank_line_start] = ACTIONS(541), - [sym_minus_metadata] = ACTIONS(544), - [sym__pipe_table_start] = ACTIONS(547), - [sym__fenced_div_start] = ACTIONS(550), - [sym_ref_id_specifier] = ACTIONS(553), - [sym__display_math_state_track_marker] = ACTIONS(388), - [sym__inline_math_state_track_marker] = ACTIONS(388), - }, - [STATE(68)] = { - [sym__block_not_section] = STATE(65), - [sym__section2] = STATE(343), - [sym__section3] = STATE(343), - [sym__section4] = STATE(343), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), - [sym_thematic_break] = STATE(65), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(65), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(65), - [sym_fenced_code_block] = STATE(65), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(65), - [sym_note_definition_fenced_block] = STATE(65), - [sym__blank_line] = STATE(65), - [sym_block_quote] = STATE(65), - [sym_list] = STATE(65), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(65), - [aux_sym__section1_repeat1] = STATE(65), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(65)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1058), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12369,16 +12535,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(460), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(460), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12389,67 +12554,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(556), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(69)] = { - [sym__block_not_section] = STATE(68), - [sym__section2] = STATE(343), - [sym__section3] = STATE(343), - [sym__section4] = STATE(343), - [sym__section5] = STATE(343), - [sym__section6] = STATE(343), - [sym_thematic_break] = STATE(68), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(68), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(68), - [sym_fenced_code_block] = STATE(68), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(68), - [sym_note_definition_fenced_block] = STATE(68), - [sym__blank_line] = STATE(68), - [sym_block_quote] = STATE(68), - [sym_list] = STATE(68), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(68), - [aux_sym__section1_repeat1] = STATE(68), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(66)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1059), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12484,16 +12660,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(456), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(456), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12504,68 +12679,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(558), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(70)] = { - [sym__block_not_section] = STATE(67), - [sym__section2] = STATE(367), - [sym__section3] = STATE(367), - [sym__section4] = STATE(367), - [sym__section5] = STATE(367), - [sym__section6] = STATE(367), - [sym_thematic_break] = STATE(67), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(67), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(67), - [sym_fenced_code_block] = STATE(67), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__blank_line] = STATE(67), - [sym_block_quote] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(67), - [aux_sym__section1_repeat1] = STATE(67), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(460), + [STATE(67)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(389), + [sym__section2] = STATE(389), + [sym__section3] = STATE(389), + [sym__section4] = STATE(389), + [sym__section5] = STATE(389), + [sym__section6] = STATE(389), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(300), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__list_item_content] = STATE(1060), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12600,15 +12785,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(460), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12619,179 +12804,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(560), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(71)] = { - [sym__block_not_section] = STATE(71), - [sym__section3] = STATE(201), - [sym__section4] = STATE(201), - [sym__section5] = STATE(201), - [sym__section6] = STATE(201), - [sym_thematic_break] = STATE(71), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(71), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(71), - [sym_fenced_code_block] = STATE(71), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(71), - [sym_note_definition_fenced_block] = STATE(71), - [sym__blank_line] = STATE(71), - [sym_block_quote] = STATE(71), - [sym_list] = STATE(71), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(71), - [aux_sym__section2_repeat1] = STATE(71), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [sym__word] = ACTIONS(568), - [sym__soft_line_ending] = ACTIONS(571), - [sym__block_close] = ACTIONS(574), - [sym__block_quote_start] = ACTIONS(576), - [sym__indented_chunk_start] = ACTIONS(579), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(582), - [sym_atx_h4_marker] = ACTIONS(585), - [sym_atx_h5_marker] = ACTIONS(588), - [sym_atx_h6_marker] = ACTIONS(591), - [sym__thematic_break] = ACTIONS(594), - [sym__list_marker_minus] = ACTIONS(597), - [sym__list_marker_plus] = ACTIONS(600), - [sym__list_marker_star] = ACTIONS(603), - [sym__list_marker_parenthesis] = ACTIONS(606), - [sym__list_marker_dot] = ACTIONS(609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(600), - [sym__list_marker_star_dont_interrupt] = ACTIONS(603), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(606), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(609), - [sym__fenced_code_block_start_backtick] = ACTIONS(612), - [sym__fenced_code_block_start_tilde] = ACTIONS(615), - [sym__blank_line_start] = ACTIONS(618), - [sym_minus_metadata] = ACTIONS(621), - [sym__pipe_table_start] = ACTIONS(624), - [sym__fenced_div_start] = ACTIONS(627), - [sym__fenced_div_end] = ACTIONS(574), - [sym_ref_id_specifier] = ACTIONS(630), - [sym__display_math_state_track_marker] = ACTIONS(568), - [sym__inline_math_state_track_marker] = ACTIONS(568), + [STATE(68)] = { + [sym__block_not_section] = STATE(68), + [sym__section2] = STATE(210), + [sym__section3] = STATE(210), + [sym__section4] = STATE(210), + [sym__section5] = STATE(210), + [sym__section6] = STATE(210), + [sym_thematic_break] = STATE(68), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(68), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(68), + [sym_fenced_code_block] = STATE(68), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(68), + [sym_note_definition_fenced_block] = STATE(68), + [sym__blank_line] = STATE(68), + [sym_block_quote] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(68), + [aux_sym__section1_repeat1] = STATE(68), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym__] = ACTIONS(396), + [anon_sym_BQUOTE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [sym__word] = ACTIONS(399), + [sym__soft_line_ending] = ACTIONS(402), + [sym__block_close] = ACTIONS(405), + [sym__block_quote_start] = ACTIONS(407), + [sym__indented_chunk_start] = ACTIONS(410), + [sym_atx_h1_marker] = ACTIONS(405), + [sym_atx_h2_marker] = ACTIONS(413), + [sym_atx_h3_marker] = ACTIONS(416), + [sym_atx_h4_marker] = ACTIONS(419), + [sym_atx_h5_marker] = ACTIONS(422), + [sym_atx_h6_marker] = ACTIONS(425), + [sym__thematic_break] = ACTIONS(428), + [sym__list_marker_minus] = ACTIONS(431), + [sym__list_marker_plus] = ACTIONS(434), + [sym__list_marker_star] = ACTIONS(437), + [sym__list_marker_parenthesis] = ACTIONS(440), + [sym__list_marker_dot] = ACTIONS(443), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(431), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(437), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(440), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(443), + [sym__list_marker_example] = ACTIONS(446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(446), + [sym__fenced_code_block_start_backtick] = ACTIONS(449), + [sym__fenced_code_block_start_tilde] = ACTIONS(452), + [sym__blank_line_start] = ACTIONS(455), + [sym_minus_metadata] = ACTIONS(458), + [sym__pipe_table_start] = ACTIONS(461), + [sym__fenced_div_start] = ACTIONS(464), + [sym__fenced_div_end] = ACTIONS(405), + [sym_ref_id_specifier] = ACTIONS(467), + [sym__display_math_state_track_marker] = ACTIONS(399), + [sym__inline_math_state_track_marker] = ACTIONS(399), }, - [STATE(72)] = { - [sym__block_not_section] = STATE(71), - [sym__section3] = STATE(201), - [sym__section4] = STATE(201), - [sym__section5] = STATE(201), - [sym__section6] = STATE(201), - [sym_thematic_break] = STATE(71), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(71), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(71), - [sym_fenced_code_block] = STATE(71), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(71), - [sym_note_definition_fenced_block] = STATE(71), - [sym__blank_line] = STATE(71), - [sym_block_quote] = STATE(71), - [sym_list] = STATE(71), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(71), - [aux_sym__section2_repeat1] = STATE(71), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(69)] = { + [sym__block_not_section] = STATE(68), + [sym__section2] = STATE(210), + [sym__section3] = STATE(210), + [sym__section4] = STATE(210), + [sym__section5] = STATE(210), + [sym__section6] = STATE(210), + [sym_thematic_break] = STATE(68), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(68), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(68), + [sym_fenced_code_block] = STATE(68), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(68), + [sym_note_definition_fenced_block] = STATE(68), + [sym__blank_line] = STATE(68), + [sym_block_quote] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(68), + [aux_sym__section1_repeat1] = STATE(68), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12826,16 +13027,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(633), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(633), - [sym_atx_h2_marker] = ACTIONS(633), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(470), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(470), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12846,66 +13047,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(635), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(633), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(472), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(470), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(73)] = { - [sym__block_not_section] = STATE(72), - [sym__section3] = STATE(201), - [sym__section4] = STATE(201), - [sym__section5] = STATE(201), - [sym__section6] = STATE(201), - [sym_thematic_break] = STATE(72), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(72), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(72), - [sym_fenced_code_block] = STATE(72), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(72), - [sym_note_definition_fenced_block] = STATE(72), - [sym__blank_line] = STATE(72), - [sym_block_quote] = STATE(72), - [sym_list] = STATE(72), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(72), - [aux_sym__section2_repeat1] = STATE(72), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(70)] = { + [sym__block_not_section] = STATE(69), + [sym__section2] = STATE(210), + [sym__section3] = STATE(210), + [sym__section4] = STATE(210), + [sym__section5] = STATE(210), + [sym__section6] = STATE(210), + [sym_thematic_break] = STATE(69), + [sym__atx_heading2] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(69), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(69), + [sym_fenced_code_block] = STATE(69), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(69), + [sym_note_definition_fenced_block] = STATE(69), + [sym__blank_line] = STATE(69), + [sym_block_quote] = STATE(69), + [sym_list] = STATE(69), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(69), + [aux_sym__section1_repeat1] = STATE(69), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12940,16 +13149,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(637), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(637), - [sym_atx_h2_marker] = ACTIONS(637), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(474), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(474), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12960,180 +13169,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(639), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(637), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(476), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(474), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(74)] = { - [sym__block_not_section] = STATE(74), - [sym__section3] = STATE(344), - [sym__section4] = STATE(344), - [sym__section5] = STATE(344), - [sym__section6] = STATE(344), - [sym_thematic_break] = STATE(74), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(74), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(74), - [sym_fenced_code_block] = STATE(74), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(74), - [sym_note_definition_fenced_block] = STATE(74), - [sym__blank_line] = STATE(74), - [sym_block_quote] = STATE(74), - [sym_list] = STATE(74), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(74), - [aux_sym__section2_repeat1] = STATE(74), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [sym__word] = ACTIONS(568), - [sym__soft_line_ending] = ACTIONS(571), - [sym__block_close] = ACTIONS(574), - [sym__block_quote_start] = ACTIONS(641), - [sym__indented_chunk_start] = ACTIONS(644), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(647), - [sym_atx_h4_marker] = ACTIONS(650), - [sym_atx_h5_marker] = ACTIONS(653), - [sym_atx_h6_marker] = ACTIONS(656), - [sym__thematic_break] = ACTIONS(659), - [sym__list_marker_minus] = ACTIONS(597), - [sym__list_marker_plus] = ACTIONS(600), - [sym__list_marker_star] = ACTIONS(603), - [sym__list_marker_parenthesis] = ACTIONS(606), - [sym__list_marker_dot] = ACTIONS(609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(600), - [sym__list_marker_star_dont_interrupt] = ACTIONS(603), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(606), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(609), - [sym__fenced_code_block_start_backtick] = ACTIONS(662), - [sym__fenced_code_block_start_tilde] = ACTIONS(665), - [sym__blank_line_start] = ACTIONS(668), - [sym_minus_metadata] = ACTIONS(671), - [sym__pipe_table_start] = ACTIONS(674), - [sym__fenced_div_start] = ACTIONS(677), - [sym_ref_id_specifier] = ACTIONS(680), - [sym__display_math_state_track_marker] = ACTIONS(568), - [sym__inline_math_state_track_marker] = ACTIONS(568), + [STATE(71)] = { + [sym__block_not_section] = STATE(71), + [sym__section2] = STATE(413), + [sym__section3] = STATE(413), + [sym__section4] = STATE(413), + [sym__section5] = STATE(413), + [sym__section6] = STATE(413), + [sym_thematic_break] = STATE(71), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(71), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(71), + [sym_fenced_code_block] = STATE(71), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(71), + [sym_block_quote] = STATE(71), + [sym_list] = STATE(71), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(71), + [aux_sym__section1_repeat1] = STATE(71), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym__] = ACTIONS(396), + [anon_sym_BQUOTE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [sym__word] = ACTIONS(399), + [sym__soft_line_ending] = ACTIONS(402), + [sym__block_close] = ACTIONS(405), + [sym__block_quote_start] = ACTIONS(478), + [sym__indented_chunk_start] = ACTIONS(481), + [sym_atx_h1_marker] = ACTIONS(405), + [sym_atx_h2_marker] = ACTIONS(484), + [sym_atx_h3_marker] = ACTIONS(487), + [sym_atx_h4_marker] = ACTIONS(490), + [sym_atx_h5_marker] = ACTIONS(493), + [sym_atx_h6_marker] = ACTIONS(496), + [sym__thematic_break] = ACTIONS(499), + [sym__list_marker_minus] = ACTIONS(431), + [sym__list_marker_plus] = ACTIONS(434), + [sym__list_marker_star] = ACTIONS(437), + [sym__list_marker_parenthesis] = ACTIONS(440), + [sym__list_marker_dot] = ACTIONS(443), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(431), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(437), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(440), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(443), + [sym__list_marker_example] = ACTIONS(446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(446), + [sym__fenced_code_block_start_backtick] = ACTIONS(502), + [sym__fenced_code_block_start_tilde] = ACTIONS(505), + [sym__blank_line_start] = ACTIONS(508), + [sym_minus_metadata] = ACTIONS(511), + [sym__pipe_table_start] = ACTIONS(514), + [sym__fenced_div_start] = ACTIONS(517), + [sym_ref_id_specifier] = ACTIONS(520), + [sym__display_math_state_track_marker] = ACTIONS(399), + [sym__inline_math_state_track_marker] = ACTIONS(399), }, - [STATE(75)] = { - [sym__block_not_section] = STATE(78), - [sym__section3] = STATE(368), - [sym__section4] = STATE(368), - [sym__section5] = STATE(368), - [sym__section6] = STATE(368), - [sym_thematic_break] = STATE(78), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(78), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(78), - [sym_fenced_code_block] = STATE(78), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(78), - [sym_note_definition_fenced_block] = STATE(78), - [sym__blank_line] = STATE(78), - [sym_block_quote] = STATE(78), - [sym_list] = STATE(78), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(78), - [aux_sym__section2_repeat1] = STATE(78), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(633), + [STATE(72)] = { + [sym__block_not_section] = STATE(72), + [sym__section2] = STATE(470), + [sym__section3] = STATE(470), + [sym__section4] = STATE(470), + [sym__section5] = STATE(470), + [sym__section6] = STATE(470), + [sym_thematic_break] = STATE(72), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(72), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(72), + [sym_fenced_code_block] = STATE(72), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(72), + [sym_block_quote] = STATE(72), + [sym_list] = STATE(72), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(72), + [aux_sym__section1_repeat1] = STATE(72), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(405), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym__] = ACTIONS(396), + [anon_sym_BQUOTE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [sym__word] = ACTIONS(399), + [sym__soft_line_ending] = ACTIONS(402), + [sym__block_quote_start] = ACTIONS(523), + [sym__indented_chunk_start] = ACTIONS(526), + [sym_atx_h1_marker] = ACTIONS(405), + [sym_atx_h2_marker] = ACTIONS(529), + [sym_atx_h3_marker] = ACTIONS(532), + [sym_atx_h4_marker] = ACTIONS(535), + [sym_atx_h5_marker] = ACTIONS(538), + [sym_atx_h6_marker] = ACTIONS(541), + [sym__thematic_break] = ACTIONS(544), + [sym__list_marker_minus] = ACTIONS(431), + [sym__list_marker_plus] = ACTIONS(434), + [sym__list_marker_star] = ACTIONS(437), + [sym__list_marker_parenthesis] = ACTIONS(440), + [sym__list_marker_dot] = ACTIONS(443), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(431), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(437), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(440), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(443), + [sym__list_marker_example] = ACTIONS(446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(446), + [sym__fenced_code_block_start_backtick] = ACTIONS(547), + [sym__fenced_code_block_start_tilde] = ACTIONS(550), + [sym__blank_line_start] = ACTIONS(553), + [sym_minus_metadata] = ACTIONS(556), + [sym__pipe_table_start] = ACTIONS(559), + [sym__fenced_div_start] = ACTIONS(562), + [sym_ref_id_specifier] = ACTIONS(565), + [sym__display_math_state_track_marker] = ACTIONS(399), + [sym__inline_math_state_track_marker] = ACTIONS(399), + }, + [STATE(73)] = { + [sym__block_not_section] = STATE(72), + [sym__section2] = STATE(470), + [sym__section3] = STATE(470), + [sym__section4] = STATE(470), + [sym__section5] = STATE(470), + [sym__section6] = STATE(470), + [sym_thematic_break] = STATE(72), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(72), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(72), + [sym_fenced_code_block] = STATE(72), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(72), + [sym_block_quote] = STATE(72), + [sym_list] = STATE(72), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(72), + [aux_sym__section1_repeat1] = STATE(72), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(470), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13170,8 +13516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(633), - [sym_atx_h2_marker] = ACTIONS(633), + [sym_atx_h1_marker] = ACTIONS(470), + [sym_atx_h2_marker] = ACTIONS(19), [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), [sym_atx_h5_marker] = ACTIONS(25), @@ -13187,65 +13533,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(683), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(568), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(76)] = { - [sym__block_not_section] = STATE(79), - [sym__section3] = STATE(344), - [sym__section4] = STATE(344), - [sym__section5] = STATE(344), - [sym__section6] = STATE(344), - [sym_thematic_break] = STATE(79), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(79), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(79), - [sym_fenced_code_block] = STATE(79), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(79), - [sym_note_definition_fenced_block] = STATE(79), - [sym__blank_line] = STATE(79), - [sym_block_quote] = STATE(79), - [sym_list] = STATE(79), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(79), - [aux_sym__section2_repeat1] = STATE(79), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(74)] = { + [sym__block_not_section] = STATE(76), + [sym__section2] = STATE(413), + [sym__section3] = STATE(413), + [sym__section4] = STATE(413), + [sym__section5] = STATE(413), + [sym__section6] = STATE(413), + [sym_thematic_break] = STATE(76), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(76), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(76), + [sym_fenced_code_block] = STATE(76), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(76), + [sym_note_definition_fenced_block] = STATE(76), + [sym__blank_line] = STATE(76), + [sym_block_quote] = STATE(76), + [sym_list] = STATE(76), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(76), + [aux_sym__section1_repeat1] = STATE(76), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13280,16 +13634,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(637), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(637), - [sym_atx_h2_marker] = ACTIONS(637), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(474), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(474), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13300,66 +13654,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(685), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(570), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(77)] = { - [sym__block_not_section] = STATE(75), - [sym__section3] = STATE(368), - [sym__section4] = STATE(368), - [sym__section5] = STATE(368), - [sym__section6] = STATE(368), - [sym_thematic_break] = STATE(75), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(75), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(75), - [sym_fenced_code_block] = STATE(75), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(75), - [sym_note_definition_fenced_block] = STATE(75), - [sym__blank_line] = STATE(75), - [sym_block_quote] = STATE(75), - [sym_list] = STATE(75), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(75), - [aux_sym__section2_repeat1] = STATE(75), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(637), + [STATE(75)] = { + [sym__block_not_section] = STATE(73), + [sym__section2] = STATE(470), + [sym__section3] = STATE(470), + [sym__section4] = STATE(470), + [sym__section5] = STATE(470), + [sym__section6] = STATE(470), + [sym_thematic_break] = STATE(73), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(73), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(73), + [sym_fenced_code_block] = STATE(73), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(73), + [sym_block_quote] = STATE(73), + [sym_list] = STATE(73), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(73), + [aux_sym__section1_repeat1] = STATE(73), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(474), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13396,8 +13758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(637), - [sym_atx_h2_marker] = ACTIONS(637), + [sym_atx_h1_marker] = ACTIONS(474), + [sym_atx_h2_marker] = ACTIONS(19), [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), [sym_atx_h5_marker] = ACTIONS(25), @@ -13413,178 +13775,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(687), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(572), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(78)] = { - [sym__block_not_section] = STATE(78), - [sym__section3] = STATE(368), - [sym__section4] = STATE(368), - [sym__section5] = STATE(368), - [sym__section6] = STATE(368), - [sym_thematic_break] = STATE(78), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(78), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(78), - [sym_fenced_code_block] = STATE(78), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(78), - [sym_note_definition_fenced_block] = STATE(78), - [sym__blank_line] = STATE(78), - [sym_block_quote] = STATE(78), - [sym_list] = STATE(78), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(78), - [aux_sym__section2_repeat1] = STATE(78), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(574), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [sym__word] = ACTIONS(568), - [sym__soft_line_ending] = ACTIONS(571), - [sym__block_quote_start] = ACTIONS(689), - [sym__indented_chunk_start] = ACTIONS(692), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(695), - [sym_atx_h4_marker] = ACTIONS(698), - [sym_atx_h5_marker] = ACTIONS(701), - [sym_atx_h6_marker] = ACTIONS(704), - [sym__thematic_break] = ACTIONS(707), - [sym__list_marker_minus] = ACTIONS(597), - [sym__list_marker_plus] = ACTIONS(600), - [sym__list_marker_star] = ACTIONS(603), - [sym__list_marker_parenthesis] = ACTIONS(606), - [sym__list_marker_dot] = ACTIONS(609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(600), - [sym__list_marker_star_dont_interrupt] = ACTIONS(603), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(606), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(609), - [sym__fenced_code_block_start_backtick] = ACTIONS(710), - [sym__fenced_code_block_start_tilde] = ACTIONS(713), - [sym__blank_line_start] = ACTIONS(716), - [sym_minus_metadata] = ACTIONS(719), - [sym__pipe_table_start] = ACTIONS(722), - [sym__fenced_div_start] = ACTIONS(725), - [sym_ref_id_specifier] = ACTIONS(728), - [sym__display_math_state_track_marker] = ACTIONS(568), - [sym__inline_math_state_track_marker] = ACTIONS(568), - }, - [STATE(79)] = { - [sym__block_not_section] = STATE(74), - [sym__section3] = STATE(344), - [sym__section4] = STATE(344), - [sym__section5] = STATE(344), - [sym__section6] = STATE(344), - [sym_thematic_break] = STATE(74), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(74), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(74), - [sym_fenced_code_block] = STATE(74), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(74), - [sym_note_definition_fenced_block] = STATE(74), - [sym__blank_line] = STATE(74), - [sym_block_quote] = STATE(74), - [sym_list] = STATE(74), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(74), - [aux_sym__section2_repeat1] = STATE(74), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(76)] = { + [sym__block_not_section] = STATE(71), + [sym__section2] = STATE(413), + [sym__section3] = STATE(413), + [sym__section4] = STATE(413), + [sym__section5] = STATE(413), + [sym__section6] = STATE(413), + [sym_thematic_break] = STATE(71), + [sym__atx_heading2] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(71), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(71), + [sym_fenced_code_block] = STATE(71), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(71), + [sym_block_quote] = STATE(71), + [sym_list] = STATE(71), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(71), + [aux_sym__section1_repeat1] = STATE(71), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13619,16 +13876,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(633), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(633), - [sym_atx_h2_marker] = ACTIONS(633), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(470), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(470), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13639,63 +13896,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(731), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(574), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(80)] = { - [sym__block_not_section] = STATE(82), - [sym__section4] = STATE(204), - [sym__section5] = STATE(204), - [sym__section6] = STATE(204), - [sym_thematic_break] = STATE(82), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(82), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(82), - [sym_fenced_code_block] = STATE(82), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(82), - [sym_note_definition_fenced_block] = STATE(82), - [sym__blank_line] = STATE(82), - [sym_block_quote] = STATE(82), - [sym_list] = STATE(82), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(82), - [aux_sym__section3_repeat1] = STATE(82), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(77)] = { + [sym__block_not_section] = STATE(79), + [sym__section3] = STATE(212), + [sym__section4] = STATE(212), + [sym__section5] = STATE(212), + [sym__section6] = STATE(212), + [sym_thematic_break] = STATE(79), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(79), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(79), + [sym_fenced_code_block] = STATE(79), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(79), + [sym_note_definition_fenced_block] = STATE(79), + [sym__blank_line] = STATE(79), + [sym_block_quote] = STATE(79), + [sym_list] = STATE(79), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(79), + [aux_sym__section2_repeat1] = STATE(79), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13730,16 +13995,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(733), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(733), - [sym_atx_h2_marker] = ACTIONS(733), - [sym_atx_h3_marker] = ACTIONS(733), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(576), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(576), + [sym_atx_h2_marker] = ACTIONS(576), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13750,64 +14015,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(735), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(733), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(578), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(576), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(81)] = { - [sym__block_not_section] = STATE(80), - [sym__section4] = STATE(204), - [sym__section5] = STATE(204), - [sym__section6] = STATE(204), - [sym_thematic_break] = STATE(80), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(80), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(80), - [sym_fenced_code_block] = STATE(80), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(80), - [sym_note_definition_fenced_block] = STATE(80), - [sym__blank_line] = STATE(80), - [sym_block_quote] = STATE(80), - [sym_list] = STATE(80), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(80), - [aux_sym__section3_repeat1] = STATE(80), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(78)] = { + [sym__block_not_section] = STATE(77), + [sym__section3] = STATE(212), + [sym__section4] = STATE(212), + [sym__section5] = STATE(212), + [sym__section6] = STATE(212), + [sym_thematic_break] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(77), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(77), + [sym_fenced_code_block] = STATE(77), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(77), + [sym_note_definition_fenced_block] = STATE(77), + [sym__blank_line] = STATE(77), + [sym_block_quote] = STATE(77), + [sym_list] = STATE(77), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(77), + [aux_sym__section2_repeat1] = STATE(77), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13842,16 +14115,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(737), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(737), - [sym_atx_h2_marker] = ACTIONS(737), - [sym_atx_h3_marker] = ACTIONS(737), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(580), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(580), + [sym_atx_h2_marker] = ACTIONS(580), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13862,398 +14135,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(739), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(737), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(582), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(580), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(82)] = { - [sym__block_not_section] = STATE(82), - [sym__section4] = STATE(204), - [sym__section5] = STATE(204), - [sym__section6] = STATE(204), - [sym_thematic_break] = STATE(82), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(82), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(82), - [sym_fenced_code_block] = STATE(82), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(82), - [sym_note_definition_fenced_block] = STATE(82), - [sym__blank_line] = STATE(82), - [sym_block_quote] = STATE(82), - [sym_list] = STATE(82), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(82), - [aux_sym__section3_repeat1] = STATE(82), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym__] = ACTIONS(744), - [anon_sym_BQUOTE] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [sym__word] = ACTIONS(747), - [sym__soft_line_ending] = ACTIONS(750), - [sym__block_close] = ACTIONS(753), - [sym__block_quote_start] = ACTIONS(755), - [sym__indented_chunk_start] = ACTIONS(758), - [sym_atx_h1_marker] = ACTIONS(753), - [sym_atx_h2_marker] = ACTIONS(753), - [sym_atx_h3_marker] = ACTIONS(753), - [sym_atx_h4_marker] = ACTIONS(761), - [sym_atx_h5_marker] = ACTIONS(764), - [sym_atx_h6_marker] = ACTIONS(767), - [sym__thematic_break] = ACTIONS(770), - [sym__list_marker_minus] = ACTIONS(773), - [sym__list_marker_plus] = ACTIONS(776), - [sym__list_marker_star] = ACTIONS(779), - [sym__list_marker_parenthesis] = ACTIONS(782), - [sym__list_marker_dot] = ACTIONS(785), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(779), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(782), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(785), - [sym__fenced_code_block_start_backtick] = ACTIONS(788), - [sym__fenced_code_block_start_tilde] = ACTIONS(791), - [sym__blank_line_start] = ACTIONS(794), - [sym_minus_metadata] = ACTIONS(797), - [sym__pipe_table_start] = ACTIONS(800), - [sym__fenced_div_start] = ACTIONS(803), - [sym__fenced_div_end] = ACTIONS(753), - [sym_ref_id_specifier] = ACTIONS(806), - [sym__display_math_state_track_marker] = ACTIONS(747), - [sym__inline_math_state_track_marker] = ACTIONS(747), + [STATE(79)] = { + [sym__block_not_section] = STATE(79), + [sym__section3] = STATE(212), + [sym__section4] = STATE(212), + [sym__section5] = STATE(212), + [sym__section6] = STATE(212), + [sym_thematic_break] = STATE(79), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(79), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(79), + [sym_fenced_code_block] = STATE(79), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(79), + [sym_note_definition_fenced_block] = STATE(79), + [sym__blank_line] = STATE(79), + [sym_block_quote] = STATE(79), + [sym_list] = STATE(79), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(79), + [aux_sym__section2_repeat1] = STATE(79), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(587), + [anon_sym_PERCENT] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(587), + [anon_sym__] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_TILDE] = ACTIONS(587), + [sym__word] = ACTIONS(590), + [sym__soft_line_ending] = ACTIONS(593), + [sym__block_close] = ACTIONS(596), + [sym__block_quote_start] = ACTIONS(598), + [sym__indented_chunk_start] = ACTIONS(601), + [sym_atx_h1_marker] = ACTIONS(596), + [sym_atx_h2_marker] = ACTIONS(596), + [sym_atx_h3_marker] = ACTIONS(604), + [sym_atx_h4_marker] = ACTIONS(607), + [sym_atx_h5_marker] = ACTIONS(610), + [sym_atx_h6_marker] = ACTIONS(613), + [sym__thematic_break] = ACTIONS(616), + [sym__list_marker_minus] = ACTIONS(619), + [sym__list_marker_plus] = ACTIONS(622), + [sym__list_marker_star] = ACTIONS(625), + [sym__list_marker_parenthesis] = ACTIONS(628), + [sym__list_marker_dot] = ACTIONS(631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(619), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(625), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(631), + [sym__list_marker_example] = ACTIONS(634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(634), + [sym__fenced_code_block_start_backtick] = ACTIONS(637), + [sym__fenced_code_block_start_tilde] = ACTIONS(640), + [sym__blank_line_start] = ACTIONS(643), + [sym_minus_metadata] = ACTIONS(646), + [sym__pipe_table_start] = ACTIONS(649), + [sym__fenced_div_start] = ACTIONS(652), + [sym__fenced_div_end] = ACTIONS(596), + [sym_ref_id_specifier] = ACTIONS(655), + [sym__display_math_state_track_marker] = ACTIONS(590), + [sym__inline_math_state_track_marker] = ACTIONS(590), }, - [STATE(83)] = { + [STATE(80)] = { + [sym__block_not_section] = STATE(80), + [sym__section3] = STATE(414), + [sym__section4] = STATE(414), + [sym__section5] = STATE(414), + [sym__section6] = STATE(414), + [sym_thematic_break] = STATE(80), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(80), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(80), + [sym_fenced_code_block] = STATE(80), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(80), + [sym_note_definition_fenced_block] = STATE(80), + [sym__blank_line] = STATE(80), + [sym_block_quote] = STATE(80), + [sym_list] = STATE(80), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(80), + [aux_sym__section2_repeat1] = STATE(80), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(587), + [anon_sym_PERCENT] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(587), + [anon_sym__] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_TILDE] = ACTIONS(587), + [sym__word] = ACTIONS(590), + [sym__soft_line_ending] = ACTIONS(593), + [sym__block_close] = ACTIONS(596), + [sym__block_quote_start] = ACTIONS(658), + [sym__indented_chunk_start] = ACTIONS(661), + [sym_atx_h1_marker] = ACTIONS(596), + [sym_atx_h2_marker] = ACTIONS(596), + [sym_atx_h3_marker] = ACTIONS(664), + [sym_atx_h4_marker] = ACTIONS(667), + [sym_atx_h5_marker] = ACTIONS(670), + [sym_atx_h6_marker] = ACTIONS(673), + [sym__thematic_break] = ACTIONS(676), + [sym__list_marker_minus] = ACTIONS(619), + [sym__list_marker_plus] = ACTIONS(622), + [sym__list_marker_star] = ACTIONS(625), + [sym__list_marker_parenthesis] = ACTIONS(628), + [sym__list_marker_dot] = ACTIONS(631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(619), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(625), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(631), + [sym__list_marker_example] = ACTIONS(634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(634), + [sym__fenced_code_block_start_backtick] = ACTIONS(679), + [sym__fenced_code_block_start_tilde] = ACTIONS(682), + [sym__blank_line_start] = ACTIONS(685), + [sym_minus_metadata] = ACTIONS(688), + [sym__pipe_table_start] = ACTIONS(691), + [sym__fenced_div_start] = ACTIONS(694), + [sym_ref_id_specifier] = ACTIONS(697), + [sym__display_math_state_track_marker] = ACTIONS(590), + [sym__inline_math_state_track_marker] = ACTIONS(590), + }, + [STATE(81)] = { [sym__block_not_section] = STATE(83), - [sym__section4] = STATE(345), - [sym__section5] = STATE(345), - [sym__section6] = STATE(345), + [sym__section3] = STATE(474), + [sym__section4] = STATE(474), + [sym__section5] = STATE(474), + [sym__section6] = STATE(474), [sym_thematic_break] = STATE(83), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), [sym_indented_code_block] = STATE(83), - [sym__indented_chunk] = STATE(137), + [sym__indented_chunk] = STATE(173), [sym_fenced_div_block] = STATE(83), [sym_fenced_code_block] = STATE(83), - [sym_paragraph] = STATE(166), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(83), [sym_note_definition_fenced_block] = STATE(83), [sym__blank_line] = STATE(83), [sym_block_quote] = STATE(83), [sym_list] = STATE(83), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), [sym_pipe_table] = STATE(83), - [aux_sym__section3_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym__] = ACTIONS(744), - [anon_sym_BQUOTE] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [sym__word] = ACTIONS(747), - [sym__soft_line_ending] = ACTIONS(750), - [sym__block_close] = ACTIONS(753), - [sym__block_quote_start] = ACTIONS(809), - [sym__indented_chunk_start] = ACTIONS(812), - [sym_atx_h1_marker] = ACTIONS(753), - [sym_atx_h2_marker] = ACTIONS(753), - [sym_atx_h3_marker] = ACTIONS(753), - [sym_atx_h4_marker] = ACTIONS(815), - [sym_atx_h5_marker] = ACTIONS(818), - [sym_atx_h6_marker] = ACTIONS(821), - [sym__thematic_break] = ACTIONS(824), - [sym__list_marker_minus] = ACTIONS(773), - [sym__list_marker_plus] = ACTIONS(776), - [sym__list_marker_star] = ACTIONS(779), - [sym__list_marker_parenthesis] = ACTIONS(782), - [sym__list_marker_dot] = ACTIONS(785), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(779), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(782), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(785), - [sym__fenced_code_block_start_backtick] = ACTIONS(827), - [sym__fenced_code_block_start_tilde] = ACTIONS(830), - [sym__blank_line_start] = ACTIONS(833), - [sym_minus_metadata] = ACTIONS(836), - [sym__pipe_table_start] = ACTIONS(839), - [sym__fenced_div_start] = ACTIONS(842), - [sym_ref_id_specifier] = ACTIONS(845), - [sym__display_math_state_track_marker] = ACTIONS(747), - [sym__inline_math_state_track_marker] = ACTIONS(747), - }, - [STATE(84)] = { - [sym__block_not_section] = STATE(84), - [sym__section4] = STATE(369), - [sym__section5] = STATE(369), - [sym__section6] = STATE(369), - [sym_thematic_break] = STATE(84), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(84), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(84), - [sym_fenced_code_block] = STATE(84), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(84), - [sym_note_definition_fenced_block] = STATE(84), - [sym__blank_line] = STATE(84), - [sym_block_quote] = STATE(84), - [sym_list] = STATE(84), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(84), - [aux_sym__section3_repeat1] = STATE(84), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(753), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym__] = ACTIONS(744), - [anon_sym_BQUOTE] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [sym__word] = ACTIONS(747), - [sym__soft_line_ending] = ACTIONS(750), - [sym__block_quote_start] = ACTIONS(848), - [sym__indented_chunk_start] = ACTIONS(851), - [sym_atx_h1_marker] = ACTIONS(753), - [sym_atx_h2_marker] = ACTIONS(753), - [sym_atx_h3_marker] = ACTIONS(753), - [sym_atx_h4_marker] = ACTIONS(854), - [sym_atx_h5_marker] = ACTIONS(857), - [sym_atx_h6_marker] = ACTIONS(860), - [sym__thematic_break] = ACTIONS(863), - [sym__list_marker_minus] = ACTIONS(773), - [sym__list_marker_plus] = ACTIONS(776), - [sym__list_marker_star] = ACTIONS(779), - [sym__list_marker_parenthesis] = ACTIONS(782), - [sym__list_marker_dot] = ACTIONS(785), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(779), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(782), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(785), - [sym__fenced_code_block_start_backtick] = ACTIONS(866), - [sym__fenced_code_block_start_tilde] = ACTIONS(869), - [sym__blank_line_start] = ACTIONS(872), - [sym_minus_metadata] = ACTIONS(875), - [sym__pipe_table_start] = ACTIONS(878), - [sym__fenced_div_start] = ACTIONS(881), - [sym_ref_id_specifier] = ACTIONS(884), - [sym__display_math_state_track_marker] = ACTIONS(747), - [sym__inline_math_state_track_marker] = ACTIONS(747), - }, - [STATE(85)] = { - [sym__block_not_section] = STATE(88), - [sym__section4] = STATE(345), - [sym__section5] = STATE(345), - [sym__section6] = STATE(345), - [sym_thematic_break] = STATE(88), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(88), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(88), - [sym_fenced_code_block] = STATE(88), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(88), - [sym_note_definition_fenced_block] = STATE(88), - [sym__blank_line] = STATE(88), - [sym_block_quote] = STATE(88), - [sym_list] = STATE(88), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(88), - [aux_sym__section3_repeat1] = STATE(88), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__section2_repeat1] = STATE(83), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(580), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14288,16 +14475,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(737), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(737), - [sym_atx_h2_marker] = ACTIONS(737), - [sym_atx_h3_marker] = ACTIONS(737), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(580), + [sym_atx_h2_marker] = ACTIONS(580), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14308,64 +14494,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(887), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(700), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(86)] = { - [sym__block_not_section] = STATE(87), - [sym__section4] = STATE(369), - [sym__section5] = STATE(369), - [sym__section6] = STATE(369), - [sym_thematic_break] = STATE(87), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(87), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(87), - [sym_fenced_code_block] = STATE(87), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(87), - [sym_note_definition_fenced_block] = STATE(87), - [sym__blank_line] = STATE(87), - [sym_block_quote] = STATE(87), - [sym_list] = STATE(87), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(87), - [aux_sym__section3_repeat1] = STATE(87), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(737), + [STATE(82)] = { + [sym__block_not_section] = STATE(85), + [sym__section3] = STATE(414), + [sym__section4] = STATE(414), + [sym__section5] = STATE(414), + [sym__section6] = STATE(414), + [sym_thematic_break] = STATE(85), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(85), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(85), + [sym_fenced_code_block] = STATE(85), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(85), + [sym_note_definition_fenced_block] = STATE(85), + [sym__blank_line] = STATE(85), + [sym_block_quote] = STATE(85), + [sym_list] = STATE(85), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(85), + [aux_sym__section2_repeat1] = STATE(85), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14400,15 +14593,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(737), - [sym_atx_h2_marker] = ACTIONS(737), - [sym_atx_h3_marker] = ACTIONS(737), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(580), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(580), + [sym_atx_h2_marker] = ACTIONS(580), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14419,64 +14613,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(889), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(702), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(87)] = { + [STATE(83)] = { [sym__block_not_section] = STATE(84), - [sym__section4] = STATE(369), - [sym__section5] = STATE(369), - [sym__section6] = STATE(369), + [sym__section3] = STATE(474), + [sym__section4] = STATE(474), + [sym__section5] = STATE(474), + [sym__section6] = STATE(474), [sym_thematic_break] = STATE(84), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), [sym_indented_code_block] = STATE(84), - [sym__indented_chunk] = STATE(130), + [sym__indented_chunk] = STATE(173), [sym_fenced_div_block] = STATE(84), [sym_fenced_code_block] = STATE(84), - [sym_paragraph] = STATE(173), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(84), [sym_note_definition_fenced_block] = STATE(84), [sym__blank_line] = STATE(84), [sym_block_quote] = STATE(84), [sym_list] = STATE(84), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), [sym_pipe_table] = STATE(84), - [aux_sym__section3_repeat1] = STATE(84), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(733), + [aux_sym__section2_repeat1] = STATE(84), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(576), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14513,9 +14715,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(733), - [sym_atx_h2_marker] = ACTIONS(733), - [sym_atx_h3_marker] = ACTIONS(733), + [sym_atx_h1_marker] = ACTIONS(576), + [sym_atx_h2_marker] = ACTIONS(576), + [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), [sym_atx_h5_marker] = ACTIONS(25), [sym_atx_h6_marker] = ACTIONS(27), @@ -14530,63 +14732,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(891), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(704), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(88)] = { - [sym__block_not_section] = STATE(83), - [sym__section4] = STATE(345), - [sym__section5] = STATE(345), - [sym__section6] = STATE(345), - [sym_thematic_break] = STATE(83), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(83), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(83), - [sym_fenced_code_block] = STATE(83), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(83), - [sym_note_definition_fenced_block] = STATE(83), - [sym__blank_line] = STATE(83), - [sym_block_quote] = STATE(83), - [sym_list] = STATE(83), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(83), - [aux_sym__section3_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(84)] = { + [sym__block_not_section] = STATE(84), + [sym__section3] = STATE(474), + [sym__section4] = STATE(474), + [sym__section5] = STATE(474), + [sym__section6] = STATE(474), + [sym_thematic_break] = STATE(84), + [sym__atx_heading3] = STATE(92), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(84), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(84), + [sym_fenced_code_block] = STATE(84), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(84), + [sym_note_definition_fenced_block] = STATE(84), + [sym__blank_line] = STATE(84), + [sym_block_quote] = STATE(84), + [sym_list] = STATE(84), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(84), + [aux_sym__section2_repeat1] = STATE(84), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(596), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_DOLLAR] = ACTIONS(587), + [anon_sym_PERCENT] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_DASH] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(587), + [anon_sym_SLASH] = ACTIONS(587), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(587), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(587), + [anon_sym_BSLASH] = ACTIONS(587), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(587), + [anon_sym__] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_TILDE] = ACTIONS(587), + [sym__word] = ACTIONS(590), + [sym__soft_line_ending] = ACTIONS(593), + [sym__block_quote_start] = ACTIONS(706), + [sym__indented_chunk_start] = ACTIONS(709), + [sym_atx_h1_marker] = ACTIONS(596), + [sym_atx_h2_marker] = ACTIONS(596), + [sym_atx_h3_marker] = ACTIONS(712), + [sym_atx_h4_marker] = ACTIONS(715), + [sym_atx_h5_marker] = ACTIONS(718), + [sym_atx_h6_marker] = ACTIONS(721), + [sym__thematic_break] = ACTIONS(724), + [sym__list_marker_minus] = ACTIONS(619), + [sym__list_marker_plus] = ACTIONS(622), + [sym__list_marker_star] = ACTIONS(625), + [sym__list_marker_parenthesis] = ACTIONS(628), + [sym__list_marker_dot] = ACTIONS(631), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(619), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(625), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(631), + [sym__list_marker_example] = ACTIONS(634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(634), + [sym__fenced_code_block_start_backtick] = ACTIONS(727), + [sym__fenced_code_block_start_tilde] = ACTIONS(730), + [sym__blank_line_start] = ACTIONS(733), + [sym_minus_metadata] = ACTIONS(736), + [sym__pipe_table_start] = ACTIONS(739), + [sym__fenced_div_start] = ACTIONS(742), + [sym_ref_id_specifier] = ACTIONS(745), + [sym__display_math_state_track_marker] = ACTIONS(590), + [sym__inline_math_state_track_marker] = ACTIONS(590), + }, + [STATE(85)] = { + [sym__block_not_section] = STATE(80), + [sym__section3] = STATE(414), + [sym__section4] = STATE(414), + [sym__section5] = STATE(414), + [sym__section6] = STATE(414), + [sym_thematic_break] = STATE(80), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(80), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(80), + [sym_fenced_code_block] = STATE(80), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(80), + [sym_note_definition_fenced_block] = STATE(80), + [sym__blank_line] = STATE(80), + [sym_block_quote] = STATE(80), + [sym_list] = STATE(80), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(80), + [aux_sym__section2_repeat1] = STATE(80), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14621,16 +14950,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(733), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(733), - [sym_atx_h2_marker] = ACTIONS(733), - [sym_atx_h3_marker] = ACTIONS(733), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(576), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(576), + [sym_atx_h2_marker] = ACTIONS(576), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14641,61 +14970,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(893), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(748), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(89)] = { - [sym__block_not_section] = STATE(90), - [sym__section5] = STATE(215), - [sym__section6] = STATE(215), - [sym_thematic_break] = STATE(90), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(90), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(90), - [sym_fenced_code_block] = STATE(90), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(90), - [sym_note_definition_fenced_block] = STATE(90), - [sym__blank_line] = STATE(90), - [sym_block_quote] = STATE(90), - [sym_list] = STATE(90), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(90), - [aux_sym__section4_repeat1] = STATE(90), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(86)] = { + [sym__block_not_section] = STATE(88), + [sym__section4] = STATE(214), + [sym__section5] = STATE(214), + [sym__section6] = STATE(214), + [sym_thematic_break] = STATE(88), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(88), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(88), + [sym_fenced_code_block] = STATE(88), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(88), + [sym_note_definition_fenced_block] = STATE(88), + [sym__blank_line] = STATE(88), + [sym_block_quote] = STATE(88), + [sym_list] = STATE(88), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(88), + [aux_sym__section3_repeat1] = STATE(88), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14730,16 +15067,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(895), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(895), - [sym_atx_h2_marker] = ACTIONS(895), - [sym_atx_h3_marker] = ACTIONS(895), - [sym_atx_h4_marker] = ACTIONS(895), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(750), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14750,62 +15087,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(897), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(895), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(752), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(750), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(90)] = { - [sym__block_not_section] = STATE(91), - [sym__section5] = STATE(215), - [sym__section6] = STATE(215), - [sym_thematic_break] = STATE(91), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(91), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(91), - [sym_fenced_code_block] = STATE(91), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(91), - [sym_note_definition_fenced_block] = STATE(91), - [sym__blank_line] = STATE(91), - [sym_block_quote] = STATE(91), - [sym_list] = STATE(91), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(91), - [aux_sym__section4_repeat1] = STATE(91), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(87)] = { + [sym__block_not_section] = STATE(86), + [sym__section4] = STATE(214), + [sym__section5] = STATE(214), + [sym__section6] = STATE(214), + [sym_thematic_break] = STATE(86), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(86), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(86), + [sym_fenced_code_block] = STATE(86), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(86), + [sym_note_definition_fenced_block] = STATE(86), + [sym__blank_line] = STATE(86), + [sym_block_quote] = STATE(86), + [sym_list] = STATE(86), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(86), + [aux_sym__section3_repeat1] = STATE(86), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14840,16 +15185,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(899), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(899), - [sym_atx_h4_marker] = ACTIONS(899), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(754), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(754), + [sym_atx_h2_marker] = ACTIONS(754), + [sym_atx_h3_marker] = ACTIONS(754), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14860,172 +15205,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(901), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(899), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(756), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(754), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(91)] = { - [sym__block_not_section] = STATE(91), - [sym__section5] = STATE(215), - [sym__section6] = STATE(215), - [sym_thematic_break] = STATE(91), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(91), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(91), - [sym_fenced_code_block] = STATE(91), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(91), - [sym_note_definition_fenced_block] = STATE(91), - [sym__blank_line] = STATE(91), - [sym_block_quote] = STATE(91), - [sym_list] = STATE(91), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(91), - [aux_sym__section4_repeat1] = STATE(91), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_BSLASH] = ACTIONS(906), - [anon_sym_RBRACK] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_BQUOTE] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [sym__word] = ACTIONS(909), - [sym__soft_line_ending] = ACTIONS(912), - [sym__block_close] = ACTIONS(915), - [sym__block_quote_start] = ACTIONS(917), - [sym__indented_chunk_start] = ACTIONS(920), - [sym_atx_h1_marker] = ACTIONS(915), - [sym_atx_h2_marker] = ACTIONS(915), - [sym_atx_h3_marker] = ACTIONS(915), - [sym_atx_h4_marker] = ACTIONS(915), - [sym_atx_h5_marker] = ACTIONS(923), - [sym_atx_h6_marker] = ACTIONS(926), - [sym__thematic_break] = ACTIONS(929), - [sym__list_marker_minus] = ACTIONS(932), - [sym__list_marker_plus] = ACTIONS(935), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(941), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(932), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(935), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(947), - [sym__fenced_code_block_start_tilde] = ACTIONS(950), - [sym__blank_line_start] = ACTIONS(953), - [sym_minus_metadata] = ACTIONS(956), - [sym__pipe_table_start] = ACTIONS(959), - [sym__fenced_div_start] = ACTIONS(962), - [sym__fenced_div_end] = ACTIONS(915), - [sym_ref_id_specifier] = ACTIONS(965), - [sym__display_math_state_track_marker] = ACTIONS(909), - [sym__inline_math_state_track_marker] = ACTIONS(909), + [STATE(88)] = { + [sym__block_not_section] = STATE(88), + [sym__section4] = STATE(214), + [sym__section5] = STATE(214), + [sym__section6] = STATE(214), + [sym_thematic_break] = STATE(88), + [sym__atx_heading4] = STATE(95), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(88), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(88), + [sym_fenced_code_block] = STATE(88), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(88), + [sym_note_definition_fenced_block] = STATE(88), + [sym__blank_line] = STATE(88), + [sym_block_quote] = STATE(88), + [sym_list] = STATE(88), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(88), + [aux_sym__section3_repeat1] = STATE(88), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_PERCENT] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym__] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [sym__word] = ACTIONS(764), + [sym__soft_line_ending] = ACTIONS(767), + [sym__block_close] = ACTIONS(770), + [sym__block_quote_start] = ACTIONS(772), + [sym__indented_chunk_start] = ACTIONS(775), + [sym_atx_h1_marker] = ACTIONS(770), + [sym_atx_h2_marker] = ACTIONS(770), + [sym_atx_h3_marker] = ACTIONS(770), + [sym_atx_h4_marker] = ACTIONS(778), + [sym_atx_h5_marker] = ACTIONS(781), + [sym_atx_h6_marker] = ACTIONS(784), + [sym__thematic_break] = ACTIONS(787), + [sym__list_marker_minus] = ACTIONS(790), + [sym__list_marker_plus] = ACTIONS(793), + [sym__list_marker_star] = ACTIONS(796), + [sym__list_marker_parenthesis] = ACTIONS(799), + [sym__list_marker_dot] = ACTIONS(802), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(793), + [sym__list_marker_star_dont_interrupt] = ACTIONS(796), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(799), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(802), + [sym__list_marker_example] = ACTIONS(805), + [sym__list_marker_example_dont_interrupt] = ACTIONS(805), + [sym__fenced_code_block_start_backtick] = ACTIONS(808), + [sym__fenced_code_block_start_tilde] = ACTIONS(811), + [sym__blank_line_start] = ACTIONS(814), + [sym_minus_metadata] = ACTIONS(817), + [sym__pipe_table_start] = ACTIONS(820), + [sym__fenced_div_start] = ACTIONS(823), + [sym__fenced_div_end] = ACTIONS(770), + [sym_ref_id_specifier] = ACTIONS(826), + [sym__display_math_state_track_marker] = ACTIONS(764), + [sym__inline_math_state_track_marker] = ACTIONS(764), }, - [STATE(92)] = { - [sym__block_not_section] = STATE(94), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym_thematic_break] = STATE(94), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(94), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(94), - [sym_fenced_code_block] = STATE(94), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(94), - [sym_note_definition_fenced_block] = STATE(94), - [sym__blank_line] = STATE(94), - [sym_block_quote] = STATE(94), - [sym_list] = STATE(94), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(94), - [aux_sym__section4_repeat1] = STATE(94), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(89)] = { + [sym__block_not_section] = STATE(89), + [sym__section4] = STATE(415), + [sym__section5] = STATE(415), + [sym__section6] = STATE(415), + [sym_thematic_break] = STATE(89), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(89), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(89), + [sym_fenced_code_block] = STATE(89), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(89), + [sym_note_definition_fenced_block] = STATE(89), + [sym__blank_line] = STATE(89), + [sym_block_quote] = STATE(89), + [sym_list] = STATE(89), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(89), + [aux_sym__section3_repeat1] = STATE(89), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_PERCENT] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym__] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [sym__word] = ACTIONS(764), + [sym__soft_line_ending] = ACTIONS(767), + [sym__block_close] = ACTIONS(770), + [sym__block_quote_start] = ACTIONS(829), + [sym__indented_chunk_start] = ACTIONS(832), + [sym_atx_h1_marker] = ACTIONS(770), + [sym_atx_h2_marker] = ACTIONS(770), + [sym_atx_h3_marker] = ACTIONS(770), + [sym_atx_h4_marker] = ACTIONS(835), + [sym_atx_h5_marker] = ACTIONS(838), + [sym_atx_h6_marker] = ACTIONS(841), + [sym__thematic_break] = ACTIONS(844), + [sym__list_marker_minus] = ACTIONS(790), + [sym__list_marker_plus] = ACTIONS(793), + [sym__list_marker_star] = ACTIONS(796), + [sym__list_marker_parenthesis] = ACTIONS(799), + [sym__list_marker_dot] = ACTIONS(802), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(793), + [sym__list_marker_star_dont_interrupt] = ACTIONS(796), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(799), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(802), + [sym__list_marker_example] = ACTIONS(805), + [sym__list_marker_example_dont_interrupt] = ACTIONS(805), + [sym__fenced_code_block_start_backtick] = ACTIONS(847), + [sym__fenced_code_block_start_tilde] = ACTIONS(850), + [sym__blank_line_start] = ACTIONS(853), + [sym_minus_metadata] = ACTIONS(856), + [sym__pipe_table_start] = ACTIONS(859), + [sym__fenced_div_start] = ACTIONS(862), + [sym_ref_id_specifier] = ACTIONS(865), + [sym__display_math_state_track_marker] = ACTIONS(764), + [sym__inline_math_state_track_marker] = ACTIONS(764), + }, + [STATE(90)] = { + [sym__block_not_section] = STATE(89), + [sym__section4] = STATE(415), + [sym__section5] = STATE(415), + [sym__section6] = STATE(415), + [sym_thematic_break] = STATE(89), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(89), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(89), + [sym_fenced_code_block] = STATE(89), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(89), + [sym_note_definition_fenced_block] = STATE(89), + [sym__blank_line] = STATE(89), + [sym_block_quote] = STATE(89), + [sym_list] = STATE(89), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(89), + [aux_sym__section3_repeat1] = STATE(89), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15060,16 +15538,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(895), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(895), - [sym_atx_h2_marker] = ACTIONS(895), - [sym_atx_h3_marker] = ACTIONS(895), - [sym_atx_h4_marker] = ACTIONS(895), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(750), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15080,170 +15558,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(968), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(868), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(93)] = { + [STATE(91)] = { [sym__block_not_section] = STATE(93), - [sym__section5] = STATE(372), - [sym__section6] = STATE(372), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), [sym_thematic_break] = STATE(93), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), [sym_indented_code_block] = STATE(93), - [sym__indented_chunk] = STATE(130), + [sym__indented_chunk] = STATE(173), [sym_fenced_div_block] = STATE(93), [sym_fenced_code_block] = STATE(93), - [sym_paragraph] = STATE(173), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(93), [sym_note_definition_fenced_block] = STATE(93), [sym__blank_line] = STATE(93), [sym_block_quote] = STATE(93), [sym_list] = STATE(93), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), [sym_pipe_table] = STATE(93), - [aux_sym__section4_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(915), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_BSLASH] = ACTIONS(906), - [anon_sym_RBRACK] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_BQUOTE] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [sym__word] = ACTIONS(909), - [sym__soft_line_ending] = ACTIONS(912), - [sym__block_quote_start] = ACTIONS(970), - [sym__indented_chunk_start] = ACTIONS(973), - [sym_atx_h1_marker] = ACTIONS(915), - [sym_atx_h2_marker] = ACTIONS(915), - [sym_atx_h3_marker] = ACTIONS(915), - [sym_atx_h4_marker] = ACTIONS(915), - [sym_atx_h5_marker] = ACTIONS(976), - [sym_atx_h6_marker] = ACTIONS(979), - [sym__thematic_break] = ACTIONS(982), - [sym__list_marker_minus] = ACTIONS(932), - [sym__list_marker_plus] = ACTIONS(935), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(941), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(932), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(935), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(985), - [sym__fenced_code_block_start_tilde] = ACTIONS(988), - [sym__blank_line_start] = ACTIONS(991), - [sym_minus_metadata] = ACTIONS(994), - [sym__pipe_table_start] = ACTIONS(997), - [sym__fenced_div_start] = ACTIONS(1000), - [sym_ref_id_specifier] = ACTIONS(1003), - [sym__display_math_state_track_marker] = ACTIONS(909), - [sym__inline_math_state_track_marker] = ACTIONS(909), - }, - [STATE(94)] = { - [sym__block_not_section] = STATE(96), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym_thematic_break] = STATE(96), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(96), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(96), - [sym_fenced_code_block] = STATE(96), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(96), - [sym_note_definition_fenced_block] = STATE(96), - [sym__blank_line] = STATE(96), - [sym_block_quote] = STATE(96), - [sym_list] = STATE(96), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(96), - [aux_sym__section4_repeat1] = STATE(96), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(750), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15278,16 +15656,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(899), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(899), - [sym_atx_h4_marker] = ACTIONS(899), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(750), + [sym_atx_h2_marker] = ACTIONS(750), + [sym_atx_h3_marker] = ACTIONS(750), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15298,62 +15675,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1006), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(870), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(95)] = { - [sym__block_not_section] = STATE(93), - [sym__section5] = STATE(372), - [sym__section6] = STATE(372), - [sym_thematic_break] = STATE(93), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(93), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(93), - [sym_fenced_code_block] = STATE(93), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(93), - [sym_note_definition_fenced_block] = STATE(93), - [sym__blank_line] = STATE(93), - [sym_block_quote] = STATE(93), - [sym_list] = STATE(93), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(93), - [aux_sym__section4_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(899), + [STATE(92)] = { + [sym__block_not_section] = STATE(91), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), + [sym_thematic_break] = STATE(91), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(91), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(91), + [sym_fenced_code_block] = STATE(91), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(91), + [sym_note_definition_fenced_block] = STATE(91), + [sym__blank_line] = STATE(91), + [sym_block_quote] = STATE(91), + [sym_list] = STATE(91), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(91), + [aux_sym__section3_repeat1] = STATE(91), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(754), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15390,10 +15775,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(899), - [sym_atx_h4_marker] = ACTIONS(899), + [sym_atx_h1_marker] = ACTIONS(754), + [sym_atx_h2_marker] = ACTIONS(754), + [sym_atx_h3_marker] = ACTIONS(754), + [sym_atx_h4_marker] = ACTIONS(23), [sym_atx_h5_marker] = ACTIONS(25), [sym_atx_h6_marker] = ACTIONS(27), [sym__thematic_break] = ACTIONS(29), @@ -15407,171 +15792,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1008), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(872), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(96)] = { - [sym__block_not_section] = STATE(96), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym_thematic_break] = STATE(96), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(96), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(96), - [sym_fenced_code_block] = STATE(96), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(96), - [sym_note_definition_fenced_block] = STATE(96), - [sym__blank_line] = STATE(96), - [sym_block_quote] = STATE(96), - [sym_list] = STATE(96), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(96), - [aux_sym__section4_repeat1] = STATE(96), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_BSLASH] = ACTIONS(906), - [anon_sym_RBRACK] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_BQUOTE] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [sym__word] = ACTIONS(909), - [sym__soft_line_ending] = ACTIONS(912), - [sym__block_close] = ACTIONS(915), - [sym__block_quote_start] = ACTIONS(1010), - [sym__indented_chunk_start] = ACTIONS(1013), - [sym_atx_h1_marker] = ACTIONS(915), - [sym_atx_h2_marker] = ACTIONS(915), - [sym_atx_h3_marker] = ACTIONS(915), - [sym_atx_h4_marker] = ACTIONS(915), - [sym_atx_h5_marker] = ACTIONS(1016), - [sym_atx_h6_marker] = ACTIONS(1019), - [sym__thematic_break] = ACTIONS(1022), - [sym__list_marker_minus] = ACTIONS(932), - [sym__list_marker_plus] = ACTIONS(935), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(941), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(932), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(935), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(1025), - [sym__fenced_code_block_start_tilde] = ACTIONS(1028), - [sym__blank_line_start] = ACTIONS(1031), - [sym_minus_metadata] = ACTIONS(1034), - [sym__pipe_table_start] = ACTIONS(1037), - [sym__fenced_div_start] = ACTIONS(1040), - [sym_ref_id_specifier] = ACTIONS(1043), - [sym__display_math_state_track_marker] = ACTIONS(909), - [sym__inline_math_state_track_marker] = ACTIONS(909), + [STATE(93)] = { + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(343), + [sym__section5] = STATE(343), + [sym__section6] = STATE(343), + [sym_thematic_break] = STATE(93), + [sym__atx_heading4] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(93), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(93), + [sym_fenced_code_block] = STATE(93), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__blank_line] = STATE(93), + [sym_block_quote] = STATE(93), + [sym_list] = STATE(93), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(93), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(770), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_SQUOTE] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(761), + [anon_sym_POUND] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(761), + [anon_sym_PERCENT] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_BSLASH] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(761), + [anon_sym__] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(761), + [sym__word] = ACTIONS(764), + [sym__soft_line_ending] = ACTIONS(767), + [sym__block_quote_start] = ACTIONS(874), + [sym__indented_chunk_start] = ACTIONS(877), + [sym_atx_h1_marker] = ACTIONS(770), + [sym_atx_h2_marker] = ACTIONS(770), + [sym_atx_h3_marker] = ACTIONS(770), + [sym_atx_h4_marker] = ACTIONS(880), + [sym_atx_h5_marker] = ACTIONS(883), + [sym_atx_h6_marker] = ACTIONS(886), + [sym__thematic_break] = ACTIONS(889), + [sym__list_marker_minus] = ACTIONS(790), + [sym__list_marker_plus] = ACTIONS(793), + [sym__list_marker_star] = ACTIONS(796), + [sym__list_marker_parenthesis] = ACTIONS(799), + [sym__list_marker_dot] = ACTIONS(802), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(793), + [sym__list_marker_star_dont_interrupt] = ACTIONS(796), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(799), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(802), + [sym__list_marker_example] = ACTIONS(805), + [sym__list_marker_example_dont_interrupt] = ACTIONS(805), + [sym__fenced_code_block_start_backtick] = ACTIONS(892), + [sym__fenced_code_block_start_tilde] = ACTIONS(895), + [sym__blank_line_start] = ACTIONS(898), + [sym_minus_metadata] = ACTIONS(901), + [sym__pipe_table_start] = ACTIONS(904), + [sym__fenced_div_start] = ACTIONS(907), + [sym_ref_id_specifier] = ACTIONS(910), + [sym__display_math_state_track_marker] = ACTIONS(764), + [sym__inline_math_state_track_marker] = ACTIONS(764), }, - [STATE(97)] = { - [sym__block_not_section] = STATE(95), - [sym__section5] = STATE(372), - [sym__section6] = STATE(372), - [sym_thematic_break] = STATE(95), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(95), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(95), - [sym_fenced_code_block] = STATE(95), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(95), - [sym_note_definition_fenced_block] = STATE(95), - [sym__blank_line] = STATE(95), - [sym_block_quote] = STATE(95), - [sym_list] = STATE(95), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(95), - [aux_sym__section4_repeat1] = STATE(95), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(895), + [STATE(94)] = { + [sym__block_not_section] = STATE(90), + [sym__section4] = STATE(415), + [sym__section5] = STATE(415), + [sym__section6] = STATE(415), + [sym_thematic_break] = STATE(90), + [sym__atx_heading4] = STATE(102), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(90), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(90), + [sym_fenced_code_block] = STATE(90), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(90), + [sym_note_definition_fenced_block] = STATE(90), + [sym__blank_line] = STATE(90), + [sym_block_quote] = STATE(90), + [sym_list] = STATE(90), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(90), + [aux_sym__section3_repeat1] = STATE(90), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15606,15 +16006,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(895), - [sym_atx_h2_marker] = ACTIONS(895), - [sym_atx_h3_marker] = ACTIONS(895), - [sym_atx_h4_marker] = ACTIONS(895), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(754), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(754), + [sym_atx_h2_marker] = ACTIONS(754), + [sym_atx_h3_marker] = ACTIONS(754), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15625,167 +16026,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1046), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(913), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(98)] = { - [sym__block_not_section] = STATE(98), - [sym__section6] = STATE(219), - [sym_thematic_break] = STATE(98), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(98), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(98), - [sym_fenced_code_block] = STATE(98), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(98), - [sym_note_definition_fenced_block] = STATE(98), - [sym__blank_line] = STATE(98), - [sym_block_quote] = STATE(98), - [sym_list] = STATE(98), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(98), - [aux_sym__section5_repeat1] = STATE(98), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [sym__word] = ACTIONS(1054), - [sym__soft_line_ending] = ACTIONS(1057), - [sym__block_close] = ACTIONS(1060), - [sym__block_quote_start] = ACTIONS(1062), - [sym__indented_chunk_start] = ACTIONS(1065), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(1060), - [sym_atx_h5_marker] = ACTIONS(1060), - [sym_atx_h6_marker] = ACTIONS(1068), - [sym__thematic_break] = ACTIONS(1071), - [sym__list_marker_minus] = ACTIONS(1074), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1080), - [sym__list_marker_parenthesis] = ACTIONS(1083), - [sym__list_marker_dot] = ACTIONS(1086), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1074), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1086), - [sym__fenced_code_block_start_backtick] = ACTIONS(1089), - [sym__fenced_code_block_start_tilde] = ACTIONS(1092), - [sym__blank_line_start] = ACTIONS(1095), - [sym_minus_metadata] = ACTIONS(1098), - [sym__pipe_table_start] = ACTIONS(1101), - [sym__fenced_div_start] = ACTIONS(1104), - [sym__fenced_div_end] = ACTIONS(1060), - [sym_ref_id_specifier] = ACTIONS(1107), - [sym__display_math_state_track_marker] = ACTIONS(1054), - [sym__inline_math_state_track_marker] = ACTIONS(1054), - }, - [STATE(99)] = { - [sym__block_not_section] = STATE(98), - [sym__section6] = STATE(219), - [sym_thematic_break] = STATE(98), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(98), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(98), - [sym_fenced_code_block] = STATE(98), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(98), - [sym_note_definition_fenced_block] = STATE(98), - [sym__blank_line] = STATE(98), - [sym_block_quote] = STATE(98), - [sym_list] = STATE(98), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(98), - [aux_sym__section5_repeat1] = STATE(98), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(95)] = { + [sym__block_not_section] = STATE(96), + [sym__section5] = STATE(217), + [sym__section6] = STATE(217), + [sym_thematic_break] = STATE(96), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(96), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(96), + [sym_fenced_code_block] = STATE(96), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(96), + [sym_note_definition_fenced_block] = STATE(96), + [sym__blank_line] = STATE(96), + [sym_block_quote] = STATE(96), + [sym_list] = STATE(96), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(96), + [aux_sym__section4_repeat1] = STATE(96), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15820,16 +16121,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1110), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1110), - [sym_atx_h2_marker] = ACTIONS(1110), - [sym_atx_h3_marker] = ACTIONS(1110), - [sym_atx_h4_marker] = ACTIONS(1110), - [sym_atx_h5_marker] = ACTIONS(1110), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(915), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(915), + [sym_atx_h2_marker] = ACTIONS(915), + [sym_atx_h3_marker] = ACTIONS(915), + [sym_atx_h4_marker] = ACTIONS(915), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15840,60 +16141,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1112), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1110), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(917), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(915), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(100)] = { - [sym__block_not_section] = STATE(99), - [sym__section6] = STATE(219), - [sym_thematic_break] = STATE(99), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(99), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(99), - [sym_fenced_code_block] = STATE(99), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(99), - [sym_note_definition_fenced_block] = STATE(99), - [sym__blank_line] = STATE(99), - [sym_block_quote] = STATE(99), - [sym_list] = STATE(99), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(99), - [aux_sym__section5_repeat1] = STATE(99), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(96)] = { + [sym__block_not_section] = STATE(97), + [sym__section5] = STATE(217), + [sym__section6] = STATE(217), + [sym_thematic_break] = STATE(97), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(97), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(97), + [sym_fenced_code_block] = STATE(97), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(97), + [sym_note_definition_fenced_block] = STATE(97), + [sym__blank_line] = STATE(97), + [sym_block_quote] = STATE(97), + [sym_list] = STATE(97), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(97), + [aux_sym__section4_repeat1] = STATE(97), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15928,16 +16237,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1114), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1114), - [sym_atx_h5_marker] = ACTIONS(1114), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(919), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(919), + [sym_atx_h2_marker] = ACTIONS(919), + [sym_atx_h3_marker] = ACTIONS(919), + [sym_atx_h4_marker] = ACTIONS(919), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15948,61 +16257,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1116), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1114), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(921), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(919), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(101)] = { - [sym__block_not_section] = STATE(104), - [sym__section6] = STATE(373), - [sym_thematic_break] = STATE(104), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(104), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(104), - [sym_fenced_code_block] = STATE(104), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(104), - [sym_note_definition_fenced_block] = STATE(104), - [sym__blank_line] = STATE(104), - [sym_block_quote] = STATE(104), - [sym_list] = STATE(104), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(104), - [aux_sym__section5_repeat1] = STATE(104), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1110), + [STATE(97)] = { + [sym__block_not_section] = STATE(97), + [sym__section5] = STATE(217), + [sym__section6] = STATE(217), + [sym_thematic_break] = STATE(97), + [sym__atx_heading5] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(97), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(97), + [sym_fenced_code_block] = STATE(97), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(97), + [sym_note_definition_fenced_block] = STATE(97), + [sym__blank_line] = STATE(97), + [sym_block_quote] = STATE(97), + [sym_list] = STATE(97), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(97), + [aux_sym__section4_repeat1] = STATE(97), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym__] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [sym__word] = ACTIONS(929), + [sym__soft_line_ending] = ACTIONS(932), + [sym__block_close] = ACTIONS(935), + [sym__block_quote_start] = ACTIONS(937), + [sym__indented_chunk_start] = ACTIONS(940), + [sym_atx_h1_marker] = ACTIONS(935), + [sym_atx_h2_marker] = ACTIONS(935), + [sym_atx_h3_marker] = ACTIONS(935), + [sym_atx_h4_marker] = ACTIONS(935), + [sym_atx_h5_marker] = ACTIONS(943), + [sym_atx_h6_marker] = ACTIONS(946), + [sym__thematic_break] = ACTIONS(949), + [sym__list_marker_minus] = ACTIONS(952), + [sym__list_marker_plus] = ACTIONS(955), + [sym__list_marker_star] = ACTIONS(958), + [sym__list_marker_parenthesis] = ACTIONS(961), + [sym__list_marker_dot] = ACTIONS(964), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(952), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(955), + [sym__list_marker_star_dont_interrupt] = ACTIONS(958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(961), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(964), + [sym__list_marker_example] = ACTIONS(967), + [sym__list_marker_example_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(970), + [sym__fenced_code_block_start_tilde] = ACTIONS(973), + [sym__blank_line_start] = ACTIONS(976), + [sym_minus_metadata] = ACTIONS(979), + [sym__pipe_table_start] = ACTIONS(982), + [sym__fenced_div_start] = ACTIONS(985), + [sym__fenced_div_end] = ACTIONS(935), + [sym_ref_id_specifier] = ACTIONS(988), + [sym__display_math_state_track_marker] = ACTIONS(929), + [sym__inline_math_state_track_marker] = ACTIONS(929), + }, + [STATE(98)] = { + [sym__block_not_section] = STATE(101), + [sym__section5] = STATE(353), + [sym__section6] = STATE(353), + [sym_thematic_break] = STATE(101), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(101), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(101), + [sym_fenced_code_block] = STATE(101), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(101), + [sym_note_definition_fenced_block] = STATE(101), + [sym__blank_line] = STATE(101), + [sym_block_quote] = STATE(101), + [sym_list] = STATE(101), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(101), + [aux_sym__section4_repeat1] = STATE(101), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(919), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16039,11 +16472,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1110), - [sym_atx_h2_marker] = ACTIONS(1110), - [sym_atx_h3_marker] = ACTIONS(1110), - [sym_atx_h4_marker] = ACTIONS(1110), - [sym_atx_h5_marker] = ACTIONS(1110), + [sym_atx_h1_marker] = ACTIONS(919), + [sym_atx_h2_marker] = ACTIONS(919), + [sym_atx_h3_marker] = ACTIONS(919), + [sym_atx_h4_marker] = ACTIONS(919), + [sym_atx_h5_marker] = ACTIONS(25), [sym_atx_h6_marker] = ACTIONS(27), [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), @@ -16056,166 +16489,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1118), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(991), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(102)] = { - [sym__block_not_section] = STATE(102), - [sym__section6] = STATE(349), - [sym_thematic_break] = STATE(102), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(102), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(102), - [sym_fenced_code_block] = STATE(102), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(102), - [sym_note_definition_fenced_block] = STATE(102), - [sym__blank_line] = STATE(102), - [sym_block_quote] = STATE(102), - [sym_list] = STATE(102), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(102), - [aux_sym__section5_repeat1] = STATE(102), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [sym__word] = ACTIONS(1054), - [sym__soft_line_ending] = ACTIONS(1057), - [sym__block_close] = ACTIONS(1060), - [sym__block_quote_start] = ACTIONS(1120), - [sym__indented_chunk_start] = ACTIONS(1123), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(1060), - [sym_atx_h5_marker] = ACTIONS(1060), - [sym_atx_h6_marker] = ACTIONS(1126), - [sym__thematic_break] = ACTIONS(1129), - [sym__list_marker_minus] = ACTIONS(1074), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1080), - [sym__list_marker_parenthesis] = ACTIONS(1083), - [sym__list_marker_dot] = ACTIONS(1086), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1074), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1086), - [sym__fenced_code_block_start_backtick] = ACTIONS(1132), - [sym__fenced_code_block_start_tilde] = ACTIONS(1135), - [sym__blank_line_start] = ACTIONS(1138), - [sym_minus_metadata] = ACTIONS(1141), - [sym__pipe_table_start] = ACTIONS(1144), - [sym__fenced_div_start] = ACTIONS(1147), - [sym_ref_id_specifier] = ACTIONS(1150), - [sym__display_math_state_track_marker] = ACTIONS(1054), - [sym__inline_math_state_track_marker] = ACTIONS(1054), + [STATE(99)] = { + [sym__block_not_section] = STATE(99), + [sym__section5] = STATE(417), + [sym__section6] = STATE(417), + [sym_thematic_break] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(99), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(99), + [sym_fenced_code_block] = STATE(99), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(99), + [sym_note_definition_fenced_block] = STATE(99), + [sym__blank_line] = STATE(99), + [sym_block_quote] = STATE(99), + [sym_list] = STATE(99), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(99), + [aux_sym__section4_repeat1] = STATE(99), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym__] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [sym__word] = ACTIONS(929), + [sym__soft_line_ending] = ACTIONS(932), + [sym__block_close] = ACTIONS(935), + [sym__block_quote_start] = ACTIONS(993), + [sym__indented_chunk_start] = ACTIONS(996), + [sym_atx_h1_marker] = ACTIONS(935), + [sym_atx_h2_marker] = ACTIONS(935), + [sym_atx_h3_marker] = ACTIONS(935), + [sym_atx_h4_marker] = ACTIONS(935), + [sym_atx_h5_marker] = ACTIONS(999), + [sym_atx_h6_marker] = ACTIONS(1002), + [sym__thematic_break] = ACTIONS(1005), + [sym__list_marker_minus] = ACTIONS(952), + [sym__list_marker_plus] = ACTIONS(955), + [sym__list_marker_star] = ACTIONS(958), + [sym__list_marker_parenthesis] = ACTIONS(961), + [sym__list_marker_dot] = ACTIONS(964), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(952), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(955), + [sym__list_marker_star_dont_interrupt] = ACTIONS(958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(961), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(964), + [sym__list_marker_example] = ACTIONS(967), + [sym__list_marker_example_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(1008), + [sym__fenced_code_block_start_tilde] = ACTIONS(1011), + [sym__blank_line_start] = ACTIONS(1014), + [sym_minus_metadata] = ACTIONS(1017), + [sym__pipe_table_start] = ACTIONS(1020), + [sym__fenced_div_start] = ACTIONS(1023), + [sym_ref_id_specifier] = ACTIONS(1026), + [sym__display_math_state_track_marker] = ACTIONS(929), + [sym__inline_math_state_track_marker] = ACTIONS(929), }, - [STATE(103)] = { - [sym__block_not_section] = STATE(106), - [sym__section6] = STATE(349), - [sym_thematic_break] = STATE(106), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(106), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(106), - [sym_fenced_code_block] = STATE(106), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(106), - [sym_note_definition_fenced_block] = STATE(106), - [sym__blank_line] = STATE(106), - [sym_block_quote] = STATE(106), - [sym_list] = STATE(106), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(106), - [aux_sym__section5_repeat1] = STATE(106), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(100)] = { + [sym__block_not_section] = STATE(98), + [sym__section5] = STATE(353), + [sym__section6] = STATE(353), + [sym_thematic_break] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(98), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(98), + [sym_fenced_code_block] = STATE(98), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(98), + [sym_note_definition_fenced_block] = STATE(98), + [sym__blank_line] = STATE(98), + [sym_block_quote] = STATE(98), + [sym_list] = STATE(98), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(98), + [aux_sym__section4_repeat1] = STATE(98), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(915), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16250,16 +16700,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1114), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1114), - [sym_atx_h5_marker] = ACTIONS(1114), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(915), + [sym_atx_h2_marker] = ACTIONS(915), + [sym_atx_h3_marker] = ACTIONS(915), + [sym_atx_h4_marker] = ACTIONS(915), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16270,167 +16719,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1153), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1029), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(104)] = { - [sym__block_not_section] = STATE(104), - [sym__section6] = STATE(373), - [sym_thematic_break] = STATE(104), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(104), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(104), - [sym_fenced_code_block] = STATE(104), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(104), - [sym_note_definition_fenced_block] = STATE(104), - [sym__blank_line] = STATE(104), - [sym_block_quote] = STATE(104), - [sym_list] = STATE(104), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(104), - [aux_sym__section5_repeat1] = STATE(104), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1060), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [sym__word] = ACTIONS(1054), - [sym__soft_line_ending] = ACTIONS(1057), - [sym__block_quote_start] = ACTIONS(1155), - [sym__indented_chunk_start] = ACTIONS(1158), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(1060), - [sym_atx_h5_marker] = ACTIONS(1060), - [sym_atx_h6_marker] = ACTIONS(1161), - [sym__thematic_break] = ACTIONS(1164), - [sym__list_marker_minus] = ACTIONS(1074), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1080), - [sym__list_marker_parenthesis] = ACTIONS(1083), - [sym__list_marker_dot] = ACTIONS(1086), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1074), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1086), - [sym__fenced_code_block_start_backtick] = ACTIONS(1167), - [sym__fenced_code_block_start_tilde] = ACTIONS(1170), - [sym__blank_line_start] = ACTIONS(1173), - [sym_minus_metadata] = ACTIONS(1176), - [sym__pipe_table_start] = ACTIONS(1179), - [sym__fenced_div_start] = ACTIONS(1182), - [sym_ref_id_specifier] = ACTIONS(1185), - [sym__display_math_state_track_marker] = ACTIONS(1054), - [sym__inline_math_state_track_marker] = ACTIONS(1054), - }, - [STATE(105)] = { + [STATE(101)] = { [sym__block_not_section] = STATE(101), - [sym__section6] = STATE(373), + [sym__section5] = STATE(353), + [sym__section6] = STATE(353), [sym_thematic_break] = STATE(101), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), [sym_indented_code_block] = STATE(101), - [sym__indented_chunk] = STATE(130), + [sym__indented_chunk] = STATE(173), [sym_fenced_div_block] = STATE(101), [sym_fenced_code_block] = STATE(101), - [sym_paragraph] = STATE(173), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(101), [sym_note_definition_fenced_block] = STATE(101), [sym__blank_line] = STATE(101), [sym_block_quote] = STATE(101), [sym_list] = STATE(101), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), [sym_pipe_table] = STATE(101), - [aux_sym__section5_repeat1] = STATE(101), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1114), + [aux_sym__section4_repeat1] = STATE(101), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(935), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym__] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [sym__word] = ACTIONS(929), + [sym__soft_line_ending] = ACTIONS(932), + [sym__block_quote_start] = ACTIONS(1031), + [sym__indented_chunk_start] = ACTIONS(1034), + [sym_atx_h1_marker] = ACTIONS(935), + [sym_atx_h2_marker] = ACTIONS(935), + [sym_atx_h3_marker] = ACTIONS(935), + [sym_atx_h4_marker] = ACTIONS(935), + [sym_atx_h5_marker] = ACTIONS(1037), + [sym_atx_h6_marker] = ACTIONS(1040), + [sym__thematic_break] = ACTIONS(1043), + [sym__list_marker_minus] = ACTIONS(952), + [sym__list_marker_plus] = ACTIONS(955), + [sym__list_marker_star] = ACTIONS(958), + [sym__list_marker_parenthesis] = ACTIONS(961), + [sym__list_marker_dot] = ACTIONS(964), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(952), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(955), + [sym__list_marker_star_dont_interrupt] = ACTIONS(958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(961), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(964), + [sym__list_marker_example] = ACTIONS(967), + [sym__list_marker_example_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(1046), + [sym__fenced_code_block_start_tilde] = ACTIONS(1049), + [sym__blank_line_start] = ACTIONS(1052), + [sym_minus_metadata] = ACTIONS(1055), + [sym__pipe_table_start] = ACTIONS(1058), + [sym__fenced_div_start] = ACTIONS(1061), + [sym_ref_id_specifier] = ACTIONS(1064), + [sym__display_math_state_track_marker] = ACTIONS(929), + [sym__inline_math_state_track_marker] = ACTIONS(929), + }, + [STATE(102)] = { + [sym__block_not_section] = STATE(103), + [sym__section5] = STATE(417), + [sym__section6] = STATE(417), + [sym_thematic_break] = STATE(103), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(103), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(103), + [sym_fenced_code_block] = STATE(103), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(103), + [sym_note_definition_fenced_block] = STATE(103), + [sym__blank_line] = STATE(103), + [sym_block_quote] = STATE(103), + [sym_list] = STATE(103), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(103), + [aux_sym__section4_repeat1] = STATE(103), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16465,15 +16929,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1114), - [sym_atx_h5_marker] = ACTIONS(1114), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(915), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(915), + [sym_atx_h2_marker] = ACTIONS(915), + [sym_atx_h3_marker] = ACTIONS(915), + [sym_atx_h4_marker] = ACTIONS(915), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16484,59 +16949,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1188), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1067), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(106)] = { - [sym__block_not_section] = STATE(102), - [sym__section6] = STATE(349), - [sym_thematic_break] = STATE(102), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(102), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(102), - [sym_fenced_code_block] = STATE(102), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(102), - [sym_note_definition_fenced_block] = STATE(102), - [sym__blank_line] = STATE(102), - [sym_block_quote] = STATE(102), - [sym_list] = STATE(102), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(102), - [aux_sym__section5_repeat1] = STATE(102), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(103)] = { + [sym__block_not_section] = STATE(99), + [sym__section5] = STATE(417), + [sym__section6] = STATE(417), + [sym_thematic_break] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(99), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(99), + [sym_fenced_code_block] = STATE(99), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(99), + [sym_note_definition_fenced_block] = STATE(99), + [sym__blank_line] = STATE(99), + [sym_block_quote] = STATE(99), + [sym_list] = STATE(99), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(99), + [aux_sym__section4_repeat1] = STATE(99), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16571,16 +17044,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1110), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1110), - [sym_atx_h2_marker] = ACTIONS(1110), - [sym_atx_h3_marker] = ACTIONS(1110), - [sym_atx_h4_marker] = ACTIONS(1110), - [sym_atx_h5_marker] = ACTIONS(1110), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(919), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(919), + [sym_atx_h2_marker] = ACTIONS(919), + [sym_atx_h3_marker] = ACTIONS(919), + [sym_atx_h4_marker] = ACTIONS(919), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16591,57 +17064,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1190), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1069), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(107)] = { - [sym__block_not_section] = STATE(252), - [sym_thematic_break] = STATE(252), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(252), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(252), - [sym_fenced_code_block] = STATE(252), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(252), - [sym_note_definition_fenced_block] = STATE(252), - [sym__blank_line] = STATE(252), - [sym_block_quote] = STATE(252), - [sym_list] = STATE(252), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(252), - [aux_sym_document_repeat1] = STATE(108), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(104)] = { + [sym__block_not_section] = STATE(106), + [sym__section6] = STATE(228), + [sym_thematic_break] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(106), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(106), + [sym_fenced_code_block] = STATE(106), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(106), + [sym_note_definition_fenced_block] = STATE(106), + [sym__blank_line] = STATE(106), + [sym_block_quote] = STATE(106), + [sym_list] = STATE(106), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(106), + [aux_sym__section5_repeat1] = STATE(106), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16676,16 +17157,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1192), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1192), - [sym_atx_h2_marker] = ACTIONS(1192), - [sym_atx_h3_marker] = ACTIONS(1192), - [sym_atx_h4_marker] = ACTIONS(1192), - [sym_atx_h5_marker] = ACTIONS(1192), - [sym_atx_h6_marker] = ACTIONS(1192), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(1071), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16696,58 +17177,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1194), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1192), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1073), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1071), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(108)] = { - [sym__block_not_section] = STATE(252), - [sym_thematic_break] = STATE(252), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(252), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(252), - [sym_fenced_code_block] = STATE(252), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(252), - [sym_note_definition_fenced_block] = STATE(252), - [sym__blank_line] = STATE(252), - [sym_block_quote] = STATE(252), - [sym_list] = STATE(252), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(252), - [aux_sym_document_repeat1] = STATE(109), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(105)] = { + [sym__block_not_section] = STATE(105), + [sym__section6] = STATE(228), + [sym_thematic_break] = STATE(105), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(105), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(105), + [sym_fenced_code_block] = STATE(105), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(105), + [sym_note_definition_fenced_block] = STATE(105), + [sym__blank_line] = STATE(105), + [sym_block_quote] = STATE(105), + [sym_list] = STATE(105), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(105), + [aux_sym__section5_repeat1] = STATE(105), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym__] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [sym__word] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1084), + [sym__block_close] = ACTIONS(1087), + [sym__block_quote_start] = ACTIONS(1089), + [sym__indented_chunk_start] = ACTIONS(1092), + [sym_atx_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), + [sym_atx_h6_marker] = ACTIONS(1095), + [sym__thematic_break] = ACTIONS(1098), + [sym__list_marker_minus] = ACTIONS(1101), + [sym__list_marker_plus] = ACTIONS(1104), + [sym__list_marker_star] = ACTIONS(1107), + [sym__list_marker_parenthesis] = ACTIONS(1110), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1110), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_example] = ACTIONS(1116), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1116), + [sym__fenced_code_block_start_backtick] = ACTIONS(1119), + [sym__fenced_code_block_start_tilde] = ACTIONS(1122), + [sym__blank_line_start] = ACTIONS(1125), + [sym_minus_metadata] = ACTIONS(1128), + [sym__pipe_table_start] = ACTIONS(1131), + [sym__fenced_div_start] = ACTIONS(1134), + [sym__fenced_div_end] = ACTIONS(1087), + [sym_ref_id_specifier] = ACTIONS(1137), + [sym__display_math_state_track_marker] = ACTIONS(1081), + [sym__inline_math_state_track_marker] = ACTIONS(1081), + }, + [STATE(106)] = { + [sym__block_not_section] = STATE(105), + [sym__section6] = STATE(228), + [sym_thematic_break] = STATE(105), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(105), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(105), + [sym_fenced_code_block] = STATE(105), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(105), + [sym_note_definition_fenced_block] = STATE(105), + [sym__blank_line] = STATE(105), + [sym_block_quote] = STATE(105), + [sym_list] = STATE(105), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(105), + [aux_sym__section5_repeat1] = STATE(105), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16782,16 +17385,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1196), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1196), - [sym_atx_h2_marker] = ACTIONS(1196), - [sym_atx_h3_marker] = ACTIONS(1196), - [sym_atx_h4_marker] = ACTIONS(1196), - [sym_atx_h5_marker] = ACTIONS(1196), - [sym_atx_h6_marker] = ACTIONS(1196), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(1140), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1140), + [sym_atx_h2_marker] = ACTIONS(1140), + [sym_atx_h3_marker] = ACTIONS(1140), + [sym_atx_h4_marker] = ACTIONS(1140), + [sym_atx_h5_marker] = ACTIONS(1140), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16802,269 +17405,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1194), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1196), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1142), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1140), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(109)] = { - [sym__block_not_section] = STATE(252), - [sym_thematic_break] = STATE(252), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(252), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(252), - [sym_fenced_code_block] = STATE(252), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(252), - [sym_note_definition_fenced_block] = STATE(252), - [sym__blank_line] = STATE(252), - [sym_block_quote] = STATE(252), - [sym_list] = STATE(252), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(252), - [aux_sym_document_repeat1] = STATE(109), - [aux_sym_paragraph_repeat1] = STATE(528), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym__] = ACTIONS(1201), - [anon_sym_BQUOTE] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [sym__word] = ACTIONS(1204), - [sym__soft_line_ending] = ACTIONS(1207), - [sym__block_close] = ACTIONS(1210), - [sym__block_quote_start] = ACTIONS(1212), - [sym__indented_chunk_start] = ACTIONS(1215), - [sym_atx_h1_marker] = ACTIONS(1210), - [sym_atx_h2_marker] = ACTIONS(1210), - [sym_atx_h3_marker] = ACTIONS(1210), - [sym_atx_h4_marker] = ACTIONS(1210), - [sym_atx_h5_marker] = ACTIONS(1210), - [sym_atx_h6_marker] = ACTIONS(1210), - [sym__thematic_break] = ACTIONS(1218), - [sym__list_marker_minus] = ACTIONS(1221), - [sym__list_marker_plus] = ACTIONS(1224), - [sym__list_marker_star] = ACTIONS(1227), - [sym__list_marker_parenthesis] = ACTIONS(1230), - [sym__list_marker_dot] = ACTIONS(1233), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1227), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), - [sym__fenced_code_block_start_backtick] = ACTIONS(1236), - [sym__fenced_code_block_start_tilde] = ACTIONS(1239), - [sym__blank_line_start] = ACTIONS(1242), - [sym_minus_metadata] = ACTIONS(1245), - [sym__pipe_table_start] = ACTIONS(1248), - [sym__fenced_div_start] = ACTIONS(1251), - [sym__fenced_div_end] = ACTIONS(1210), - [sym_ref_id_specifier] = ACTIONS(1254), - [sym__display_math_state_track_marker] = ACTIONS(1204), - [sym__inline_math_state_track_marker] = ACTIONS(1204), - }, - [STATE(110)] = { - [sym__block_not_section] = STATE(348), - [sym_thematic_break] = STATE(348), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(348), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(348), - [sym_fenced_code_block] = STATE(348), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(348), - [sym_note_definition_fenced_block] = STATE(348), - [sym__blank_line] = STATE(348), - [sym_block_quote] = STATE(348), - [sym_list] = STATE(348), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(348), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1210), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym__] = ACTIONS(1201), - [anon_sym_BQUOTE] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [sym__word] = ACTIONS(1204), - [sym__soft_line_ending] = ACTIONS(1207), - [sym__block_quote_start] = ACTIONS(1257), - [sym__indented_chunk_start] = ACTIONS(1260), - [sym_atx_h1_marker] = ACTIONS(1210), - [sym_atx_h2_marker] = ACTIONS(1210), - [sym_atx_h3_marker] = ACTIONS(1210), - [sym_atx_h4_marker] = ACTIONS(1210), - [sym_atx_h5_marker] = ACTIONS(1210), - [sym_atx_h6_marker] = ACTIONS(1210), - [sym__thematic_break] = ACTIONS(1263), - [sym__list_marker_minus] = ACTIONS(1221), - [sym__list_marker_plus] = ACTIONS(1224), - [sym__list_marker_star] = ACTIONS(1227), - [sym__list_marker_parenthesis] = ACTIONS(1230), - [sym__list_marker_dot] = ACTIONS(1233), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1227), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), - [sym__fenced_code_block_start_backtick] = ACTIONS(1266), - [sym__fenced_code_block_start_tilde] = ACTIONS(1269), - [sym__blank_line_start] = ACTIONS(1272), - [sym_minus_metadata] = ACTIONS(1275), - [sym__pipe_table_start] = ACTIONS(1278), - [sym__fenced_div_start] = ACTIONS(1281), - [sym_ref_id_specifier] = ACTIONS(1284), - [sym__display_math_state_track_marker] = ACTIONS(1204), - [sym__inline_math_state_track_marker] = ACTIONS(1204), - }, - [STATE(111)] = { - [sym__block_not_section] = STATE(326), - [sym_thematic_break] = STATE(326), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(326), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(326), - [sym_fenced_code_block] = STATE(326), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(326), - [sym_note_definition_fenced_block] = STATE(326), - [sym__blank_line] = STATE(326), - [sym_block_quote] = STATE(326), - [sym_list] = STATE(326), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(326), - [aux_sym_document_repeat1] = STATE(115), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(107)] = { + [sym__block_not_section] = STATE(108), + [sym__section6] = STATE(419), + [sym_thematic_break] = STATE(108), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(108), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(108), + [sym_fenced_code_block] = STATE(108), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(108), + [sym_note_definition_fenced_block] = STATE(108), + [sym__blank_line] = STATE(108), + [sym_block_quote] = STATE(108), + [sym_list] = STATE(108), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(108), + [aux_sym__section5_repeat1] = STATE(108), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17099,16 +17499,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1192), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1192), - [sym_atx_h2_marker] = ACTIONS(1192), - [sym_atx_h3_marker] = ACTIONS(1192), - [sym_atx_h4_marker] = ACTIONS(1192), - [sym_atx_h5_marker] = ACTIONS(1192), - [sym_atx_h6_marker] = ACTIONS(1192), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(1140), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1140), + [sym_atx_h2_marker] = ACTIONS(1140), + [sym_atx_h3_marker] = ACTIONS(1140), + [sym_atx_h4_marker] = ACTIONS(1140), + [sym_atx_h5_marker] = ACTIONS(1140), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -17119,163 +17519,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1287), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1144), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(112)] = { - [sym__block_not_section] = STATE(326), - [sym_thematic_break] = STATE(326), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(326), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(326), - [sym_fenced_code_block] = STATE(326), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(326), - [sym_note_definition_fenced_block] = STATE(326), - [sym__blank_line] = STATE(326), - [sym_block_quote] = STATE(326), - [sym_list] = STATE(326), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(326), - [aux_sym_document_repeat1] = STATE(112), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym__] = ACTIONS(1201), - [anon_sym_BQUOTE] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [sym__word] = ACTIONS(1204), - [sym__soft_line_ending] = ACTIONS(1207), - [sym__block_close] = ACTIONS(1210), - [sym__block_quote_start] = ACTIONS(1289), - [sym__indented_chunk_start] = ACTIONS(1292), - [sym_atx_h1_marker] = ACTIONS(1210), - [sym_atx_h2_marker] = ACTIONS(1210), - [sym_atx_h3_marker] = ACTIONS(1210), - [sym_atx_h4_marker] = ACTIONS(1210), - [sym_atx_h5_marker] = ACTIONS(1210), - [sym_atx_h6_marker] = ACTIONS(1210), - [sym__thematic_break] = ACTIONS(1295), - [sym__list_marker_minus] = ACTIONS(1221), - [sym__list_marker_plus] = ACTIONS(1224), - [sym__list_marker_star] = ACTIONS(1227), - [sym__list_marker_parenthesis] = ACTIONS(1230), - [sym__list_marker_dot] = ACTIONS(1233), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1227), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), - [sym__fenced_code_block_start_backtick] = ACTIONS(1298), - [sym__fenced_code_block_start_tilde] = ACTIONS(1301), - [sym__blank_line_start] = ACTIONS(1304), - [sym_minus_metadata] = ACTIONS(1307), - [sym__pipe_table_start] = ACTIONS(1310), - [sym__fenced_div_start] = ACTIONS(1313), - [sym_ref_id_specifier] = ACTIONS(1316), - [sym__display_math_state_track_marker] = ACTIONS(1204), - [sym__inline_math_state_track_marker] = ACTIONS(1204), + [STATE(108)] = { + [sym__block_not_section] = STATE(108), + [sym__section6] = STATE(419), + [sym_thematic_break] = STATE(108), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(108), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(108), + [sym_fenced_code_block] = STATE(108), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(108), + [sym_note_definition_fenced_block] = STATE(108), + [sym__blank_line] = STATE(108), + [sym_block_quote] = STATE(108), + [sym_list] = STATE(108), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(108), + [aux_sym__section5_repeat1] = STATE(108), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym__] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [sym__word] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1084), + [sym__block_close] = ACTIONS(1087), + [sym__block_quote_start] = ACTIONS(1146), + [sym__indented_chunk_start] = ACTIONS(1149), + [sym_atx_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), + [sym_atx_h6_marker] = ACTIONS(1152), + [sym__thematic_break] = ACTIONS(1155), + [sym__list_marker_minus] = ACTIONS(1101), + [sym__list_marker_plus] = ACTIONS(1104), + [sym__list_marker_star] = ACTIONS(1107), + [sym__list_marker_parenthesis] = ACTIONS(1110), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1110), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_example] = ACTIONS(1116), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1116), + [sym__fenced_code_block_start_backtick] = ACTIONS(1158), + [sym__fenced_code_block_start_tilde] = ACTIONS(1161), + [sym__blank_line_start] = ACTIONS(1164), + [sym_minus_metadata] = ACTIONS(1167), + [sym__pipe_table_start] = ACTIONS(1170), + [sym__fenced_div_start] = ACTIONS(1173), + [sym_ref_id_specifier] = ACTIONS(1176), + [sym__display_math_state_track_marker] = ACTIONS(1081), + [sym__inline_math_state_track_marker] = ACTIONS(1081), }, - [STATE(113)] = { - [sym__block_not_section] = STATE(348), - [sym_thematic_break] = STATE(348), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(348), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(348), - [sym_fenced_code_block] = STATE(348), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(348), - [sym_note_definition_fenced_block] = STATE(348), - [sym__blank_line] = STATE(348), - [sym_block_quote] = STATE(348), - [sym_list] = STATE(348), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(348), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1196), + [STATE(109)] = { + [sym__block_not_section] = STATE(112), + [sym__section6] = STATE(355), + [sym_thematic_break] = STATE(112), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(112), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(112), + [sym_fenced_code_block] = STATE(112), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(112), + [sym_note_definition_fenced_block] = STATE(112), + [sym__blank_line] = STATE(112), + [sym_block_quote] = STATE(112), + [sym_list] = STATE(112), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(112), + [aux_sym__section5_repeat1] = STATE(112), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1071), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17312,12 +17728,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1196), - [sym_atx_h2_marker] = ACTIONS(1196), - [sym_atx_h3_marker] = ACTIONS(1196), - [sym_atx_h4_marker] = ACTIONS(1196), - [sym_atx_h5_marker] = ACTIONS(1196), - [sym_atx_h6_marker] = ACTIONS(1196), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(27), [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), @@ -17329,58 +17745,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1179), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(114)] = { - [sym__block_not_section] = STATE(348), - [sym_thematic_break] = STATE(348), - [sym__setext_heading1] = STATE(386), - [sym__setext_heading2] = STATE(388), - [sym_indented_code_block] = STATE(348), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(348), - [sym_fenced_code_block] = STATE(348), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(348), - [sym_note_definition_fenced_block] = STATE(348), - [sym__blank_line] = STATE(348), - [sym_block_quote] = STATE(348), - [sym_list] = STATE(348), - [sym__list_plus] = STATE(415), - [sym__list_minus] = STATE(415), - [sym__list_star] = STATE(415), - [sym__list_dot] = STATE(415), - [sym__list_parenthesis] = STATE(415), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(348), - [aux_sym_document_repeat1] = STATE(113), - [aux_sym_paragraph_repeat1] = STATE(531), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1192), + [STATE(110)] = { + [sym__block_not_section] = STATE(110), + [sym__section6] = STATE(355), + [sym_thematic_break] = STATE(110), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(110), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(110), + [sym_fenced_code_block] = STATE(110), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(110), + [sym_note_definition_fenced_block] = STATE(110), + [sym__blank_line] = STATE(110), + [sym_block_quote] = STATE(110), + [sym_list] = STATE(110), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(110), + [aux_sym__section5_repeat1] = STATE(110), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1087), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym__] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [sym__word] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1084), + [sym__block_quote_start] = ACTIONS(1181), + [sym__indented_chunk_start] = ACTIONS(1184), + [sym_atx_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), + [sym_atx_h6_marker] = ACTIONS(1187), + [sym__thematic_break] = ACTIONS(1190), + [sym__list_marker_minus] = ACTIONS(1101), + [sym__list_marker_plus] = ACTIONS(1104), + [sym__list_marker_star] = ACTIONS(1107), + [sym__list_marker_parenthesis] = ACTIONS(1110), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1110), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_example] = ACTIONS(1116), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1116), + [sym__fenced_code_block_start_backtick] = ACTIONS(1193), + [sym__fenced_code_block_start_tilde] = ACTIONS(1196), + [sym__blank_line_start] = ACTIONS(1199), + [sym_minus_metadata] = ACTIONS(1202), + [sym__pipe_table_start] = ACTIONS(1205), + [sym__fenced_div_start] = ACTIONS(1208), + [sym_ref_id_specifier] = ACTIONS(1211), + [sym__display_math_state_track_marker] = ACTIONS(1081), + [sym__inline_math_state_track_marker] = ACTIONS(1081), + }, + [STATE(111)] = { + [sym__block_not_section] = STATE(107), + [sym__section6] = STATE(419), + [sym_thematic_break] = STATE(107), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(107), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(107), + [sym_fenced_code_block] = STATE(107), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(107), + [sym_note_definition_fenced_block] = STATE(107), + [sym__blank_line] = STATE(107), + [sym_block_quote] = STATE(107), + [sym_list] = STATE(107), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(107), + [aux_sym__section5_repeat1] = STATE(107), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17415,15 +17951,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1192), - [sym_atx_h2_marker] = ACTIONS(1192), - [sym_atx_h3_marker] = ACTIONS(1192), - [sym_atx_h4_marker] = ACTIONS(1192), - [sym_atx_h5_marker] = ACTIONS(1192), - [sym_atx_h6_marker] = ACTIONS(1192), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(1071), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -17434,57 +17971,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1214), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(115)] = { - [sym__block_not_section] = STATE(326), - [sym_thematic_break] = STATE(326), - [sym__setext_heading1] = STATE(330), - [sym__setext_heading2] = STATE(331), - [sym_indented_code_block] = STATE(326), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(326), - [sym_fenced_code_block] = STATE(326), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(326), - [sym_note_definition_fenced_block] = STATE(326), - [sym__blank_line] = STATE(326), - [sym_block_quote] = STATE(326), - [sym_list] = STATE(326), - [sym__list_plus] = STATE(332), - [sym__list_minus] = STATE(332), - [sym__list_star] = STATE(332), - [sym__list_dot] = STATE(332), - [sym__list_parenthesis] = STATE(332), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(616), - [sym__line] = STATE(616), - [sym__whitespace] = STATE(555), - [sym_pipe_table] = STATE(326), - [aux_sym_document_repeat1] = STATE(112), - [aux_sym_paragraph_repeat1] = STATE(521), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(112)] = { + [sym__block_not_section] = STATE(110), + [sym__section6] = STATE(355), + [sym_thematic_break] = STATE(110), + [sym__atx_heading6] = STATE(116), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(110), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(110), + [sym_fenced_code_block] = STATE(110), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(110), + [sym_note_definition_fenced_block] = STATE(110), + [sym__blank_line] = STATE(110), + [sym_block_quote] = STATE(110), + [sym_list] = STATE(110), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(110), + [aux_sym__section5_repeat1] = STATE(110), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1140), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17519,16 +18065,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1196), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1196), - [sym_atx_h2_marker] = ACTIONS(1196), - [sym_atx_h3_marker] = ACTIONS(1196), - [sym_atx_h4_marker] = ACTIONS(1196), - [sym_atx_h5_marker] = ACTIONS(1196), - [sym_atx_h6_marker] = ACTIONS(1196), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1140), + [sym_atx_h2_marker] = ACTIONS(1140), + [sym_atx_h3_marker] = ACTIONS(1140), + [sym_atx_h4_marker] = ACTIONS(1140), + [sym_atx_h5_marker] = ACTIONS(1140), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -17539,1939 +18084,1736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1287), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1216), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(116)] = { + [STATE(113)] = { + [sym__block_not_section] = STATE(315), + [sym_thematic_break] = STATE(315), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(315), [sym__indented_chunk] = STATE(129), - [sym__blank_line] = STATE(129), - [aux_sym_indented_code_block_repeat1] = STATE(129), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym__] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [sym__word] = ACTIONS(1319), - [sym__soft_line_ending] = ACTIONS(1319), - [sym__block_close] = ACTIONS(1319), - [sym__block_quote_start] = ACTIONS(1319), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1319), - [sym_atx_h2_marker] = ACTIONS(1319), - [sym_atx_h3_marker] = ACTIONS(1319), - [sym_atx_h4_marker] = ACTIONS(1319), - [sym_atx_h5_marker] = ACTIONS(1319), - [sym_atx_h6_marker] = ACTIONS(1319), - [sym__thematic_break] = ACTIONS(1319), - [sym__list_marker_minus] = ACTIONS(1319), - [sym__list_marker_plus] = ACTIONS(1319), - [sym__list_marker_star] = ACTIONS(1319), - [sym__list_marker_parenthesis] = ACTIONS(1319), - [sym__list_marker_dot] = ACTIONS(1319), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1319), - [sym__fenced_code_block_start_backtick] = ACTIONS(1319), - [sym__fenced_code_block_start_tilde] = ACTIONS(1319), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1319), - [sym__pipe_table_start] = ACTIONS(1319), - [sym__fenced_div_start] = ACTIONS(1319), - [sym__fenced_div_end] = ACTIONS(1319), - [sym_ref_id_specifier] = ACTIONS(1319), - [sym__display_math_state_track_marker] = ACTIONS(1319), - [sym__inline_math_state_track_marker] = ACTIONS(1319), - }, - [STATE(117)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym__block_close] = ACTIONS(1321), - [sym_block_continuation] = ACTIONS(1323), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym_setext_h1_underline] = ACTIONS(1321), - [sym_setext_h2_underline] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym__fenced_div_end] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), - }, - [STATE(118)] = { - [sym__indented_chunk] = STATE(116), - [sym__blank_line] = STATE(116), - [aux_sym_indented_code_block_repeat1] = STATE(116), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1325), - [anon_sym_RBRACK] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym__] = ACTIONS(1325), - [anon_sym_BQUOTE] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [sym__word] = ACTIONS(1325), - [sym__soft_line_ending] = ACTIONS(1325), - [sym__block_close] = ACTIONS(1325), - [sym__block_quote_start] = ACTIONS(1325), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1325), - [sym_atx_h2_marker] = ACTIONS(1325), - [sym_atx_h3_marker] = ACTIONS(1325), - [sym_atx_h4_marker] = ACTIONS(1325), - [sym_atx_h5_marker] = ACTIONS(1325), - [sym_atx_h6_marker] = ACTIONS(1325), - [sym__thematic_break] = ACTIONS(1325), - [sym__list_marker_minus] = ACTIONS(1325), - [sym__list_marker_plus] = ACTIONS(1325), - [sym__list_marker_star] = ACTIONS(1325), - [sym__list_marker_parenthesis] = ACTIONS(1325), - [sym__list_marker_dot] = ACTIONS(1325), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1325), - [sym__fenced_code_block_start_backtick] = ACTIONS(1325), - [sym__fenced_code_block_start_tilde] = ACTIONS(1325), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1325), - [sym__pipe_table_start] = ACTIONS(1325), - [sym__fenced_div_start] = ACTIONS(1325), - [sym__fenced_div_end] = ACTIONS(1325), - [sym_ref_id_specifier] = ACTIONS(1325), - [sym__display_math_state_track_marker] = ACTIONS(1325), - [sym__inline_math_state_track_marker] = ACTIONS(1325), - }, - [STATE(119)] = { - [sym_list_marker_plus] = STATE(28), - [sym__list_item_plus] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(124), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym__] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [sym__word] = ACTIONS(1327), - [sym__soft_line_ending] = ACTIONS(1327), - [sym__block_close] = ACTIONS(1327), - [sym__block_quote_start] = ACTIONS(1327), - [sym__indented_chunk_start] = ACTIONS(1327), - [sym_atx_h1_marker] = ACTIONS(1327), - [sym_atx_h2_marker] = ACTIONS(1327), - [sym_atx_h3_marker] = ACTIONS(1327), - [sym_atx_h4_marker] = ACTIONS(1327), - [sym_atx_h5_marker] = ACTIONS(1327), - [sym_atx_h6_marker] = ACTIONS(1327), - [sym__thematic_break] = ACTIONS(1327), - [sym__list_marker_minus] = ACTIONS(1327), - [sym__list_marker_plus] = ACTIONS(33), - [sym__list_marker_star] = ACTIONS(1327), - [sym__list_marker_parenthesis] = ACTIONS(1327), - [sym__list_marker_dot] = ACTIONS(1327), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1327), - [sym__fenced_code_block_start_backtick] = ACTIONS(1327), - [sym__fenced_code_block_start_tilde] = ACTIONS(1327), - [sym__blank_line_start] = ACTIONS(1327), - [sym_minus_metadata] = ACTIONS(1327), - [sym__pipe_table_start] = ACTIONS(1327), - [sym__fenced_div_start] = ACTIONS(1327), - [sym__fenced_div_end] = ACTIONS(1327), - [sym_ref_id_specifier] = ACTIONS(1327), - [sym__display_math_state_track_marker] = ACTIONS(1327), - [sym__inline_math_state_track_marker] = ACTIONS(1327), - }, - [STATE(120)] = { - [sym_list_marker_minus] = STATE(29), - [sym__list_item_minus] = STATE(125), - [aux_sym__list_minus_repeat1] = STATE(125), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1329), - [anon_sym_BQUOTE] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [sym__word] = ACTIONS(1329), - [sym__soft_line_ending] = ACTIONS(1329), - [sym__block_close] = ACTIONS(1329), - [sym__block_quote_start] = ACTIONS(1329), - [sym__indented_chunk_start] = ACTIONS(1329), - [sym_atx_h1_marker] = ACTIONS(1329), - [sym_atx_h2_marker] = ACTIONS(1329), - [sym_atx_h3_marker] = ACTIONS(1329), - [sym_atx_h4_marker] = ACTIONS(1329), - [sym_atx_h5_marker] = ACTIONS(1329), - [sym_atx_h6_marker] = ACTIONS(1329), - [sym__thematic_break] = ACTIONS(1329), - [sym__list_marker_minus] = ACTIONS(31), - [sym__list_marker_plus] = ACTIONS(1329), - [sym__list_marker_star] = ACTIONS(1329), - [sym__list_marker_parenthesis] = ACTIONS(1329), - [sym__list_marker_dot] = ACTIONS(1329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1329), - [sym__fenced_code_block_start_backtick] = ACTIONS(1329), - [sym__fenced_code_block_start_tilde] = ACTIONS(1329), - [sym__blank_line_start] = ACTIONS(1329), - [sym_minus_metadata] = ACTIONS(1329), - [sym__pipe_table_start] = ACTIONS(1329), - [sym__fenced_div_start] = ACTIONS(1329), - [sym__fenced_div_end] = ACTIONS(1329), - [sym_ref_id_specifier] = ACTIONS(1329), - [sym__display_math_state_track_marker] = ACTIONS(1329), - [sym__inline_math_state_track_marker] = ACTIONS(1329), - }, - [STATE(121)] = { - [sym_list_marker_star] = STATE(30), - [sym__list_item_star] = STATE(126), - [aux_sym__list_star_repeat1] = STATE(126), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [sym__word] = ACTIONS(1331), - [sym__soft_line_ending] = ACTIONS(1331), - [sym__block_close] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(1331), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), - [sym__list_marker_star] = ACTIONS(35), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_star_dont_interrupt] = ACTIONS(35), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(1331), - [sym_minus_metadata] = ACTIONS(1331), - [sym__pipe_table_start] = ACTIONS(1331), - [sym__fenced_div_start] = ACTIONS(1331), - [sym__fenced_div_end] = ACTIONS(1331), - [sym_ref_id_specifier] = ACTIONS(1331), - [sym__display_math_state_track_marker] = ACTIONS(1331), - [sym__inline_math_state_track_marker] = ACTIONS(1331), - }, - [STATE(122)] = { - [sym_list_marker_dot] = STATE(31), - [sym__list_item_dot] = STATE(127), - [aux_sym__list_dot_repeat1] = STATE(127), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_AT] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1333), - [anon_sym_BQUOTE] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [sym__word] = ACTIONS(1333), - [sym__soft_line_ending] = ACTIONS(1333), - [sym__block_close] = ACTIONS(1333), - [sym__block_quote_start] = ACTIONS(1333), - [sym__indented_chunk_start] = ACTIONS(1333), - [sym_atx_h1_marker] = ACTIONS(1333), - [sym_atx_h2_marker] = ACTIONS(1333), - [sym_atx_h3_marker] = ACTIONS(1333), - [sym_atx_h4_marker] = ACTIONS(1333), - [sym_atx_h5_marker] = ACTIONS(1333), - [sym_atx_h6_marker] = ACTIONS(1333), - [sym__thematic_break] = ACTIONS(1333), - [sym__list_marker_minus] = ACTIONS(1333), - [sym__list_marker_plus] = ACTIONS(1333), - [sym__list_marker_star] = ACTIONS(1333), - [sym__list_marker_parenthesis] = ACTIONS(1333), + [sym_fenced_div_block] = STATE(315), + [sym_fenced_code_block] = STATE(315), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(315), + [sym_note_definition_fenced_block] = STATE(315), + [sym__blank_line] = STATE(315), + [sym_block_quote] = STATE(315), + [sym_list] = STATE(315), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(315), + [aux_sym_document_repeat1] = STATE(114), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1218), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(75), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), [sym__list_marker_dot] = ACTIONS(39), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(1333), - [sym__fenced_code_block_start_tilde] = ACTIONS(1333), - [sym__blank_line_start] = ACTIONS(1333), - [sym_minus_metadata] = ACTIONS(1333), - [sym__pipe_table_start] = ACTIONS(1333), - [sym__fenced_div_start] = ACTIONS(1333), - [sym__fenced_div_end] = ACTIONS(1333), - [sym_ref_id_specifier] = ACTIONS(1333), - [sym__display_math_state_track_marker] = ACTIONS(1333), - [sym__inline_math_state_track_marker] = ACTIONS(1333), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1220), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1218), + [sym_ref_id_specifier] = ACTIONS(91), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(123)] = { - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_parenthesis] = STATE(128), - [aux_sym__list_parenthesis_repeat1] = STATE(128), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [sym__word] = ACTIONS(1335), - [sym__soft_line_ending] = ACTIONS(1335), - [sym__block_close] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), + [STATE(114)] = { + [sym__block_not_section] = STATE(315), + [sym_thematic_break] = STATE(315), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(315), + [sym__indented_chunk] = STATE(129), + [sym_fenced_div_block] = STATE(315), + [sym_fenced_code_block] = STATE(315), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(315), + [sym_note_definition_fenced_block] = STATE(315), + [sym__blank_line] = STATE(315), + [sym_block_quote] = STATE(315), + [sym_list] = STATE(315), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(315), + [aux_sym_document_repeat1] = STATE(115), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1222), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1222), + [sym_atx_h2_marker] = ACTIONS(1222), + [sym_atx_h3_marker] = ACTIONS(1222), + [sym_atx_h4_marker] = ACTIONS(1222), + [sym_atx_h5_marker] = ACTIONS(1222), + [sym_atx_h6_marker] = ACTIONS(1222), + [sym__thematic_break] = ACTIONS(75), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), [sym__list_marker_parenthesis] = ACTIONS(37), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym_minus_metadata] = ACTIONS(1335), - [sym__pipe_table_start] = ACTIONS(1335), - [sym__fenced_div_start] = ACTIONS(1335), - [sym__fenced_div_end] = ACTIONS(1335), - [sym_ref_id_specifier] = ACTIONS(1335), - [sym__display_math_state_track_marker] = ACTIONS(1335), - [sym__inline_math_state_track_marker] = ACTIONS(1335), - }, - [STATE(124)] = { - [sym_list_marker_plus] = STATE(28), - [sym__list_item_plus] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(124), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1337), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [sym__word] = ACTIONS(1337), - [sym__soft_line_ending] = ACTIONS(1337), - [sym__block_close] = ACTIONS(1337), - [sym__block_quote_start] = ACTIONS(1337), - [sym__indented_chunk_start] = ACTIONS(1337), - [sym_atx_h1_marker] = ACTIONS(1337), - [sym_atx_h2_marker] = ACTIONS(1337), - [sym_atx_h3_marker] = ACTIONS(1337), - [sym_atx_h4_marker] = ACTIONS(1337), - [sym_atx_h5_marker] = ACTIONS(1337), - [sym_atx_h6_marker] = ACTIONS(1337), - [sym__thematic_break] = ACTIONS(1337), - [sym__list_marker_minus] = ACTIONS(1337), - [sym__list_marker_plus] = ACTIONS(1339), - [sym__list_marker_star] = ACTIONS(1337), - [sym__list_marker_parenthesis] = ACTIONS(1337), - [sym__list_marker_dot] = ACTIONS(1337), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1339), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1337), - [sym__fenced_code_block_start_backtick] = ACTIONS(1337), - [sym__fenced_code_block_start_tilde] = ACTIONS(1337), - [sym__blank_line_start] = ACTIONS(1337), - [sym_minus_metadata] = ACTIONS(1337), - [sym__pipe_table_start] = ACTIONS(1337), - [sym__fenced_div_start] = ACTIONS(1337), - [sym__fenced_div_end] = ACTIONS(1337), - [sym_ref_id_specifier] = ACTIONS(1337), - [sym__display_math_state_track_marker] = ACTIONS(1337), - [sym__inline_math_state_track_marker] = ACTIONS(1337), - }, - [STATE(125)] = { - [sym_list_marker_minus] = STATE(29), - [sym__list_item_minus] = STATE(125), - [aux_sym__list_minus_repeat1] = STATE(125), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym__] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [sym__word] = ACTIONS(1342), - [sym__soft_line_ending] = ACTIONS(1342), - [sym__block_close] = ACTIONS(1342), - [sym__block_quote_start] = ACTIONS(1342), - [sym__indented_chunk_start] = ACTIONS(1342), - [sym_atx_h1_marker] = ACTIONS(1342), - [sym_atx_h2_marker] = ACTIONS(1342), - [sym_atx_h3_marker] = ACTIONS(1342), - [sym_atx_h4_marker] = ACTIONS(1342), - [sym_atx_h5_marker] = ACTIONS(1342), - [sym_atx_h6_marker] = ACTIONS(1342), - [sym__thematic_break] = ACTIONS(1342), - [sym__list_marker_minus] = ACTIONS(1344), - [sym__list_marker_plus] = ACTIONS(1342), - [sym__list_marker_star] = ACTIONS(1342), - [sym__list_marker_parenthesis] = ACTIONS(1342), - [sym__list_marker_dot] = ACTIONS(1342), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), - [sym__fenced_code_block_start_backtick] = ACTIONS(1342), - [sym__fenced_code_block_start_tilde] = ACTIONS(1342), - [sym__blank_line_start] = ACTIONS(1342), - [sym_minus_metadata] = ACTIONS(1342), - [sym__pipe_table_start] = ACTIONS(1342), - [sym__fenced_div_start] = ACTIONS(1342), - [sym__fenced_div_end] = ACTIONS(1342), - [sym_ref_id_specifier] = ACTIONS(1342), - [sym__display_math_state_track_marker] = ACTIONS(1342), - [sym__inline_math_state_track_marker] = ACTIONS(1342), - }, - [STATE(126)] = { - [sym_list_marker_star] = STATE(30), - [sym__list_item_star] = STATE(126), - [aux_sym__list_star_repeat1] = STATE(126), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_EQ] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym__] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [sym__word] = ACTIONS(1347), - [sym__soft_line_ending] = ACTIONS(1347), - [sym__block_close] = ACTIONS(1347), - [sym__block_quote_start] = ACTIONS(1347), - [sym__indented_chunk_start] = ACTIONS(1347), - [sym_atx_h1_marker] = ACTIONS(1347), - [sym_atx_h2_marker] = ACTIONS(1347), - [sym_atx_h3_marker] = ACTIONS(1347), - [sym_atx_h4_marker] = ACTIONS(1347), - [sym_atx_h5_marker] = ACTIONS(1347), - [sym_atx_h6_marker] = ACTIONS(1347), - [sym__thematic_break] = ACTIONS(1347), - [sym__list_marker_minus] = ACTIONS(1347), - [sym__list_marker_plus] = ACTIONS(1347), - [sym__list_marker_star] = ACTIONS(1349), - [sym__list_marker_parenthesis] = ACTIONS(1347), - [sym__list_marker_dot] = ACTIONS(1347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1347), - [sym__fenced_code_block_start_backtick] = ACTIONS(1347), - [sym__fenced_code_block_start_tilde] = ACTIONS(1347), - [sym__blank_line_start] = ACTIONS(1347), - [sym_minus_metadata] = ACTIONS(1347), - [sym__pipe_table_start] = ACTIONS(1347), - [sym__fenced_div_start] = ACTIONS(1347), - [sym__fenced_div_end] = ACTIONS(1347), - [sym_ref_id_specifier] = ACTIONS(1347), - [sym__display_math_state_track_marker] = ACTIONS(1347), - [sym__inline_math_state_track_marker] = ACTIONS(1347), - }, - [STATE(127)] = { - [sym_list_marker_dot] = STATE(31), - [sym__list_item_dot] = STATE(127), - [aux_sym__list_dot_repeat1] = STATE(127), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [sym__word] = ACTIONS(1352), - [sym__soft_line_ending] = ACTIONS(1352), - [sym__block_close] = ACTIONS(1352), - [sym__block_quote_start] = ACTIONS(1352), - [sym__indented_chunk_start] = ACTIONS(1352), - [sym_atx_h1_marker] = ACTIONS(1352), - [sym_atx_h2_marker] = ACTIONS(1352), - [sym_atx_h3_marker] = ACTIONS(1352), - [sym_atx_h4_marker] = ACTIONS(1352), - [sym_atx_h5_marker] = ACTIONS(1352), - [sym_atx_h6_marker] = ACTIONS(1352), - [sym__thematic_break] = ACTIONS(1352), - [sym__list_marker_minus] = ACTIONS(1352), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1352), - [sym__list_marker_parenthesis] = ACTIONS(1352), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1352), - [sym__fenced_code_block_start_tilde] = ACTIONS(1352), - [sym__blank_line_start] = ACTIONS(1352), - [sym_minus_metadata] = ACTIONS(1352), - [sym__pipe_table_start] = ACTIONS(1352), - [sym__fenced_div_start] = ACTIONS(1352), - [sym__fenced_div_end] = ACTIONS(1352), - [sym_ref_id_specifier] = ACTIONS(1352), - [sym__display_math_state_track_marker] = ACTIONS(1352), - [sym__inline_math_state_track_marker] = ACTIONS(1352), - }, - [STATE(128)] = { - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_parenthesis] = STATE(128), - [aux_sym__list_parenthesis_repeat1] = STATE(128), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1357), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [sym__word] = ACTIONS(1357), - [sym__soft_line_ending] = ACTIONS(1357), - [sym__block_close] = ACTIONS(1357), - [sym__block_quote_start] = ACTIONS(1357), - [sym__indented_chunk_start] = ACTIONS(1357), - [sym_atx_h1_marker] = ACTIONS(1357), - [sym_atx_h2_marker] = ACTIONS(1357), - [sym_atx_h3_marker] = ACTIONS(1357), - [sym_atx_h4_marker] = ACTIONS(1357), - [sym_atx_h5_marker] = ACTIONS(1357), - [sym_atx_h6_marker] = ACTIONS(1357), - [sym__thematic_break] = ACTIONS(1357), - [sym__list_marker_minus] = ACTIONS(1357), - [sym__list_marker_plus] = ACTIONS(1357), - [sym__list_marker_star] = ACTIONS(1357), - [sym__list_marker_parenthesis] = ACTIONS(1359), - [sym__list_marker_dot] = ACTIONS(1357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1357), - [sym__fenced_code_block_start_backtick] = ACTIONS(1357), - [sym__fenced_code_block_start_tilde] = ACTIONS(1357), - [sym__blank_line_start] = ACTIONS(1357), - [sym_minus_metadata] = ACTIONS(1357), - [sym__pipe_table_start] = ACTIONS(1357), - [sym__fenced_div_start] = ACTIONS(1357), - [sym__fenced_div_end] = ACTIONS(1357), - [sym_ref_id_specifier] = ACTIONS(1357), - [sym__display_math_state_track_marker] = ACTIONS(1357), - [sym__inline_math_state_track_marker] = ACTIONS(1357), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1220), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1222), + [sym_ref_id_specifier] = ACTIONS(91), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(129)] = { + [STATE(115)] = { + [sym__block_not_section] = STATE(315), + [sym_thematic_break] = STATE(315), + [sym__setext_heading1] = STATE(215), + [sym__setext_heading2] = STATE(226), + [sym_indented_code_block] = STATE(315), [sym__indented_chunk] = STATE(129), - [sym__blank_line] = STATE(129), - [aux_sym_indented_code_block_repeat1] = STATE(129), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [sym__word] = ACTIONS(1362), - [sym__soft_line_ending] = ACTIONS(1362), - [sym__block_close] = ACTIONS(1362), - [sym__block_quote_start] = ACTIONS(1362), - [sym__indented_chunk_start] = ACTIONS(1364), - [sym_atx_h1_marker] = ACTIONS(1362), - [sym_atx_h2_marker] = ACTIONS(1362), - [sym_atx_h3_marker] = ACTIONS(1362), - [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(1362), - [sym_atx_h6_marker] = ACTIONS(1362), - [sym__thematic_break] = ACTIONS(1362), - [sym__list_marker_minus] = ACTIONS(1362), - [sym__list_marker_plus] = ACTIONS(1362), - [sym__list_marker_star] = ACTIONS(1362), - [sym__list_marker_parenthesis] = ACTIONS(1362), - [sym__list_marker_dot] = ACTIONS(1362), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), - [sym__fenced_code_block_start_backtick] = ACTIONS(1362), - [sym__fenced_code_block_start_tilde] = ACTIONS(1362), - [sym__blank_line_start] = ACTIONS(1367), - [sym_minus_metadata] = ACTIONS(1362), - [sym__pipe_table_start] = ACTIONS(1362), - [sym__fenced_div_start] = ACTIONS(1362), - [sym__fenced_div_end] = ACTIONS(1362), - [sym_ref_id_specifier] = ACTIONS(1362), - [sym__display_math_state_track_marker] = ACTIONS(1362), - [sym__inline_math_state_track_marker] = ACTIONS(1362), - }, - [STATE(130)] = { - [sym__indented_chunk] = STATE(136), - [sym__blank_line] = STATE(136), - [aux_sym_indented_code_block_repeat1] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(1325), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1325), - [anon_sym_RBRACK] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym__] = ACTIONS(1325), - [anon_sym_BQUOTE] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [sym__word] = ACTIONS(1325), - [sym__soft_line_ending] = ACTIONS(1325), - [sym__block_quote_start] = ACTIONS(1325), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1325), - [sym_atx_h2_marker] = ACTIONS(1325), - [sym_atx_h3_marker] = ACTIONS(1325), - [sym_atx_h4_marker] = ACTIONS(1325), - [sym_atx_h5_marker] = ACTIONS(1325), - [sym_atx_h6_marker] = ACTIONS(1325), - [sym__thematic_break] = ACTIONS(1325), - [sym__list_marker_minus] = ACTIONS(1325), - [sym__list_marker_plus] = ACTIONS(1325), - [sym__list_marker_star] = ACTIONS(1325), - [sym__list_marker_parenthesis] = ACTIONS(1325), - [sym__list_marker_dot] = ACTIONS(1325), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1325), - [sym__fenced_code_block_start_backtick] = ACTIONS(1325), - [sym__fenced_code_block_start_tilde] = ACTIONS(1325), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1325), - [sym__pipe_table_start] = ACTIONS(1325), - [sym__fenced_div_start] = ACTIONS(1325), - [sym_ref_id_specifier] = ACTIONS(1325), - [sym__display_math_state_track_marker] = ACTIONS(1325), - [sym__inline_math_state_track_marker] = ACTIONS(1325), - }, - [STATE(131)] = { - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_parenthesis] = STATE(131), - [aux_sym__list_parenthesis_repeat1] = STATE(131), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1357), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [sym__word] = ACTIONS(1357), - [sym__soft_line_ending] = ACTIONS(1357), - [sym__block_close] = ACTIONS(1357), - [sym__block_quote_start] = ACTIONS(1357), - [sym__indented_chunk_start] = ACTIONS(1357), - [sym_atx_h1_marker] = ACTIONS(1357), - [sym_atx_h2_marker] = ACTIONS(1357), - [sym_atx_h3_marker] = ACTIONS(1357), - [sym_atx_h4_marker] = ACTIONS(1357), - [sym_atx_h5_marker] = ACTIONS(1357), - [sym_atx_h6_marker] = ACTIONS(1357), - [sym__thematic_break] = ACTIONS(1357), - [sym__list_marker_minus] = ACTIONS(1357), - [sym__list_marker_plus] = ACTIONS(1357), - [sym__list_marker_star] = ACTIONS(1357), - [sym__list_marker_parenthesis] = ACTIONS(1359), - [sym__list_marker_dot] = ACTIONS(1357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1357), - [sym__fenced_code_block_start_backtick] = ACTIONS(1357), - [sym__fenced_code_block_start_tilde] = ACTIONS(1357), - [sym__blank_line_start] = ACTIONS(1357), - [sym_minus_metadata] = ACTIONS(1357), - [sym__pipe_table_start] = ACTIONS(1357), - [sym__fenced_div_start] = ACTIONS(1357), - [sym_ref_id_specifier] = ACTIONS(1357), - [sym__display_math_state_track_marker] = ACTIONS(1357), - [sym__inline_math_state_track_marker] = ACTIONS(1357), - }, - [STATE(132)] = { - [sym_list_marker_plus] = STATE(27), - [sym__list_item_plus] = STATE(132), - [aux_sym__list_plus_repeat1] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(1337), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1337), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [sym__word] = ACTIONS(1337), - [sym__soft_line_ending] = ACTIONS(1337), - [sym__block_quote_start] = ACTIONS(1337), - [sym__indented_chunk_start] = ACTIONS(1337), - [sym_atx_h1_marker] = ACTIONS(1337), - [sym_atx_h2_marker] = ACTIONS(1337), - [sym_atx_h3_marker] = ACTIONS(1337), - [sym_atx_h4_marker] = ACTIONS(1337), - [sym_atx_h5_marker] = ACTIONS(1337), - [sym_atx_h6_marker] = ACTIONS(1337), - [sym__thematic_break] = ACTIONS(1337), - [sym__list_marker_minus] = ACTIONS(1337), - [sym__list_marker_plus] = ACTIONS(1339), - [sym__list_marker_star] = ACTIONS(1337), - [sym__list_marker_parenthesis] = ACTIONS(1337), - [sym__list_marker_dot] = ACTIONS(1337), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1339), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1337), - [sym__fenced_code_block_start_backtick] = ACTIONS(1337), - [sym__fenced_code_block_start_tilde] = ACTIONS(1337), - [sym__blank_line_start] = ACTIONS(1337), - [sym_minus_metadata] = ACTIONS(1337), - [sym__pipe_table_start] = ACTIONS(1337), - [sym__fenced_div_start] = ACTIONS(1337), - [sym_ref_id_specifier] = ACTIONS(1337), - [sym__display_math_state_track_marker] = ACTIONS(1337), - [sym__inline_math_state_track_marker] = ACTIONS(1337), - }, - [STATE(133)] = { - [sym_list_marker_minus] = STATE(3), - [sym__list_item_minus] = STATE(133), - [aux_sym__list_minus_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1342), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym__] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [sym__word] = ACTIONS(1342), - [sym__soft_line_ending] = ACTIONS(1342), - [sym__block_quote_start] = ACTIONS(1342), - [sym__indented_chunk_start] = ACTIONS(1342), - [sym_atx_h1_marker] = ACTIONS(1342), - [sym_atx_h2_marker] = ACTIONS(1342), - [sym_atx_h3_marker] = ACTIONS(1342), - [sym_atx_h4_marker] = ACTIONS(1342), - [sym_atx_h5_marker] = ACTIONS(1342), - [sym_atx_h6_marker] = ACTIONS(1342), - [sym__thematic_break] = ACTIONS(1342), - [sym__list_marker_minus] = ACTIONS(1344), - [sym__list_marker_plus] = ACTIONS(1342), - [sym__list_marker_star] = ACTIONS(1342), - [sym__list_marker_parenthesis] = ACTIONS(1342), - [sym__list_marker_dot] = ACTIONS(1342), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), - [sym__fenced_code_block_start_backtick] = ACTIONS(1342), - [sym__fenced_code_block_start_tilde] = ACTIONS(1342), - [sym__blank_line_start] = ACTIONS(1342), - [sym_minus_metadata] = ACTIONS(1342), - [sym__pipe_table_start] = ACTIONS(1342), - [sym__fenced_div_start] = ACTIONS(1342), - [sym_ref_id_specifier] = ACTIONS(1342), - [sym__display_math_state_track_marker] = ACTIONS(1342), - [sym__inline_math_state_track_marker] = ACTIONS(1342), - }, - [STATE(134)] = { - [sym_list_marker_star] = STATE(4), - [sym__list_item_star] = STATE(134), - [aux_sym__list_star_repeat1] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(1347), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_EQ] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym__] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [sym__word] = ACTIONS(1347), - [sym__soft_line_ending] = ACTIONS(1347), - [sym__block_quote_start] = ACTIONS(1347), - [sym__indented_chunk_start] = ACTIONS(1347), - [sym_atx_h1_marker] = ACTIONS(1347), - [sym_atx_h2_marker] = ACTIONS(1347), - [sym_atx_h3_marker] = ACTIONS(1347), - [sym_atx_h4_marker] = ACTIONS(1347), - [sym_atx_h5_marker] = ACTIONS(1347), - [sym_atx_h6_marker] = ACTIONS(1347), - [sym__thematic_break] = ACTIONS(1347), - [sym__list_marker_minus] = ACTIONS(1347), - [sym__list_marker_plus] = ACTIONS(1347), - [sym__list_marker_star] = ACTIONS(1349), - [sym__list_marker_parenthesis] = ACTIONS(1347), - [sym__list_marker_dot] = ACTIONS(1347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1347), - [sym__fenced_code_block_start_backtick] = ACTIONS(1347), - [sym__fenced_code_block_start_tilde] = ACTIONS(1347), - [sym__blank_line_start] = ACTIONS(1347), - [sym_minus_metadata] = ACTIONS(1347), - [sym__pipe_table_start] = ACTIONS(1347), - [sym__fenced_div_start] = ACTIONS(1347), - [sym_ref_id_specifier] = ACTIONS(1347), - [sym__display_math_state_track_marker] = ACTIONS(1347), - [sym__inline_math_state_track_marker] = ACTIONS(1347), - }, - [STATE(135)] = { - [sym_list_marker_dot] = STATE(5), - [sym__list_item_dot] = STATE(135), - [aux_sym__list_dot_repeat1] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(1352), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [sym__word] = ACTIONS(1352), - [sym__soft_line_ending] = ACTIONS(1352), - [sym__block_quote_start] = ACTIONS(1352), - [sym__indented_chunk_start] = ACTIONS(1352), - [sym_atx_h1_marker] = ACTIONS(1352), - [sym_atx_h2_marker] = ACTIONS(1352), - [sym_atx_h3_marker] = ACTIONS(1352), - [sym_atx_h4_marker] = ACTIONS(1352), - [sym_atx_h5_marker] = ACTIONS(1352), - [sym_atx_h6_marker] = ACTIONS(1352), - [sym__thematic_break] = ACTIONS(1352), - [sym__list_marker_minus] = ACTIONS(1352), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1352), - [sym__list_marker_parenthesis] = ACTIONS(1352), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1352), - [sym__fenced_code_block_start_tilde] = ACTIONS(1352), - [sym__blank_line_start] = ACTIONS(1352), - [sym_minus_metadata] = ACTIONS(1352), - [sym__pipe_table_start] = ACTIONS(1352), - [sym__fenced_div_start] = ACTIONS(1352), - [sym_ref_id_specifier] = ACTIONS(1352), - [sym__display_math_state_track_marker] = ACTIONS(1352), - [sym__inline_math_state_track_marker] = ACTIONS(1352), + [sym_fenced_div_block] = STATE(315), + [sym_fenced_code_block] = STATE(315), + [sym_paragraph] = STATE(141), + [sym_inline_ref_def] = STATE(315), + [sym_note_definition_fenced_block] = STATE(315), + [sym__blank_line] = STATE(315), + [sym_block_quote] = STATE(315), + [sym_list] = STATE(315), + [sym__list_plus] = STATE(213), + [sym__list_minus] = STATE(213), + [sym__list_star] = STATE(213), + [sym__list_dot] = STATE(213), + [sym__list_parenthesis] = STATE(213), + [sym__list_example] = STATE(213), + [sym_list_marker_plus] = STATE(30), + [sym_list_marker_minus] = STATE(31), + [sym_list_marker_star] = STATE(32), + [sym_list_marker_dot] = STATE(33), + [sym_list_marker_parenthesis] = STATE(34), + [sym_list_marker_example] = STATE(15), + [sym__list_item_plus] = STATE(130), + [sym__list_item_minus] = STATE(132), + [sym__list_item_star] = STATE(136), + [sym__list_item_dot] = STATE(125), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(128), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(315), + [aux_sym_document_repeat1] = STATE(115), + [aux_sym_paragraph_repeat1] = STATE(555), + [aux_sym__list_plus_repeat1] = STATE(130), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__list_star_repeat1] = STATE(136), + [aux_sym__list_dot_repeat1] = STATE(125), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(128), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [sym__word] = ACTIONS(1230), + [sym__soft_line_ending] = ACTIONS(1233), + [sym__block_close] = ACTIONS(1236), + [sym__block_quote_start] = ACTIONS(1238), + [sym__indented_chunk_start] = ACTIONS(1241), + [sym_atx_h1_marker] = ACTIONS(1236), + [sym_atx_h2_marker] = ACTIONS(1236), + [sym_atx_h3_marker] = ACTIONS(1236), + [sym_atx_h4_marker] = ACTIONS(1236), + [sym_atx_h5_marker] = ACTIONS(1236), + [sym_atx_h6_marker] = ACTIONS(1236), + [sym__thematic_break] = ACTIONS(1244), + [sym__list_marker_minus] = ACTIONS(1247), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1253), + [sym__list_marker_parenthesis] = ACTIONS(1256), + [sym__list_marker_dot] = ACTIONS(1259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1247), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1253), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1256), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1259), + [sym__list_marker_example] = ACTIONS(1262), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1262), + [sym__fenced_code_block_start_backtick] = ACTIONS(1265), + [sym__fenced_code_block_start_tilde] = ACTIONS(1268), + [sym__blank_line_start] = ACTIONS(1271), + [sym_minus_metadata] = ACTIONS(1274), + [sym__pipe_table_start] = ACTIONS(1277), + [sym__fenced_div_start] = ACTIONS(1280), + [sym__fenced_div_end] = ACTIONS(1236), + [sym_ref_id_specifier] = ACTIONS(1283), + [sym__display_math_state_track_marker] = ACTIONS(1230), + [sym__inline_math_state_track_marker] = ACTIONS(1230), }, - [STATE(136)] = { - [sym__indented_chunk] = STATE(152), - [sym__blank_line] = STATE(152), - [aux_sym_indented_code_block_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(1319), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym__] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [sym__word] = ACTIONS(1319), - [sym__soft_line_ending] = ACTIONS(1319), - [sym__block_quote_start] = ACTIONS(1319), + [STATE(116)] = { + [sym__block_not_section] = STATE(360), + [sym_thematic_break] = STATE(360), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(360), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(360), + [sym_fenced_code_block] = STATE(360), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(360), + [sym_note_definition_fenced_block] = STATE(360), + [sym__blank_line] = STATE(360), + [sym_block_quote] = STATE(360), + [sym_list] = STATE(360), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(360), + [aux_sym_document_repeat1] = STATE(118), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1218), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1319), - [sym_atx_h2_marker] = ACTIONS(1319), - [sym_atx_h3_marker] = ACTIONS(1319), - [sym_atx_h4_marker] = ACTIONS(1319), - [sym_atx_h5_marker] = ACTIONS(1319), - [sym_atx_h6_marker] = ACTIONS(1319), - [sym__thematic_break] = ACTIONS(1319), - [sym__list_marker_minus] = ACTIONS(1319), - [sym__list_marker_plus] = ACTIONS(1319), - [sym__list_marker_star] = ACTIONS(1319), - [sym__list_marker_parenthesis] = ACTIONS(1319), - [sym__list_marker_dot] = ACTIONS(1319), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1319), - [sym__fenced_code_block_start_backtick] = ACTIONS(1319), - [sym__fenced_code_block_start_tilde] = ACTIONS(1319), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1319), - [sym__pipe_table_start] = ACTIONS(1319), - [sym__fenced_div_start] = ACTIONS(1319), - [sym_ref_id_specifier] = ACTIONS(1319), - [sym__display_math_state_track_marker] = ACTIONS(1319), - [sym__inline_math_state_track_marker] = ACTIONS(1319), - }, - [STATE(137)] = { - [sym__indented_chunk] = STATE(154), - [sym__blank_line] = STATE(154), - [aux_sym_indented_code_block_repeat1] = STATE(154), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1325), - [anon_sym_RBRACK] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym__] = ACTIONS(1325), - [anon_sym_BQUOTE] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [sym__word] = ACTIONS(1325), - [sym__soft_line_ending] = ACTIONS(1325), - [sym__block_close] = ACTIONS(1325), - [sym__block_quote_start] = ACTIONS(1325), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1325), - [sym_atx_h2_marker] = ACTIONS(1325), - [sym_atx_h3_marker] = ACTIONS(1325), - [sym_atx_h4_marker] = ACTIONS(1325), - [sym_atx_h5_marker] = ACTIONS(1325), - [sym_atx_h6_marker] = ACTIONS(1325), - [sym__thematic_break] = ACTIONS(1325), - [sym__list_marker_minus] = ACTIONS(1325), - [sym__list_marker_plus] = ACTIONS(1325), - [sym__list_marker_star] = ACTIONS(1325), - [sym__list_marker_parenthesis] = ACTIONS(1325), - [sym__list_marker_dot] = ACTIONS(1325), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1325), - [sym__fenced_code_block_start_backtick] = ACTIONS(1325), - [sym__fenced_code_block_start_tilde] = ACTIONS(1325), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1325), - [sym__pipe_table_start] = ACTIONS(1325), - [sym__fenced_div_start] = ACTIONS(1325), - [sym_ref_id_specifier] = ACTIONS(1325), - [sym__display_math_state_track_marker] = ACTIONS(1325), - [sym__inline_math_state_track_marker] = ACTIONS(1325), - }, - [STATE(138)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [sym__word] = ACTIONS(1370), - [sym__soft_line_ending] = ACTIONS(1370), - [sym__block_close] = ACTIONS(1370), - [sym__block_quote_start] = ACTIONS(1370), - [sym__indented_chunk_start] = ACTIONS(1370), - [sym_atx_h1_marker] = ACTIONS(1370), - [sym_atx_h2_marker] = ACTIONS(1370), - [sym_atx_h3_marker] = ACTIONS(1370), - [sym_atx_h4_marker] = ACTIONS(1370), - [sym_atx_h5_marker] = ACTIONS(1370), - [sym_atx_h6_marker] = ACTIONS(1370), - [sym_setext_h1_underline] = ACTIONS(1372), - [sym_setext_h2_underline] = ACTIONS(1374), - [sym__thematic_break] = ACTIONS(1370), - [sym__list_marker_minus] = ACTIONS(1370), - [sym__list_marker_plus] = ACTIONS(1370), - [sym__list_marker_star] = ACTIONS(1370), - [sym__list_marker_parenthesis] = ACTIONS(1370), - [sym__list_marker_dot] = ACTIONS(1370), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), - [sym__fenced_code_block_start_backtick] = ACTIONS(1370), - [sym__fenced_code_block_start_tilde] = ACTIONS(1370), - [sym__blank_line_start] = ACTIONS(1370), - [sym_minus_metadata] = ACTIONS(1370), - [sym__pipe_table_start] = ACTIONS(1370), - [sym__fenced_div_start] = ACTIONS(1370), - [sym__fenced_div_end] = ACTIONS(1370), - [sym_ref_id_specifier] = ACTIONS(1370), - [sym__display_math_state_track_marker] = ACTIONS(1370), - [sym__inline_math_state_track_marker] = ACTIONS(1370), - }, - [STATE(139)] = { - [sym__indented_chunk] = STATE(139), - [sym__blank_line] = STATE(139), - [aux_sym_indented_code_block_repeat1] = STATE(139), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [sym__word] = ACTIONS(1362), - [sym__soft_line_ending] = ACTIONS(1362), - [sym__block_close] = ACTIONS(1362), - [sym__block_quote_start] = ACTIONS(1362), - [sym__indented_chunk_start] = ACTIONS(1376), - [sym_atx_h1_marker] = ACTIONS(1362), - [sym_atx_h2_marker] = ACTIONS(1362), - [sym_atx_h3_marker] = ACTIONS(1362), - [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(1362), - [sym_atx_h6_marker] = ACTIONS(1362), - [sym__thematic_break] = ACTIONS(1362), - [sym__list_marker_minus] = ACTIONS(1362), - [sym__list_marker_plus] = ACTIONS(1362), - [sym__list_marker_star] = ACTIONS(1362), - [sym__list_marker_parenthesis] = ACTIONS(1362), - [sym__list_marker_dot] = ACTIONS(1362), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), - [sym__fenced_code_block_start_backtick] = ACTIONS(1362), - [sym__fenced_code_block_start_tilde] = ACTIONS(1362), - [sym__blank_line_start] = ACTIONS(1379), - [sym_minus_metadata] = ACTIONS(1362), - [sym__pipe_table_start] = ACTIONS(1362), - [sym__fenced_div_start] = ACTIONS(1362), - [sym_ref_id_specifier] = ACTIONS(1362), - [sym__display_math_state_track_marker] = ACTIONS(1362), - [sym__inline_math_state_track_marker] = ACTIONS(1362), - }, - [STATE(140)] = { - [sym_list_marker_plus] = STATE(22), - [sym__list_item_plus] = STATE(159), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym__] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [sym__word] = ACTIONS(1327), - [sym__soft_line_ending] = ACTIONS(1327), - [sym__block_close] = ACTIONS(1327), - [sym__block_quote_start] = ACTIONS(1327), - [sym__indented_chunk_start] = ACTIONS(1327), - [sym_atx_h1_marker] = ACTIONS(1327), - [sym_atx_h2_marker] = ACTIONS(1327), - [sym_atx_h3_marker] = ACTIONS(1327), - [sym_atx_h4_marker] = ACTIONS(1327), - [sym_atx_h5_marker] = ACTIONS(1327), - [sym_atx_h6_marker] = ACTIONS(1327), - [sym__thematic_break] = ACTIONS(1327), - [sym__list_marker_minus] = ACTIONS(1327), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), - [sym__list_marker_star] = ACTIONS(1327), - [sym__list_marker_parenthesis] = ACTIONS(1327), - [sym__list_marker_dot] = ACTIONS(1327), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1327), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1327), - [sym__fenced_code_block_start_backtick] = ACTIONS(1327), - [sym__fenced_code_block_start_tilde] = ACTIONS(1327), - [sym__blank_line_start] = ACTIONS(1327), - [sym_minus_metadata] = ACTIONS(1327), - [sym__pipe_table_start] = ACTIONS(1327), - [sym__fenced_div_start] = ACTIONS(1327), - [sym_ref_id_specifier] = ACTIONS(1327), - [sym__display_math_state_track_marker] = ACTIONS(1327), - [sym__inline_math_state_track_marker] = ACTIONS(1327), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(141)] = { - [sym_list_marker_minus] = STATE(23), - [sym__list_item_minus] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(160), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1329), - [anon_sym_BQUOTE] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [sym__word] = ACTIONS(1329), - [sym__soft_line_ending] = ACTIONS(1329), - [sym__block_close] = ACTIONS(1329), - [sym__block_quote_start] = ACTIONS(1329), - [sym__indented_chunk_start] = ACTIONS(1329), - [sym_atx_h1_marker] = ACTIONS(1329), - [sym_atx_h2_marker] = ACTIONS(1329), - [sym_atx_h3_marker] = ACTIONS(1329), - [sym_atx_h4_marker] = ACTIONS(1329), - [sym_atx_h5_marker] = ACTIONS(1329), - [sym_atx_h6_marker] = ACTIONS(1329), - [sym__thematic_break] = ACTIONS(1329), - [sym__list_marker_minus] = ACTIONS(31), - [sym__list_marker_plus] = ACTIONS(1329), - [sym__list_marker_star] = ACTIONS(1329), - [sym__list_marker_parenthesis] = ACTIONS(1329), - [sym__list_marker_dot] = ACTIONS(1329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1329), - [sym__fenced_code_block_start_backtick] = ACTIONS(1329), - [sym__fenced_code_block_start_tilde] = ACTIONS(1329), - [sym__blank_line_start] = ACTIONS(1329), - [sym_minus_metadata] = ACTIONS(1329), - [sym__pipe_table_start] = ACTIONS(1329), - [sym__fenced_div_start] = ACTIONS(1329), - [sym_ref_id_specifier] = ACTIONS(1329), - [sym__display_math_state_track_marker] = ACTIONS(1329), - [sym__inline_math_state_track_marker] = ACTIONS(1329), + [STATE(117)] = { + [sym__block_not_section] = STATE(360), + [sym_thematic_break] = STATE(360), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(360), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(360), + [sym_fenced_code_block] = STATE(360), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(360), + [sym_note_definition_fenced_block] = STATE(360), + [sym__blank_line] = STATE(360), + [sym_block_quote] = STATE(360), + [sym_list] = STATE(360), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(360), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1236), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [sym__word] = ACTIONS(1230), + [sym__soft_line_ending] = ACTIONS(1233), + [sym__block_quote_start] = ACTIONS(1286), + [sym__indented_chunk_start] = ACTIONS(1289), + [sym_atx_h1_marker] = ACTIONS(1236), + [sym_atx_h2_marker] = ACTIONS(1236), + [sym_atx_h3_marker] = ACTIONS(1236), + [sym_atx_h4_marker] = ACTIONS(1236), + [sym_atx_h5_marker] = ACTIONS(1236), + [sym_atx_h6_marker] = ACTIONS(1236), + [sym__thematic_break] = ACTIONS(1292), + [sym__list_marker_minus] = ACTIONS(1247), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1253), + [sym__list_marker_parenthesis] = ACTIONS(1256), + [sym__list_marker_dot] = ACTIONS(1259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1247), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1253), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1256), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1259), + [sym__list_marker_example] = ACTIONS(1262), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1262), + [sym__fenced_code_block_start_backtick] = ACTIONS(1295), + [sym__fenced_code_block_start_tilde] = ACTIONS(1298), + [sym__blank_line_start] = ACTIONS(1301), + [sym_minus_metadata] = ACTIONS(1304), + [sym__pipe_table_start] = ACTIONS(1307), + [sym__fenced_div_start] = ACTIONS(1310), + [sym_ref_id_specifier] = ACTIONS(1313), + [sym__display_math_state_track_marker] = ACTIONS(1230), + [sym__inline_math_state_track_marker] = ACTIONS(1230), }, - [STATE(142)] = { - [sym_list_marker_star] = STATE(24), - [sym__list_item_star] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(161), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [sym__word] = ACTIONS(1331), - [sym__soft_line_ending] = ACTIONS(1331), - [sym__block_close] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(1331), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), + [STATE(118)] = { + [sym__block_not_section] = STATE(360), + [sym_thematic_break] = STATE(360), + [sym__setext_heading1] = STATE(390), + [sym__setext_heading2] = STATE(391), + [sym_indented_code_block] = STATE(360), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(360), + [sym_fenced_code_block] = STATE(360), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(360), + [sym_note_definition_fenced_block] = STATE(360), + [sym__blank_line] = STATE(360), + [sym_block_quote] = STATE(360), + [sym_list] = STATE(360), + [sym__list_plus] = STATE(454), + [sym__list_minus] = STATE(454), + [sym__list_star] = STATE(454), + [sym__list_dot] = STATE(454), + [sym__list_parenthesis] = STATE(454), + [sym__list_example] = STATE(454), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(8), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(167), + [sym__list_item_minus] = STATE(168), + [sym__list_item_star] = STATE(169), + [sym__list_item_dot] = STATE(170), + [sym__list_item_parenthesis] = STATE(171), + [sym__list_item_example] = STATE(172), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(360), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_paragraph_repeat1] = STATE(548), + [aux_sym__list_plus_repeat1] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(169), + [aux_sym__list_dot_repeat1] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1222), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1222), + [sym_atx_h2_marker] = ACTIONS(1222), + [sym_atx_h3_marker] = ACTIONS(1222), + [sym_atx_h4_marker] = ACTIONS(1222), + [sym_atx_h5_marker] = ACTIONS(1222), + [sym_atx_h6_marker] = ACTIONS(1222), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_star_dont_interrupt] = ACTIONS(35), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(1331), - [sym_minus_metadata] = ACTIONS(1331), - [sym__pipe_table_start] = ACTIONS(1331), - [sym__fenced_div_start] = ACTIONS(1331), - [sym_ref_id_specifier] = ACTIONS(1331), - [sym__display_math_state_track_marker] = ACTIONS(1331), - [sym__inline_math_state_track_marker] = ACTIONS(1331), - }, - [STATE(143)] = { - [sym_list_marker_dot] = STATE(25), - [sym__list_item_dot] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(162), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_AT] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1333), - [anon_sym_BQUOTE] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [sym__word] = ACTIONS(1333), - [sym__soft_line_ending] = ACTIONS(1333), - [sym__block_close] = ACTIONS(1333), - [sym__block_quote_start] = ACTIONS(1333), - [sym__indented_chunk_start] = ACTIONS(1333), - [sym_atx_h1_marker] = ACTIONS(1333), - [sym_atx_h2_marker] = ACTIONS(1333), - [sym_atx_h3_marker] = ACTIONS(1333), - [sym_atx_h4_marker] = ACTIONS(1333), - [sym_atx_h5_marker] = ACTIONS(1333), - [sym_atx_h6_marker] = ACTIONS(1333), - [sym__thematic_break] = ACTIONS(1333), - [sym__list_marker_minus] = ACTIONS(1333), - [sym__list_marker_plus] = ACTIONS(1333), - [sym__list_marker_star] = ACTIONS(1333), - [sym__list_marker_parenthesis] = ACTIONS(1333), + [sym__list_marker_parenthesis] = ACTIONS(37), [sym__list_marker_dot] = ACTIONS(39), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(1333), - [sym__fenced_code_block_start_tilde] = ACTIONS(1333), - [sym__blank_line_start] = ACTIONS(1333), - [sym_minus_metadata] = ACTIONS(1333), - [sym__pipe_table_start] = ACTIONS(1333), - [sym__fenced_div_start] = ACTIONS(1333), - [sym_ref_id_specifier] = ACTIONS(1333), - [sym__display_math_state_track_marker] = ACTIONS(1333), - [sym__inline_math_state_track_marker] = ACTIONS(1333), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(144)] = { - [sym__blank_line] = STATE(1024), - [sym_table_caption] = STATE(234), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), + [STATE(119)] = { + [sym__block_not_section] = STATE(388), + [sym_thematic_break] = STATE(388), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(388), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(388), + [sym_fenced_code_block] = STATE(388), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(388), + [sym_note_definition_fenced_block] = STATE(388), + [sym__blank_line] = STATE(388), + [sym_block_quote] = STATE(388), + [sym_list] = STATE(388), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(388), + [aux_sym_document_repeat1] = STATE(119), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [sym__word] = ACTIONS(1230), + [sym__soft_line_ending] = ACTIONS(1233), + [sym__block_close] = ACTIONS(1236), + [sym__block_quote_start] = ACTIONS(1316), + [sym__indented_chunk_start] = ACTIONS(1319), + [sym_atx_h1_marker] = ACTIONS(1236), + [sym_atx_h2_marker] = ACTIONS(1236), + [sym_atx_h3_marker] = ACTIONS(1236), + [sym_atx_h4_marker] = ACTIONS(1236), + [sym_atx_h5_marker] = ACTIONS(1236), + [sym_atx_h6_marker] = ACTIONS(1236), + [sym__thematic_break] = ACTIONS(1322), + [sym__list_marker_minus] = ACTIONS(1247), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1253), + [sym__list_marker_parenthesis] = ACTIONS(1256), + [sym__list_marker_dot] = ACTIONS(1259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1247), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1253), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1256), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1259), + [sym__list_marker_example] = ACTIONS(1262), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1262), + [sym__fenced_code_block_start_backtick] = ACTIONS(1325), + [sym__fenced_code_block_start_tilde] = ACTIONS(1328), + [sym__blank_line_start] = ACTIONS(1331), + [sym_minus_metadata] = ACTIONS(1334), + [sym__pipe_table_start] = ACTIONS(1337), + [sym__fenced_div_start] = ACTIONS(1340), + [sym_ref_id_specifier] = ACTIONS(1343), + [sym__display_math_state_track_marker] = ACTIONS(1230), + [sym__inline_math_state_track_marker] = ACTIONS(1230), + }, + [STATE(120)] = { + [sym__block_not_section] = STATE(388), + [sym_thematic_break] = STATE(388), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(388), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(388), + [sym_fenced_code_block] = STATE(388), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(388), + [sym_note_definition_fenced_block] = STATE(388), + [sym__blank_line] = STATE(388), + [sym_block_quote] = STATE(388), + [sym_list] = STATE(388), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(388), + [aux_sym_document_repeat1] = STATE(121), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1218), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(111), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1346), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), + }, + [STATE(121)] = { + [sym__block_not_section] = STATE(388), + [sym_thematic_break] = STATE(388), + [sym__setext_heading1] = STATE(393), + [sym__setext_heading2] = STATE(394), + [sym_indented_code_block] = STATE(388), + [sym__indented_chunk] = STATE(147), + [sym_fenced_div_block] = STATE(388), + [sym_fenced_code_block] = STATE(388), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(388), + [sym_note_definition_fenced_block] = STATE(388), + [sym__blank_line] = STATE(388), + [sym_block_quote] = STATE(388), + [sym_list] = STATE(388), + [sym__list_plus] = STATE(395), + [sym__list_minus] = STATE(395), + [sym__list_star] = STATE(395), + [sym__list_dot] = STATE(395), + [sym__list_parenthesis] = STATE(395), + [sym__list_example] = STATE(395), + [sym_list_marker_plus] = STATE(24), + [sym_list_marker_minus] = STATE(25), + [sym_list_marker_star] = STATE(26), + [sym_list_marker_dot] = STATE(27), + [sym_list_marker_parenthesis] = STATE(28), + [sym_list_marker_example] = STATE(29), + [sym__list_item_plus] = STATE(148), + [sym__list_item_minus] = STATE(149), + [sym__list_item_star] = STATE(150), + [sym__list_item_dot] = STATE(151), + [sym__list_item_parenthesis] = STATE(152), + [sym__list_item_example] = STATE(153), + [sym__soft_line_break] = STATE(651), + [sym__line] = STATE(651), + [sym__whitespace] = STATE(596), + [sym_pipe_table] = STATE(388), + [aux_sym_document_repeat1] = STATE(119), + [aux_sym_paragraph_repeat1] = STATE(537), + [aux_sym__list_plus_repeat1] = STATE(148), + [aux_sym__list_minus_repeat1] = STATE(149), + [aux_sym__list_star_repeat1] = STATE(150), + [aux_sym__list_dot_repeat1] = STATE(151), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [aux_sym__list_example_repeat1] = STATE(153), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1222), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1222), + [sym_atx_h2_marker] = ACTIONS(1222), + [sym_atx_h3_marker] = ACTIONS(1222), + [sym_atx_h4_marker] = ACTIONS(1222), + [sym_atx_h5_marker] = ACTIONS(1222), + [sym_atx_h6_marker] = ACTIONS(1222), + [sym__thematic_break] = ACTIONS(111), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1346), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), + }, + [STATE(122)] = { + [sym__indented_chunk] = STATE(122), + [sym__blank_line] = STATE(122), + [aux_sym_indented_code_block_repeat1] = STATE(122), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [sym__word] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_close] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(1350), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_example] = ACTIONS(1348), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(1353), + [sym_minus_metadata] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + [sym__fenced_div_start] = ACTIONS(1348), + [sym__fenced_div_end] = ACTIONS(1348), + [sym_ref_id_specifier] = ACTIONS(1348), + [sym__display_math_state_track_marker] = ACTIONS(1348), + [sym__inline_math_state_track_marker] = ACTIONS(1348), + }, + [STATE(123)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym__block_close] = ACTIONS(1356), + [sym_block_continuation] = ACTIONS(1358), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym_setext_h1_underline] = ACTIONS(1356), + [sym_setext_h2_underline] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym__fenced_div_end] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(124)] = { + [sym_list_marker_parenthesis] = STATE(34), + [sym__list_item_parenthesis] = STATE(124), + [aux_sym__list_parenthesis_repeat1] = STATE(124), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [sym__word] = ACTIONS(1360), + [sym__soft_line_ending] = ACTIONS(1360), + [sym__block_close] = ACTIONS(1360), + [sym__block_quote_start] = ACTIONS(1360), + [sym__indented_chunk_start] = ACTIONS(1360), + [sym_atx_h1_marker] = ACTIONS(1360), + [sym_atx_h2_marker] = ACTIONS(1360), + [sym_atx_h3_marker] = ACTIONS(1360), + [sym_atx_h4_marker] = ACTIONS(1360), + [sym_atx_h5_marker] = ACTIONS(1360), + [sym_atx_h6_marker] = ACTIONS(1360), + [sym__thematic_break] = ACTIONS(1360), + [sym__list_marker_minus] = ACTIONS(1360), + [sym__list_marker_plus] = ACTIONS(1360), + [sym__list_marker_star] = ACTIONS(1360), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_example] = ACTIONS(1360), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1360), + [sym__fenced_code_block_start_backtick] = ACTIONS(1360), + [sym__fenced_code_block_start_tilde] = ACTIONS(1360), + [sym__blank_line_start] = ACTIONS(1360), + [sym_minus_metadata] = ACTIONS(1360), + [sym__pipe_table_start] = ACTIONS(1360), + [sym__fenced_div_start] = ACTIONS(1360), + [sym__fenced_div_end] = ACTIONS(1360), + [sym_ref_id_specifier] = ACTIONS(1360), + [sym__display_math_state_track_marker] = ACTIONS(1360), + [sym__inline_math_state_track_marker] = ACTIONS(1360), + }, + [STATE(125)] = { + [sym_list_marker_dot] = STATE(33), + [sym__list_item_dot] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(135), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_AT] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_BSLASH] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym__] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [sym__word] = ACTIONS(1365), + [sym__soft_line_ending] = ACTIONS(1365), + [sym__block_close] = ACTIONS(1365), + [sym__block_quote_start] = ACTIONS(1365), + [sym__indented_chunk_start] = ACTIONS(1365), + [sym_atx_h1_marker] = ACTIONS(1365), + [sym_atx_h2_marker] = ACTIONS(1365), + [sym_atx_h3_marker] = ACTIONS(1365), + [sym_atx_h4_marker] = ACTIONS(1365), + [sym_atx_h5_marker] = ACTIONS(1365), + [sym_atx_h6_marker] = ACTIONS(1365), + [sym__thematic_break] = ACTIONS(1365), + [sym__list_marker_minus] = ACTIONS(1365), + [sym__list_marker_plus] = ACTIONS(1365), + [sym__list_marker_star] = ACTIONS(1365), + [sym__list_marker_parenthesis] = ACTIONS(1365), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(1365), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1365), + [sym__fenced_code_block_start_backtick] = ACTIONS(1365), + [sym__fenced_code_block_start_tilde] = ACTIONS(1365), + [sym__blank_line_start] = ACTIONS(1365), + [sym_minus_metadata] = ACTIONS(1365), + [sym__pipe_table_start] = ACTIONS(1365), + [sym__fenced_div_start] = ACTIONS(1365), + [sym__fenced_div_end] = ACTIONS(1365), + [sym_ref_id_specifier] = ACTIONS(1365), + [sym__display_math_state_track_marker] = ACTIONS(1365), + [sym__inline_math_state_track_marker] = ACTIONS(1365), + }, + [STATE(126)] = { + [sym_list_marker_parenthesis] = STATE(34), + [sym__list_item_parenthesis] = STATE(124), + [aux_sym__list_parenthesis_repeat1] = STATE(124), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_DOLLAR] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_AT] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_BSLASH] = ACTIONS(1367), + [anon_sym_RBRACK] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym__] = ACTIONS(1367), + [anon_sym_BQUOTE] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [sym__word] = ACTIONS(1367), + [sym__soft_line_ending] = ACTIONS(1367), + [sym__block_close] = ACTIONS(1367), + [sym__block_quote_start] = ACTIONS(1367), + [sym__indented_chunk_start] = ACTIONS(1367), + [sym_atx_h1_marker] = ACTIONS(1367), + [sym_atx_h2_marker] = ACTIONS(1367), + [sym_atx_h3_marker] = ACTIONS(1367), + [sym_atx_h4_marker] = ACTIONS(1367), + [sym_atx_h5_marker] = ACTIONS(1367), + [sym_atx_h6_marker] = ACTIONS(1367), + [sym__thematic_break] = ACTIONS(1367), + [sym__list_marker_minus] = ACTIONS(1367), + [sym__list_marker_plus] = ACTIONS(1367), + [sym__list_marker_star] = ACTIONS(1367), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_example] = ACTIONS(1367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1367), + [sym__fenced_code_block_start_backtick] = ACTIONS(1367), + [sym__fenced_code_block_start_tilde] = ACTIONS(1367), + [sym__blank_line_start] = ACTIONS(1367), + [sym_minus_metadata] = ACTIONS(1367), + [sym__pipe_table_start] = ACTIONS(1367), + [sym__fenced_div_start] = ACTIONS(1367), + [sym__fenced_div_end] = ACTIONS(1367), + [sym_ref_id_specifier] = ACTIONS(1367), + [sym__display_math_state_track_marker] = ACTIONS(1367), + [sym__inline_math_state_track_marker] = ACTIONS(1367), + }, + [STATE(127)] = { + [sym__indented_chunk] = STATE(122), + [sym__blank_line] = STATE(122), + [aux_sym_indented_code_block_repeat1] = STATE(122), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_DOLLAR] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [sym__word] = ACTIONS(1369), + [sym__soft_line_ending] = ACTIONS(1369), + [sym__block_close] = ACTIONS(1369), + [sym__block_quote_start] = ACTIONS(1369), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1369), + [sym_atx_h2_marker] = ACTIONS(1369), + [sym_atx_h3_marker] = ACTIONS(1369), + [sym_atx_h4_marker] = ACTIONS(1369), + [sym_atx_h5_marker] = ACTIONS(1369), + [sym_atx_h6_marker] = ACTIONS(1369), + [sym__thematic_break] = ACTIONS(1369), + [sym__list_marker_minus] = ACTIONS(1369), + [sym__list_marker_plus] = ACTIONS(1369), + [sym__list_marker_star] = ACTIONS(1369), + [sym__list_marker_parenthesis] = ACTIONS(1369), + [sym__list_marker_dot] = ACTIONS(1369), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_example] = ACTIONS(1369), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1369), + [sym__fenced_code_block_start_backtick] = ACTIONS(1369), + [sym__fenced_code_block_start_tilde] = ACTIONS(1369), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1369), + [sym__pipe_table_start] = ACTIONS(1369), + [sym__fenced_div_start] = ACTIONS(1369), + [sym__fenced_div_end] = ACTIONS(1369), + [sym_ref_id_specifier] = ACTIONS(1369), + [sym__display_math_state_track_marker] = ACTIONS(1369), + [sym__inline_math_state_track_marker] = ACTIONS(1369), + }, + [STATE(128)] = { + [sym_list_marker_example] = STATE(15), + [sym__list_item_example] = STATE(137), + [aux_sym__list_example_repeat1] = STATE(137), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_AT] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_BSLASH] = ACTIONS(1371), + [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym__] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [sym__word] = ACTIONS(1371), + [sym__soft_line_ending] = ACTIONS(1371), + [sym__block_close] = ACTIONS(1371), + [sym__block_quote_start] = ACTIONS(1371), + [sym__indented_chunk_start] = ACTIONS(1371), + [sym_atx_h1_marker] = ACTIONS(1371), + [sym_atx_h2_marker] = ACTIONS(1371), + [sym_atx_h3_marker] = ACTIONS(1371), + [sym_atx_h4_marker] = ACTIONS(1371), + [sym_atx_h5_marker] = ACTIONS(1371), + [sym_atx_h6_marker] = ACTIONS(1371), + [sym__thematic_break] = ACTIONS(1371), + [sym__list_marker_minus] = ACTIONS(1371), + [sym__list_marker_plus] = ACTIONS(1371), + [sym__list_marker_star] = ACTIONS(1371), + [sym__list_marker_parenthesis] = ACTIONS(1371), + [sym__list_marker_dot] = ACTIONS(1371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(1371), + [sym__fenced_code_block_start_tilde] = ACTIONS(1371), + [sym__blank_line_start] = ACTIONS(1371), + [sym_minus_metadata] = ACTIONS(1371), + [sym__pipe_table_start] = ACTIONS(1371), + [sym__fenced_div_start] = ACTIONS(1371), + [sym__fenced_div_end] = ACTIONS(1371), + [sym_ref_id_specifier] = ACTIONS(1371), + [sym__display_math_state_track_marker] = ACTIONS(1371), + [sym__inline_math_state_track_marker] = ACTIONS(1371), + }, + [STATE(129)] = { + [sym__indented_chunk] = STATE(127), + [sym__blank_line] = STATE(127), + [aux_sym_indented_code_block_repeat1] = STATE(127), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_BSLASH] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym__] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [sym__word] = ACTIONS(1373), + [sym__soft_line_ending] = ACTIONS(1373), + [sym__block_close] = ACTIONS(1373), + [sym__block_quote_start] = ACTIONS(1373), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1373), + [sym_atx_h2_marker] = ACTIONS(1373), + [sym_atx_h3_marker] = ACTIONS(1373), + [sym_atx_h4_marker] = ACTIONS(1373), + [sym_atx_h5_marker] = ACTIONS(1373), + [sym_atx_h6_marker] = ACTIONS(1373), + [sym__thematic_break] = ACTIONS(1373), + [sym__list_marker_minus] = ACTIONS(1373), + [sym__list_marker_plus] = ACTIONS(1373), + [sym__list_marker_star] = ACTIONS(1373), + [sym__list_marker_parenthesis] = ACTIONS(1373), + [sym__list_marker_dot] = ACTIONS(1373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_example] = ACTIONS(1373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1373), + [sym__fenced_code_block_start_backtick] = ACTIONS(1373), + [sym__fenced_code_block_start_tilde] = ACTIONS(1373), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1373), + [sym__pipe_table_start] = ACTIONS(1373), + [sym__fenced_div_start] = ACTIONS(1373), + [sym__fenced_div_end] = ACTIONS(1373), + [sym_ref_id_specifier] = ACTIONS(1373), + [sym__display_math_state_track_marker] = ACTIONS(1373), + [sym__inline_math_state_track_marker] = ACTIONS(1373), + }, + [STATE(130)] = { + [sym_list_marker_plus] = STATE(30), + [sym__list_item_plus] = STATE(131), + [aux_sym__list_plus_repeat1] = STATE(131), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_BSLASH] = ACTIONS(1375), + [anon_sym_RBRACK] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym__] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [sym__word] = ACTIONS(1375), + [sym__soft_line_ending] = ACTIONS(1375), + [sym__block_close] = ACTIONS(1375), + [sym__block_quote_start] = ACTIONS(1375), + [sym__indented_chunk_start] = ACTIONS(1375), + [sym_atx_h1_marker] = ACTIONS(1375), + [sym_atx_h2_marker] = ACTIONS(1375), + [sym_atx_h3_marker] = ACTIONS(1375), + [sym_atx_h4_marker] = ACTIONS(1375), + [sym_atx_h5_marker] = ACTIONS(1375), + [sym_atx_h6_marker] = ACTIONS(1375), + [sym__thematic_break] = ACTIONS(1375), + [sym__list_marker_minus] = ACTIONS(1375), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1375), + [sym__list_marker_parenthesis] = ACTIONS(1375), + [sym__list_marker_dot] = ACTIONS(1375), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_example] = ACTIONS(1375), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1375), + [sym__fenced_code_block_start_backtick] = ACTIONS(1375), + [sym__fenced_code_block_start_tilde] = ACTIONS(1375), + [sym__blank_line_start] = ACTIONS(1375), + [sym_minus_metadata] = ACTIONS(1375), + [sym__pipe_table_start] = ACTIONS(1375), + [sym__fenced_div_start] = ACTIONS(1375), + [sym__fenced_div_end] = ACTIONS(1375), + [sym_ref_id_specifier] = ACTIONS(1375), + [sym__display_math_state_track_marker] = ACTIONS(1375), + [sym__inline_math_state_track_marker] = ACTIONS(1375), + }, + [STATE(131)] = { + [sym_list_marker_plus] = STATE(30), + [sym__list_item_plus] = STATE(131), + [aux_sym__list_plus_repeat1] = STATE(131), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_POUND] = ACTIONS(1377), + [anon_sym_DOLLAR] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_DOT] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_BSLASH] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym__] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [sym__word] = ACTIONS(1377), + [sym__soft_line_ending] = ACTIONS(1377), + [sym__block_close] = ACTIONS(1377), + [sym__block_quote_start] = ACTIONS(1377), + [sym__indented_chunk_start] = ACTIONS(1377), + [sym_atx_h1_marker] = ACTIONS(1377), + [sym_atx_h2_marker] = ACTIONS(1377), + [sym_atx_h3_marker] = ACTIONS(1377), + [sym_atx_h4_marker] = ACTIONS(1377), + [sym_atx_h5_marker] = ACTIONS(1377), + [sym_atx_h6_marker] = ACTIONS(1377), + [sym__thematic_break] = ACTIONS(1377), + [sym__list_marker_minus] = ACTIONS(1377), + [sym__list_marker_plus] = ACTIONS(1379), + [sym__list_marker_star] = ACTIONS(1377), + [sym__list_marker_parenthesis] = ACTIONS(1377), + [sym__list_marker_dot] = ACTIONS(1377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_example] = ACTIONS(1377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1377), + [sym__fenced_code_block_start_backtick] = ACTIONS(1377), + [sym__fenced_code_block_start_tilde] = ACTIONS(1377), + [sym__blank_line_start] = ACTIONS(1377), + [sym_minus_metadata] = ACTIONS(1377), + [sym__pipe_table_start] = ACTIONS(1377), + [sym__fenced_div_start] = ACTIONS(1377), + [sym__fenced_div_end] = ACTIONS(1377), + [sym_ref_id_specifier] = ACTIONS(1377), + [sym__display_math_state_track_marker] = ACTIONS(1377), + [sym__inline_math_state_track_marker] = ACTIONS(1377), + }, + [STATE(132)] = { + [sym_list_marker_minus] = STATE(31), + [sym__list_item_minus] = STATE(133), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), [anon_sym_RBRACE] = ACTIONS(1382), [anon_sym_EQ] = ACTIONS(1382), [anon_sym_SQUOTE] = ACTIONS(1382), @@ -19514,19 +19856,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h5_marker] = ACTIONS(1382), [sym_atx_h6_marker] = ACTIONS(1382), [sym__thematic_break] = ACTIONS(1382), - [sym__list_marker_minus] = ACTIONS(1382), + [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(1382), [sym__list_marker_star] = ACTIONS(1382), [sym__list_marker_parenthesis] = ACTIONS(1382), [sym__list_marker_dot] = ACTIONS(1382), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), [sym__fenced_code_block_start_backtick] = ACTIONS(1382), [sym__fenced_code_block_start_tilde] = ACTIONS(1382), - [sym__blank_line_start] = ACTIONS(1384), + [sym__blank_line_start] = ACTIONS(1382), [sym_minus_metadata] = ACTIONS(1382), [sym__pipe_table_start] = ACTIONS(1382), [sym__fenced_div_start] = ACTIONS(1382), @@ -19535,279 +19879,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1382), [sym__inline_math_state_track_marker] = ACTIONS(1382), }, - [STATE(145)] = { - [sym__blank_line] = STATE(1024), - [sym_table_caption] = STATE(239), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [sym__word] = ACTIONS(1386), - [sym__soft_line_ending] = ACTIONS(1386), - [sym__block_close] = ACTIONS(1386), - [sym__block_quote_start] = ACTIONS(1386), - [sym__indented_chunk_start] = ACTIONS(1386), - [sym_atx_h1_marker] = ACTIONS(1386), - [sym_atx_h2_marker] = ACTIONS(1386), - [sym_atx_h3_marker] = ACTIONS(1386), - [sym_atx_h4_marker] = ACTIONS(1386), - [sym_atx_h5_marker] = ACTIONS(1386), - [sym_atx_h6_marker] = ACTIONS(1386), - [sym__thematic_break] = ACTIONS(1386), + [STATE(133)] = { + [sym_list_marker_minus] = STATE(31), + [sym__list_item_minus] = STATE(133), + [aux_sym__list_minus_repeat1] = STATE(133), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_QMARK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_BSLASH] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym__] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [sym__word] = ACTIONS(1384), + [sym__soft_line_ending] = ACTIONS(1384), + [sym__block_close] = ACTIONS(1384), + [sym__block_quote_start] = ACTIONS(1384), + [sym__indented_chunk_start] = ACTIONS(1384), + [sym_atx_h1_marker] = ACTIONS(1384), + [sym_atx_h2_marker] = ACTIONS(1384), + [sym_atx_h3_marker] = ACTIONS(1384), + [sym_atx_h4_marker] = ACTIONS(1384), + [sym_atx_h5_marker] = ACTIONS(1384), + [sym_atx_h6_marker] = ACTIONS(1384), + [sym__thematic_break] = ACTIONS(1384), [sym__list_marker_minus] = ACTIONS(1386), - [sym__list_marker_plus] = ACTIONS(1386), - [sym__list_marker_star] = ACTIONS(1386), - [sym__list_marker_parenthesis] = ACTIONS(1386), - [sym__list_marker_dot] = ACTIONS(1386), + [sym__list_marker_plus] = ACTIONS(1384), + [sym__list_marker_star] = ACTIONS(1384), + [sym__list_marker_parenthesis] = ACTIONS(1384), + [sym__list_marker_dot] = ACTIONS(1384), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__fenced_code_block_start_backtick] = ACTIONS(1386), - [sym__fenced_code_block_start_tilde] = ACTIONS(1386), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_example] = ACTIONS(1384), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1384), + [sym__fenced_code_block_start_backtick] = ACTIONS(1384), + [sym__fenced_code_block_start_tilde] = ACTIONS(1384), [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1386), - [sym__pipe_table_start] = ACTIONS(1386), - [sym__fenced_div_start] = ACTIONS(1386), - [sym__fenced_div_end] = ACTIONS(1386), - [sym_ref_id_specifier] = ACTIONS(1386), - [sym__display_math_state_track_marker] = ACTIONS(1386), - [sym__inline_math_state_track_marker] = ACTIONS(1386), + [sym_minus_metadata] = ACTIONS(1384), + [sym__pipe_table_start] = ACTIONS(1384), + [sym__fenced_div_start] = ACTIONS(1384), + [sym__fenced_div_end] = ACTIONS(1384), + [sym_ref_id_specifier] = ACTIONS(1384), + [sym__display_math_state_track_marker] = ACTIONS(1384), + [sym__inline_math_state_track_marker] = ACTIONS(1384), }, - [STATE(146)] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym_block_continuation] = ACTIONS(1388), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym_setext_h1_underline] = ACTIONS(1321), - [sym_setext_h2_underline] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), - }, - [STATE(147)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1390), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1390), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [sym__word] = ACTIONS(1390), - [sym__soft_line_ending] = ACTIONS(1390), - [sym__block_close] = ACTIONS(1390), - [sym__block_quote_start] = ACTIONS(1390), - [sym__indented_chunk_start] = ACTIONS(1390), - [sym_atx_h1_marker] = ACTIONS(1390), - [sym_atx_h2_marker] = ACTIONS(1390), - [sym_atx_h3_marker] = ACTIONS(1390), - [sym_atx_h4_marker] = ACTIONS(1390), - [sym_atx_h5_marker] = ACTIONS(1390), - [sym_atx_h6_marker] = ACTIONS(1390), - [sym_setext_h1_underline] = ACTIONS(1390), - [sym_setext_h2_underline] = ACTIONS(1390), - [sym__thematic_break] = ACTIONS(1390), - [sym__list_marker_minus] = ACTIONS(1390), - [sym__list_marker_plus] = ACTIONS(1390), - [sym__list_marker_star] = ACTIONS(1390), - [sym__list_marker_parenthesis] = ACTIONS(1390), - [sym__list_marker_dot] = ACTIONS(1390), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), - [sym__fenced_code_block_start_backtick] = ACTIONS(1390), - [sym__fenced_code_block_start_tilde] = ACTIONS(1390), - [sym__blank_line_start] = ACTIONS(1390), - [sym_minus_metadata] = ACTIONS(1390), - [sym__pipe_table_start] = ACTIONS(1390), - [sym__fenced_div_start] = ACTIONS(1390), - [sym__fenced_div_end] = ACTIONS(1390), - [sym_ref_id_specifier] = ACTIONS(1390), - [sym__display_math_state_track_marker] = ACTIONS(1390), - [sym__inline_math_state_track_marker] = ACTIONS(1390), - }, - [STATE(148)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym__block_close] = ACTIONS(1321), - [sym_block_continuation] = ACTIONS(1392), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym_setext_h1_underline] = ACTIONS(1321), - [sym_setext_h2_underline] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), + [STATE(134)] = { + [sym_list_marker_star] = STATE(32), + [sym__list_item_star] = STATE(134), + [aux_sym__list_star_repeat1] = STATE(134), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_POUND] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1389), + [anon_sym_GT] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(1389), + [anon_sym_AT] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_BSLASH] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym__] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [sym__word] = ACTIONS(1389), + [sym__soft_line_ending] = ACTIONS(1389), + [sym__block_close] = ACTIONS(1389), + [sym__block_quote_start] = ACTIONS(1389), + [sym__indented_chunk_start] = ACTIONS(1389), + [sym_atx_h1_marker] = ACTIONS(1389), + [sym_atx_h2_marker] = ACTIONS(1389), + [sym_atx_h3_marker] = ACTIONS(1389), + [sym_atx_h4_marker] = ACTIONS(1389), + [sym_atx_h5_marker] = ACTIONS(1389), + [sym_atx_h6_marker] = ACTIONS(1389), + [sym__thematic_break] = ACTIONS(1389), + [sym__list_marker_minus] = ACTIONS(1389), + [sym__list_marker_plus] = ACTIONS(1389), + [sym__list_marker_star] = ACTIONS(1391), + [sym__list_marker_parenthesis] = ACTIONS(1389), + [sym__list_marker_dot] = ACTIONS(1389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_example] = ACTIONS(1389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1389), + [sym__fenced_code_block_start_backtick] = ACTIONS(1389), + [sym__fenced_code_block_start_tilde] = ACTIONS(1389), + [sym__blank_line_start] = ACTIONS(1389), + [sym_minus_metadata] = ACTIONS(1389), + [sym__pipe_table_start] = ACTIONS(1389), + [sym__fenced_div_start] = ACTIONS(1389), + [sym__fenced_div_end] = ACTIONS(1389), + [sym_ref_id_specifier] = ACTIONS(1389), + [sym__display_math_state_track_marker] = ACTIONS(1389), + [sym__inline_math_state_track_marker] = ACTIONS(1389), }, - [STATE(149)] = { + [STATE(135)] = { + [sym_list_marker_dot] = STATE(33), + [sym__list_item_dot] = STATE(135), + [aux_sym__list_dot_repeat1] = STATE(135), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1394), [anon_sym_LBRACE] = ACTIONS(1394), [anon_sym_RBRACE] = ACTIONS(1394), @@ -19851,19 +20068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(1394), [sym_atx_h5_marker] = ACTIONS(1394), [sym_atx_h6_marker] = ACTIONS(1394), - [sym_setext_h1_underline] = ACTIONS(1394), - [sym_setext_h2_underline] = ACTIONS(1394), [sym__thematic_break] = ACTIONS(1394), [sym__list_marker_minus] = ACTIONS(1394), [sym__list_marker_plus] = ACTIONS(1394), [sym__list_marker_star] = ACTIONS(1394), [sym__list_marker_parenthesis] = ACTIONS(1394), - [sym__list_marker_dot] = ACTIONS(1394), + [sym__list_marker_dot] = ACTIONS(1396), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1394), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), [sym__list_marker_star_dont_interrupt] = ACTIONS(1394), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1394), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1394), [sym__fenced_code_block_start_backtick] = ACTIONS(1394), [sym__fenced_code_block_start_tilde] = ACTIONS(1394), [sym__blank_line_start] = ACTIONS(1394), @@ -19875,1226 +20092,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1394), [sym__inline_math_state_track_marker] = ACTIONS(1394), }, - [STATE(150)] = { - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_parenthesis] = STATE(131), - [aux_sym__list_parenthesis_repeat1] = STATE(131), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [sym__word] = ACTIONS(1335), - [sym__soft_line_ending] = ACTIONS(1335), - [sym__block_close] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), - [sym__list_marker_parenthesis] = ACTIONS(37), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym_minus_metadata] = ACTIONS(1335), - [sym__pipe_table_start] = ACTIONS(1335), - [sym__fenced_div_start] = ACTIONS(1335), - [sym_ref_id_specifier] = ACTIONS(1335), - [sym__display_math_state_track_marker] = ACTIONS(1335), - [sym__inline_math_state_track_marker] = ACTIONS(1335), - }, - [STATE(151)] = { - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_parenthesis] = STATE(151), - [aux_sym__list_parenthesis_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(1357), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1357), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [sym__word] = ACTIONS(1357), - [sym__soft_line_ending] = ACTIONS(1357), - [sym__block_quote_start] = ACTIONS(1357), - [sym__indented_chunk_start] = ACTIONS(1357), - [sym_atx_h1_marker] = ACTIONS(1357), - [sym_atx_h2_marker] = ACTIONS(1357), - [sym_atx_h3_marker] = ACTIONS(1357), - [sym_atx_h4_marker] = ACTIONS(1357), - [sym_atx_h5_marker] = ACTIONS(1357), - [sym_atx_h6_marker] = ACTIONS(1357), - [sym__thematic_break] = ACTIONS(1357), - [sym__list_marker_minus] = ACTIONS(1357), - [sym__list_marker_plus] = ACTIONS(1357), - [sym__list_marker_star] = ACTIONS(1357), - [sym__list_marker_parenthesis] = ACTIONS(1359), - [sym__list_marker_dot] = ACTIONS(1357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1357), - [sym__fenced_code_block_start_backtick] = ACTIONS(1357), - [sym__fenced_code_block_start_tilde] = ACTIONS(1357), - [sym__blank_line_start] = ACTIONS(1357), - [sym_minus_metadata] = ACTIONS(1357), - [sym__pipe_table_start] = ACTIONS(1357), - [sym__fenced_div_start] = ACTIONS(1357), - [sym_ref_id_specifier] = ACTIONS(1357), - [sym__display_math_state_track_marker] = ACTIONS(1357), - [sym__inline_math_state_track_marker] = ACTIONS(1357), - }, - [STATE(152)] = { - [sym__indented_chunk] = STATE(152), - [sym__blank_line] = STATE(152), - [aux_sym_indented_code_block_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(1362), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [sym__word] = ACTIONS(1362), - [sym__soft_line_ending] = ACTIONS(1362), - [sym__block_quote_start] = ACTIONS(1362), - [sym__indented_chunk_start] = ACTIONS(1396), - [sym_atx_h1_marker] = ACTIONS(1362), - [sym_atx_h2_marker] = ACTIONS(1362), - [sym_atx_h3_marker] = ACTIONS(1362), - [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(1362), - [sym_atx_h6_marker] = ACTIONS(1362), - [sym__thematic_break] = ACTIONS(1362), - [sym__list_marker_minus] = ACTIONS(1362), - [sym__list_marker_plus] = ACTIONS(1362), - [sym__list_marker_star] = ACTIONS(1362), - [sym__list_marker_parenthesis] = ACTIONS(1362), - [sym__list_marker_dot] = ACTIONS(1362), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), - [sym__fenced_code_block_start_backtick] = ACTIONS(1362), - [sym__fenced_code_block_start_tilde] = ACTIONS(1362), - [sym__blank_line_start] = ACTIONS(1399), - [sym_minus_metadata] = ACTIONS(1362), - [sym__pipe_table_start] = ACTIONS(1362), - [sym__fenced_div_start] = ACTIONS(1362), - [sym_ref_id_specifier] = ACTIONS(1362), - [sym__display_math_state_track_marker] = ACTIONS(1362), - [sym__inline_math_state_track_marker] = ACTIONS(1362), - }, - [STATE(153)] = { - [sym_list_marker_plus] = STATE(27), - [sym__list_item_plus] = STATE(132), - [aux_sym__list_plus_repeat1] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(1327), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym__] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [sym__word] = ACTIONS(1327), - [sym__soft_line_ending] = ACTIONS(1327), - [sym__block_quote_start] = ACTIONS(1327), - [sym__indented_chunk_start] = ACTIONS(1327), - [sym_atx_h1_marker] = ACTIONS(1327), - [sym_atx_h2_marker] = ACTIONS(1327), - [sym_atx_h3_marker] = ACTIONS(1327), - [sym_atx_h4_marker] = ACTIONS(1327), - [sym_atx_h5_marker] = ACTIONS(1327), - [sym_atx_h6_marker] = ACTIONS(1327), - [sym__thematic_break] = ACTIONS(1327), - [sym__list_marker_minus] = ACTIONS(1327), - [sym__list_marker_plus] = ACTIONS(33), - [sym__list_marker_star] = ACTIONS(1327), - [sym__list_marker_parenthesis] = ACTIONS(1327), - [sym__list_marker_dot] = ACTIONS(1327), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1327), - [sym__fenced_code_block_start_backtick] = ACTIONS(1327), - [sym__fenced_code_block_start_tilde] = ACTIONS(1327), - [sym__blank_line_start] = ACTIONS(1327), - [sym_minus_metadata] = ACTIONS(1327), - [sym__pipe_table_start] = ACTIONS(1327), - [sym__fenced_div_start] = ACTIONS(1327), - [sym_ref_id_specifier] = ACTIONS(1327), - [sym__display_math_state_track_marker] = ACTIONS(1327), - [sym__inline_math_state_track_marker] = ACTIONS(1327), - }, - [STATE(154)] = { - [sym__indented_chunk] = STATE(139), - [sym__blank_line] = STATE(139), - [aux_sym_indented_code_block_repeat1] = STATE(139), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym__] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [sym__word] = ACTIONS(1319), - [sym__soft_line_ending] = ACTIONS(1319), - [sym__block_close] = ACTIONS(1319), - [sym__block_quote_start] = ACTIONS(1319), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1319), - [sym_atx_h2_marker] = ACTIONS(1319), - [sym_atx_h3_marker] = ACTIONS(1319), - [sym_atx_h4_marker] = ACTIONS(1319), - [sym_atx_h5_marker] = ACTIONS(1319), - [sym_atx_h6_marker] = ACTIONS(1319), - [sym__thematic_break] = ACTIONS(1319), - [sym__list_marker_minus] = ACTIONS(1319), - [sym__list_marker_plus] = ACTIONS(1319), - [sym__list_marker_star] = ACTIONS(1319), - [sym__list_marker_parenthesis] = ACTIONS(1319), - [sym__list_marker_dot] = ACTIONS(1319), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1319), - [sym__fenced_code_block_start_backtick] = ACTIONS(1319), - [sym__fenced_code_block_start_tilde] = ACTIONS(1319), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1319), - [sym__pipe_table_start] = ACTIONS(1319), - [sym__fenced_div_start] = ACTIONS(1319), - [sym_ref_id_specifier] = ACTIONS(1319), - [sym__display_math_state_track_marker] = ACTIONS(1319), - [sym__inline_math_state_track_marker] = ACTIONS(1319), - }, - [STATE(155)] = { - [sym_list_marker_minus] = STATE(3), - [sym__list_item_minus] = STATE(133), - [aux_sym__list_minus_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1329), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1329), - [anon_sym_BQUOTE] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [sym__word] = ACTIONS(1329), - [sym__soft_line_ending] = ACTIONS(1329), - [sym__block_quote_start] = ACTIONS(1329), - [sym__indented_chunk_start] = ACTIONS(1329), - [sym_atx_h1_marker] = ACTIONS(1329), - [sym_atx_h2_marker] = ACTIONS(1329), - [sym_atx_h3_marker] = ACTIONS(1329), - [sym_atx_h4_marker] = ACTIONS(1329), - [sym_atx_h5_marker] = ACTIONS(1329), - [sym_atx_h6_marker] = ACTIONS(1329), - [sym__thematic_break] = ACTIONS(1329), - [sym__list_marker_minus] = ACTIONS(31), - [sym__list_marker_plus] = ACTIONS(1329), - [sym__list_marker_star] = ACTIONS(1329), - [sym__list_marker_parenthesis] = ACTIONS(1329), - [sym__list_marker_dot] = ACTIONS(1329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1329), - [sym__fenced_code_block_start_backtick] = ACTIONS(1329), - [sym__fenced_code_block_start_tilde] = ACTIONS(1329), - [sym__blank_line_start] = ACTIONS(1329), - [sym_minus_metadata] = ACTIONS(1329), - [sym__pipe_table_start] = ACTIONS(1329), - [sym__fenced_div_start] = ACTIONS(1329), - [sym_ref_id_specifier] = ACTIONS(1329), - [sym__display_math_state_track_marker] = ACTIONS(1329), - [sym__inline_math_state_track_marker] = ACTIONS(1329), - }, - [STATE(156)] = { - [sym_list_marker_star] = STATE(4), + [STATE(136)] = { + [sym_list_marker_star] = STATE(32), [sym__list_item_star] = STATE(134), [aux_sym__list_star_repeat1] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(1331), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [sym__word] = ACTIONS(1331), - [sym__soft_line_ending] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(1331), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_DOLLAR] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_BSLASH] = ACTIONS(1399), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym__] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [sym__word] = ACTIONS(1399), + [sym__soft_line_ending] = ACTIONS(1399), + [sym__block_close] = ACTIONS(1399), + [sym__block_quote_start] = ACTIONS(1399), + [sym__indented_chunk_start] = ACTIONS(1399), + [sym_atx_h1_marker] = ACTIONS(1399), + [sym_atx_h2_marker] = ACTIONS(1399), + [sym_atx_h3_marker] = ACTIONS(1399), + [sym_atx_h4_marker] = ACTIONS(1399), + [sym_atx_h5_marker] = ACTIONS(1399), + [sym_atx_h6_marker] = ACTIONS(1399), + [sym__thematic_break] = ACTIONS(1399), + [sym__list_marker_minus] = ACTIONS(1399), + [sym__list_marker_plus] = ACTIONS(1399), [sym__list_marker_star] = ACTIONS(35), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), + [sym__list_marker_parenthesis] = ACTIONS(1399), + [sym__list_marker_dot] = ACTIONS(1399), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1399), [sym__list_marker_star_dont_interrupt] = ACTIONS(35), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(1331), - [sym_minus_metadata] = ACTIONS(1331), - [sym__pipe_table_start] = ACTIONS(1331), - [sym__fenced_div_start] = ACTIONS(1331), - [sym_ref_id_specifier] = ACTIONS(1331), - [sym__display_math_state_track_marker] = ACTIONS(1331), - [sym__inline_math_state_track_marker] = ACTIONS(1331), - }, - [STATE(157)] = { - [sym_list_marker_dot] = STATE(5), - [sym__list_item_dot] = STATE(135), - [aux_sym__list_dot_repeat1] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(1333), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_AT] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1333), - [anon_sym_BQUOTE] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [sym__word] = ACTIONS(1333), - [sym__soft_line_ending] = ACTIONS(1333), - [sym__block_quote_start] = ACTIONS(1333), - [sym__indented_chunk_start] = ACTIONS(1333), - [sym_atx_h1_marker] = ACTIONS(1333), - [sym_atx_h2_marker] = ACTIONS(1333), - [sym_atx_h3_marker] = ACTIONS(1333), - [sym_atx_h4_marker] = ACTIONS(1333), - [sym_atx_h5_marker] = ACTIONS(1333), - [sym_atx_h6_marker] = ACTIONS(1333), - [sym__thematic_break] = ACTIONS(1333), - [sym__list_marker_minus] = ACTIONS(1333), - [sym__list_marker_plus] = ACTIONS(1333), - [sym__list_marker_star] = ACTIONS(1333), - [sym__list_marker_parenthesis] = ACTIONS(1333), - [sym__list_marker_dot] = ACTIONS(39), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(1333), - [sym__fenced_code_block_start_tilde] = ACTIONS(1333), - [sym__blank_line_start] = ACTIONS(1333), - [sym_minus_metadata] = ACTIONS(1333), - [sym__pipe_table_start] = ACTIONS(1333), - [sym__fenced_div_start] = ACTIONS(1333), - [sym_ref_id_specifier] = ACTIONS(1333), - [sym__display_math_state_track_marker] = ACTIONS(1333), - [sym__inline_math_state_track_marker] = ACTIONS(1333), - }, - [STATE(158)] = { - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_parenthesis] = STATE(151), - [aux_sym__list_parenthesis_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(1335), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [sym__word] = ACTIONS(1335), - [sym__soft_line_ending] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), - [sym__list_marker_parenthesis] = ACTIONS(37), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym_minus_metadata] = ACTIONS(1335), - [sym__pipe_table_start] = ACTIONS(1335), - [sym__fenced_div_start] = ACTIONS(1335), - [sym_ref_id_specifier] = ACTIONS(1335), - [sym__display_math_state_track_marker] = ACTIONS(1335), - [sym__inline_math_state_track_marker] = ACTIONS(1335), - }, - [STATE(159)] = { - [sym_list_marker_plus] = STATE(22), - [sym__list_item_plus] = STATE(159), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1337), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [sym__word] = ACTIONS(1337), - [sym__soft_line_ending] = ACTIONS(1337), - [sym__block_close] = ACTIONS(1337), - [sym__block_quote_start] = ACTIONS(1337), - [sym__indented_chunk_start] = ACTIONS(1337), - [sym_atx_h1_marker] = ACTIONS(1337), - [sym_atx_h2_marker] = ACTIONS(1337), - [sym_atx_h3_marker] = ACTIONS(1337), - [sym_atx_h4_marker] = ACTIONS(1337), - [sym_atx_h5_marker] = ACTIONS(1337), - [sym_atx_h6_marker] = ACTIONS(1337), - [sym__thematic_break] = ACTIONS(1337), - [sym__list_marker_minus] = ACTIONS(1337), - [sym__list_marker_plus] = ACTIONS(1339), - [sym__list_marker_star] = ACTIONS(1337), - [sym__list_marker_parenthesis] = ACTIONS(1337), - [sym__list_marker_dot] = ACTIONS(1337), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1339), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1337), - [sym__fenced_code_block_start_backtick] = ACTIONS(1337), - [sym__fenced_code_block_start_tilde] = ACTIONS(1337), - [sym__blank_line_start] = ACTIONS(1337), - [sym_minus_metadata] = ACTIONS(1337), - [sym__pipe_table_start] = ACTIONS(1337), - [sym__fenced_div_start] = ACTIONS(1337), - [sym_ref_id_specifier] = ACTIONS(1337), - [sym__display_math_state_track_marker] = ACTIONS(1337), - [sym__inline_math_state_track_marker] = ACTIONS(1337), - }, - [STATE(160)] = { - [sym_list_marker_minus] = STATE(23), - [sym__list_item_minus] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(160), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym__] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [sym__word] = ACTIONS(1342), - [sym__soft_line_ending] = ACTIONS(1342), - [sym__block_close] = ACTIONS(1342), - [sym__block_quote_start] = ACTIONS(1342), - [sym__indented_chunk_start] = ACTIONS(1342), - [sym_atx_h1_marker] = ACTIONS(1342), - [sym_atx_h2_marker] = ACTIONS(1342), - [sym_atx_h3_marker] = ACTIONS(1342), - [sym_atx_h4_marker] = ACTIONS(1342), - [sym_atx_h5_marker] = ACTIONS(1342), - [sym_atx_h6_marker] = ACTIONS(1342), - [sym__thematic_break] = ACTIONS(1342), - [sym__list_marker_minus] = ACTIONS(1344), - [sym__list_marker_plus] = ACTIONS(1342), - [sym__list_marker_star] = ACTIONS(1342), - [sym__list_marker_parenthesis] = ACTIONS(1342), - [sym__list_marker_dot] = ACTIONS(1342), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), - [sym__fenced_code_block_start_backtick] = ACTIONS(1342), - [sym__fenced_code_block_start_tilde] = ACTIONS(1342), - [sym__blank_line_start] = ACTIONS(1342), - [sym_minus_metadata] = ACTIONS(1342), - [sym__pipe_table_start] = ACTIONS(1342), - [sym__fenced_div_start] = ACTIONS(1342), - [sym_ref_id_specifier] = ACTIONS(1342), - [sym__display_math_state_track_marker] = ACTIONS(1342), - [sym__inline_math_state_track_marker] = ACTIONS(1342), - }, - [STATE(161)] = { - [sym_list_marker_star] = STATE(24), - [sym__list_item_star] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(161), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_EQ] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym__] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [sym__word] = ACTIONS(1347), - [sym__soft_line_ending] = ACTIONS(1347), - [sym__block_close] = ACTIONS(1347), - [sym__block_quote_start] = ACTIONS(1347), - [sym__indented_chunk_start] = ACTIONS(1347), - [sym_atx_h1_marker] = ACTIONS(1347), - [sym_atx_h2_marker] = ACTIONS(1347), - [sym_atx_h3_marker] = ACTIONS(1347), - [sym_atx_h4_marker] = ACTIONS(1347), - [sym_atx_h5_marker] = ACTIONS(1347), - [sym_atx_h6_marker] = ACTIONS(1347), - [sym__thematic_break] = ACTIONS(1347), - [sym__list_marker_minus] = ACTIONS(1347), - [sym__list_marker_plus] = ACTIONS(1347), - [sym__list_marker_star] = ACTIONS(1349), - [sym__list_marker_parenthesis] = ACTIONS(1347), - [sym__list_marker_dot] = ACTIONS(1347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1347), - [sym__fenced_code_block_start_backtick] = ACTIONS(1347), - [sym__fenced_code_block_start_tilde] = ACTIONS(1347), - [sym__blank_line_start] = ACTIONS(1347), - [sym_minus_metadata] = ACTIONS(1347), - [sym__pipe_table_start] = ACTIONS(1347), - [sym__fenced_div_start] = ACTIONS(1347), - [sym_ref_id_specifier] = ACTIONS(1347), - [sym__display_math_state_track_marker] = ACTIONS(1347), - [sym__inline_math_state_track_marker] = ACTIONS(1347), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_example] = ACTIONS(1399), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1399), + [sym__fenced_code_block_start_backtick] = ACTIONS(1399), + [sym__fenced_code_block_start_tilde] = ACTIONS(1399), + [sym__blank_line_start] = ACTIONS(1399), + [sym_minus_metadata] = ACTIONS(1399), + [sym__pipe_table_start] = ACTIONS(1399), + [sym__fenced_div_start] = ACTIONS(1399), + [sym__fenced_div_end] = ACTIONS(1399), + [sym_ref_id_specifier] = ACTIONS(1399), + [sym__display_math_state_track_marker] = ACTIONS(1399), + [sym__inline_math_state_track_marker] = ACTIONS(1399), }, - [STATE(162)] = { - [sym_list_marker_dot] = STATE(25), - [sym__list_item_dot] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(162), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [sym__word] = ACTIONS(1352), - [sym__soft_line_ending] = ACTIONS(1352), - [sym__block_close] = ACTIONS(1352), - [sym__block_quote_start] = ACTIONS(1352), - [sym__indented_chunk_start] = ACTIONS(1352), - [sym_atx_h1_marker] = ACTIONS(1352), - [sym_atx_h2_marker] = ACTIONS(1352), - [sym_atx_h3_marker] = ACTIONS(1352), - [sym_atx_h4_marker] = ACTIONS(1352), - [sym_atx_h5_marker] = ACTIONS(1352), - [sym_atx_h6_marker] = ACTIONS(1352), - [sym__thematic_break] = ACTIONS(1352), - [sym__list_marker_minus] = ACTIONS(1352), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1352), - [sym__list_marker_parenthesis] = ACTIONS(1352), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1352), - [sym__fenced_code_block_start_tilde] = ACTIONS(1352), - [sym__blank_line_start] = ACTIONS(1352), - [sym_minus_metadata] = ACTIONS(1352), - [sym__pipe_table_start] = ACTIONS(1352), - [sym__fenced_div_start] = ACTIONS(1352), - [sym_ref_id_specifier] = ACTIONS(1352), - [sym__display_math_state_track_marker] = ACTIONS(1352), - [sym__inline_math_state_track_marker] = ACTIONS(1352), + [STATE(137)] = { + [sym_list_marker_example] = STATE(15), + [sym__list_item_example] = STATE(137), + [aux_sym__list_example_repeat1] = STATE(137), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_BSLASH] = ACTIONS(1401), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [sym__word] = ACTIONS(1401), + [sym__soft_line_ending] = ACTIONS(1401), + [sym__block_close] = ACTIONS(1401), + [sym__block_quote_start] = ACTIONS(1401), + [sym__indented_chunk_start] = ACTIONS(1401), + [sym_atx_h1_marker] = ACTIONS(1401), + [sym_atx_h2_marker] = ACTIONS(1401), + [sym_atx_h3_marker] = ACTIONS(1401), + [sym_atx_h4_marker] = ACTIONS(1401), + [sym_atx_h5_marker] = ACTIONS(1401), + [sym_atx_h6_marker] = ACTIONS(1401), + [sym__thematic_break] = ACTIONS(1401), + [sym__list_marker_minus] = ACTIONS(1401), + [sym__list_marker_plus] = ACTIONS(1401), + [sym__list_marker_star] = ACTIONS(1401), + [sym__list_marker_parenthesis] = ACTIONS(1401), + [sym__list_marker_dot] = ACTIONS(1401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_example] = ACTIONS(1403), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1403), + [sym__fenced_code_block_start_backtick] = ACTIONS(1401), + [sym__fenced_code_block_start_tilde] = ACTIONS(1401), + [sym__blank_line_start] = ACTIONS(1401), + [sym_minus_metadata] = ACTIONS(1401), + [sym__pipe_table_start] = ACTIONS(1401), + [sym__fenced_div_start] = ACTIONS(1401), + [sym__fenced_div_end] = ACTIONS(1401), + [sym_ref_id_specifier] = ACTIONS(1401), + [sym__display_math_state_track_marker] = ACTIONS(1401), + [sym__inline_math_state_track_marker] = ACTIONS(1401), }, - [STATE(163)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_BSLASH] = ACTIONS(1402), - [anon_sym_RBRACK] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym__] = ACTIONS(1402), - [anon_sym_BQUOTE] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1402), - [sym__word] = ACTIONS(1402), - [sym__soft_line_ending] = ACTIONS(1402), - [sym__block_close] = ACTIONS(1402), - [sym_block_continuation] = ACTIONS(1404), - [sym__block_quote_start] = ACTIONS(1402), - [sym__indented_chunk_start] = ACTIONS(1402), - [sym_atx_h1_marker] = ACTIONS(1402), - [sym_atx_h2_marker] = ACTIONS(1402), - [sym_atx_h3_marker] = ACTIONS(1402), - [sym_atx_h4_marker] = ACTIONS(1402), - [sym_atx_h5_marker] = ACTIONS(1402), - [sym_atx_h6_marker] = ACTIONS(1402), - [sym__thematic_break] = ACTIONS(1402), - [sym__list_marker_minus] = ACTIONS(1402), - [sym__list_marker_plus] = ACTIONS(1402), - [sym__list_marker_star] = ACTIONS(1402), - [sym__list_marker_parenthesis] = ACTIONS(1402), - [sym__list_marker_dot] = ACTIONS(1402), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1402), - [sym__fenced_code_block_start_backtick] = ACTIONS(1402), - [sym__fenced_code_block_start_tilde] = ACTIONS(1402), - [sym__blank_line_start] = ACTIONS(1402), - [sym_minus_metadata] = ACTIONS(1402), - [sym__pipe_table_start] = ACTIONS(1402), - [sym__fenced_div_start] = ACTIONS(1402), - [sym__fenced_div_end] = ACTIONS(1402), - [sym_ref_id_specifier] = ACTIONS(1402), - [sym__display_math_state_track_marker] = ACTIONS(1402), - [sym__inline_math_state_track_marker] = ACTIONS(1402), + [STATE(138)] = { + [sym__indented_chunk] = STATE(146), + [sym__blank_line] = STATE(146), + [aux_sym_indented_code_block_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1369), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_DOLLAR] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [sym__word] = ACTIONS(1369), + [sym__soft_line_ending] = ACTIONS(1369), + [sym__block_quote_start] = ACTIONS(1369), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1369), + [sym_atx_h2_marker] = ACTIONS(1369), + [sym_atx_h3_marker] = ACTIONS(1369), + [sym_atx_h4_marker] = ACTIONS(1369), + [sym_atx_h5_marker] = ACTIONS(1369), + [sym_atx_h6_marker] = ACTIONS(1369), + [sym__thematic_break] = ACTIONS(1369), + [sym__list_marker_minus] = ACTIONS(1369), + [sym__list_marker_plus] = ACTIONS(1369), + [sym__list_marker_star] = ACTIONS(1369), + [sym__list_marker_parenthesis] = ACTIONS(1369), + [sym__list_marker_dot] = ACTIONS(1369), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_example] = ACTIONS(1369), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1369), + [sym__fenced_code_block_start_backtick] = ACTIONS(1369), + [sym__fenced_code_block_start_tilde] = ACTIONS(1369), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1369), + [sym__pipe_table_start] = ACTIONS(1369), + [sym__fenced_div_start] = ACTIONS(1369), + [sym_ref_id_specifier] = ACTIONS(1369), + [sym__display_math_state_track_marker] = ACTIONS(1369), + [sym__inline_math_state_track_marker] = ACTIONS(1369), }, - [STATE(164)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_EQ] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1406), - [anon_sym_PERCENT] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_COMMA] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_BSLASH] = ACTIONS(1406), - [anon_sym_RBRACK] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym__] = ACTIONS(1406), - [anon_sym_BQUOTE] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1406), - [sym__word] = ACTIONS(1406), - [sym__soft_line_ending] = ACTIONS(1406), - [sym__block_close] = ACTIONS(1406), - [sym_block_continuation] = ACTIONS(1408), - [sym__block_quote_start] = ACTIONS(1406), + [STATE(139)] = { + [sym__indented_chunk] = STATE(139), + [sym__blank_line] = STATE(139), + [aux_sym_indented_code_block_repeat1] = STATE(139), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [sym__word] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_close] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), [sym__indented_chunk_start] = ACTIONS(1406), - [sym_atx_h1_marker] = ACTIONS(1406), - [sym_atx_h2_marker] = ACTIONS(1406), - [sym_atx_h3_marker] = ACTIONS(1406), - [sym_atx_h4_marker] = ACTIONS(1406), - [sym_atx_h5_marker] = ACTIONS(1406), - [sym_atx_h6_marker] = ACTIONS(1406), - [sym__thematic_break] = ACTIONS(1406), - [sym__list_marker_minus] = ACTIONS(1406), - [sym__list_marker_plus] = ACTIONS(1406), - [sym__list_marker_star] = ACTIONS(1406), - [sym__list_marker_parenthesis] = ACTIONS(1406), - [sym__list_marker_dot] = ACTIONS(1406), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1406), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1406), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1406), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1406), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1406), - [sym__fenced_code_block_start_backtick] = ACTIONS(1406), - [sym__fenced_code_block_start_tilde] = ACTIONS(1406), - [sym__blank_line_start] = ACTIONS(1406), - [sym_minus_metadata] = ACTIONS(1406), - [sym__pipe_table_start] = ACTIONS(1406), - [sym__fenced_div_start] = ACTIONS(1406), - [sym__fenced_div_end] = ACTIONS(1406), - [sym_ref_id_specifier] = ACTIONS(1406), - [sym__display_math_state_track_marker] = ACTIONS(1406), - [sym__inline_math_state_track_marker] = ACTIONS(1406), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_example] = ACTIONS(1348), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(1409), + [sym_minus_metadata] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + [sym__fenced_div_start] = ACTIONS(1348), + [sym_ref_id_specifier] = ACTIONS(1348), + [sym__display_math_state_track_marker] = ACTIONS(1348), + [sym__inline_math_state_track_marker] = ACTIONS(1348), }, - [STATE(165)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_BSLASH] = ACTIONS(1410), - [anon_sym_RBRACK] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [sym__word] = ACTIONS(1410), - [sym__soft_line_ending] = ACTIONS(1410), - [sym__block_close] = ACTIONS(1410), - [sym_block_continuation] = ACTIONS(1412), - [sym__block_quote_start] = ACTIONS(1410), - [sym__indented_chunk_start] = ACTIONS(1410), - [sym_atx_h1_marker] = ACTIONS(1410), - [sym_atx_h2_marker] = ACTIONS(1410), - [sym_atx_h3_marker] = ACTIONS(1410), - [sym_atx_h4_marker] = ACTIONS(1410), - [sym_atx_h5_marker] = ACTIONS(1410), - [sym_atx_h6_marker] = ACTIONS(1410), - [sym__thematic_break] = ACTIONS(1410), - [sym__list_marker_minus] = ACTIONS(1410), - [sym__list_marker_plus] = ACTIONS(1410), - [sym__list_marker_star] = ACTIONS(1410), - [sym__list_marker_parenthesis] = ACTIONS(1410), - [sym__list_marker_dot] = ACTIONS(1410), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1410), - [sym__fenced_code_block_start_backtick] = ACTIONS(1410), - [sym__fenced_code_block_start_tilde] = ACTIONS(1410), - [sym__blank_line_start] = ACTIONS(1410), - [sym_minus_metadata] = ACTIONS(1410), - [sym__pipe_table_start] = ACTIONS(1410), - [sym__fenced_div_start] = ACTIONS(1410), - [sym__fenced_div_end] = ACTIONS(1410), - [sym_ref_id_specifier] = ACTIONS(1410), - [sym__display_math_state_track_marker] = ACTIONS(1410), - [sym__inline_math_state_track_marker] = ACTIONS(1410), + [STATE(140)] = { + [sym_list_marker_plus] = STATE(18), + [sym__list_item_plus] = STATE(140), + [aux_sym__list_plus_repeat1] = STATE(140), + [ts_builtin_sym_end] = ACTIONS(1377), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_POUND] = ACTIONS(1377), + [anon_sym_DOLLAR] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_DOT] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_BSLASH] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym__] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [sym__word] = ACTIONS(1377), + [sym__soft_line_ending] = ACTIONS(1377), + [sym__block_quote_start] = ACTIONS(1377), + [sym__indented_chunk_start] = ACTIONS(1377), + [sym_atx_h1_marker] = ACTIONS(1377), + [sym_atx_h2_marker] = ACTIONS(1377), + [sym_atx_h3_marker] = ACTIONS(1377), + [sym_atx_h4_marker] = ACTIONS(1377), + [sym_atx_h5_marker] = ACTIONS(1377), + [sym_atx_h6_marker] = ACTIONS(1377), + [sym__thematic_break] = ACTIONS(1377), + [sym__list_marker_minus] = ACTIONS(1377), + [sym__list_marker_plus] = ACTIONS(1379), + [sym__list_marker_star] = ACTIONS(1377), + [sym__list_marker_parenthesis] = ACTIONS(1377), + [sym__list_marker_dot] = ACTIONS(1377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_example] = ACTIONS(1377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1377), + [sym__fenced_code_block_start_backtick] = ACTIONS(1377), + [sym__fenced_code_block_start_tilde] = ACTIONS(1377), + [sym__blank_line_start] = ACTIONS(1377), + [sym_minus_metadata] = ACTIONS(1377), + [sym__pipe_table_start] = ACTIONS(1377), + [sym__fenced_div_start] = ACTIONS(1377), + [sym_ref_id_specifier] = ACTIONS(1377), + [sym__display_math_state_track_marker] = ACTIONS(1377), + [sym__inline_math_state_track_marker] = ACTIONS(1377), }, - [STATE(166)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [sym__word] = ACTIONS(1370), - [sym__soft_line_ending] = ACTIONS(1370), - [sym__block_close] = ACTIONS(1370), - [sym__block_quote_start] = ACTIONS(1370), - [sym__indented_chunk_start] = ACTIONS(1370), - [sym_atx_h1_marker] = ACTIONS(1370), - [sym_atx_h2_marker] = ACTIONS(1370), - [sym_atx_h3_marker] = ACTIONS(1370), - [sym_atx_h4_marker] = ACTIONS(1370), - [sym_atx_h5_marker] = ACTIONS(1370), - [sym_atx_h6_marker] = ACTIONS(1370), + [STATE(141)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [sym__word] = ACTIONS(1412), + [sym__soft_line_ending] = ACTIONS(1412), + [sym__block_close] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1412), + [sym__indented_chunk_start] = ACTIONS(1412), + [sym_atx_h1_marker] = ACTIONS(1412), + [sym_atx_h2_marker] = ACTIONS(1412), + [sym_atx_h3_marker] = ACTIONS(1412), + [sym_atx_h4_marker] = ACTIONS(1412), + [sym_atx_h5_marker] = ACTIONS(1412), + [sym_atx_h6_marker] = ACTIONS(1412), [sym_setext_h1_underline] = ACTIONS(1414), [sym_setext_h2_underline] = ACTIONS(1416), - [sym__thematic_break] = ACTIONS(1370), - [sym__list_marker_minus] = ACTIONS(1370), - [sym__list_marker_plus] = ACTIONS(1370), - [sym__list_marker_star] = ACTIONS(1370), - [sym__list_marker_parenthesis] = ACTIONS(1370), - [sym__list_marker_dot] = ACTIONS(1370), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), - [sym__fenced_code_block_start_backtick] = ACTIONS(1370), - [sym__fenced_code_block_start_tilde] = ACTIONS(1370), - [sym__blank_line_start] = ACTIONS(1370), - [sym_minus_metadata] = ACTIONS(1370), - [sym__pipe_table_start] = ACTIONS(1370), - [sym__fenced_div_start] = ACTIONS(1370), - [sym_ref_id_specifier] = ACTIONS(1370), - [sym__display_math_state_track_marker] = ACTIONS(1370), - [sym__inline_math_state_track_marker] = ACTIONS(1370), + [sym__thematic_break] = ACTIONS(1412), + [sym__list_marker_minus] = ACTIONS(1412), + [sym__list_marker_plus] = ACTIONS(1412), + [sym__list_marker_star] = ACTIONS(1412), + [sym__list_marker_parenthesis] = ACTIONS(1412), + [sym__list_marker_dot] = ACTIONS(1412), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_example] = ACTIONS(1412), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1412), + [sym__fenced_code_block_start_backtick] = ACTIONS(1412), + [sym__fenced_code_block_start_tilde] = ACTIONS(1412), + [sym__blank_line_start] = ACTIONS(1412), + [sym_minus_metadata] = ACTIONS(1412), + [sym__pipe_table_start] = ACTIONS(1412), + [sym__fenced_div_start] = ACTIONS(1412), + [sym__fenced_div_end] = ACTIONS(1412), + [sym_ref_id_specifier] = ACTIONS(1412), + [sym__display_math_state_track_marker] = ACTIONS(1412), + [sym__inline_math_state_track_marker] = ACTIONS(1412), }, - [STATE(167)] = { - [sym__blank_line] = STATE(1046), - [sym_table_caption] = STATE(311), - [ts_builtin_sym_end] = ACTIONS(1382), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_BSLASH] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [sym__word] = ACTIONS(1382), - [sym__soft_line_ending] = ACTIONS(1382), - [sym__block_quote_start] = ACTIONS(1382), - [sym__indented_chunk_start] = ACTIONS(1382), - [sym_atx_h1_marker] = ACTIONS(1382), - [sym_atx_h2_marker] = ACTIONS(1382), - [sym_atx_h3_marker] = ACTIONS(1382), - [sym_atx_h4_marker] = ACTIONS(1382), - [sym_atx_h5_marker] = ACTIONS(1382), - [sym_atx_h6_marker] = ACTIONS(1382), - [sym__thematic_break] = ACTIONS(1382), - [sym__list_marker_minus] = ACTIONS(1382), - [sym__list_marker_plus] = ACTIONS(1382), - [sym__list_marker_star] = ACTIONS(1382), - [sym__list_marker_parenthesis] = ACTIONS(1382), - [sym__list_marker_dot] = ACTIONS(1382), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), - [sym__fenced_code_block_start_backtick] = ACTIONS(1382), - [sym__fenced_code_block_start_tilde] = ACTIONS(1382), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1382), - [sym__pipe_table_start] = ACTIONS(1382), - [sym__fenced_div_start] = ACTIONS(1382), - [sym_ref_id_specifier] = ACTIONS(1382), - [sym__display_math_state_track_marker] = ACTIONS(1382), - [sym__inline_math_state_track_marker] = ACTIONS(1382), + [STATE(142)] = { + [sym_list_marker_star] = STATE(8), + [sym__list_item_star] = STATE(142), + [aux_sym__list_star_repeat1] = STATE(142), + [ts_builtin_sym_end] = ACTIONS(1389), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_POUND] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1389), + [anon_sym_GT] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(1389), + [anon_sym_AT] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_BSLASH] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym__] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [sym__word] = ACTIONS(1389), + [sym__soft_line_ending] = ACTIONS(1389), + [sym__block_quote_start] = ACTIONS(1389), + [sym__indented_chunk_start] = ACTIONS(1389), + [sym_atx_h1_marker] = ACTIONS(1389), + [sym_atx_h2_marker] = ACTIONS(1389), + [sym_atx_h3_marker] = ACTIONS(1389), + [sym_atx_h4_marker] = ACTIONS(1389), + [sym_atx_h5_marker] = ACTIONS(1389), + [sym_atx_h6_marker] = ACTIONS(1389), + [sym__thematic_break] = ACTIONS(1389), + [sym__list_marker_minus] = ACTIONS(1389), + [sym__list_marker_plus] = ACTIONS(1389), + [sym__list_marker_star] = ACTIONS(1391), + [sym__list_marker_parenthesis] = ACTIONS(1389), + [sym__list_marker_dot] = ACTIONS(1389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_example] = ACTIONS(1389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1389), + [sym__fenced_code_block_start_backtick] = ACTIONS(1389), + [sym__fenced_code_block_start_tilde] = ACTIONS(1389), + [sym__blank_line_start] = ACTIONS(1389), + [sym_minus_metadata] = ACTIONS(1389), + [sym__pipe_table_start] = ACTIONS(1389), + [sym__fenced_div_start] = ACTIONS(1389), + [sym_ref_id_specifier] = ACTIONS(1389), + [sym__display_math_state_track_marker] = ACTIONS(1389), + [sym__inline_math_state_track_marker] = ACTIONS(1389), }, - [STATE(168)] = { + [STATE(143)] = { + [sym_list_marker_dot] = STATE(3), + [sym__list_item_dot] = STATE(143), + [aux_sym__list_dot_repeat1] = STATE(143), [ts_builtin_sym_end] = ACTIONS(1394), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1394), [anon_sym_LBRACE] = ACTIONS(1394), @@ -21138,19 +20631,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(1394), [sym_atx_h5_marker] = ACTIONS(1394), [sym_atx_h6_marker] = ACTIONS(1394), - [sym_setext_h1_underline] = ACTIONS(1394), - [sym_setext_h2_underline] = ACTIONS(1394), [sym__thematic_break] = ACTIONS(1394), [sym__list_marker_minus] = ACTIONS(1394), [sym__list_marker_plus] = ACTIONS(1394), [sym__list_marker_star] = ACTIONS(1394), [sym__list_marker_parenthesis] = ACTIONS(1394), - [sym__list_marker_dot] = ACTIONS(1394), + [sym__list_marker_dot] = ACTIONS(1396), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1394), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), [sym__list_marker_star_dont_interrupt] = ACTIONS(1394), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1394), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1394), [sym__fenced_code_block_start_backtick] = ACTIONS(1394), [sym__fenced_code_block_start_tilde] = ACTIONS(1394), [sym__blank_line_start] = ACTIONS(1394), @@ -21161,476 +20654,919 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1394), [sym__inline_math_state_track_marker] = ACTIONS(1394), }, - [STATE(169)] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1390), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1390), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [sym__word] = ACTIONS(1390), - [sym__soft_line_ending] = ACTIONS(1390), - [sym__block_quote_start] = ACTIONS(1390), - [sym__indented_chunk_start] = ACTIONS(1390), - [sym_atx_h1_marker] = ACTIONS(1390), - [sym_atx_h2_marker] = ACTIONS(1390), - [sym_atx_h3_marker] = ACTIONS(1390), - [sym_atx_h4_marker] = ACTIONS(1390), - [sym_atx_h5_marker] = ACTIONS(1390), - [sym_atx_h6_marker] = ACTIONS(1390), - [sym_setext_h1_underline] = ACTIONS(1390), - [sym_setext_h2_underline] = ACTIONS(1390), - [sym__thematic_break] = ACTIONS(1390), - [sym__list_marker_minus] = ACTIONS(1390), - [sym__list_marker_plus] = ACTIONS(1390), - [sym__list_marker_star] = ACTIONS(1390), - [sym__list_marker_parenthesis] = ACTIONS(1390), - [sym__list_marker_dot] = ACTIONS(1390), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), - [sym__fenced_code_block_start_backtick] = ACTIONS(1390), - [sym__fenced_code_block_start_tilde] = ACTIONS(1390), - [sym__blank_line_start] = ACTIONS(1390), - [sym_minus_metadata] = ACTIONS(1390), - [sym__pipe_table_start] = ACTIONS(1390), - [sym__fenced_div_start] = ACTIONS(1390), - [sym_ref_id_specifier] = ACTIONS(1390), - [sym__display_math_state_track_marker] = ACTIONS(1390), - [sym__inline_math_state_track_marker] = ACTIONS(1390), + [STATE(144)] = { + [sym_list_marker_parenthesis] = STATE(4), + [sym__list_item_parenthesis] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(144), + [ts_builtin_sym_end] = ACTIONS(1360), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [sym__word] = ACTIONS(1360), + [sym__soft_line_ending] = ACTIONS(1360), + [sym__block_quote_start] = ACTIONS(1360), + [sym__indented_chunk_start] = ACTIONS(1360), + [sym_atx_h1_marker] = ACTIONS(1360), + [sym_atx_h2_marker] = ACTIONS(1360), + [sym_atx_h3_marker] = ACTIONS(1360), + [sym_atx_h4_marker] = ACTIONS(1360), + [sym_atx_h5_marker] = ACTIONS(1360), + [sym_atx_h6_marker] = ACTIONS(1360), + [sym__thematic_break] = ACTIONS(1360), + [sym__list_marker_minus] = ACTIONS(1360), + [sym__list_marker_plus] = ACTIONS(1360), + [sym__list_marker_star] = ACTIONS(1360), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_example] = ACTIONS(1360), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1360), + [sym__fenced_code_block_start_backtick] = ACTIONS(1360), + [sym__fenced_code_block_start_tilde] = ACTIONS(1360), + [sym__blank_line_start] = ACTIONS(1360), + [sym_minus_metadata] = ACTIONS(1360), + [sym__pipe_table_start] = ACTIONS(1360), + [sym__fenced_div_start] = ACTIONS(1360), + [sym_ref_id_specifier] = ACTIONS(1360), + [sym__display_math_state_track_marker] = ACTIONS(1360), + [sym__inline_math_state_track_marker] = ACTIONS(1360), }, - [STATE(170)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_BSLASH] = ACTIONS(1394), - [anon_sym_RBRACK] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [sym__word] = ACTIONS(1394), - [sym__soft_line_ending] = ACTIONS(1394), - [sym__block_close] = ACTIONS(1394), - [sym__block_quote_start] = ACTIONS(1394), - [sym__indented_chunk_start] = ACTIONS(1394), - [sym_atx_h1_marker] = ACTIONS(1394), - [sym_atx_h2_marker] = ACTIONS(1394), - [sym_atx_h3_marker] = ACTIONS(1394), - [sym_atx_h4_marker] = ACTIONS(1394), - [sym_atx_h5_marker] = ACTIONS(1394), - [sym_atx_h6_marker] = ACTIONS(1394), - [sym_setext_h1_underline] = ACTIONS(1394), - [sym_setext_h2_underline] = ACTIONS(1394), - [sym__thematic_break] = ACTIONS(1394), - [sym__list_marker_minus] = ACTIONS(1394), - [sym__list_marker_plus] = ACTIONS(1394), - [sym__list_marker_star] = ACTIONS(1394), - [sym__list_marker_parenthesis] = ACTIONS(1394), - [sym__list_marker_dot] = ACTIONS(1394), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), - [sym__fenced_code_block_start_backtick] = ACTIONS(1394), - [sym__fenced_code_block_start_tilde] = ACTIONS(1394), - [sym__blank_line_start] = ACTIONS(1394), - [sym_minus_metadata] = ACTIONS(1394), - [sym__pipe_table_start] = ACTIONS(1394), - [sym__fenced_div_start] = ACTIONS(1394), - [sym_ref_id_specifier] = ACTIONS(1394), - [sym__display_math_state_track_marker] = ACTIONS(1394), - [sym__inline_math_state_track_marker] = ACTIONS(1394), + [STATE(145)] = { + [sym_list_marker_example] = STATE(5), + [sym__list_item_example] = STATE(145), + [aux_sym__list_example_repeat1] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(1401), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_BSLASH] = ACTIONS(1401), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [sym__word] = ACTIONS(1401), + [sym__soft_line_ending] = ACTIONS(1401), + [sym__block_quote_start] = ACTIONS(1401), + [sym__indented_chunk_start] = ACTIONS(1401), + [sym_atx_h1_marker] = ACTIONS(1401), + [sym_atx_h2_marker] = ACTIONS(1401), + [sym_atx_h3_marker] = ACTIONS(1401), + [sym_atx_h4_marker] = ACTIONS(1401), + [sym_atx_h5_marker] = ACTIONS(1401), + [sym_atx_h6_marker] = ACTIONS(1401), + [sym__thematic_break] = ACTIONS(1401), + [sym__list_marker_minus] = ACTIONS(1401), + [sym__list_marker_plus] = ACTIONS(1401), + [sym__list_marker_star] = ACTIONS(1401), + [sym__list_marker_parenthesis] = ACTIONS(1401), + [sym__list_marker_dot] = ACTIONS(1401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_example] = ACTIONS(1403), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1403), + [sym__fenced_code_block_start_backtick] = ACTIONS(1401), + [sym__fenced_code_block_start_tilde] = ACTIONS(1401), + [sym__blank_line_start] = ACTIONS(1401), + [sym_minus_metadata] = ACTIONS(1401), + [sym__pipe_table_start] = ACTIONS(1401), + [sym__fenced_div_start] = ACTIONS(1401), + [sym_ref_id_specifier] = ACTIONS(1401), + [sym__display_math_state_track_marker] = ACTIONS(1401), + [sym__inline_math_state_track_marker] = ACTIONS(1401), }, - [STATE(171)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym__block_close] = ACTIONS(1321), - [sym_block_continuation] = ACTIONS(1418), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym__fenced_div_end] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), + [STATE(146)] = { + [sym__indented_chunk] = STATE(146), + [sym__blank_line] = STATE(146), + [aux_sym_indented_code_block_repeat1] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1348), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [sym__word] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(1418), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_example] = ACTIONS(1348), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(1421), + [sym_minus_metadata] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + [sym__fenced_div_start] = ACTIONS(1348), + [sym_ref_id_specifier] = ACTIONS(1348), + [sym__display_math_state_track_marker] = ACTIONS(1348), + [sym__inline_math_state_track_marker] = ACTIONS(1348), }, - [STATE(172)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_BSLASH] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1420), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym__] = ACTIONS(1420), - [anon_sym_BQUOTE] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [sym__word] = ACTIONS(1420), - [sym__soft_line_ending] = ACTIONS(1420), - [sym__block_close] = ACTIONS(1420), - [sym_block_continuation] = ACTIONS(1422), - [sym__block_quote_start] = ACTIONS(1420), - [sym__indented_chunk_start] = ACTIONS(1420), - [sym_atx_h1_marker] = ACTIONS(1420), - [sym_atx_h2_marker] = ACTIONS(1420), - [sym_atx_h3_marker] = ACTIONS(1420), - [sym_atx_h4_marker] = ACTIONS(1420), - [sym_atx_h5_marker] = ACTIONS(1420), - [sym_atx_h6_marker] = ACTIONS(1420), - [sym__thematic_break] = ACTIONS(1420), - [sym__list_marker_minus] = ACTIONS(1420), - [sym__list_marker_plus] = ACTIONS(1420), - [sym__list_marker_star] = ACTIONS(1420), - [sym__list_marker_parenthesis] = ACTIONS(1420), - [sym__list_marker_dot] = ACTIONS(1420), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1420), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1420), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1420), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1420), - [sym__fenced_code_block_start_backtick] = ACTIONS(1420), - [sym__fenced_code_block_start_tilde] = ACTIONS(1420), - [sym__blank_line_start] = ACTIONS(1420), - [sym_minus_metadata] = ACTIONS(1420), - [sym__pipe_table_start] = ACTIONS(1420), - [sym__fenced_div_start] = ACTIONS(1420), - [sym__fenced_div_end] = ACTIONS(1420), - [sym_ref_id_specifier] = ACTIONS(1420), - [sym__display_math_state_track_marker] = ACTIONS(1420), - [sym__inline_math_state_track_marker] = ACTIONS(1420), + [STATE(147)] = { + [sym__indented_chunk] = STATE(154), + [sym__blank_line] = STATE(154), + [aux_sym_indented_code_block_repeat1] = STATE(154), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_BSLASH] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym__] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [sym__word] = ACTIONS(1373), + [sym__soft_line_ending] = ACTIONS(1373), + [sym__block_close] = ACTIONS(1373), + [sym__block_quote_start] = ACTIONS(1373), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1373), + [sym_atx_h2_marker] = ACTIONS(1373), + [sym_atx_h3_marker] = ACTIONS(1373), + [sym_atx_h4_marker] = ACTIONS(1373), + [sym_atx_h5_marker] = ACTIONS(1373), + [sym_atx_h6_marker] = ACTIONS(1373), + [sym__thematic_break] = ACTIONS(1373), + [sym__list_marker_minus] = ACTIONS(1373), + [sym__list_marker_plus] = ACTIONS(1373), + [sym__list_marker_star] = ACTIONS(1373), + [sym__list_marker_parenthesis] = ACTIONS(1373), + [sym__list_marker_dot] = ACTIONS(1373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_example] = ACTIONS(1373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1373), + [sym__fenced_code_block_start_backtick] = ACTIONS(1373), + [sym__fenced_code_block_start_tilde] = ACTIONS(1373), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1373), + [sym__pipe_table_start] = ACTIONS(1373), + [sym__fenced_div_start] = ACTIONS(1373), + [sym_ref_id_specifier] = ACTIONS(1373), + [sym__display_math_state_track_marker] = ACTIONS(1373), + [sym__inline_math_state_track_marker] = ACTIONS(1373), }, - [STATE(173)] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [sym__word] = ACTIONS(1370), - [sym__soft_line_ending] = ACTIONS(1370), - [sym__block_quote_start] = ACTIONS(1370), - [sym__indented_chunk_start] = ACTIONS(1370), - [sym_atx_h1_marker] = ACTIONS(1370), - [sym_atx_h2_marker] = ACTIONS(1370), - [sym_atx_h3_marker] = ACTIONS(1370), - [sym_atx_h4_marker] = ACTIONS(1370), - [sym_atx_h5_marker] = ACTIONS(1370), - [sym_atx_h6_marker] = ACTIONS(1370), - [sym_setext_h1_underline] = ACTIONS(1424), - [sym_setext_h2_underline] = ACTIONS(1426), - [sym__thematic_break] = ACTIONS(1370), - [sym__list_marker_minus] = ACTIONS(1370), - [sym__list_marker_plus] = ACTIONS(1370), - [sym__list_marker_star] = ACTIONS(1370), - [sym__list_marker_parenthesis] = ACTIONS(1370), - [sym__list_marker_dot] = ACTIONS(1370), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), - [sym__fenced_code_block_start_backtick] = ACTIONS(1370), - [sym__fenced_code_block_start_tilde] = ACTIONS(1370), - [sym__blank_line_start] = ACTIONS(1370), - [sym_minus_metadata] = ACTIONS(1370), - [sym__pipe_table_start] = ACTIONS(1370), - [sym__fenced_div_start] = ACTIONS(1370), - [sym_ref_id_specifier] = ACTIONS(1370), - [sym__display_math_state_track_marker] = ACTIONS(1370), - [sym__inline_math_state_track_marker] = ACTIONS(1370), + [STATE(148)] = { + [sym_list_marker_plus] = STATE(24), + [sym__list_item_plus] = STATE(155), + [aux_sym__list_plus_repeat1] = STATE(155), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_BSLASH] = ACTIONS(1375), + [anon_sym_RBRACK] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym__] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [sym__word] = ACTIONS(1375), + [sym__soft_line_ending] = ACTIONS(1375), + [sym__block_close] = ACTIONS(1375), + [sym__block_quote_start] = ACTIONS(1375), + [sym__indented_chunk_start] = ACTIONS(1375), + [sym_atx_h1_marker] = ACTIONS(1375), + [sym_atx_h2_marker] = ACTIONS(1375), + [sym_atx_h3_marker] = ACTIONS(1375), + [sym_atx_h4_marker] = ACTIONS(1375), + [sym_atx_h5_marker] = ACTIONS(1375), + [sym_atx_h6_marker] = ACTIONS(1375), + [sym__thematic_break] = ACTIONS(1375), + [sym__list_marker_minus] = ACTIONS(1375), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1375), + [sym__list_marker_parenthesis] = ACTIONS(1375), + [sym__list_marker_dot] = ACTIONS(1375), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_example] = ACTIONS(1375), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1375), + [sym__fenced_code_block_start_backtick] = ACTIONS(1375), + [sym__fenced_code_block_start_tilde] = ACTIONS(1375), + [sym__blank_line_start] = ACTIONS(1375), + [sym_minus_metadata] = ACTIONS(1375), + [sym__pipe_table_start] = ACTIONS(1375), + [sym__fenced_div_start] = ACTIONS(1375), + [sym_ref_id_specifier] = ACTIONS(1375), + [sym__display_math_state_track_marker] = ACTIONS(1375), + [sym__inline_math_state_track_marker] = ACTIONS(1375), }, - [STATE(174)] = { - [sym__blank_line] = STATE(1046), - [sym_table_caption] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1386), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [sym__word] = ACTIONS(1386), - [sym__soft_line_ending] = ACTIONS(1386), - [sym__block_quote_start] = ACTIONS(1386), - [sym__indented_chunk_start] = ACTIONS(1386), - [sym_atx_h1_marker] = ACTIONS(1386), - [sym_atx_h2_marker] = ACTIONS(1386), - [sym_atx_h3_marker] = ACTIONS(1386), - [sym_atx_h4_marker] = ACTIONS(1386), - [sym_atx_h5_marker] = ACTIONS(1386), - [sym_atx_h6_marker] = ACTIONS(1386), - [sym__thematic_break] = ACTIONS(1386), - [sym__list_marker_minus] = ACTIONS(1386), - [sym__list_marker_plus] = ACTIONS(1386), - [sym__list_marker_star] = ACTIONS(1386), - [sym__list_marker_parenthesis] = ACTIONS(1386), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__fenced_code_block_start_backtick] = ACTIONS(1386), - [sym__fenced_code_block_start_tilde] = ACTIONS(1386), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1386), - [sym__pipe_table_start] = ACTIONS(1386), - [sym__fenced_div_start] = ACTIONS(1386), - [sym_ref_id_specifier] = ACTIONS(1386), - [sym__display_math_state_track_marker] = ACTIONS(1386), - [sym__inline_math_state_track_marker] = ACTIONS(1386), + [STATE(149)] = { + [sym_list_marker_minus] = STATE(25), + [sym__list_item_minus] = STATE(161), + [aux_sym__list_minus_repeat1] = STATE(161), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_BSLASH] = ACTIONS(1382), + [anon_sym_RBRACK] = ACTIONS(1382), + [anon_sym_CARET] = ACTIONS(1382), + [anon_sym__] = ACTIONS(1382), + [anon_sym_BQUOTE] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [sym__word] = ACTIONS(1382), + [sym__soft_line_ending] = ACTIONS(1382), + [sym__block_close] = ACTIONS(1382), + [sym__block_quote_start] = ACTIONS(1382), + [sym__indented_chunk_start] = ACTIONS(1382), + [sym_atx_h1_marker] = ACTIONS(1382), + [sym_atx_h2_marker] = ACTIONS(1382), + [sym_atx_h3_marker] = ACTIONS(1382), + [sym_atx_h4_marker] = ACTIONS(1382), + [sym_atx_h5_marker] = ACTIONS(1382), + [sym_atx_h6_marker] = ACTIONS(1382), + [sym__thematic_break] = ACTIONS(1382), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(1382), + [sym__list_marker_star] = ACTIONS(1382), + [sym__list_marker_parenthesis] = ACTIONS(1382), + [sym__list_marker_dot] = ACTIONS(1382), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym_minus_metadata] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + [sym__fenced_div_start] = ACTIONS(1382), + [sym_ref_id_specifier] = ACTIONS(1382), + [sym__display_math_state_track_marker] = ACTIONS(1382), + [sym__inline_math_state_track_marker] = ACTIONS(1382), }, - [STATE(175)] = { - [sym__blank_line] = STATE(992), - [sym_table_caption] = STATE(404), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [sym__word] = ACTIONS(1386), - [sym__soft_line_ending] = ACTIONS(1386), - [sym__block_close] = ACTIONS(1386), - [sym__block_quote_start] = ACTIONS(1386), - [sym__indented_chunk_start] = ACTIONS(1386), - [sym_atx_h1_marker] = ACTIONS(1386), - [sym_atx_h2_marker] = ACTIONS(1386), - [sym_atx_h3_marker] = ACTIONS(1386), - [sym_atx_h4_marker] = ACTIONS(1386), - [sym_atx_h5_marker] = ACTIONS(1386), - [sym_atx_h6_marker] = ACTIONS(1386), - [sym__thematic_break] = ACTIONS(1386), - [sym__list_marker_minus] = ACTIONS(1386), - [sym__list_marker_plus] = ACTIONS(1386), - [sym__list_marker_star] = ACTIONS(1386), - [sym__list_marker_parenthesis] = ACTIONS(1386), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__fenced_code_block_start_backtick] = ACTIONS(1386), - [sym__fenced_code_block_start_tilde] = ACTIONS(1386), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1386), - [sym__pipe_table_start] = ACTIONS(1386), - [sym__fenced_div_start] = ACTIONS(1386), - [sym_ref_id_specifier] = ACTIONS(1386), - [sym__display_math_state_track_marker] = ACTIONS(1386), - [sym__inline_math_state_track_marker] = ACTIONS(1386), + [STATE(150)] = { + [sym_list_marker_star] = STATE(26), + [sym__list_item_star] = STATE(163), + [aux_sym__list_star_repeat1] = STATE(163), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_DOLLAR] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_BSLASH] = ACTIONS(1399), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym__] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [sym__word] = ACTIONS(1399), + [sym__soft_line_ending] = ACTIONS(1399), + [sym__block_close] = ACTIONS(1399), + [sym__block_quote_start] = ACTIONS(1399), + [sym__indented_chunk_start] = ACTIONS(1399), + [sym_atx_h1_marker] = ACTIONS(1399), + [sym_atx_h2_marker] = ACTIONS(1399), + [sym_atx_h3_marker] = ACTIONS(1399), + [sym_atx_h4_marker] = ACTIONS(1399), + [sym_atx_h5_marker] = ACTIONS(1399), + [sym_atx_h6_marker] = ACTIONS(1399), + [sym__thematic_break] = ACTIONS(1399), + [sym__list_marker_minus] = ACTIONS(1399), + [sym__list_marker_plus] = ACTIONS(1399), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(1399), + [sym__list_marker_dot] = ACTIONS(1399), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_example] = ACTIONS(1399), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1399), + [sym__fenced_code_block_start_backtick] = ACTIONS(1399), + [sym__fenced_code_block_start_tilde] = ACTIONS(1399), + [sym__blank_line_start] = ACTIONS(1399), + [sym_minus_metadata] = ACTIONS(1399), + [sym__pipe_table_start] = ACTIONS(1399), + [sym__fenced_div_start] = ACTIONS(1399), + [sym_ref_id_specifier] = ACTIONS(1399), + [sym__display_math_state_track_marker] = ACTIONS(1399), + [sym__inline_math_state_track_marker] = ACTIONS(1399), }, - [STATE(176)] = { + [STATE(151)] = { + [sym_list_marker_dot] = STATE(27), + [sym__list_item_dot] = STATE(164), + [aux_sym__list_dot_repeat1] = STATE(164), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_AT] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_BSLASH] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym__] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [sym__word] = ACTIONS(1365), + [sym__soft_line_ending] = ACTIONS(1365), + [sym__block_close] = ACTIONS(1365), + [sym__block_quote_start] = ACTIONS(1365), + [sym__indented_chunk_start] = ACTIONS(1365), + [sym_atx_h1_marker] = ACTIONS(1365), + [sym_atx_h2_marker] = ACTIONS(1365), + [sym_atx_h3_marker] = ACTIONS(1365), + [sym_atx_h4_marker] = ACTIONS(1365), + [sym_atx_h5_marker] = ACTIONS(1365), + [sym_atx_h6_marker] = ACTIONS(1365), + [sym__thematic_break] = ACTIONS(1365), + [sym__list_marker_minus] = ACTIONS(1365), + [sym__list_marker_plus] = ACTIONS(1365), + [sym__list_marker_star] = ACTIONS(1365), + [sym__list_marker_parenthesis] = ACTIONS(1365), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(1365), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1365), + [sym__fenced_code_block_start_backtick] = ACTIONS(1365), + [sym__fenced_code_block_start_tilde] = ACTIONS(1365), + [sym__blank_line_start] = ACTIONS(1365), + [sym_minus_metadata] = ACTIONS(1365), + [sym__pipe_table_start] = ACTIONS(1365), + [sym__fenced_div_start] = ACTIONS(1365), + [sym_ref_id_specifier] = ACTIONS(1365), + [sym__display_math_state_track_marker] = ACTIONS(1365), + [sym__inline_math_state_track_marker] = ACTIONS(1365), + }, + [STATE(152)] = { + [sym_list_marker_parenthesis] = STATE(28), + [sym__list_item_parenthesis] = STATE(165), + [aux_sym__list_parenthesis_repeat1] = STATE(165), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_DOLLAR] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_AT] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_BSLASH] = ACTIONS(1367), + [anon_sym_RBRACK] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym__] = ACTIONS(1367), + [anon_sym_BQUOTE] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [sym__word] = ACTIONS(1367), + [sym__soft_line_ending] = ACTIONS(1367), + [sym__block_close] = ACTIONS(1367), + [sym__block_quote_start] = ACTIONS(1367), + [sym__indented_chunk_start] = ACTIONS(1367), + [sym_atx_h1_marker] = ACTIONS(1367), + [sym_atx_h2_marker] = ACTIONS(1367), + [sym_atx_h3_marker] = ACTIONS(1367), + [sym_atx_h4_marker] = ACTIONS(1367), + [sym_atx_h5_marker] = ACTIONS(1367), + [sym_atx_h6_marker] = ACTIONS(1367), + [sym__thematic_break] = ACTIONS(1367), + [sym__list_marker_minus] = ACTIONS(1367), + [sym__list_marker_plus] = ACTIONS(1367), + [sym__list_marker_star] = ACTIONS(1367), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_example] = ACTIONS(1367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1367), + [sym__fenced_code_block_start_backtick] = ACTIONS(1367), + [sym__fenced_code_block_start_tilde] = ACTIONS(1367), + [sym__blank_line_start] = ACTIONS(1367), + [sym_minus_metadata] = ACTIONS(1367), + [sym__pipe_table_start] = ACTIONS(1367), + [sym__fenced_div_start] = ACTIONS(1367), + [sym_ref_id_specifier] = ACTIONS(1367), + [sym__display_math_state_track_marker] = ACTIONS(1367), + [sym__inline_math_state_track_marker] = ACTIONS(1367), + }, + [STATE(153)] = { + [sym_list_marker_example] = STATE(29), + [sym__list_item_example] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(166), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_AT] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_BSLASH] = ACTIONS(1371), + [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym__] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [sym__word] = ACTIONS(1371), + [sym__soft_line_ending] = ACTIONS(1371), + [sym__block_close] = ACTIONS(1371), + [sym__block_quote_start] = ACTIONS(1371), + [sym__indented_chunk_start] = ACTIONS(1371), + [sym_atx_h1_marker] = ACTIONS(1371), + [sym_atx_h2_marker] = ACTIONS(1371), + [sym_atx_h3_marker] = ACTIONS(1371), + [sym_atx_h4_marker] = ACTIONS(1371), + [sym_atx_h5_marker] = ACTIONS(1371), + [sym_atx_h6_marker] = ACTIONS(1371), + [sym__thematic_break] = ACTIONS(1371), + [sym__list_marker_minus] = ACTIONS(1371), + [sym__list_marker_plus] = ACTIONS(1371), + [sym__list_marker_star] = ACTIONS(1371), + [sym__list_marker_parenthesis] = ACTIONS(1371), + [sym__list_marker_dot] = ACTIONS(1371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(1371), + [sym__fenced_code_block_start_tilde] = ACTIONS(1371), + [sym__blank_line_start] = ACTIONS(1371), + [sym_minus_metadata] = ACTIONS(1371), + [sym__pipe_table_start] = ACTIONS(1371), + [sym__fenced_div_start] = ACTIONS(1371), + [sym_ref_id_specifier] = ACTIONS(1371), + [sym__display_math_state_track_marker] = ACTIONS(1371), + [sym__inline_math_state_track_marker] = ACTIONS(1371), + }, + [STATE(154)] = { + [sym__indented_chunk] = STATE(139), + [sym__blank_line] = STATE(139), + [aux_sym_indented_code_block_repeat1] = STATE(139), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_DOLLAR] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [sym__word] = ACTIONS(1369), + [sym__soft_line_ending] = ACTIONS(1369), + [sym__block_close] = ACTIONS(1369), + [sym__block_quote_start] = ACTIONS(1369), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1369), + [sym_atx_h2_marker] = ACTIONS(1369), + [sym_atx_h3_marker] = ACTIONS(1369), + [sym_atx_h4_marker] = ACTIONS(1369), + [sym_atx_h5_marker] = ACTIONS(1369), + [sym_atx_h6_marker] = ACTIONS(1369), + [sym__thematic_break] = ACTIONS(1369), + [sym__list_marker_minus] = ACTIONS(1369), + [sym__list_marker_plus] = ACTIONS(1369), + [sym__list_marker_star] = ACTIONS(1369), + [sym__list_marker_parenthesis] = ACTIONS(1369), + [sym__list_marker_dot] = ACTIONS(1369), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_example] = ACTIONS(1369), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1369), + [sym__fenced_code_block_start_backtick] = ACTIONS(1369), + [sym__fenced_code_block_start_tilde] = ACTIONS(1369), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1369), + [sym__pipe_table_start] = ACTIONS(1369), + [sym__fenced_div_start] = ACTIONS(1369), + [sym_ref_id_specifier] = ACTIONS(1369), + [sym__display_math_state_track_marker] = ACTIONS(1369), + [sym__inline_math_state_track_marker] = ACTIONS(1369), + }, + [STATE(155)] = { + [sym_list_marker_plus] = STATE(24), + [sym__list_item_plus] = STATE(155), + [aux_sym__list_plus_repeat1] = STATE(155), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_EQ] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [anon_sym_POUND] = ACTIONS(1377), + [anon_sym_DOLLAR] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_LPAREN] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_COMMA] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_DOT] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1377), + [anon_sym_GT] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_BSLASH] = ACTIONS(1377), + [anon_sym_RBRACK] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym__] = ACTIONS(1377), + [anon_sym_BQUOTE] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [sym__word] = ACTIONS(1377), + [sym__soft_line_ending] = ACTIONS(1377), + [sym__block_close] = ACTIONS(1377), + [sym__block_quote_start] = ACTIONS(1377), + [sym__indented_chunk_start] = ACTIONS(1377), + [sym_atx_h1_marker] = ACTIONS(1377), + [sym_atx_h2_marker] = ACTIONS(1377), + [sym_atx_h3_marker] = ACTIONS(1377), + [sym_atx_h4_marker] = ACTIONS(1377), + [sym_atx_h5_marker] = ACTIONS(1377), + [sym_atx_h6_marker] = ACTIONS(1377), + [sym__thematic_break] = ACTIONS(1377), + [sym__list_marker_minus] = ACTIONS(1377), + [sym__list_marker_plus] = ACTIONS(1379), + [sym__list_marker_star] = ACTIONS(1377), + [sym__list_marker_parenthesis] = ACTIONS(1377), + [sym__list_marker_dot] = ACTIONS(1377), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1379), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1377), + [sym__list_marker_example] = ACTIONS(1377), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1377), + [sym__fenced_code_block_start_backtick] = ACTIONS(1377), + [sym__fenced_code_block_start_tilde] = ACTIONS(1377), + [sym__blank_line_start] = ACTIONS(1377), + [sym_minus_metadata] = ACTIONS(1377), + [sym__pipe_table_start] = ACTIONS(1377), + [sym__fenced_div_start] = ACTIONS(1377), + [sym_ref_id_specifier] = ACTIONS(1377), + [sym__display_math_state_track_marker] = ACTIONS(1377), + [sym__inline_math_state_track_marker] = ACTIONS(1377), + }, + [STATE(156)] = { + [sym__blank_line] = STATE(1055), + [sym_table_caption] = STATE(250), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_close] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(1424), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_example] = ACTIONS(1424), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1424), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym__fenced_div_end] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(157)] = { + [sym__blank_line] = STATE(1055), + [sym_table_caption] = STATE(255), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), [anon_sym_LBRACE] = ACTIONS(1428), [anon_sym_RBRACE] = ACTIONS(1428), @@ -21666,7 +21602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(1428), [sym__soft_line_ending] = ACTIONS(1428), [sym__block_close] = ACTIONS(1428), - [sym_block_continuation] = ACTIONS(1430), [sym__block_quote_start] = ACTIONS(1428), [sym__indented_chunk_start] = ACTIONS(1428), [sym_atx_h1_marker] = ACTIONS(1428), @@ -21686,9 +21621,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), [sym__fenced_code_block_start_backtick] = ACTIONS(1428), [sym__fenced_code_block_start_tilde] = ACTIONS(1428), - [sym__blank_line_start] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1426), [sym_minus_metadata] = ACTIONS(1428), [sym__pipe_table_start] = ACTIONS(1428), [sym__fenced_div_start] = ACTIONS(1428), @@ -21697,7 +21634,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1428), [sym__inline_math_state_track_marker] = ACTIONS(1428), }, - [STATE(177)] = { + [STATE(158)] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym_block_continuation] = ACTIONS(1430), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym_setext_h1_underline] = ACTIONS(1356), + [sym_setext_h2_underline] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(159)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1432), [anon_sym_LBRACE] = ACTIONS(1432), [anon_sym_RBRACE] = ACTIONS(1432), @@ -21733,7 +21740,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(1432), [sym__soft_line_ending] = ACTIONS(1432), [sym__block_close] = ACTIONS(1432), - [sym_block_continuation] = ACTIONS(1434), [sym__block_quote_start] = ACTIONS(1432), [sym__indented_chunk_start] = ACTIONS(1432), [sym_atx_h1_marker] = ACTIONS(1432), @@ -21742,6 +21748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(1432), [sym_atx_h5_marker] = ACTIONS(1432), [sym_atx_h6_marker] = ACTIONS(1432), + [sym_setext_h1_underline] = ACTIONS(1432), + [sym_setext_h2_underline] = ACTIONS(1432), [sym__thematic_break] = ACTIONS(1432), [sym__list_marker_minus] = ACTIONS(1432), [sym__list_marker_plus] = ACTIONS(1432), @@ -21753,6 +21761,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(1432), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1432), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_example] = ACTIONS(1432), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1432), [sym__fenced_code_block_start_backtick] = ACTIONS(1432), [sym__fenced_code_block_start_tilde] = ACTIONS(1432), [sym__blank_line_start] = ACTIONS(1432), @@ -21764,7 +21774,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1432), [sym__inline_math_state_track_marker] = ACTIONS(1432), }, - [STATE(178)] = { + [STATE(160)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym__block_close] = ACTIONS(1356), + [sym_block_continuation] = ACTIONS(1434), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym_setext_h1_underline] = ACTIONS(1356), + [sym_setext_h2_underline] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(161)] = { + [sym_list_marker_minus] = STATE(25), + [sym__list_item_minus] = STATE(161), + [aux_sym__list_minus_repeat1] = STATE(161), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_QMARK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_BSLASH] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym__] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [sym__word] = ACTIONS(1384), + [sym__soft_line_ending] = ACTIONS(1384), + [sym__block_close] = ACTIONS(1384), + [sym__block_quote_start] = ACTIONS(1384), + [sym__indented_chunk_start] = ACTIONS(1384), + [sym_atx_h1_marker] = ACTIONS(1384), + [sym_atx_h2_marker] = ACTIONS(1384), + [sym_atx_h3_marker] = ACTIONS(1384), + [sym_atx_h4_marker] = ACTIONS(1384), + [sym_atx_h5_marker] = ACTIONS(1384), + [sym_atx_h6_marker] = ACTIONS(1384), + [sym__thematic_break] = ACTIONS(1384), + [sym__list_marker_minus] = ACTIONS(1386), + [sym__list_marker_plus] = ACTIONS(1384), + [sym__list_marker_star] = ACTIONS(1384), + [sym__list_marker_parenthesis] = ACTIONS(1384), + [sym__list_marker_dot] = ACTIONS(1384), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_example] = ACTIONS(1384), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1384), + [sym__fenced_code_block_start_backtick] = ACTIONS(1384), + [sym__fenced_code_block_start_tilde] = ACTIONS(1384), + [sym__blank_line_start] = ACTIONS(1384), + [sym_minus_metadata] = ACTIONS(1384), + [sym__pipe_table_start] = ACTIONS(1384), + [sym__fenced_div_start] = ACTIONS(1384), + [sym_ref_id_specifier] = ACTIONS(1384), + [sym__display_math_state_track_marker] = ACTIONS(1384), + [sym__inline_math_state_track_marker] = ACTIONS(1384), + }, + [STATE(162)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1436), [anon_sym_LBRACE] = ACTIONS(1436), [anon_sym_RBRACE] = ACTIONS(1436), @@ -21800,7 +21950,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(1436), [sym__soft_line_ending] = ACTIONS(1436), [sym__block_close] = ACTIONS(1436), - [sym_block_continuation] = ACTIONS(1438), [sym__block_quote_start] = ACTIONS(1436), [sym__indented_chunk_start] = ACTIONS(1436), [sym_atx_h1_marker] = ACTIONS(1436), @@ -21809,6 +21958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(1436), [sym_atx_h5_marker] = ACTIONS(1436), [sym_atx_h6_marker] = ACTIONS(1436), + [sym_setext_h1_underline] = ACTIONS(1436), + [sym_setext_h2_underline] = ACTIONS(1436), [sym__thematic_break] = ACTIONS(1436), [sym__list_marker_minus] = ACTIONS(1436), [sym__list_marker_plus] = ACTIONS(1436), @@ -21820,6 +21971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_example] = ACTIONS(1436), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1436), [sym__fenced_code_block_start_backtick] = ACTIONS(1436), [sym__fenced_code_block_start_tilde] = ACTIONS(1436), [sym__blank_line_start] = ACTIONS(1436), @@ -21831,234 +21984,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1436), [sym__inline_math_state_track_marker] = ACTIONS(1436), }, - [STATE(179)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym__] = ACTIONS(1440), - [anon_sym_BQUOTE] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [sym__word] = ACTIONS(1440), - [sym__soft_line_ending] = ACTIONS(1440), - [sym__block_close] = ACTIONS(1440), - [sym_block_continuation] = ACTIONS(1442), - [sym__block_quote_start] = ACTIONS(1440), - [sym__indented_chunk_start] = ACTIONS(1440), - [sym_atx_h1_marker] = ACTIONS(1440), - [sym_atx_h2_marker] = ACTIONS(1440), - [sym_atx_h3_marker] = ACTIONS(1440), - [sym_atx_h4_marker] = ACTIONS(1440), - [sym_atx_h5_marker] = ACTIONS(1440), - [sym_atx_h6_marker] = ACTIONS(1440), - [sym__thematic_break] = ACTIONS(1440), - [sym__list_marker_minus] = ACTIONS(1440), - [sym__list_marker_plus] = ACTIONS(1440), - [sym__list_marker_star] = ACTIONS(1440), - [sym__list_marker_parenthesis] = ACTIONS(1440), - [sym__list_marker_dot] = ACTIONS(1440), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1440), - [sym__fenced_code_block_start_backtick] = ACTIONS(1440), - [sym__fenced_code_block_start_tilde] = ACTIONS(1440), - [sym__blank_line_start] = ACTIONS(1440), - [sym_minus_metadata] = ACTIONS(1440), - [sym__pipe_table_start] = ACTIONS(1440), - [sym__fenced_div_start] = ACTIONS(1440), - [sym__fenced_div_end] = ACTIONS(1440), - [sym_ref_id_specifier] = ACTIONS(1440), - [sym__display_math_state_track_marker] = ACTIONS(1440), - [sym__inline_math_state_track_marker] = ACTIONS(1440), - }, - [STATE(180)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_BSLASH] = ACTIONS(1444), - [anon_sym_RBRACK] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym__] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [sym__word] = ACTIONS(1444), - [sym__soft_line_ending] = ACTIONS(1444), - [sym__block_close] = ACTIONS(1444), - [sym_block_continuation] = ACTIONS(1446), - [sym__block_quote_start] = ACTIONS(1444), - [sym__indented_chunk_start] = ACTIONS(1444), - [sym_atx_h1_marker] = ACTIONS(1444), - [sym_atx_h2_marker] = ACTIONS(1444), - [sym_atx_h3_marker] = ACTIONS(1444), - [sym_atx_h4_marker] = ACTIONS(1444), - [sym_atx_h5_marker] = ACTIONS(1444), - [sym_atx_h6_marker] = ACTIONS(1444), - [sym__thematic_break] = ACTIONS(1444), - [sym__list_marker_minus] = ACTIONS(1444), - [sym__list_marker_plus] = ACTIONS(1444), - [sym__list_marker_star] = ACTIONS(1444), - [sym__list_marker_parenthesis] = ACTIONS(1444), - [sym__list_marker_dot] = ACTIONS(1444), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1444), - [sym__fenced_code_block_start_backtick] = ACTIONS(1444), - [sym__fenced_code_block_start_tilde] = ACTIONS(1444), - [sym__blank_line_start] = ACTIONS(1444), - [sym_minus_metadata] = ACTIONS(1444), - [sym__pipe_table_start] = ACTIONS(1444), - [sym__fenced_div_start] = ACTIONS(1444), - [sym__fenced_div_end] = ACTIONS(1444), - [sym_ref_id_specifier] = ACTIONS(1444), - [sym__display_math_state_track_marker] = ACTIONS(1444), - [sym__inline_math_state_track_marker] = ACTIONS(1444), - }, - [STATE(181)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_AT] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_BSLASH] = ACTIONS(1448), - [anon_sym_RBRACK] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym__] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [sym__word] = ACTIONS(1448), - [sym__soft_line_ending] = ACTIONS(1448), - [sym__block_close] = ACTIONS(1448), - [sym_block_continuation] = ACTIONS(1450), - [sym__block_quote_start] = ACTIONS(1448), - [sym__indented_chunk_start] = ACTIONS(1448), - [sym_atx_h1_marker] = ACTIONS(1448), - [sym_atx_h2_marker] = ACTIONS(1448), - [sym_atx_h3_marker] = ACTIONS(1448), - [sym_atx_h4_marker] = ACTIONS(1448), - [sym_atx_h5_marker] = ACTIONS(1448), - [sym_atx_h6_marker] = ACTIONS(1448), - [sym__thematic_break] = ACTIONS(1448), - [sym__list_marker_minus] = ACTIONS(1448), - [sym__list_marker_plus] = ACTIONS(1448), - [sym__list_marker_star] = ACTIONS(1448), - [sym__list_marker_parenthesis] = ACTIONS(1448), - [sym__list_marker_dot] = ACTIONS(1448), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1448), - [sym__fenced_code_block_start_backtick] = ACTIONS(1448), - [sym__fenced_code_block_start_tilde] = ACTIONS(1448), - [sym__blank_line_start] = ACTIONS(1448), - [sym_minus_metadata] = ACTIONS(1448), - [sym__pipe_table_start] = ACTIONS(1448), - [sym__fenced_div_start] = ACTIONS(1448), - [sym__fenced_div_end] = ACTIONS(1448), - [sym_ref_id_specifier] = ACTIONS(1448), - [sym__display_math_state_track_marker] = ACTIONS(1448), - [sym__inline_math_state_track_marker] = ACTIONS(1448), + [STATE(163)] = { + [sym_list_marker_star] = STATE(26), + [sym__list_item_star] = STATE(163), + [aux_sym__list_star_repeat1] = STATE(163), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [anon_sym_POUND] = ACTIONS(1389), + [anon_sym_DOLLAR] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1389), + [anon_sym_GT] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(1389), + [anon_sym_AT] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_BSLASH] = ACTIONS(1389), + [anon_sym_RBRACK] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym__] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [sym__word] = ACTIONS(1389), + [sym__soft_line_ending] = ACTIONS(1389), + [sym__block_close] = ACTIONS(1389), + [sym__block_quote_start] = ACTIONS(1389), + [sym__indented_chunk_start] = ACTIONS(1389), + [sym_atx_h1_marker] = ACTIONS(1389), + [sym_atx_h2_marker] = ACTIONS(1389), + [sym_atx_h3_marker] = ACTIONS(1389), + [sym_atx_h4_marker] = ACTIONS(1389), + [sym_atx_h5_marker] = ACTIONS(1389), + [sym_atx_h6_marker] = ACTIONS(1389), + [sym__thematic_break] = ACTIONS(1389), + [sym__list_marker_minus] = ACTIONS(1389), + [sym__list_marker_plus] = ACTIONS(1389), + [sym__list_marker_star] = ACTIONS(1391), + [sym__list_marker_parenthesis] = ACTIONS(1389), + [sym__list_marker_dot] = ACTIONS(1389), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1389), + [sym__list_marker_example] = ACTIONS(1389), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1389), + [sym__fenced_code_block_start_backtick] = ACTIONS(1389), + [sym__fenced_code_block_start_tilde] = ACTIONS(1389), + [sym__blank_line_start] = ACTIONS(1389), + [sym_minus_metadata] = ACTIONS(1389), + [sym__pipe_table_start] = ACTIONS(1389), + [sym__fenced_div_start] = ACTIONS(1389), + [sym_ref_id_specifier] = ACTIONS(1389), + [sym__display_math_state_track_marker] = ACTIONS(1389), + [sym__inline_math_state_track_marker] = ACTIONS(1389), }, - [STATE(182)] = { - [sym__blank_line] = STATE(992), - [sym_table_caption] = STATE(400), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1382), + [STATE(164)] = { + [sym_list_marker_dot] = STATE(27), + [sym__list_item_dot] = STATE(164), + [aux_sym__list_dot_repeat1] = STATE(164), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_DQUOTE] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_PERCENT] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_AT] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_BSLASH] = ACTIONS(1394), + [anon_sym_RBRACK] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym__] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_TILDE] = ACTIONS(1394), + [sym__word] = ACTIONS(1394), + [sym__soft_line_ending] = ACTIONS(1394), + [sym__block_close] = ACTIONS(1394), + [sym__block_quote_start] = ACTIONS(1394), + [sym__indented_chunk_start] = ACTIONS(1394), + [sym_atx_h1_marker] = ACTIONS(1394), + [sym_atx_h2_marker] = ACTIONS(1394), + [sym_atx_h3_marker] = ACTIONS(1394), + [sym_atx_h4_marker] = ACTIONS(1394), + [sym_atx_h5_marker] = ACTIONS(1394), + [sym_atx_h6_marker] = ACTIONS(1394), + [sym__thematic_break] = ACTIONS(1394), + [sym__list_marker_minus] = ACTIONS(1394), + [sym__list_marker_plus] = ACTIONS(1394), + [sym__list_marker_star] = ACTIONS(1394), + [sym__list_marker_parenthesis] = ACTIONS(1394), + [sym__list_marker_dot] = ACTIONS(1396), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1394), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1394), + [sym__fenced_code_block_start_backtick] = ACTIONS(1394), + [sym__fenced_code_block_start_tilde] = ACTIONS(1394), + [sym__blank_line_start] = ACTIONS(1394), + [sym_minus_metadata] = ACTIONS(1394), + [sym__pipe_table_start] = ACTIONS(1394), + [sym__fenced_div_start] = ACTIONS(1394), + [sym_ref_id_specifier] = ACTIONS(1394), + [sym__display_math_state_track_marker] = ACTIONS(1394), + [sym__inline_math_state_track_marker] = ACTIONS(1394), + }, + [STATE(165)] = { + [sym_list_marker_parenthesis] = STATE(28), + [sym__list_item_parenthesis] = STATE(165), + [aux_sym__list_parenthesis_repeat1] = STATE(165), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [sym__word] = ACTIONS(1360), + [sym__soft_line_ending] = ACTIONS(1360), + [sym__block_close] = ACTIONS(1360), + [sym__block_quote_start] = ACTIONS(1360), + [sym__indented_chunk_start] = ACTIONS(1360), + [sym_atx_h1_marker] = ACTIONS(1360), + [sym_atx_h2_marker] = ACTIONS(1360), + [sym_atx_h3_marker] = ACTIONS(1360), + [sym_atx_h4_marker] = ACTIONS(1360), + [sym_atx_h5_marker] = ACTIONS(1360), + [sym_atx_h6_marker] = ACTIONS(1360), + [sym__thematic_break] = ACTIONS(1360), + [sym__list_marker_minus] = ACTIONS(1360), + [sym__list_marker_plus] = ACTIONS(1360), + [sym__list_marker_star] = ACTIONS(1360), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_example] = ACTIONS(1360), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1360), + [sym__fenced_code_block_start_backtick] = ACTIONS(1360), + [sym__fenced_code_block_start_tilde] = ACTIONS(1360), + [sym__blank_line_start] = ACTIONS(1360), + [sym_minus_metadata] = ACTIONS(1360), + [sym__pipe_table_start] = ACTIONS(1360), + [sym__fenced_div_start] = ACTIONS(1360), + [sym_ref_id_specifier] = ACTIONS(1360), + [sym__display_math_state_track_marker] = ACTIONS(1360), + [sym__inline_math_state_track_marker] = ACTIONS(1360), + }, + [STATE(166)] = { + [sym_list_marker_example] = STATE(29), + [sym__list_item_example] = STATE(166), + [aux_sym__list_example_repeat1] = STATE(166), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_BSLASH] = ACTIONS(1401), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [sym__word] = ACTIONS(1401), + [sym__soft_line_ending] = ACTIONS(1401), + [sym__block_close] = ACTIONS(1401), + [sym__block_quote_start] = ACTIONS(1401), + [sym__indented_chunk_start] = ACTIONS(1401), + [sym_atx_h1_marker] = ACTIONS(1401), + [sym_atx_h2_marker] = ACTIONS(1401), + [sym_atx_h3_marker] = ACTIONS(1401), + [sym_atx_h4_marker] = ACTIONS(1401), + [sym_atx_h5_marker] = ACTIONS(1401), + [sym_atx_h6_marker] = ACTIONS(1401), + [sym__thematic_break] = ACTIONS(1401), + [sym__list_marker_minus] = ACTIONS(1401), + [sym__list_marker_plus] = ACTIONS(1401), + [sym__list_marker_star] = ACTIONS(1401), + [sym__list_marker_parenthesis] = ACTIONS(1401), + [sym__list_marker_dot] = ACTIONS(1401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_example] = ACTIONS(1403), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1403), + [sym__fenced_code_block_start_backtick] = ACTIONS(1401), + [sym__fenced_code_block_start_tilde] = ACTIONS(1401), + [sym__blank_line_start] = ACTIONS(1401), + [sym_minus_metadata] = ACTIONS(1401), + [sym__pipe_table_start] = ACTIONS(1401), + [sym__fenced_div_start] = ACTIONS(1401), + [sym_ref_id_specifier] = ACTIONS(1401), + [sym__display_math_state_track_marker] = ACTIONS(1401), + [sym__inline_math_state_track_marker] = ACTIONS(1401), + }, + [STATE(167)] = { + [sym_list_marker_plus] = STATE(18), + [sym__list_item_plus] = STATE(140), + [aux_sym__list_plus_repeat1] = STATE(140), + [ts_builtin_sym_end] = ACTIONS(1375), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1375), + [anon_sym_DOLLAR] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_BSLASH] = ACTIONS(1375), + [anon_sym_RBRACK] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1375), + [anon_sym__] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [sym__word] = ACTIONS(1375), + [sym__soft_line_ending] = ACTIONS(1375), + [sym__block_quote_start] = ACTIONS(1375), + [sym__indented_chunk_start] = ACTIONS(1375), + [sym_atx_h1_marker] = ACTIONS(1375), + [sym_atx_h2_marker] = ACTIONS(1375), + [sym_atx_h3_marker] = ACTIONS(1375), + [sym_atx_h4_marker] = ACTIONS(1375), + [sym_atx_h5_marker] = ACTIONS(1375), + [sym_atx_h6_marker] = ACTIONS(1375), + [sym__thematic_break] = ACTIONS(1375), + [sym__list_marker_minus] = ACTIONS(1375), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1375), + [sym__list_marker_parenthesis] = ACTIONS(1375), + [sym__list_marker_dot] = ACTIONS(1375), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_example] = ACTIONS(1375), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1375), + [sym__fenced_code_block_start_backtick] = ACTIONS(1375), + [sym__fenced_code_block_start_tilde] = ACTIONS(1375), + [sym__blank_line_start] = ACTIONS(1375), + [sym_minus_metadata] = ACTIONS(1375), + [sym__pipe_table_start] = ACTIONS(1375), + [sym__fenced_div_start] = ACTIONS(1375), + [sym_ref_id_specifier] = ACTIONS(1375), + [sym__display_math_state_track_marker] = ACTIONS(1375), + [sym__inline_math_state_track_marker] = ACTIONS(1375), + }, + [STATE(168)] = { + [sym_list_marker_minus] = STATE(6), + [sym__list_item_minus] = STATE(174), + [aux_sym__list_minus_repeat1] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(1382), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_PERCENT] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1382), + [anon_sym_SLASH] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_AT] = ACTIONS(1382), [anon_sym_LBRACK] = ACTIONS(1382), [anon_sym_BSLASH] = ACTIONS(1382), [anon_sym_RBRACK] = ACTIONS(1382), @@ -22069,7 +22373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1382), [sym__word] = ACTIONS(1382), [sym__soft_line_ending] = ACTIONS(1382), - [sym__block_close] = ACTIONS(1382), [sym__block_quote_start] = ACTIONS(1382), [sym__indented_chunk_start] = ACTIONS(1382), [sym_atx_h1_marker] = ACTIONS(1382), @@ -22079,19 +22382,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h5_marker] = ACTIONS(1382), [sym_atx_h6_marker] = ACTIONS(1382), [sym__thematic_break] = ACTIONS(1382), - [sym__list_marker_minus] = ACTIONS(1382), + [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(1382), [sym__list_marker_star] = ACTIONS(1382), [sym__list_marker_parenthesis] = ACTIONS(1382), [sym__list_marker_dot] = ACTIONS(1382), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), + [sym__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), [sym__fenced_code_block_start_backtick] = ACTIONS(1382), [sym__fenced_code_block_start_tilde] = ACTIONS(1382), - [sym__blank_line_start] = ACTIONS(1384), + [sym__blank_line_start] = ACTIONS(1382), [sym_minus_metadata] = ACTIONS(1382), [sym__pipe_table_start] = ACTIONS(1382), [sym__fenced_div_start] = ACTIONS(1382), @@ -22099,17814 +22404,21003 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1382), [sym__inline_math_state_track_marker] = ACTIONS(1382), }, - [STATE(183)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1390), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1390), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [sym__word] = ACTIONS(1390), - [sym__soft_line_ending] = ACTIONS(1390), - [sym__block_close] = ACTIONS(1390), - [sym__block_quote_start] = ACTIONS(1390), - [sym__indented_chunk_start] = ACTIONS(1390), - [sym_atx_h1_marker] = ACTIONS(1390), - [sym_atx_h2_marker] = ACTIONS(1390), - [sym_atx_h3_marker] = ACTIONS(1390), - [sym_atx_h4_marker] = ACTIONS(1390), - [sym_atx_h5_marker] = ACTIONS(1390), - [sym_atx_h6_marker] = ACTIONS(1390), - [sym_setext_h1_underline] = ACTIONS(1390), - [sym_setext_h2_underline] = ACTIONS(1390), - [sym__thematic_break] = ACTIONS(1390), - [sym__list_marker_minus] = ACTIONS(1390), - [sym__list_marker_plus] = ACTIONS(1390), - [sym__list_marker_star] = ACTIONS(1390), - [sym__list_marker_parenthesis] = ACTIONS(1390), - [sym__list_marker_dot] = ACTIONS(1390), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), - [sym__fenced_code_block_start_backtick] = ACTIONS(1390), - [sym__fenced_code_block_start_tilde] = ACTIONS(1390), - [sym__blank_line_start] = ACTIONS(1390), - [sym_minus_metadata] = ACTIONS(1390), - [sym__pipe_table_start] = ACTIONS(1390), - [sym__fenced_div_start] = ACTIONS(1390), - [sym_ref_id_specifier] = ACTIONS(1390), - [sym__display_math_state_track_marker] = ACTIONS(1390), - [sym__inline_math_state_track_marker] = ACTIONS(1390), + [STATE(169)] = { + [sym_list_marker_star] = STATE(8), + [sym__list_item_star] = STATE(142), + [aux_sym__list_star_repeat1] = STATE(142), + [ts_builtin_sym_end] = ACTIONS(1399), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_DOLLAR] = ACTIONS(1399), + [anon_sym_PERCENT] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1399), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_BSLASH] = ACTIONS(1399), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym__] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [sym__word] = ACTIONS(1399), + [sym__soft_line_ending] = ACTIONS(1399), + [sym__block_quote_start] = ACTIONS(1399), + [sym__indented_chunk_start] = ACTIONS(1399), + [sym_atx_h1_marker] = ACTIONS(1399), + [sym_atx_h2_marker] = ACTIONS(1399), + [sym_atx_h3_marker] = ACTIONS(1399), + [sym_atx_h4_marker] = ACTIONS(1399), + [sym_atx_h5_marker] = ACTIONS(1399), + [sym_atx_h6_marker] = ACTIONS(1399), + [sym__thematic_break] = ACTIONS(1399), + [sym__list_marker_minus] = ACTIONS(1399), + [sym__list_marker_plus] = ACTIONS(1399), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(1399), + [sym__list_marker_dot] = ACTIONS(1399), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1399), + [sym__list_marker_example] = ACTIONS(1399), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1399), + [sym__fenced_code_block_start_backtick] = ACTIONS(1399), + [sym__fenced_code_block_start_tilde] = ACTIONS(1399), + [sym__blank_line_start] = ACTIONS(1399), + [sym_minus_metadata] = ACTIONS(1399), + [sym__pipe_table_start] = ACTIONS(1399), + [sym__fenced_div_start] = ACTIONS(1399), + [sym_ref_id_specifier] = ACTIONS(1399), + [sym__display_math_state_track_marker] = ACTIONS(1399), + [sym__inline_math_state_track_marker] = ACTIONS(1399), }, - [STATE(184)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_DOLLAR] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym__] = ACTIONS(1452), - [anon_sym_BQUOTE] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [sym__word] = ACTIONS(1452), - [sym__soft_line_ending] = ACTIONS(1452), - [sym__block_close] = ACTIONS(1452), - [sym_block_continuation] = ACTIONS(1454), - [sym__block_quote_start] = ACTIONS(1452), - [sym__indented_chunk_start] = ACTIONS(1452), - [sym_atx_h1_marker] = ACTIONS(1452), - [sym_atx_h2_marker] = ACTIONS(1452), - [sym_atx_h3_marker] = ACTIONS(1452), - [sym_atx_h4_marker] = ACTIONS(1452), - [sym_atx_h5_marker] = ACTIONS(1452), - [sym_atx_h6_marker] = ACTIONS(1452), - [sym__thematic_break] = ACTIONS(1452), - [sym__list_marker_minus] = ACTIONS(1452), - [sym__list_marker_plus] = ACTIONS(1452), - [sym__list_marker_star] = ACTIONS(1452), - [sym__list_marker_parenthesis] = ACTIONS(1452), - [sym__list_marker_dot] = ACTIONS(1452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1452), - [sym__fenced_code_block_start_backtick] = ACTIONS(1452), - [sym__fenced_code_block_start_tilde] = ACTIONS(1452), - [sym__blank_line_start] = ACTIONS(1452), - [sym_minus_metadata] = ACTIONS(1452), - [sym__pipe_table_start] = ACTIONS(1452), - [sym__fenced_div_start] = ACTIONS(1452), - [sym__fenced_div_end] = ACTIONS(1452), - [sym_ref_id_specifier] = ACTIONS(1452), - [sym__display_math_state_track_marker] = ACTIONS(1452), - [sym__inline_math_state_track_marker] = ACTIONS(1452), + [STATE(170)] = { + [sym_list_marker_dot] = STATE(3), + [sym__list_item_dot] = STATE(143), + [aux_sym__list_dot_repeat1] = STATE(143), + [ts_builtin_sym_end] = ACTIONS(1365), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_AT] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_BSLASH] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1365), + [anon_sym__] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [sym__word] = ACTIONS(1365), + [sym__soft_line_ending] = ACTIONS(1365), + [sym__block_quote_start] = ACTIONS(1365), + [sym__indented_chunk_start] = ACTIONS(1365), + [sym_atx_h1_marker] = ACTIONS(1365), + [sym_atx_h2_marker] = ACTIONS(1365), + [sym_atx_h3_marker] = ACTIONS(1365), + [sym_atx_h4_marker] = ACTIONS(1365), + [sym_atx_h5_marker] = ACTIONS(1365), + [sym_atx_h6_marker] = ACTIONS(1365), + [sym__thematic_break] = ACTIONS(1365), + [sym__list_marker_minus] = ACTIONS(1365), + [sym__list_marker_plus] = ACTIONS(1365), + [sym__list_marker_star] = ACTIONS(1365), + [sym__list_marker_parenthesis] = ACTIONS(1365), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1365), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(1365), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1365), + [sym__fenced_code_block_start_backtick] = ACTIONS(1365), + [sym__fenced_code_block_start_tilde] = ACTIONS(1365), + [sym__blank_line_start] = ACTIONS(1365), + [sym_minus_metadata] = ACTIONS(1365), + [sym__pipe_table_start] = ACTIONS(1365), + [sym__fenced_div_start] = ACTIONS(1365), + [sym_ref_id_specifier] = ACTIONS(1365), + [sym__display_math_state_track_marker] = ACTIONS(1365), + [sym__inline_math_state_track_marker] = ACTIONS(1365), }, - [STATE(185)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1456), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_BSLASH] = ACTIONS(1456), - [anon_sym_RBRACK] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym__] = ACTIONS(1456), - [anon_sym_BQUOTE] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [sym__word] = ACTIONS(1456), - [sym__soft_line_ending] = ACTIONS(1456), - [sym__block_close] = ACTIONS(1456), - [sym_block_continuation] = ACTIONS(1458), - [sym__block_quote_start] = ACTIONS(1456), - [sym__indented_chunk_start] = ACTIONS(1456), - [sym_atx_h1_marker] = ACTIONS(1456), - [sym_atx_h2_marker] = ACTIONS(1456), - [sym_atx_h3_marker] = ACTIONS(1456), - [sym_atx_h4_marker] = ACTIONS(1456), - [sym_atx_h5_marker] = ACTIONS(1456), - [sym_atx_h6_marker] = ACTIONS(1456), - [sym__thematic_break] = ACTIONS(1456), - [sym__list_marker_minus] = ACTIONS(1456), - [sym__list_marker_plus] = ACTIONS(1456), - [sym__list_marker_star] = ACTIONS(1456), - [sym__list_marker_parenthesis] = ACTIONS(1456), - [sym__list_marker_dot] = ACTIONS(1456), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), - [sym__fenced_code_block_start_backtick] = ACTIONS(1456), - [sym__fenced_code_block_start_tilde] = ACTIONS(1456), - [sym__blank_line_start] = ACTIONS(1456), - [sym_minus_metadata] = ACTIONS(1456), - [sym__pipe_table_start] = ACTIONS(1456), - [sym__fenced_div_start] = ACTIONS(1456), - [sym__fenced_div_end] = ACTIONS(1456), - [sym_ref_id_specifier] = ACTIONS(1456), - [sym__display_math_state_track_marker] = ACTIONS(1456), - [sym__inline_math_state_track_marker] = ACTIONS(1456), + [STATE(171)] = { + [sym_list_marker_parenthesis] = STATE(4), + [sym__list_item_parenthesis] = STATE(144), + [aux_sym__list_parenthesis_repeat1] = STATE(144), + [ts_builtin_sym_end] = ACTIONS(1367), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_DOLLAR] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_AT] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_BSLASH] = ACTIONS(1367), + [anon_sym_RBRACK] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym__] = ACTIONS(1367), + [anon_sym_BQUOTE] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), + [sym__word] = ACTIONS(1367), + [sym__soft_line_ending] = ACTIONS(1367), + [sym__block_quote_start] = ACTIONS(1367), + [sym__indented_chunk_start] = ACTIONS(1367), + [sym_atx_h1_marker] = ACTIONS(1367), + [sym_atx_h2_marker] = ACTIONS(1367), + [sym_atx_h3_marker] = ACTIONS(1367), + [sym_atx_h4_marker] = ACTIONS(1367), + [sym_atx_h5_marker] = ACTIONS(1367), + [sym_atx_h6_marker] = ACTIONS(1367), + [sym__thematic_break] = ACTIONS(1367), + [sym__list_marker_minus] = ACTIONS(1367), + [sym__list_marker_plus] = ACTIONS(1367), + [sym__list_marker_star] = ACTIONS(1367), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1367), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1367), + [sym__list_marker_example] = ACTIONS(1367), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1367), + [sym__fenced_code_block_start_backtick] = ACTIONS(1367), + [sym__fenced_code_block_start_tilde] = ACTIONS(1367), + [sym__blank_line_start] = ACTIONS(1367), + [sym_minus_metadata] = ACTIONS(1367), + [sym__pipe_table_start] = ACTIONS(1367), + [sym__fenced_div_start] = ACTIONS(1367), + [sym_ref_id_specifier] = ACTIONS(1367), + [sym__display_math_state_track_marker] = ACTIONS(1367), + [sym__inline_math_state_track_marker] = ACTIONS(1367), }, - [STATE(186)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_BSLASH] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym__] = ACTIONS(1460), - [anon_sym_BQUOTE] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [sym__word] = ACTIONS(1460), - [sym__soft_line_ending] = ACTIONS(1460), - [sym__block_close] = ACTIONS(1460), - [sym_block_continuation] = ACTIONS(1462), - [sym__block_quote_start] = ACTIONS(1460), - [sym__indented_chunk_start] = ACTIONS(1460), - [sym_atx_h1_marker] = ACTIONS(1460), - [sym_atx_h2_marker] = ACTIONS(1460), - [sym_atx_h3_marker] = ACTIONS(1460), - [sym_atx_h4_marker] = ACTIONS(1460), - [sym_atx_h5_marker] = ACTIONS(1460), - [sym_atx_h6_marker] = ACTIONS(1460), - [sym__thematic_break] = ACTIONS(1460), - [sym__list_marker_minus] = ACTIONS(1460), - [sym__list_marker_plus] = ACTIONS(1460), - [sym__list_marker_star] = ACTIONS(1460), - [sym__list_marker_parenthesis] = ACTIONS(1460), - [sym__list_marker_dot] = ACTIONS(1460), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1460), - [sym__fenced_code_block_start_backtick] = ACTIONS(1460), - [sym__fenced_code_block_start_tilde] = ACTIONS(1460), - [sym__blank_line_start] = ACTIONS(1460), - [sym_minus_metadata] = ACTIONS(1460), - [sym__pipe_table_start] = ACTIONS(1460), - [sym__fenced_div_start] = ACTIONS(1460), - [sym__fenced_div_end] = ACTIONS(1460), - [sym_ref_id_specifier] = ACTIONS(1460), - [sym__display_math_state_track_marker] = ACTIONS(1460), - [sym__inline_math_state_track_marker] = ACTIONS(1460), + [STATE(172)] = { + [sym_list_marker_example] = STATE(5), + [sym__list_item_example] = STATE(145), + [aux_sym__list_example_repeat1] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(1371), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(1371), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_DOLLAR] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1371), + [anon_sym_AT] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_BSLASH] = ACTIONS(1371), + [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym__] = ACTIONS(1371), + [anon_sym_BQUOTE] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_TILDE] = ACTIONS(1371), + [sym__word] = ACTIONS(1371), + [sym__soft_line_ending] = ACTIONS(1371), + [sym__block_quote_start] = ACTIONS(1371), + [sym__indented_chunk_start] = ACTIONS(1371), + [sym_atx_h1_marker] = ACTIONS(1371), + [sym_atx_h2_marker] = ACTIONS(1371), + [sym_atx_h3_marker] = ACTIONS(1371), + [sym_atx_h4_marker] = ACTIONS(1371), + [sym_atx_h5_marker] = ACTIONS(1371), + [sym_atx_h6_marker] = ACTIONS(1371), + [sym__thematic_break] = ACTIONS(1371), + [sym__list_marker_minus] = ACTIONS(1371), + [sym__list_marker_plus] = ACTIONS(1371), + [sym__list_marker_star] = ACTIONS(1371), + [sym__list_marker_parenthesis] = ACTIONS(1371), + [sym__list_marker_dot] = ACTIONS(1371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(1371), + [sym__fenced_code_block_start_tilde] = ACTIONS(1371), + [sym__blank_line_start] = ACTIONS(1371), + [sym_minus_metadata] = ACTIONS(1371), + [sym__pipe_table_start] = ACTIONS(1371), + [sym__fenced_div_start] = ACTIONS(1371), + [sym_ref_id_specifier] = ACTIONS(1371), + [sym__display_math_state_track_marker] = ACTIONS(1371), + [sym__inline_math_state_track_marker] = ACTIONS(1371), }, - [STATE(187)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_QMARK] = ACTIONS(1464), - [anon_sym_AT] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_BSLASH] = ACTIONS(1464), - [anon_sym_RBRACK] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym__] = ACTIONS(1464), - [anon_sym_BQUOTE] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [sym__word] = ACTIONS(1464), - [sym__soft_line_ending] = ACTIONS(1464), - [sym__block_close] = ACTIONS(1464), - [sym_block_continuation] = ACTIONS(1466), - [sym__block_quote_start] = ACTIONS(1464), - [sym__indented_chunk_start] = ACTIONS(1464), - [sym_atx_h1_marker] = ACTIONS(1464), - [sym_atx_h2_marker] = ACTIONS(1464), - [sym_atx_h3_marker] = ACTIONS(1464), - [sym_atx_h4_marker] = ACTIONS(1464), - [sym_atx_h5_marker] = ACTIONS(1464), - [sym_atx_h6_marker] = ACTIONS(1464), - [sym__thematic_break] = ACTIONS(1464), - [sym__list_marker_minus] = ACTIONS(1464), - [sym__list_marker_plus] = ACTIONS(1464), - [sym__list_marker_star] = ACTIONS(1464), - [sym__list_marker_parenthesis] = ACTIONS(1464), - [sym__list_marker_dot] = ACTIONS(1464), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), - [sym__fenced_code_block_start_backtick] = ACTIONS(1464), - [sym__fenced_code_block_start_tilde] = ACTIONS(1464), - [sym__blank_line_start] = ACTIONS(1464), - [sym_minus_metadata] = ACTIONS(1464), - [sym__pipe_table_start] = ACTIONS(1464), - [sym__fenced_div_start] = ACTIONS(1464), - [sym__fenced_div_end] = ACTIONS(1464), - [sym_ref_id_specifier] = ACTIONS(1464), - [sym__display_math_state_track_marker] = ACTIONS(1464), - [sym__inline_math_state_track_marker] = ACTIONS(1464), + [STATE(173)] = { + [sym__indented_chunk] = STATE(138), + [sym__blank_line] = STATE(138), + [aux_sym_indented_code_block_repeat1] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(1373), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_BSLASH] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym__] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [sym__word] = ACTIONS(1373), + [sym__soft_line_ending] = ACTIONS(1373), + [sym__block_quote_start] = ACTIONS(1373), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1373), + [sym_atx_h2_marker] = ACTIONS(1373), + [sym_atx_h3_marker] = ACTIONS(1373), + [sym_atx_h4_marker] = ACTIONS(1373), + [sym_atx_h5_marker] = ACTIONS(1373), + [sym_atx_h6_marker] = ACTIONS(1373), + [sym__thematic_break] = ACTIONS(1373), + [sym__list_marker_minus] = ACTIONS(1373), + [sym__list_marker_plus] = ACTIONS(1373), + [sym__list_marker_star] = ACTIONS(1373), + [sym__list_marker_parenthesis] = ACTIONS(1373), + [sym__list_marker_dot] = ACTIONS(1373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_example] = ACTIONS(1373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1373), + [sym__fenced_code_block_start_backtick] = ACTIONS(1373), + [sym__fenced_code_block_start_tilde] = ACTIONS(1373), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1373), + [sym__pipe_table_start] = ACTIONS(1373), + [sym__fenced_div_start] = ACTIONS(1373), + [sym_ref_id_specifier] = ACTIONS(1373), + [sym__display_math_state_track_marker] = ACTIONS(1373), + [sym__inline_math_state_track_marker] = ACTIONS(1373), }, - [STATE(188)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_COMMA] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_QMARK] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_BSLASH] = ACTIONS(1468), - [anon_sym_RBRACK] = ACTIONS(1468), - [anon_sym_CARET] = ACTIONS(1468), - [anon_sym__] = ACTIONS(1468), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [sym__word] = ACTIONS(1468), - [sym__soft_line_ending] = ACTIONS(1468), - [sym__block_close] = ACTIONS(1468), - [sym_block_continuation] = ACTIONS(1470), - [sym__block_quote_start] = ACTIONS(1468), - [sym__indented_chunk_start] = ACTIONS(1468), - [sym_atx_h1_marker] = ACTIONS(1468), - [sym_atx_h2_marker] = ACTIONS(1468), - [sym_atx_h3_marker] = ACTIONS(1468), - [sym_atx_h4_marker] = ACTIONS(1468), - [sym_atx_h5_marker] = ACTIONS(1468), - [sym_atx_h6_marker] = ACTIONS(1468), - [sym__thematic_break] = ACTIONS(1468), - [sym__list_marker_minus] = ACTIONS(1468), - [sym__list_marker_plus] = ACTIONS(1468), - [sym__list_marker_star] = ACTIONS(1468), - [sym__list_marker_parenthesis] = ACTIONS(1468), - [sym__list_marker_dot] = ACTIONS(1468), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), - [sym__fenced_code_block_start_backtick] = ACTIONS(1468), - [sym__fenced_code_block_start_tilde] = ACTIONS(1468), - [sym__blank_line_start] = ACTIONS(1468), - [sym_minus_metadata] = ACTIONS(1468), - [sym__pipe_table_start] = ACTIONS(1468), - [sym__fenced_div_start] = ACTIONS(1468), - [sym__fenced_div_end] = ACTIONS(1468), - [sym_ref_id_specifier] = ACTIONS(1468), - [sym__display_math_state_track_marker] = ACTIONS(1468), - [sym__inline_math_state_track_marker] = ACTIONS(1468), + [STATE(174)] = { + [sym_list_marker_minus] = STATE(6), + [sym__list_item_minus] = STATE(174), + [aux_sym__list_minus_repeat1] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(1384), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_COMMA] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_QMARK] = ACTIONS(1384), + [anon_sym_AT] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_BSLASH] = ACTIONS(1384), + [anon_sym_RBRACK] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym__] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [sym__word] = ACTIONS(1384), + [sym__soft_line_ending] = ACTIONS(1384), + [sym__block_quote_start] = ACTIONS(1384), + [sym__indented_chunk_start] = ACTIONS(1384), + [sym_atx_h1_marker] = ACTIONS(1384), + [sym_atx_h2_marker] = ACTIONS(1384), + [sym_atx_h3_marker] = ACTIONS(1384), + [sym_atx_h4_marker] = ACTIONS(1384), + [sym_atx_h5_marker] = ACTIONS(1384), + [sym_atx_h6_marker] = ACTIONS(1384), + [sym__thematic_break] = ACTIONS(1384), + [sym__list_marker_minus] = ACTIONS(1386), + [sym__list_marker_plus] = ACTIONS(1384), + [sym__list_marker_star] = ACTIONS(1384), + [sym__list_marker_parenthesis] = ACTIONS(1384), + [sym__list_marker_dot] = ACTIONS(1384), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1384), + [sym__list_marker_example] = ACTIONS(1384), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1384), + [sym__fenced_code_block_start_backtick] = ACTIONS(1384), + [sym__fenced_code_block_start_tilde] = ACTIONS(1384), + [sym__blank_line_start] = ACTIONS(1384), + [sym_minus_metadata] = ACTIONS(1384), + [sym__pipe_table_start] = ACTIONS(1384), + [sym__fenced_div_start] = ACTIONS(1384), + [sym_ref_id_specifier] = ACTIONS(1384), + [sym__display_math_state_track_marker] = ACTIONS(1384), + [sym__inline_math_state_track_marker] = ACTIONS(1384), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 1, - ACTIONS(1456), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [67] = 1, - ACTIONS(1472), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [134] = 1, - ACTIONS(1474), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [201] = 1, - ACTIONS(1476), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [268] = 1, - ACTIONS(1478), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [335] = 1, - ACTIONS(1480), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [402] = 1, - ACTIONS(1482), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [469] = 1, - ACTIONS(1484), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [536] = 1, - ACTIONS(1486), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [603] = 1, - ACTIONS(1488), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [670] = 1, - ACTIONS(1490), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [737] = 2, - ACTIONS(1492), 1, - sym_block_continuation, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [806] = 1, - ACTIONS(1494), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [873] = 2, - ACTIONS(1496), 1, - sym_block_continuation, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [942] = 1, - ACTIONS(1448), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1009] = 1, - ACTIONS(1498), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1076] = 1, - ACTIONS(1500), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1143] = 1, - ACTIONS(1502), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1210] = 1, - ACTIONS(1504), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1277] = 1, - ACTIONS(1506), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1344] = 1, - ACTIONS(1508), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1411] = 1, - ACTIONS(1510), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1478] = 1, - ACTIONS(1512), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1545] = 1, - ACTIONS(1514), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1612] = 2, - ACTIONS(1516), 1, - sym_block_continuation, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1681] = 1, - ACTIONS(1402), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1748] = 1, - ACTIONS(1518), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1815] = 1, - ACTIONS(1452), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1882] = 1, - ACTIONS(1520), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1949] = 2, - ACTIONS(1522), 1, - sym_block_continuation, - ACTIONS(1436), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2018] = 1, - ACTIONS(1524), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2085] = 1, - ACTIONS(1460), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2152] = 1, - ACTIONS(1520), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2219] = 1, - ACTIONS(1464), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2286] = 1, - ACTIONS(1526), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2353] = 1, - ACTIONS(1528), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2420] = 2, - ACTIONS(1530), 1, - sym_block_continuation, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2489] = 1, - ACTIONS(1532), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2556] = 1, - ACTIONS(1534), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2623] = 1, - ACTIONS(1536), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2690] = 1, - ACTIONS(1538), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2757] = 1, - ACTIONS(1540), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2824] = 1, - ACTIONS(1542), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2891] = 1, - ACTIONS(1544), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2958] = 1, - ACTIONS(1546), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3025] = 1, - ACTIONS(1386), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3092] = 2, - ACTIONS(1548), 1, - sym_block_continuation, - ACTIONS(1444), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3161] = 1, - ACTIONS(1550), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3228] = 1, - ACTIONS(1552), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3295] = 1, - ACTIONS(1554), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3362] = 1, - ACTIONS(1556), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3429] = 1, - ACTIONS(1558), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3496] = 1, - ACTIONS(1560), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3563] = 1, - ACTIONS(1562), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3630] = 1, - ACTIONS(1564), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3697] = 1, - ACTIONS(1566), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3764] = 2, - ACTIONS(1568), 1, - sym_block_continuation, - ACTIONS(1440), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3833] = 1, - ACTIONS(1570), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3900] = 1, - ACTIONS(1572), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3967] = 1, - ACTIONS(1574), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4034] = 1, - ACTIONS(1576), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4101] = 1, - ACTIONS(1578), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4168] = 2, - ACTIONS(1580), 1, - sym_block_continuation, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4237] = 1, - ACTIONS(1582), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4304] = 2, - ACTIONS(1584), 1, - sym_block_continuation, - ACTIONS(1321), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4373] = 1, - ACTIONS(1390), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4440] = 1, - ACTIONS(1586), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4507] = 2, - ACTIONS(1588), 1, - sym_block_continuation, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4576] = 2, - ACTIONS(1590), 1, - sym_block_continuation, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4645] = 1, - ACTIONS(1394), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4712] = 1, - ACTIONS(1468), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4779] = 2, - ACTIONS(1592), 1, - sym_block_continuation, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4848] = 1, - ACTIONS(1410), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4915] = 2, - ACTIONS(1594), 1, - sym_block_continuation, - ACTIONS(1420), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4984] = 2, - ACTIONS(1596), 1, - sym_block_continuation, - ACTIONS(1321), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5053] = 2, - ACTIONS(1598), 1, - sym_block_continuation, - ACTIONS(1406), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5122] = 2, - ACTIONS(1600), 1, - sym_block_continuation, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5191] = 1, - ACTIONS(1602), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5258] = 2, - ACTIONS(1604), 1, - sym_block_continuation, - ACTIONS(1428), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5327] = 2, - ACTIONS(1606), 1, - sym_block_continuation, - ACTIONS(1432), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5396] = 1, - ACTIONS(1608), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5463] = 2, - ACTIONS(1610), 1, - sym_block_continuation, - ACTIONS(1436), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5532] = 2, - ACTIONS(1612), 1, - sym_block_continuation, - ACTIONS(1440), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5601] = 1, - ACTIONS(1614), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5668] = 1, - ACTIONS(1616), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5735] = 1, - ACTIONS(1618), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5802] = 1, - ACTIONS(1620), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5869] = 1, - ACTIONS(1622), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5936] = 2, - ACTIONS(1624), 1, - sym_block_continuation, - ACTIONS(1420), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6005] = 2, - ACTIONS(1626), 1, - sym_block_continuation, - ACTIONS(1444), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6074] = 1, - ACTIONS(1628), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6141] = 2, - ACTIONS(1630), 1, - sym_block_continuation, - ACTIONS(1406), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6210] = 1, - ACTIONS(1632), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6277] = 1, - ACTIONS(1634), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6344] = 1, - ACTIONS(1636), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6411] = 1, - ACTIONS(1638), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6478] = 1, - ACTIONS(1640), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6545] = 2, - ACTIONS(1642), 1, - sym_block_continuation, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6614] = 2, - ACTIONS(1644), 1, - sym_block_continuation, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6683] = 2, - ACTIONS(1646), 1, - sym_block_continuation, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6752] = 2, - ACTIONS(1648), 1, - sym_block_continuation, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6821] = 3, - ACTIONS(1650), 1, - sym__blank_line_start, - STATE(962), 1, - sym__blank_line, - ACTIONS(1370), 62, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6892] = 2, - ACTIONS(1652), 1, - sym_block_continuation, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6961] = 2, - ACTIONS(1654), 1, - sym_block_continuation, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7030] = 2, - ACTIONS(1656), 1, - sym_block_continuation, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7099] = 1, - ACTIONS(1658), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7166] = 2, - ACTIONS(1660), 1, - sym_block_continuation, - ACTIONS(1428), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7235] = 2, - ACTIONS(1662), 1, - sym_block_continuation, - ACTIONS(1432), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7304] = 1, - ACTIONS(1664), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7371] = 1, - ACTIONS(1666), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7437] = 1, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7503] = 1, - ACTIONS(1526), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7569] = 1, - ACTIONS(1528), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7635] = 1, - ACTIONS(1474), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7701] = 1, - ACTIONS(1532), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7767] = 1, - ACTIONS(1534), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7833] = 1, - ACTIONS(1536), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7899] = 1, - ACTIONS(1538), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7965] = 1, - ACTIONS(1540), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8031] = 1, - ACTIONS(1542), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8097] = 1, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8163] = 1, - ACTIONS(1546), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8229] = 1, - ACTIONS(1386), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8295] = 1, - ACTIONS(1476), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8361] = 1, - ACTIONS(1550), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8427] = 1, - ACTIONS(1552), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8493] = 1, - ACTIONS(1554), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8559] = 1, - ACTIONS(1556), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8625] = 1, - ACTIONS(1558), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8691] = 1, - ACTIONS(1560), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8757] = 1, - ACTIONS(1562), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8823] = 1, - ACTIONS(1564), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8889] = 1, - ACTIONS(1566), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8955] = 1, - ACTIONS(1664), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9021] = 1, - ACTIONS(1570), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9087] = 1, - ACTIONS(1572), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9153] = 1, - ACTIONS(1574), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9219] = 1, - ACTIONS(1582), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9285] = 1, - ACTIONS(1586), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9351] = 1, - ACTIONS(1478), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9417] = 1, - ACTIONS(1480), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9483] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9549] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9615] = 1, - ACTIONS(1578), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9681] = 1, - ACTIONS(1482), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9747] = 1, - ACTIONS(1488), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9813] = 1, - ACTIONS(1472), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9879] = 1, - ACTIONS(1474), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9945] = 1, - ACTIONS(1476), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10011] = 1, - ACTIONS(1478), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10077] = 1, - ACTIONS(1480), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10143] = 1, - ACTIONS(1482), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10209] = 1, - ACTIONS(1488), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10275] = 1, - ACTIONS(1576), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10341] = 1, - ACTIONS(1490), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10407] = 1, - ACTIONS(1494), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10473] = 1, - ACTIONS(1498), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10539] = 1, - ACTIONS(1576), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10605] = 1, - ACTIONS(1518), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10671] = 1, - ACTIONS(1582), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10737] = 1, - ACTIONS(1524), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10803] = 1, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10869] = 1, - ACTIONS(1394), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10935] = 1, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11001] = 1, - ACTIONS(1602), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11067] = 1, - ACTIONS(1608), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11133] = 1, - ACTIONS(1614), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11199] = 1, - ACTIONS(1616), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11265] = 1, - ACTIONS(1618), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11331] = 1, - ACTIONS(1620), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11397] = 1, - ACTIONS(1622), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11463] = 1, - ACTIONS(1628), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11529] = 1, - ACTIONS(1632), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11595] = 1, - ACTIONS(1634), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11661] = 1, - ACTIONS(1636), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11727] = 1, - ACTIONS(1638), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11793] = 1, - ACTIONS(1640), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11859] = 1, - ACTIONS(1658), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11925] = 1, - ACTIONS(1490), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11991] = 1, - ACTIONS(1494), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12057] = 1, - ACTIONS(1498), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12123] = 1, - ACTIONS(1484), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12189] = 1, - ACTIONS(1486), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12255] = 1, - ACTIONS(1518), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12321] = 1, - ACTIONS(1524), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12387] = 1, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12453] = 1, - ACTIONS(1500), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12519] = 1, - ACTIONS(1502), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12585] = 1, - ACTIONS(1504), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12651] = 1, - ACTIONS(1506), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12717] = 1, - ACTIONS(1508), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12783] = 1, - ACTIONS(1510), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12849] = 1, - ACTIONS(1512), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12915] = 1, - ACTIONS(1514), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12981] = 1, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13047] = 1, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13113] = 1, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13179] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13245] = 1, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13311] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13377] = 1, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13443] = 1, - ACTIONS(1526), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13509] = 1, - ACTIONS(1528), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13575] = 1, - ACTIONS(1532), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13641] = 1, - ACTIONS(1534), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13707] = 1, - ACTIONS(1536), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13773] = 1, - ACTIONS(1538), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13839] = 1, - ACTIONS(1540), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13905] = 1, - ACTIONS(1542), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13971] = 1, - ACTIONS(1544), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14037] = 1, - ACTIONS(1546), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14103] = 1, - ACTIONS(1386), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14169] = 1, - ACTIONS(1550), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14235] = 1, - ACTIONS(1552), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14301] = 1, - ACTIONS(1554), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14367] = 1, - ACTIONS(1556), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14433] = 1, - ACTIONS(1558), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14499] = 1, - ACTIONS(1560), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14565] = 1, - ACTIONS(1562), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14631] = 1, - ACTIONS(1564), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14697] = 1, - ACTIONS(1566), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14763] = 1, - ACTIONS(1664), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14829] = 1, - ACTIONS(1570), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14895] = 1, - ACTIONS(1572), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14961] = 1, - ACTIONS(1574), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15027] = 1, - ACTIONS(1668), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15093] = 1, - ACTIONS(1578), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15159] = 1, - ACTIONS(1670), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15225] = 1, - ACTIONS(1672), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15291] = 1, - ACTIONS(1674), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15357] = 1, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15423] = 1, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15489] = 1, - ACTIONS(1602), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15555] = 1, - ACTIONS(1390), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15621] = 1, - ACTIONS(1608), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15687] = 1, - ACTIONS(1614), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15753] = 1, - ACTIONS(1616), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15819] = 1, - ACTIONS(1618), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15885] = 1, - ACTIONS(1620), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15951] = 1, - ACTIONS(1622), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16017] = 1, - ACTIONS(1628), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16083] = 1, - ACTIONS(1632), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16149] = 1, - ACTIONS(1634), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16215] = 1, - ACTIONS(1636), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16281] = 1, - ACTIONS(1638), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16347] = 1, - ACTIONS(1640), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16413] = 1, - ACTIONS(1658), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16479] = 1, - ACTIONS(1484), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16545] = 1, - ACTIONS(1486), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16611] = 1, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16677] = 1, - ACTIONS(1500), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16743] = 1, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16809] = 1, - ACTIONS(1390), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16875] = 1, - ACTIONS(1502), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16941] = 1, - ACTIONS(1504), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17007] = 1, - ACTIONS(1506), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17073] = 1, - ACTIONS(1508), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17139] = 1, - ACTIONS(1394), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17205] = 1, - ACTIONS(1510), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17271] = 1, - ACTIONS(1512), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17337] = 1, - ACTIONS(1514), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17403] = 1, - ACTIONS(1472), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17469] = 1, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17535] = 1, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17601] = 1, - ACTIONS(1544), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17667] = 15, - ACTIONS(1676), 1, + [STATE(175)] = { + [sym__blank_line] = STATE(1008), + [sym_table_caption] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(1424), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(1424), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_example] = ACTIONS(1424), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1424), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(176)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym_block_continuation] = ACTIONS(1440), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym__fenced_div_end] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(177)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym_block_continuation] = ACTIONS(1444), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym__fenced_div_end] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(178)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [sym__word] = ACTIONS(1446), + [sym__soft_line_ending] = ACTIONS(1446), + [sym__block_close] = ACTIONS(1446), + [sym_block_continuation] = ACTIONS(1448), + [sym__block_quote_start] = ACTIONS(1446), + [sym__indented_chunk_start] = ACTIONS(1446), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1446), + [sym_atx_h6_marker] = ACTIONS(1446), + [sym__thematic_break] = ACTIONS(1446), + [sym__list_marker_minus] = ACTIONS(1446), + [sym__list_marker_plus] = ACTIONS(1446), + [sym__list_marker_star] = ACTIONS(1446), + [sym__list_marker_parenthesis] = ACTIONS(1446), + [sym__list_marker_dot] = ACTIONS(1446), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_example] = ACTIONS(1446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1446), + [sym__fenced_code_block_start_backtick] = ACTIONS(1446), + [sym__fenced_code_block_start_tilde] = ACTIONS(1446), + [sym__blank_line_start] = ACTIONS(1446), + [sym_minus_metadata] = ACTIONS(1446), + [sym__pipe_table_start] = ACTIONS(1446), + [sym__fenced_div_start] = ACTIONS(1446), + [sym__fenced_div_end] = ACTIONS(1446), + [sym_ref_id_specifier] = ACTIONS(1446), + [sym__display_math_state_track_marker] = ACTIONS(1446), + [sym__inline_math_state_track_marker] = ACTIONS(1446), + }, + [STATE(179)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [sym__word] = ACTIONS(1412), + [sym__soft_line_ending] = ACTIONS(1412), + [sym__block_close] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1412), + [sym__indented_chunk_start] = ACTIONS(1412), + [sym_atx_h1_marker] = ACTIONS(1412), + [sym_atx_h2_marker] = ACTIONS(1412), + [sym_atx_h3_marker] = ACTIONS(1412), + [sym_atx_h4_marker] = ACTIONS(1412), + [sym_atx_h5_marker] = ACTIONS(1412), + [sym_atx_h6_marker] = ACTIONS(1412), + [sym_setext_h1_underline] = ACTIONS(1450), + [sym_setext_h2_underline] = ACTIONS(1452), + [sym__thematic_break] = ACTIONS(1412), + [sym__list_marker_minus] = ACTIONS(1412), + [sym__list_marker_plus] = ACTIONS(1412), + [sym__list_marker_star] = ACTIONS(1412), + [sym__list_marker_parenthesis] = ACTIONS(1412), + [sym__list_marker_dot] = ACTIONS(1412), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_example] = ACTIONS(1412), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1412), + [sym__fenced_code_block_start_backtick] = ACTIONS(1412), + [sym__fenced_code_block_start_tilde] = ACTIONS(1412), + [sym__blank_line_start] = ACTIONS(1412), + [sym_minus_metadata] = ACTIONS(1412), + [sym__pipe_table_start] = ACTIONS(1412), + [sym__fenced_div_start] = ACTIONS(1412), + [sym_ref_id_specifier] = ACTIONS(1412), + [sym__display_math_state_track_marker] = ACTIONS(1412), + [sym__inline_math_state_track_marker] = ACTIONS(1412), + }, + [STATE(180)] = { + [sym__blank_line] = STATE(1021), + [sym_table_caption] = STATE(333), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(181)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym__block_close] = ACTIONS(1454), + [sym_block_continuation] = ACTIONS(1456), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym__fenced_div_end] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), + }, + [STATE(182)] = { + [ts_builtin_sym_end] = ACTIONS(1436), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [sym__word] = ACTIONS(1436), + [sym__soft_line_ending] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym_setext_h1_underline] = ACTIONS(1436), + [sym_setext_h2_underline] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(1436), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_example] = ACTIONS(1436), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym_minus_metadata] = ACTIONS(1436), + [sym__pipe_table_start] = ACTIONS(1436), + [sym__fenced_div_start] = ACTIONS(1436), + [sym_ref_id_specifier] = ACTIONS(1436), + [sym__display_math_state_track_marker] = ACTIONS(1436), + [sym__inline_math_state_track_marker] = ACTIONS(1436), + }, + [STATE(183)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym__block_close] = ACTIONS(1458), + [sym_block_continuation] = ACTIONS(1460), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym__fenced_div_end] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), + }, + [STATE(184)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [sym__word] = ACTIONS(1436), + [sym__soft_line_ending] = ACTIONS(1436), + [sym__block_close] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym_setext_h1_underline] = ACTIONS(1436), + [sym_setext_h2_underline] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(1436), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_example] = ACTIONS(1436), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym_minus_metadata] = ACTIONS(1436), + [sym__pipe_table_start] = ACTIONS(1436), + [sym__fenced_div_start] = ACTIONS(1436), + [sym_ref_id_specifier] = ACTIONS(1436), + [sym__display_math_state_track_marker] = ACTIONS(1436), + [sym__inline_math_state_track_marker] = ACTIONS(1436), + }, + [STATE(185)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym__block_close] = ACTIONS(1356), + [sym_block_continuation] = ACTIONS(1462), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym__fenced_div_end] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(186)] = { + [sym__blank_line] = STATE(1008), + [sym_table_caption] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(1428), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(187)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_RBRACK] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym__] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [sym__word] = ACTIONS(1432), + [sym__soft_line_ending] = ACTIONS(1432), + [sym__block_close] = ACTIONS(1432), + [sym__block_quote_start] = ACTIONS(1432), + [sym__indented_chunk_start] = ACTIONS(1432), + [sym_atx_h1_marker] = ACTIONS(1432), + [sym_atx_h2_marker] = ACTIONS(1432), + [sym_atx_h3_marker] = ACTIONS(1432), + [sym_atx_h4_marker] = ACTIONS(1432), + [sym_atx_h5_marker] = ACTIONS(1432), + [sym_atx_h6_marker] = ACTIONS(1432), + [sym_setext_h1_underline] = ACTIONS(1432), + [sym_setext_h2_underline] = ACTIONS(1432), + [sym__thematic_break] = ACTIONS(1432), + [sym__list_marker_minus] = ACTIONS(1432), + [sym__list_marker_plus] = ACTIONS(1432), + [sym__list_marker_star] = ACTIONS(1432), + [sym__list_marker_parenthesis] = ACTIONS(1432), + [sym__list_marker_dot] = ACTIONS(1432), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_example] = ACTIONS(1432), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1432), + [sym__fenced_code_block_start_backtick] = ACTIONS(1432), + [sym__fenced_code_block_start_tilde] = ACTIONS(1432), + [sym__blank_line_start] = ACTIONS(1432), + [sym_minus_metadata] = ACTIONS(1432), + [sym__pipe_table_start] = ACTIONS(1432), + [sym__fenced_div_start] = ACTIONS(1432), + [sym_ref_id_specifier] = ACTIONS(1432), + [sym__display_math_state_track_marker] = ACTIONS(1432), + [sym__inline_math_state_track_marker] = ACTIONS(1432), + }, + [STATE(188)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [sym__word] = ACTIONS(1464), + [sym__soft_line_ending] = ACTIONS(1464), + [sym__block_close] = ACTIONS(1464), + [sym_block_continuation] = ACTIONS(1466), + [sym__block_quote_start] = ACTIONS(1464), + [sym__indented_chunk_start] = ACTIONS(1464), + [sym_atx_h1_marker] = ACTIONS(1464), + [sym_atx_h2_marker] = ACTIONS(1464), + [sym_atx_h3_marker] = ACTIONS(1464), + [sym_atx_h4_marker] = ACTIONS(1464), + [sym_atx_h5_marker] = ACTIONS(1464), + [sym_atx_h6_marker] = ACTIONS(1464), + [sym__thematic_break] = ACTIONS(1464), + [sym__list_marker_minus] = ACTIONS(1464), + [sym__list_marker_plus] = ACTIONS(1464), + [sym__list_marker_star] = ACTIONS(1464), + [sym__list_marker_parenthesis] = ACTIONS(1464), + [sym__list_marker_dot] = ACTIONS(1464), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_example] = ACTIONS(1464), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1464), + [sym__fenced_code_block_start_backtick] = ACTIONS(1464), + [sym__fenced_code_block_start_tilde] = ACTIONS(1464), + [sym__blank_line_start] = ACTIONS(1464), + [sym_minus_metadata] = ACTIONS(1464), + [sym__pipe_table_start] = ACTIONS(1464), + [sym__fenced_div_start] = ACTIONS(1464), + [sym__fenced_div_end] = ACTIONS(1464), + [sym_ref_id_specifier] = ACTIONS(1464), + [sym__display_math_state_track_marker] = ACTIONS(1464), + [sym__inline_math_state_track_marker] = ACTIONS(1464), + }, + [STATE(189)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [sym__word] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym__block_close] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1470), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_example] = ACTIONS(1468), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym_minus_metadata] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + [sym__fenced_div_start] = ACTIONS(1468), + [sym__fenced_div_end] = ACTIONS(1468), + [sym_ref_id_specifier] = ACTIONS(1468), + [sym__display_math_state_track_marker] = ACTIONS(1468), + [sym__inline_math_state_track_marker] = ACTIONS(1468), + }, + [STATE(190)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [sym_block_continuation] = ACTIONS(1474), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym__fenced_div_end] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(191)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_close] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1478), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym__fenced_div_end] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(192)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym__block_close] = ACTIONS(1480), + [sym_block_continuation] = ACTIONS(1482), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym__fenced_div_end] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(193)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1486), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym__fenced_div_end] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(194)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym__block_close] = ACTIONS(1488), + [sym_block_continuation] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym__fenced_div_end] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(195)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym_block_continuation] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym__fenced_div_end] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(196)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym_block_continuation] = ACTIONS(1498), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym__fenced_div_end] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(197)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym__block_close] = ACTIONS(1500), + [sym_block_continuation] = ACTIONS(1502), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym__fenced_div_end] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(198)] = { + [ts_builtin_sym_end] = ACTIONS(1432), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_RBRACK] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym__] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [sym__word] = ACTIONS(1432), + [sym__soft_line_ending] = ACTIONS(1432), + [sym__block_quote_start] = ACTIONS(1432), + [sym__indented_chunk_start] = ACTIONS(1432), + [sym_atx_h1_marker] = ACTIONS(1432), + [sym_atx_h2_marker] = ACTIONS(1432), + [sym_atx_h3_marker] = ACTIONS(1432), + [sym_atx_h4_marker] = ACTIONS(1432), + [sym_atx_h5_marker] = ACTIONS(1432), + [sym_atx_h6_marker] = ACTIONS(1432), + [sym_setext_h1_underline] = ACTIONS(1432), + [sym_setext_h2_underline] = ACTIONS(1432), + [sym__thematic_break] = ACTIONS(1432), + [sym__list_marker_minus] = ACTIONS(1432), + [sym__list_marker_plus] = ACTIONS(1432), + [sym__list_marker_star] = ACTIONS(1432), + [sym__list_marker_parenthesis] = ACTIONS(1432), + [sym__list_marker_dot] = ACTIONS(1432), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_example] = ACTIONS(1432), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1432), + [sym__fenced_code_block_start_backtick] = ACTIONS(1432), + [sym__fenced_code_block_start_tilde] = ACTIONS(1432), + [sym__blank_line_start] = ACTIONS(1432), + [sym_minus_metadata] = ACTIONS(1432), + [sym__pipe_table_start] = ACTIONS(1432), + [sym__fenced_div_start] = ACTIONS(1432), + [sym_ref_id_specifier] = ACTIONS(1432), + [sym__display_math_state_track_marker] = ACTIONS(1432), + [sym__inline_math_state_track_marker] = ACTIONS(1432), + }, + [STATE(199)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym_block_continuation] = ACTIONS(1506), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym__fenced_div_end] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(200)] = { + [ts_builtin_sym_end] = ACTIONS(1412), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [sym__word] = ACTIONS(1412), + [sym__soft_line_ending] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1412), + [sym__indented_chunk_start] = ACTIONS(1412), + [sym_atx_h1_marker] = ACTIONS(1412), + [sym_atx_h2_marker] = ACTIONS(1412), + [sym_atx_h3_marker] = ACTIONS(1412), + [sym_atx_h4_marker] = ACTIONS(1412), + [sym_atx_h5_marker] = ACTIONS(1412), + [sym_atx_h6_marker] = ACTIONS(1412), + [sym_setext_h1_underline] = ACTIONS(1508), + [sym_setext_h2_underline] = ACTIONS(1510), + [sym__thematic_break] = ACTIONS(1412), + [sym__list_marker_minus] = ACTIONS(1412), + [sym__list_marker_plus] = ACTIONS(1412), + [sym__list_marker_star] = ACTIONS(1412), + [sym__list_marker_parenthesis] = ACTIONS(1412), + [sym__list_marker_dot] = ACTIONS(1412), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_example] = ACTIONS(1412), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1412), + [sym__fenced_code_block_start_backtick] = ACTIONS(1412), + [sym__fenced_code_block_start_tilde] = ACTIONS(1412), + [sym__blank_line_start] = ACTIONS(1412), + [sym_minus_metadata] = ACTIONS(1412), + [sym__pipe_table_start] = ACTIONS(1412), + [sym__fenced_div_start] = ACTIONS(1412), + [sym_ref_id_specifier] = ACTIONS(1412), + [sym__display_math_state_track_marker] = ACTIONS(1412), + [sym__inline_math_state_track_marker] = ACTIONS(1412), + }, + [STATE(201)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [sym__word] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym__block_close] = ACTIONS(1512), + [sym_block_continuation] = ACTIONS(1514), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_example] = ACTIONS(1512), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym_minus_metadata] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + [sym__fenced_div_start] = ACTIONS(1512), + [sym__fenced_div_end] = ACTIONS(1512), + [sym_ref_id_specifier] = ACTIONS(1512), + [sym__display_math_state_track_marker] = ACTIONS(1512), + [sym__inline_math_state_track_marker] = ACTIONS(1512), + }, + [STATE(202)] = { + [sym__blank_line] = STATE(1021), + [sym_table_caption] = STATE(329), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_close] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(1424), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_example] = ACTIONS(1424), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1424), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(203)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [sym__word] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym__block_close] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1516), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_example] = ACTIONS(1468), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym_minus_metadata] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + [sym__fenced_div_start] = ACTIONS(1468), + [sym_ref_id_specifier] = ACTIONS(1468), + [sym__display_math_state_track_marker] = ACTIONS(1468), + [sym__inline_math_state_track_marker] = ACTIONS(1468), + }, + [STATE(204)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [sym__word] = ACTIONS(1518), + [sym__soft_line_ending] = ACTIONS(1518), + [sym__block_close] = ACTIONS(1518), + [sym__block_quote_start] = ACTIONS(1518), + [sym__indented_chunk_start] = ACTIONS(1518), + [sym_atx_h1_marker] = ACTIONS(1518), + [sym_atx_h2_marker] = ACTIONS(1518), + [sym_atx_h3_marker] = ACTIONS(1518), + [sym_atx_h4_marker] = ACTIONS(1518), + [sym_atx_h5_marker] = ACTIONS(1518), + [sym_atx_h6_marker] = ACTIONS(1518), + [sym__thematic_break] = ACTIONS(1518), + [sym__list_marker_minus] = ACTIONS(1518), + [sym__list_marker_plus] = ACTIONS(1518), + [sym__list_marker_star] = ACTIONS(1518), + [sym__list_marker_parenthesis] = ACTIONS(1518), + [sym__list_marker_dot] = ACTIONS(1518), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_example] = ACTIONS(1518), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1518), + [sym__fenced_code_block_start_backtick] = ACTIONS(1518), + [sym__fenced_code_block_start_tilde] = ACTIONS(1518), + [sym__blank_line_start] = ACTIONS(1518), + [sym_minus_metadata] = ACTIONS(1518), + [sym__pipe_table_start] = ACTIONS(1518), + [sym__fenced_div_start] = ACTIONS(1518), + [sym__fenced_div_end] = ACTIONS(1518), + [sym_ref_id_specifier] = ACTIONS(1518), + [sym__display_math_state_track_marker] = ACTIONS(1518), + [sym__inline_math_state_track_marker] = ACTIONS(1518), + }, + [STATE(205)] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym_block_continuation] = ACTIONS(1520), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(206)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [sym__word] = ACTIONS(1522), + [sym__soft_line_ending] = ACTIONS(1522), + [sym__block_close] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1522), + [sym__indented_chunk_start] = ACTIONS(1522), + [sym_atx_h1_marker] = ACTIONS(1522), + [sym_atx_h2_marker] = ACTIONS(1522), + [sym_atx_h3_marker] = ACTIONS(1522), + [sym_atx_h4_marker] = ACTIONS(1522), + [sym_atx_h5_marker] = ACTIONS(1522), + [sym_atx_h6_marker] = ACTIONS(1522), + [sym__thematic_break] = ACTIONS(1522), + [sym__list_marker_minus] = ACTIONS(1522), + [sym__list_marker_plus] = ACTIONS(1522), + [sym__list_marker_star] = ACTIONS(1522), + [sym__list_marker_parenthesis] = ACTIONS(1522), + [sym__list_marker_dot] = ACTIONS(1522), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_example] = ACTIONS(1522), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1522), + [sym__fenced_code_block_start_backtick] = ACTIONS(1522), + [sym__fenced_code_block_start_tilde] = ACTIONS(1522), + [sym__blank_line_start] = ACTIONS(1522), + [sym_minus_metadata] = ACTIONS(1522), + [sym__pipe_table_start] = ACTIONS(1522), + [sym__fenced_div_start] = ACTIONS(1522), + [sym__fenced_div_end] = ACTIONS(1522), + [sym_ref_id_specifier] = ACTIONS(1522), + [sym__display_math_state_track_marker] = ACTIONS(1522), + [sym__inline_math_state_track_marker] = ACTIONS(1522), + }, + [STATE(207)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [anon_sym_RBRACK] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym__] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [sym__word] = ACTIONS(1524), + [sym__soft_line_ending] = ACTIONS(1524), + [sym__block_close] = ACTIONS(1524), + [sym__block_quote_start] = ACTIONS(1524), + [sym__indented_chunk_start] = ACTIONS(1524), + [sym_atx_h1_marker] = ACTIONS(1524), + [sym_atx_h2_marker] = ACTIONS(1524), + [sym_atx_h3_marker] = ACTIONS(1524), + [sym_atx_h4_marker] = ACTIONS(1524), + [sym_atx_h5_marker] = ACTIONS(1524), + [sym_atx_h6_marker] = ACTIONS(1524), + [sym__thematic_break] = ACTIONS(1524), + [sym__list_marker_minus] = ACTIONS(1524), + [sym__list_marker_plus] = ACTIONS(1524), + [sym__list_marker_star] = ACTIONS(1524), + [sym__list_marker_parenthesis] = ACTIONS(1524), + [sym__list_marker_dot] = ACTIONS(1524), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_example] = ACTIONS(1524), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1524), + [sym__fenced_code_block_start_backtick] = ACTIONS(1524), + [sym__fenced_code_block_start_tilde] = ACTIONS(1524), + [sym__blank_line_start] = ACTIONS(1524), + [sym_minus_metadata] = ACTIONS(1524), + [sym__pipe_table_start] = ACTIONS(1524), + [sym__fenced_div_start] = ACTIONS(1524), + [sym__fenced_div_end] = ACTIONS(1524), + [sym_ref_id_specifier] = ACTIONS(1524), + [sym__display_math_state_track_marker] = ACTIONS(1524), + [sym__inline_math_state_track_marker] = ACTIONS(1524), + }, + [STATE(208)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_close] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1526), + [sym__indented_chunk_start] = ACTIONS(1526), + [sym_atx_h1_marker] = ACTIONS(1526), + [sym_atx_h2_marker] = ACTIONS(1526), + [sym_atx_h3_marker] = ACTIONS(1526), + [sym_atx_h4_marker] = ACTIONS(1526), + [sym_atx_h5_marker] = ACTIONS(1526), + [sym_atx_h6_marker] = ACTIONS(1526), + [sym__thematic_break] = ACTIONS(1526), + [sym__list_marker_minus] = ACTIONS(1526), + [sym__list_marker_plus] = ACTIONS(1526), + [sym__list_marker_star] = ACTIONS(1526), + [sym__list_marker_parenthesis] = ACTIONS(1526), + [sym__list_marker_dot] = ACTIONS(1526), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_example] = ACTIONS(1526), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1526), + [sym__fenced_code_block_start_backtick] = ACTIONS(1526), + [sym__fenced_code_block_start_tilde] = ACTIONS(1526), + [sym__blank_line_start] = ACTIONS(1526), + [sym_minus_metadata] = ACTIONS(1526), + [sym__pipe_table_start] = ACTIONS(1526), + [sym__fenced_div_start] = ACTIONS(1526), + [sym__fenced_div_end] = ACTIONS(1526), + [sym_ref_id_specifier] = ACTIONS(1526), + [sym__display_math_state_track_marker] = ACTIONS(1526), + [sym__inline_math_state_track_marker] = ACTIONS(1526), + }, + [STATE(209)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1528), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym__] = ACTIONS(1528), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [sym__word] = ACTIONS(1528), + [sym__soft_line_ending] = ACTIONS(1528), + [sym__block_close] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1528), + [sym__indented_chunk_start] = ACTIONS(1528), + [sym_atx_h1_marker] = ACTIONS(1528), + [sym_atx_h2_marker] = ACTIONS(1528), + [sym_atx_h3_marker] = ACTIONS(1528), + [sym_atx_h4_marker] = ACTIONS(1528), + [sym_atx_h5_marker] = ACTIONS(1528), + [sym_atx_h6_marker] = ACTIONS(1528), + [sym__thematic_break] = ACTIONS(1528), + [sym__list_marker_minus] = ACTIONS(1528), + [sym__list_marker_plus] = ACTIONS(1528), + [sym__list_marker_star] = ACTIONS(1528), + [sym__list_marker_parenthesis] = ACTIONS(1528), + [sym__list_marker_dot] = ACTIONS(1528), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_example] = ACTIONS(1528), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1528), + [sym__fenced_code_block_start_backtick] = ACTIONS(1528), + [sym__fenced_code_block_start_tilde] = ACTIONS(1528), + [sym__blank_line_start] = ACTIONS(1528), + [sym_minus_metadata] = ACTIONS(1528), + [sym__pipe_table_start] = ACTIONS(1528), + [sym__fenced_div_start] = ACTIONS(1528), + [sym__fenced_div_end] = ACTIONS(1528), + [sym_ref_id_specifier] = ACTIONS(1528), + [sym__display_math_state_track_marker] = ACTIONS(1528), + [sym__inline_math_state_track_marker] = ACTIONS(1528), + }, + [STATE(210)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [sym__word] = ACTIONS(1530), + [sym__soft_line_ending] = ACTIONS(1530), + [sym__block_close] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1530), + [sym__indented_chunk_start] = ACTIONS(1530), + [sym_atx_h1_marker] = ACTIONS(1530), + [sym_atx_h2_marker] = ACTIONS(1530), + [sym_atx_h3_marker] = ACTIONS(1530), + [sym_atx_h4_marker] = ACTIONS(1530), + [sym_atx_h5_marker] = ACTIONS(1530), + [sym_atx_h6_marker] = ACTIONS(1530), + [sym__thematic_break] = ACTIONS(1530), + [sym__list_marker_minus] = ACTIONS(1530), + [sym__list_marker_plus] = ACTIONS(1530), + [sym__list_marker_star] = ACTIONS(1530), + [sym__list_marker_parenthesis] = ACTIONS(1530), + [sym__list_marker_dot] = ACTIONS(1530), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_example] = ACTIONS(1530), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1530), + [sym__fenced_code_block_start_backtick] = ACTIONS(1530), + [sym__fenced_code_block_start_tilde] = ACTIONS(1530), + [sym__blank_line_start] = ACTIONS(1530), + [sym_minus_metadata] = ACTIONS(1530), + [sym__pipe_table_start] = ACTIONS(1530), + [sym__fenced_div_start] = ACTIONS(1530), + [sym__fenced_div_end] = ACTIONS(1530), + [sym_ref_id_specifier] = ACTIONS(1530), + [sym__display_math_state_track_marker] = ACTIONS(1530), + [sym__inline_math_state_track_marker] = ACTIONS(1530), + }, + [STATE(211)] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym_block_continuation] = ACTIONS(1532), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(212)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [sym__word] = ACTIONS(1534), + [sym__soft_line_ending] = ACTIONS(1534), + [sym__block_close] = ACTIONS(1534), + [sym__block_quote_start] = ACTIONS(1534), + [sym__indented_chunk_start] = ACTIONS(1534), + [sym_atx_h1_marker] = ACTIONS(1534), + [sym_atx_h2_marker] = ACTIONS(1534), + [sym_atx_h3_marker] = ACTIONS(1534), + [sym_atx_h4_marker] = ACTIONS(1534), + [sym_atx_h5_marker] = ACTIONS(1534), + [sym_atx_h6_marker] = ACTIONS(1534), + [sym__thematic_break] = ACTIONS(1534), + [sym__list_marker_minus] = ACTIONS(1534), + [sym__list_marker_plus] = ACTIONS(1534), + [sym__list_marker_star] = ACTIONS(1534), + [sym__list_marker_parenthesis] = ACTIONS(1534), + [sym__list_marker_dot] = ACTIONS(1534), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_example] = ACTIONS(1534), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1534), + [sym__fenced_code_block_start_backtick] = ACTIONS(1534), + [sym__fenced_code_block_start_tilde] = ACTIONS(1534), + [sym__blank_line_start] = ACTIONS(1534), + [sym_minus_metadata] = ACTIONS(1534), + [sym__pipe_table_start] = ACTIONS(1534), + [sym__fenced_div_start] = ACTIONS(1534), + [sym__fenced_div_end] = ACTIONS(1534), + [sym_ref_id_specifier] = ACTIONS(1534), + [sym__display_math_state_track_marker] = ACTIONS(1534), + [sym__inline_math_state_track_marker] = ACTIONS(1534), + }, + [STATE(213)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [sym__word] = ACTIONS(1536), + [sym__soft_line_ending] = ACTIONS(1536), + [sym__block_close] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(1536), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_example] = ACTIONS(1536), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym_minus_metadata] = ACTIONS(1536), + [sym__pipe_table_start] = ACTIONS(1536), + [sym__fenced_div_start] = ACTIONS(1536), + [sym__fenced_div_end] = ACTIONS(1536), + [sym_ref_id_specifier] = ACTIONS(1536), + [sym__display_math_state_track_marker] = ACTIONS(1536), + [sym__inline_math_state_track_marker] = ACTIONS(1536), + }, + [STATE(214)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_close] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_example] = ACTIONS(1538), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym_minus_metadata] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + [sym__fenced_div_start] = ACTIONS(1538), + [sym__fenced_div_end] = ACTIONS(1538), + [sym_ref_id_specifier] = ACTIONS(1538), + [sym__display_math_state_track_marker] = ACTIONS(1538), + [sym__inline_math_state_track_marker] = ACTIONS(1538), + }, + [STATE(215)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_close] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym__fenced_div_end] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(216)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym__fenced_div_end] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(217)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [sym__word] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_close] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_example] = ACTIONS(1542), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym_minus_metadata] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + [sym__fenced_div_start] = ACTIONS(1542), + [sym__fenced_div_end] = ACTIONS(1542), + [sym_ref_id_specifier] = ACTIONS(1542), + [sym__display_math_state_track_marker] = ACTIONS(1542), + [sym__inline_math_state_track_marker] = ACTIONS(1542), + }, + [STATE(218)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym__] = ACTIONS(1544), + [anon_sym_BQUOTE] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_close] = ACTIONS(1544), + [sym__block_quote_start] = ACTIONS(1544), + [sym__indented_chunk_start] = ACTIONS(1544), + [sym_atx_h1_marker] = ACTIONS(1544), + [sym_atx_h2_marker] = ACTIONS(1544), + [sym_atx_h3_marker] = ACTIONS(1544), + [sym_atx_h4_marker] = ACTIONS(1544), + [sym_atx_h5_marker] = ACTIONS(1544), + [sym_atx_h6_marker] = ACTIONS(1544), + [sym__thematic_break] = ACTIONS(1544), + [sym__list_marker_minus] = ACTIONS(1544), + [sym__list_marker_plus] = ACTIONS(1544), + [sym__list_marker_star] = ACTIONS(1544), + [sym__list_marker_parenthesis] = ACTIONS(1544), + [sym__list_marker_dot] = ACTIONS(1544), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_example] = ACTIONS(1544), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1544), + [sym__fenced_code_block_start_backtick] = ACTIONS(1544), + [sym__fenced_code_block_start_tilde] = ACTIONS(1544), + [sym__blank_line_start] = ACTIONS(1544), + [sym_minus_metadata] = ACTIONS(1544), + [sym__pipe_table_start] = ACTIONS(1544), + [sym__fenced_div_start] = ACTIONS(1544), + [sym__fenced_div_end] = ACTIONS(1544), + [sym_ref_id_specifier] = ACTIONS(1544), + [sym__display_math_state_track_marker] = ACTIONS(1544), + [sym__inline_math_state_track_marker] = ACTIONS(1544), + }, + [STATE(219)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [sym__word] = ACTIONS(1546), + [sym__soft_line_ending] = ACTIONS(1546), + [sym__block_close] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_example] = ACTIONS(1546), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym_minus_metadata] = ACTIONS(1546), + [sym__pipe_table_start] = ACTIONS(1546), + [sym__fenced_div_start] = ACTIONS(1546), + [sym__fenced_div_end] = ACTIONS(1546), + [sym_ref_id_specifier] = ACTIONS(1546), + [sym__display_math_state_track_marker] = ACTIONS(1546), + [sym__inline_math_state_track_marker] = ACTIONS(1546), + }, + [STATE(220)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [sym__word] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_close] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_example] = ACTIONS(1548), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym_minus_metadata] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + [sym__fenced_div_start] = ACTIONS(1548), + [sym__fenced_div_end] = ACTIONS(1548), + [sym_ref_id_specifier] = ACTIONS(1548), + [sym__display_math_state_track_marker] = ACTIONS(1548), + [sym__inline_math_state_track_marker] = ACTIONS(1548), + }, + [STATE(221)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_PERCENT] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1550), + [anon_sym_SLASH] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_BQUOTE] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_close] = ACTIONS(1550), + [sym__block_quote_start] = ACTIONS(1550), + [sym__indented_chunk_start] = ACTIONS(1550), + [sym_atx_h1_marker] = ACTIONS(1550), + [sym_atx_h2_marker] = ACTIONS(1550), + [sym_atx_h3_marker] = ACTIONS(1550), + [sym_atx_h4_marker] = ACTIONS(1550), + [sym_atx_h5_marker] = ACTIONS(1550), + [sym_atx_h6_marker] = ACTIONS(1550), + [sym__thematic_break] = ACTIONS(1550), + [sym__list_marker_minus] = ACTIONS(1550), + [sym__list_marker_plus] = ACTIONS(1550), + [sym__list_marker_star] = ACTIONS(1550), + [sym__list_marker_parenthesis] = ACTIONS(1550), + [sym__list_marker_dot] = ACTIONS(1550), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_example] = ACTIONS(1550), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1550), + [sym__fenced_code_block_start_backtick] = ACTIONS(1550), + [sym__fenced_code_block_start_tilde] = ACTIONS(1550), + [sym__blank_line_start] = ACTIONS(1550), + [sym_minus_metadata] = ACTIONS(1550), + [sym__pipe_table_start] = ACTIONS(1550), + [sym__fenced_div_start] = ACTIONS(1550), + [sym__fenced_div_end] = ACTIONS(1550), + [sym_ref_id_specifier] = ACTIONS(1550), + [sym__display_math_state_track_marker] = ACTIONS(1550), + [sym__inline_math_state_track_marker] = ACTIONS(1550), + }, + [STATE(222)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [sym__word] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_close] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_example] = ACTIONS(1552), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym_minus_metadata] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + [sym__fenced_div_start] = ACTIONS(1552), + [sym__fenced_div_end] = ACTIONS(1552), + [sym_ref_id_specifier] = ACTIONS(1552), + [sym__display_math_state_track_marker] = ACTIONS(1552), + [sym__inline_math_state_track_marker] = ACTIONS(1552), + }, + [STATE(223)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_QMARK] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym__] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [sym__word] = ACTIONS(1554), + [sym__soft_line_ending] = ACTIONS(1554), + [sym__block_close] = ACTIONS(1554), + [sym__block_quote_start] = ACTIONS(1554), + [sym__indented_chunk_start] = ACTIONS(1554), + [sym_atx_h1_marker] = ACTIONS(1554), + [sym_atx_h2_marker] = ACTIONS(1554), + [sym_atx_h3_marker] = ACTIONS(1554), + [sym_atx_h4_marker] = ACTIONS(1554), + [sym_atx_h5_marker] = ACTIONS(1554), + [sym_atx_h6_marker] = ACTIONS(1554), + [sym__thematic_break] = ACTIONS(1554), + [sym__list_marker_minus] = ACTIONS(1554), + [sym__list_marker_plus] = ACTIONS(1554), + [sym__list_marker_star] = ACTIONS(1554), + [sym__list_marker_parenthesis] = ACTIONS(1554), + [sym__list_marker_dot] = ACTIONS(1554), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_example] = ACTIONS(1554), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1554), + [sym__fenced_code_block_start_backtick] = ACTIONS(1554), + [sym__fenced_code_block_start_tilde] = ACTIONS(1554), + [sym__blank_line_start] = ACTIONS(1554), + [sym_minus_metadata] = ACTIONS(1554), + [sym__pipe_table_start] = ACTIONS(1554), + [sym__fenced_div_start] = ACTIONS(1554), + [sym__fenced_div_end] = ACTIONS(1554), + [sym_ref_id_specifier] = ACTIONS(1554), + [sym__display_math_state_track_marker] = ACTIONS(1554), + [sym__inline_math_state_track_marker] = ACTIONS(1554), + }, + [STATE(224)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_close] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_example] = ACTIONS(1556), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym_minus_metadata] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + [sym__fenced_div_start] = ACTIONS(1556), + [sym__fenced_div_end] = ACTIONS(1556), + [sym_ref_id_specifier] = ACTIONS(1556), + [sym__display_math_state_track_marker] = ACTIONS(1556), + [sym__inline_math_state_track_marker] = ACTIONS(1556), + }, + [STATE(225)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_BSLASH] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym__] = ACTIONS(1558), + [anon_sym_BQUOTE] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [sym__word] = ACTIONS(1558), + [sym__soft_line_ending] = ACTIONS(1558), + [sym__block_close] = ACTIONS(1558), + [sym__block_quote_start] = ACTIONS(1558), + [sym__indented_chunk_start] = ACTIONS(1558), + [sym_atx_h1_marker] = ACTIONS(1558), + [sym_atx_h2_marker] = ACTIONS(1558), + [sym_atx_h3_marker] = ACTIONS(1558), + [sym_atx_h4_marker] = ACTIONS(1558), + [sym_atx_h5_marker] = ACTIONS(1558), + [sym_atx_h6_marker] = ACTIONS(1558), + [sym__thematic_break] = ACTIONS(1558), + [sym__list_marker_minus] = ACTIONS(1558), + [sym__list_marker_plus] = ACTIONS(1558), + [sym__list_marker_star] = ACTIONS(1558), + [sym__list_marker_parenthesis] = ACTIONS(1558), + [sym__list_marker_dot] = ACTIONS(1558), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_example] = ACTIONS(1558), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1558), + [sym__fenced_code_block_start_backtick] = ACTIONS(1558), + [sym__fenced_code_block_start_tilde] = ACTIONS(1558), + [sym__blank_line_start] = ACTIONS(1558), + [sym_minus_metadata] = ACTIONS(1558), + [sym__pipe_table_start] = ACTIONS(1558), + [sym__fenced_div_start] = ACTIONS(1558), + [sym__fenced_div_end] = ACTIONS(1558), + [sym_ref_id_specifier] = ACTIONS(1558), + [sym__display_math_state_track_marker] = ACTIONS(1558), + [sym__inline_math_state_track_marker] = ACTIONS(1558), + }, + [STATE(226)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_close] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym__fenced_div_end] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(227)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym__fenced_div_end] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(228)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [sym__word] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_close] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_example] = ACTIONS(1560), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym_minus_metadata] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + [sym__fenced_div_start] = ACTIONS(1560), + [sym__fenced_div_end] = ACTIONS(1560), + [sym_ref_id_specifier] = ACTIONS(1560), + [sym__display_math_state_track_marker] = ACTIONS(1560), + [sym__inline_math_state_track_marker] = ACTIONS(1560), + }, + [STATE(229)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym__block_close] = ACTIONS(1500), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym__fenced_div_end] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(230)] = { + [ts_builtin_sym_end] = ACTIONS(1458), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym_block_continuation] = ACTIONS(1562), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), + }, + [STATE(231)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym__fenced_div_end] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(232)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [sym__word] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_close] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_example] = ACTIONS(1564), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym_minus_metadata] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + [sym__fenced_div_start] = ACTIONS(1564), + [sym__fenced_div_end] = ACTIONS(1564), + [sym_ref_id_specifier] = ACTIONS(1564), + [sym__display_math_state_track_marker] = ACTIONS(1564), + [sym__inline_math_state_track_marker] = ACTIONS(1564), + }, + [STATE(233)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [sym__word] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym__block_close] = ACTIONS(1512), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_example] = ACTIONS(1512), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym_minus_metadata] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + [sym__fenced_div_start] = ACTIONS(1512), + [sym__fenced_div_end] = ACTIONS(1512), + [sym_ref_id_specifier] = ACTIONS(1512), + [sym__display_math_state_track_marker] = ACTIONS(1512), + [sym__inline_math_state_track_marker] = ACTIONS(1512), + }, + [STATE(234)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym__] = ACTIONS(1566), + [anon_sym_BQUOTE] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [sym__word] = ACTIONS(1566), + [sym__soft_line_ending] = ACTIONS(1566), + [sym__block_close] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1566), + [sym__indented_chunk_start] = ACTIONS(1566), + [sym_atx_h1_marker] = ACTIONS(1566), + [sym_atx_h2_marker] = ACTIONS(1566), + [sym_atx_h3_marker] = ACTIONS(1566), + [sym_atx_h4_marker] = ACTIONS(1566), + [sym_atx_h5_marker] = ACTIONS(1566), + [sym_atx_h6_marker] = ACTIONS(1566), + [sym__thematic_break] = ACTIONS(1566), + [sym__list_marker_minus] = ACTIONS(1566), + [sym__list_marker_plus] = ACTIONS(1566), + [sym__list_marker_star] = ACTIONS(1566), + [sym__list_marker_parenthesis] = ACTIONS(1566), + [sym__list_marker_dot] = ACTIONS(1566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_example] = ACTIONS(1566), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1566), + [sym__fenced_code_block_start_backtick] = ACTIONS(1566), + [sym__fenced_code_block_start_tilde] = ACTIONS(1566), + [sym__blank_line_start] = ACTIONS(1566), + [sym_minus_metadata] = ACTIONS(1566), + [sym__pipe_table_start] = ACTIONS(1566), + [sym__fenced_div_start] = ACTIONS(1566), + [sym__fenced_div_end] = ACTIONS(1566), + [sym_ref_id_specifier] = ACTIONS(1566), + [sym__display_math_state_track_marker] = ACTIONS(1566), + [sym__inline_math_state_track_marker] = ACTIONS(1566), + }, + [STATE(235)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym__fenced_div_end] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(236)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [sym__word] = ACTIONS(1464), + [sym__soft_line_ending] = ACTIONS(1464), + [sym__block_close] = ACTIONS(1464), + [sym_block_continuation] = ACTIONS(1568), + [sym__block_quote_start] = ACTIONS(1464), + [sym__indented_chunk_start] = ACTIONS(1464), + [sym_atx_h1_marker] = ACTIONS(1464), + [sym_atx_h2_marker] = ACTIONS(1464), + [sym_atx_h3_marker] = ACTIONS(1464), + [sym_atx_h4_marker] = ACTIONS(1464), + [sym_atx_h5_marker] = ACTIONS(1464), + [sym_atx_h6_marker] = ACTIONS(1464), + [sym__thematic_break] = ACTIONS(1464), + [sym__list_marker_minus] = ACTIONS(1464), + [sym__list_marker_plus] = ACTIONS(1464), + [sym__list_marker_star] = ACTIONS(1464), + [sym__list_marker_parenthesis] = ACTIONS(1464), + [sym__list_marker_dot] = ACTIONS(1464), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_example] = ACTIONS(1464), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1464), + [sym__fenced_code_block_start_backtick] = ACTIONS(1464), + [sym__fenced_code_block_start_tilde] = ACTIONS(1464), + [sym__blank_line_start] = ACTIONS(1464), + [sym_minus_metadata] = ACTIONS(1464), + [sym__pipe_table_start] = ACTIONS(1464), + [sym__fenced_div_start] = ACTIONS(1464), + [sym_ref_id_specifier] = ACTIONS(1464), + [sym__display_math_state_track_marker] = ACTIONS(1464), + [sym__inline_math_state_track_marker] = ACTIONS(1464), + }, + [STATE(237)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym__fenced_div_end] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(238)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_EQ] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1570), + [anon_sym_PERCENT] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_RPAREN] = ACTIONS(1570), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_COMMA] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_GT] = ACTIONS(1570), + [anon_sym_QMARK] = ACTIONS(1570), + [anon_sym_AT] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_BSLASH] = ACTIONS(1570), + [anon_sym_RBRACK] = ACTIONS(1570), + [anon_sym_CARET] = ACTIONS(1570), + [anon_sym__] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1570), + [sym__word] = ACTIONS(1570), + [sym__soft_line_ending] = ACTIONS(1570), + [sym__block_close] = ACTIONS(1570), + [sym__block_quote_start] = ACTIONS(1570), + [sym__indented_chunk_start] = ACTIONS(1570), + [sym_atx_h1_marker] = ACTIONS(1570), + [sym_atx_h2_marker] = ACTIONS(1570), + [sym_atx_h3_marker] = ACTIONS(1570), + [sym_atx_h4_marker] = ACTIONS(1570), + [sym_atx_h5_marker] = ACTIONS(1570), + [sym_atx_h6_marker] = ACTIONS(1570), + [sym__thematic_break] = ACTIONS(1570), + [sym__list_marker_minus] = ACTIONS(1570), + [sym__list_marker_plus] = ACTIONS(1570), + [sym__list_marker_star] = ACTIONS(1570), + [sym__list_marker_parenthesis] = ACTIONS(1570), + [sym__list_marker_dot] = ACTIONS(1570), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_example] = ACTIONS(1570), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1570), + [sym__fenced_code_block_start_backtick] = ACTIONS(1570), + [sym__fenced_code_block_start_tilde] = ACTIONS(1570), + [sym__blank_line_start] = ACTIONS(1570), + [sym_minus_metadata] = ACTIONS(1570), + [sym__pipe_table_start] = ACTIONS(1570), + [sym__fenced_div_start] = ACTIONS(1570), + [sym__fenced_div_end] = ACTIONS(1570), + [sym_ref_id_specifier] = ACTIONS(1570), + [sym__display_math_state_track_marker] = ACTIONS(1570), + [sym__inline_math_state_track_marker] = ACTIONS(1570), + }, + [STATE(239)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [sym__word] = ACTIONS(1572), + [sym__soft_line_ending] = ACTIONS(1572), + [sym__block_close] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1572), + [sym__indented_chunk_start] = ACTIONS(1572), + [sym_atx_h1_marker] = ACTIONS(1572), + [sym_atx_h2_marker] = ACTIONS(1572), + [sym_atx_h3_marker] = ACTIONS(1572), + [sym_atx_h4_marker] = ACTIONS(1572), + [sym_atx_h5_marker] = ACTIONS(1572), + [sym_atx_h6_marker] = ACTIONS(1572), + [sym__thematic_break] = ACTIONS(1572), + [sym__list_marker_minus] = ACTIONS(1572), + [sym__list_marker_plus] = ACTIONS(1572), + [sym__list_marker_star] = ACTIONS(1572), + [sym__list_marker_parenthesis] = ACTIONS(1572), + [sym__list_marker_dot] = ACTIONS(1572), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_example] = ACTIONS(1572), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1572), + [sym__fenced_code_block_start_backtick] = ACTIONS(1572), + [sym__fenced_code_block_start_tilde] = ACTIONS(1572), + [sym__blank_line_start] = ACTIONS(1572), + [sym_minus_metadata] = ACTIONS(1572), + [sym__pipe_table_start] = ACTIONS(1572), + [sym__fenced_div_start] = ACTIONS(1572), + [sym__fenced_div_end] = ACTIONS(1572), + [sym_ref_id_specifier] = ACTIONS(1572), + [sym__display_math_state_track_marker] = ACTIONS(1572), + [sym__inline_math_state_track_marker] = ACTIONS(1572), + }, + [STATE(240)] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym_block_continuation] = ACTIONS(1574), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(241)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_SLASH] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1576), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1576), + [sym__word] = ACTIONS(1576), + [sym__soft_line_ending] = ACTIONS(1576), + [sym__block_close] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1576), + [sym__indented_chunk_start] = ACTIONS(1576), + [sym_atx_h1_marker] = ACTIONS(1576), + [sym_atx_h2_marker] = ACTIONS(1576), + [sym_atx_h3_marker] = ACTIONS(1576), + [sym_atx_h4_marker] = ACTIONS(1576), + [sym_atx_h5_marker] = ACTIONS(1576), + [sym_atx_h6_marker] = ACTIONS(1576), + [sym__thematic_break] = ACTIONS(1576), + [sym__list_marker_minus] = ACTIONS(1576), + [sym__list_marker_plus] = ACTIONS(1576), + [sym__list_marker_star] = ACTIONS(1576), + [sym__list_marker_parenthesis] = ACTIONS(1576), + [sym__list_marker_dot] = ACTIONS(1576), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_example] = ACTIONS(1576), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1576), + [sym__fenced_code_block_start_backtick] = ACTIONS(1576), + [sym__fenced_code_block_start_tilde] = ACTIONS(1576), + [sym__blank_line_start] = ACTIONS(1576), + [sym_minus_metadata] = ACTIONS(1576), + [sym__pipe_table_start] = ACTIONS(1576), + [sym__fenced_div_start] = ACTIONS(1576), + [sym__fenced_div_end] = ACTIONS(1576), + [sym_ref_id_specifier] = ACTIONS(1576), + [sym__display_math_state_track_marker] = ACTIONS(1576), + [sym__inline_math_state_track_marker] = ACTIONS(1576), + }, + [STATE(242)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1578), + [anon_sym_SLASH] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_GT] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym__] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1578), + [sym__word] = ACTIONS(1578), + [sym__soft_line_ending] = ACTIONS(1578), + [sym__block_close] = ACTIONS(1578), + [sym__block_quote_start] = ACTIONS(1578), + [sym__indented_chunk_start] = ACTIONS(1578), + [sym_atx_h1_marker] = ACTIONS(1578), + [sym_atx_h2_marker] = ACTIONS(1578), + [sym_atx_h3_marker] = ACTIONS(1578), + [sym_atx_h4_marker] = ACTIONS(1578), + [sym_atx_h5_marker] = ACTIONS(1578), + [sym_atx_h6_marker] = ACTIONS(1578), + [sym__thematic_break] = ACTIONS(1578), + [sym__list_marker_minus] = ACTIONS(1578), + [sym__list_marker_plus] = ACTIONS(1578), + [sym__list_marker_star] = ACTIONS(1578), + [sym__list_marker_parenthesis] = ACTIONS(1578), + [sym__list_marker_dot] = ACTIONS(1578), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_example] = ACTIONS(1578), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1578), + [sym__fenced_code_block_start_backtick] = ACTIONS(1578), + [sym__fenced_code_block_start_tilde] = ACTIONS(1578), + [sym__blank_line_start] = ACTIONS(1578), + [sym_minus_metadata] = ACTIONS(1578), + [sym__pipe_table_start] = ACTIONS(1578), + [sym__fenced_div_start] = ACTIONS(1578), + [sym__fenced_div_end] = ACTIONS(1578), + [sym_ref_id_specifier] = ACTIONS(1578), + [sym__display_math_state_track_marker] = ACTIONS(1578), + [sym__inline_math_state_track_marker] = ACTIONS(1578), + }, + [STATE(243)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym__] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_close] = ACTIONS(1580), + [sym__block_quote_start] = ACTIONS(1580), + [sym__indented_chunk_start] = ACTIONS(1580), + [sym_atx_h1_marker] = ACTIONS(1580), + [sym_atx_h2_marker] = ACTIONS(1580), + [sym_atx_h3_marker] = ACTIONS(1580), + [sym_atx_h4_marker] = ACTIONS(1580), + [sym_atx_h5_marker] = ACTIONS(1580), + [sym_atx_h6_marker] = ACTIONS(1580), + [sym__thematic_break] = ACTIONS(1580), + [sym__list_marker_minus] = ACTIONS(1580), + [sym__list_marker_plus] = ACTIONS(1580), + [sym__list_marker_star] = ACTIONS(1580), + [sym__list_marker_parenthesis] = ACTIONS(1580), + [sym__list_marker_dot] = ACTIONS(1580), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_example] = ACTIONS(1580), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1580), + [sym__fenced_code_block_start_backtick] = ACTIONS(1580), + [sym__fenced_code_block_start_tilde] = ACTIONS(1580), + [sym__blank_line_start] = ACTIONS(1580), + [sym_minus_metadata] = ACTIONS(1580), + [sym__pipe_table_start] = ACTIONS(1580), + [sym__fenced_div_start] = ACTIONS(1580), + [sym__fenced_div_end] = ACTIONS(1580), + [sym_ref_id_specifier] = ACTIONS(1580), + [sym__display_math_state_track_marker] = ACTIONS(1580), + [sym__inline_math_state_track_marker] = ACTIONS(1580), + }, + [STATE(244)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [sym__word] = ACTIONS(1582), + [sym__soft_line_ending] = ACTIONS(1582), + [sym__block_close] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_example] = ACTIONS(1582), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym_minus_metadata] = ACTIONS(1582), + [sym__pipe_table_start] = ACTIONS(1582), + [sym__fenced_div_start] = ACTIONS(1582), + [sym__fenced_div_end] = ACTIONS(1582), + [sym_ref_id_specifier] = ACTIONS(1582), + [sym__display_math_state_track_marker] = ACTIONS(1582), + [sym__inline_math_state_track_marker] = ACTIONS(1582), + }, + [STATE(245)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_CARET] = ACTIONS(1584), + [anon_sym__] = ACTIONS(1584), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1584), + [sym__word] = ACTIONS(1584), + [sym__soft_line_ending] = ACTIONS(1584), + [sym__block_close] = ACTIONS(1584), + [sym__block_quote_start] = ACTIONS(1584), + [sym__indented_chunk_start] = ACTIONS(1584), + [sym_atx_h1_marker] = ACTIONS(1584), + [sym_atx_h2_marker] = ACTIONS(1584), + [sym_atx_h3_marker] = ACTIONS(1584), + [sym_atx_h4_marker] = ACTIONS(1584), + [sym_atx_h5_marker] = ACTIONS(1584), + [sym_atx_h6_marker] = ACTIONS(1584), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1584), + [sym__list_marker_plus] = ACTIONS(1584), + [sym__list_marker_star] = ACTIONS(1584), + [sym__list_marker_parenthesis] = ACTIONS(1584), + [sym__list_marker_dot] = ACTIONS(1584), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_example] = ACTIONS(1584), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1584), + [sym__fenced_code_block_start_backtick] = ACTIONS(1584), + [sym__fenced_code_block_start_tilde] = ACTIONS(1584), + [sym__blank_line_start] = ACTIONS(1584), + [sym_minus_metadata] = ACTIONS(1584), + [sym__pipe_table_start] = ACTIONS(1584), + [sym__fenced_div_start] = ACTIONS(1584), + [sym__fenced_div_end] = ACTIONS(1584), + [sym_ref_id_specifier] = ACTIONS(1584), + [sym__display_math_state_track_marker] = ACTIONS(1584), + [sym__inline_math_state_track_marker] = ACTIONS(1584), + }, + [STATE(246)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_GT] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym__] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_close] = ACTIONS(1586), + [sym__block_quote_start] = ACTIONS(1586), + [sym__indented_chunk_start] = ACTIONS(1586), + [sym_atx_h1_marker] = ACTIONS(1586), + [sym_atx_h2_marker] = ACTIONS(1586), + [sym_atx_h3_marker] = ACTIONS(1586), + [sym_atx_h4_marker] = ACTIONS(1586), + [sym_atx_h5_marker] = ACTIONS(1586), + [sym_atx_h6_marker] = ACTIONS(1586), + [sym__thematic_break] = ACTIONS(1586), + [sym__list_marker_minus] = ACTIONS(1586), + [sym__list_marker_plus] = ACTIONS(1586), + [sym__list_marker_star] = ACTIONS(1586), + [sym__list_marker_parenthesis] = ACTIONS(1586), + [sym__list_marker_dot] = ACTIONS(1586), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_example] = ACTIONS(1586), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1586), + [sym__fenced_code_block_start_backtick] = ACTIONS(1586), + [sym__fenced_code_block_start_tilde] = ACTIONS(1586), + [sym__blank_line_start] = ACTIONS(1586), + [sym_minus_metadata] = ACTIONS(1586), + [sym__pipe_table_start] = ACTIONS(1586), + [sym__fenced_div_start] = ACTIONS(1586), + [sym__fenced_div_end] = ACTIONS(1586), + [sym_ref_id_specifier] = ACTIONS(1586), + [sym__display_math_state_track_marker] = ACTIONS(1586), + [sym__inline_math_state_track_marker] = ACTIONS(1586), + }, + [STATE(247)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [sym__word] = ACTIONS(1588), + [sym__soft_line_ending] = ACTIONS(1588), + [sym__block_close] = ACTIONS(1588), + [sym__block_quote_start] = ACTIONS(1588), + [sym__indented_chunk_start] = ACTIONS(1588), + [sym_atx_h1_marker] = ACTIONS(1588), + [sym_atx_h2_marker] = ACTIONS(1588), + [sym_atx_h3_marker] = ACTIONS(1588), + [sym_atx_h4_marker] = ACTIONS(1588), + [sym_atx_h5_marker] = ACTIONS(1588), + [sym_atx_h6_marker] = ACTIONS(1588), + [sym__thematic_break] = ACTIONS(1588), + [sym__list_marker_minus] = ACTIONS(1588), + [sym__list_marker_plus] = ACTIONS(1588), + [sym__list_marker_star] = ACTIONS(1588), + [sym__list_marker_parenthesis] = ACTIONS(1588), + [sym__list_marker_dot] = ACTIONS(1588), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_example] = ACTIONS(1588), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1588), + [sym__fenced_code_block_start_backtick] = ACTIONS(1588), + [sym__fenced_code_block_start_tilde] = ACTIONS(1588), + [sym__blank_line_start] = ACTIONS(1588), + [sym_minus_metadata] = ACTIONS(1588), + [sym__pipe_table_start] = ACTIONS(1588), + [sym__fenced_div_start] = ACTIONS(1588), + [sym__fenced_div_end] = ACTIONS(1588), + [sym_ref_id_specifier] = ACTIONS(1588), + [sym__display_math_state_track_marker] = ACTIONS(1588), + [sym__inline_math_state_track_marker] = ACTIONS(1588), + }, + [STATE(248)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [sym__word] = ACTIONS(1590), + [sym__soft_line_ending] = ACTIONS(1590), + [sym__block_close] = ACTIONS(1590), + [sym__block_quote_start] = ACTIONS(1590), + [sym__indented_chunk_start] = ACTIONS(1590), + [sym_atx_h1_marker] = ACTIONS(1590), + [sym_atx_h2_marker] = ACTIONS(1590), + [sym_atx_h3_marker] = ACTIONS(1590), + [sym_atx_h4_marker] = ACTIONS(1590), + [sym_atx_h5_marker] = ACTIONS(1590), + [sym_atx_h6_marker] = ACTIONS(1590), + [sym__thematic_break] = ACTIONS(1590), + [sym__list_marker_minus] = ACTIONS(1590), + [sym__list_marker_plus] = ACTIONS(1590), + [sym__list_marker_star] = ACTIONS(1590), + [sym__list_marker_parenthesis] = ACTIONS(1590), + [sym__list_marker_dot] = ACTIONS(1590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_example] = ACTIONS(1590), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1590), + [sym__fenced_code_block_start_backtick] = ACTIONS(1590), + [sym__fenced_code_block_start_tilde] = ACTIONS(1590), + [sym__blank_line_start] = ACTIONS(1590), + [sym_minus_metadata] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1590), + [sym__fenced_div_start] = ACTIONS(1590), + [sym__fenced_div_end] = ACTIONS(1590), + [sym_ref_id_specifier] = ACTIONS(1590), + [sym__display_math_state_track_marker] = ACTIONS(1590), + [sym__inline_math_state_track_marker] = ACTIONS(1590), + }, + [STATE(249)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_close] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_example] = ACTIONS(1592), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym_minus_metadata] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + [sym__fenced_div_start] = ACTIONS(1592), + [sym__fenced_div_end] = ACTIONS(1592), + [sym_ref_id_specifier] = ACTIONS(1592), + [sym__display_math_state_track_marker] = ACTIONS(1592), + [sym__inline_math_state_track_marker] = ACTIONS(1592), + }, + [STATE(250)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym__fenced_div_end] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(251)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [sym__word] = ACTIONS(1446), + [sym__soft_line_ending] = ACTIONS(1446), + [sym__block_close] = ACTIONS(1446), + [sym_block_continuation] = ACTIONS(1594), + [sym__block_quote_start] = ACTIONS(1446), + [sym__indented_chunk_start] = ACTIONS(1446), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1446), + [sym_atx_h6_marker] = ACTIONS(1446), + [sym__thematic_break] = ACTIONS(1446), + [sym__list_marker_minus] = ACTIONS(1446), + [sym__list_marker_plus] = ACTIONS(1446), + [sym__list_marker_star] = ACTIONS(1446), + [sym__list_marker_parenthesis] = ACTIONS(1446), + [sym__list_marker_dot] = ACTIONS(1446), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_example] = ACTIONS(1446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1446), + [sym__fenced_code_block_start_backtick] = ACTIONS(1446), + [sym__fenced_code_block_start_tilde] = ACTIONS(1446), + [sym__blank_line_start] = ACTIONS(1446), + [sym_minus_metadata] = ACTIONS(1446), + [sym__pipe_table_start] = ACTIONS(1446), + [sym__fenced_div_start] = ACTIONS(1446), + [sym_ref_id_specifier] = ACTIONS(1446), + [sym__display_math_state_track_marker] = ACTIONS(1446), + [sym__inline_math_state_track_marker] = ACTIONS(1446), + }, + [STATE(252)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym__] = ACTIONS(1596), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [sym__word] = ACTIONS(1596), + [sym__soft_line_ending] = ACTIONS(1596), + [sym__block_close] = ACTIONS(1596), + [sym__block_quote_start] = ACTIONS(1596), + [sym__indented_chunk_start] = ACTIONS(1596), + [sym_atx_h1_marker] = ACTIONS(1596), + [sym_atx_h2_marker] = ACTIONS(1596), + [sym_atx_h3_marker] = ACTIONS(1596), + [sym_atx_h4_marker] = ACTIONS(1596), + [sym_atx_h5_marker] = ACTIONS(1596), + [sym_atx_h6_marker] = ACTIONS(1596), + [sym__thematic_break] = ACTIONS(1596), + [sym__list_marker_minus] = ACTIONS(1596), + [sym__list_marker_plus] = ACTIONS(1596), + [sym__list_marker_star] = ACTIONS(1596), + [sym__list_marker_parenthesis] = ACTIONS(1596), + [sym__list_marker_dot] = ACTIONS(1596), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_example] = ACTIONS(1596), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1596), + [sym__fenced_code_block_start_backtick] = ACTIONS(1596), + [sym__fenced_code_block_start_tilde] = ACTIONS(1596), + [sym__blank_line_start] = ACTIONS(1596), + [sym_minus_metadata] = ACTIONS(1596), + [sym__pipe_table_start] = ACTIONS(1596), + [sym__fenced_div_start] = ACTIONS(1596), + [sym__fenced_div_end] = ACTIONS(1596), + [sym_ref_id_specifier] = ACTIONS(1596), + [sym__display_math_state_track_marker] = ACTIONS(1596), + [sym__inline_math_state_track_marker] = ACTIONS(1596), + }, + [STATE(253)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_close] = ACTIONS(1598), + [sym__block_quote_start] = ACTIONS(1598), + [sym__indented_chunk_start] = ACTIONS(1598), + [sym_atx_h1_marker] = ACTIONS(1598), + [sym_atx_h2_marker] = ACTIONS(1598), + [sym_atx_h3_marker] = ACTIONS(1598), + [sym_atx_h4_marker] = ACTIONS(1598), + [sym_atx_h5_marker] = ACTIONS(1598), + [sym_atx_h6_marker] = ACTIONS(1598), + [sym__thematic_break] = ACTIONS(1598), + [sym__list_marker_minus] = ACTIONS(1598), + [sym__list_marker_plus] = ACTIONS(1598), + [sym__list_marker_star] = ACTIONS(1598), + [sym__list_marker_parenthesis] = ACTIONS(1598), + [sym__list_marker_dot] = ACTIONS(1598), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_example] = ACTIONS(1598), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1598), + [sym__fenced_code_block_start_backtick] = ACTIONS(1598), + [sym__fenced_code_block_start_tilde] = ACTIONS(1598), + [sym__blank_line_start] = ACTIONS(1598), + [sym_minus_metadata] = ACTIONS(1598), + [sym__pipe_table_start] = ACTIONS(1598), + [sym__fenced_div_start] = ACTIONS(1598), + [sym__fenced_div_end] = ACTIONS(1598), + [sym_ref_id_specifier] = ACTIONS(1598), + [sym__display_math_state_track_marker] = ACTIONS(1598), + [sym__inline_math_state_track_marker] = ACTIONS(1598), + }, + [STATE(254)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [sym__word] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_close] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_example] = ACTIONS(1600), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym_minus_metadata] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + [sym__fenced_div_start] = ACTIONS(1600), + [sym__fenced_div_end] = ACTIONS(1600), + [sym_ref_id_specifier] = ACTIONS(1600), + [sym__display_math_state_track_marker] = ACTIONS(1600), + [sym__inline_math_state_track_marker] = ACTIONS(1600), + }, + [STATE(255)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_CARET] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1602), + [sym__word] = ACTIONS(1602), + [sym__soft_line_ending] = ACTIONS(1602), + [sym__block_close] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(1602), + [sym__indented_chunk_start] = ACTIONS(1602), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(1602), + [sym__thematic_break] = ACTIONS(1602), + [sym__list_marker_minus] = ACTIONS(1602), + [sym__list_marker_plus] = ACTIONS(1602), + [sym__list_marker_star] = ACTIONS(1602), + [sym__list_marker_parenthesis] = ACTIONS(1602), + [sym__list_marker_dot] = ACTIONS(1602), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_example] = ACTIONS(1602), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1602), + [sym__fenced_code_block_start_backtick] = ACTIONS(1602), + [sym__fenced_code_block_start_tilde] = ACTIONS(1602), + [sym__blank_line_start] = ACTIONS(1602), + [sym_minus_metadata] = ACTIONS(1602), + [sym__pipe_table_start] = ACTIONS(1602), + [sym__fenced_div_start] = ACTIONS(1602), + [sym__fenced_div_end] = ACTIONS(1602), + [sym_ref_id_specifier] = ACTIONS(1602), + [sym__display_math_state_track_marker] = ACTIONS(1602), + [sym__inline_math_state_track_marker] = ACTIONS(1602), + }, + [STATE(256)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = 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_SEMI] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_close] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_example] = ACTIONS(1604), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym_minus_metadata] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + [sym__fenced_div_start] = ACTIONS(1604), + [sym__fenced_div_end] = ACTIONS(1604), + [sym_ref_id_specifier] = ACTIONS(1604), + [sym__display_math_state_track_marker] = ACTIONS(1604), + [sym__inline_math_state_track_marker] = ACTIONS(1604), + }, + [STATE(257)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_PLUS] = ACTIONS(1606), + [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_SLASH] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1606), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_CARET] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_TILDE] = ACTIONS(1606), + [sym__word] = ACTIONS(1606), + [sym__soft_line_ending] = ACTIONS(1606), + [sym__block_close] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(1606), + [sym__indented_chunk_start] = ACTIONS(1606), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(1606), + [sym__thematic_break] = ACTIONS(1606), + [sym__list_marker_minus] = ACTIONS(1606), + [sym__list_marker_plus] = ACTIONS(1606), + [sym__list_marker_star] = ACTIONS(1606), + [sym__list_marker_parenthesis] = ACTIONS(1606), + [sym__list_marker_dot] = ACTIONS(1606), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_example] = ACTIONS(1606), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1606), + [sym__fenced_code_block_start_backtick] = ACTIONS(1606), + [sym__fenced_code_block_start_tilde] = ACTIONS(1606), + [sym__blank_line_start] = ACTIONS(1606), + [sym_minus_metadata] = ACTIONS(1606), + [sym__pipe_table_start] = ACTIONS(1606), + [sym__fenced_div_start] = ACTIONS(1606), + [sym__fenced_div_end] = ACTIONS(1606), + [sym_ref_id_specifier] = ACTIONS(1606), + [sym__display_math_state_track_marker] = ACTIONS(1606), + [sym__inline_math_state_track_marker] = ACTIONS(1606), + }, + [STATE(258)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [sym__word] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_close] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_example] = ACTIONS(1608), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym_minus_metadata] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + [sym__fenced_div_start] = ACTIONS(1608), + [sym__fenced_div_end] = ACTIONS(1608), + [sym_ref_id_specifier] = ACTIONS(1608), + [sym__display_math_state_track_marker] = ACTIONS(1608), + [sym__inline_math_state_track_marker] = ACTIONS(1608), + }, + [STATE(259)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [sym__word] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_close] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_example] = ACTIONS(1610), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym_minus_metadata] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + [sym__fenced_div_start] = ACTIONS(1610), + [sym__fenced_div_end] = ACTIONS(1610), + [sym_ref_id_specifier] = ACTIONS(1610), + [sym__display_math_state_track_marker] = ACTIONS(1610), + [sym__inline_math_state_track_marker] = ACTIONS(1610), + }, + [STATE(260)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_DOT] = ACTIONS(1612), + [anon_sym_SLASH] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1612), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_BSLASH] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_CARET] = ACTIONS(1612), + [anon_sym__] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1612), + [sym__word] = ACTIONS(1612), + [sym__soft_line_ending] = ACTIONS(1612), + [sym__block_close] = ACTIONS(1612), + [sym__block_quote_start] = ACTIONS(1612), + [sym__indented_chunk_start] = ACTIONS(1612), + [sym_atx_h1_marker] = ACTIONS(1612), + [sym_atx_h2_marker] = ACTIONS(1612), + [sym_atx_h3_marker] = ACTIONS(1612), + [sym_atx_h4_marker] = ACTIONS(1612), + [sym_atx_h5_marker] = ACTIONS(1612), + [sym_atx_h6_marker] = ACTIONS(1612), + [sym__thematic_break] = ACTIONS(1612), + [sym__list_marker_minus] = ACTIONS(1612), + [sym__list_marker_plus] = ACTIONS(1612), + [sym__list_marker_star] = ACTIONS(1612), + [sym__list_marker_parenthesis] = ACTIONS(1612), + [sym__list_marker_dot] = ACTIONS(1612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_example] = ACTIONS(1612), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1612), + [sym__fenced_code_block_start_backtick] = ACTIONS(1612), + [sym__fenced_code_block_start_tilde] = ACTIONS(1612), + [sym__blank_line_start] = ACTIONS(1612), + [sym_minus_metadata] = ACTIONS(1612), + [sym__pipe_table_start] = ACTIONS(1612), + [sym__fenced_div_start] = ACTIONS(1612), + [sym__fenced_div_end] = ACTIONS(1612), + [sym_ref_id_specifier] = ACTIONS(1612), + [sym__display_math_state_track_marker] = ACTIONS(1612), + [sym__inline_math_state_track_marker] = ACTIONS(1612), + }, + [STATE(261)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1614), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_BSLASH] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_CARET] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_TILDE] = ACTIONS(1614), + [sym__word] = ACTIONS(1614), + [sym__soft_line_ending] = ACTIONS(1614), + [sym__block_close] = ACTIONS(1614), + [sym__block_quote_start] = ACTIONS(1614), + [sym__indented_chunk_start] = ACTIONS(1614), + [sym_atx_h1_marker] = ACTIONS(1614), + [sym_atx_h2_marker] = ACTIONS(1614), + [sym_atx_h3_marker] = ACTIONS(1614), + [sym_atx_h4_marker] = ACTIONS(1614), + [sym_atx_h5_marker] = ACTIONS(1614), + [sym_atx_h6_marker] = ACTIONS(1614), + [sym__thematic_break] = ACTIONS(1614), + [sym__list_marker_minus] = ACTIONS(1614), + [sym__list_marker_plus] = ACTIONS(1614), + [sym__list_marker_star] = ACTIONS(1614), + [sym__list_marker_parenthesis] = ACTIONS(1614), + [sym__list_marker_dot] = ACTIONS(1614), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_example] = ACTIONS(1614), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1614), + [sym__fenced_code_block_start_backtick] = ACTIONS(1614), + [sym__fenced_code_block_start_tilde] = ACTIONS(1614), + [sym__blank_line_start] = ACTIONS(1614), + [sym_minus_metadata] = ACTIONS(1614), + [sym__pipe_table_start] = ACTIONS(1614), + [sym__fenced_div_start] = ACTIONS(1614), + [sym__fenced_div_end] = ACTIONS(1614), + [sym_ref_id_specifier] = ACTIONS(1614), + [sym__display_math_state_track_marker] = ACTIONS(1614), + [sym__inline_math_state_track_marker] = ACTIONS(1614), + }, + [STATE(262)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [sym__word] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_close] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_example] = ACTIONS(1616), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym_minus_metadata] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + [sym__fenced_div_start] = ACTIONS(1616), + [sym__fenced_div_end] = ACTIONS(1616), + [sym_ref_id_specifier] = ACTIONS(1616), + [sym__display_math_state_track_marker] = ACTIONS(1616), + [sym__inline_math_state_track_marker] = ACTIONS(1616), + }, + [STATE(263)] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym_block_continuation] = ACTIONS(1618), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(264)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [sym__word] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_close] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_example] = ACTIONS(1620), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym_minus_metadata] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + [sym__fenced_div_start] = ACTIONS(1620), + [sym__fenced_div_end] = ACTIONS(1620), + [sym_ref_id_specifier] = ACTIONS(1620), + [sym__display_math_state_track_marker] = ACTIONS(1620), + [sym__inline_math_state_track_marker] = ACTIONS(1620), + }, + [STATE(265)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_close] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_example] = ACTIONS(1622), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym_minus_metadata] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + [sym__fenced_div_start] = ACTIONS(1622), + [sym__fenced_div_end] = ACTIONS(1622), + [sym_ref_id_specifier] = ACTIONS(1622), + [sym__display_math_state_track_marker] = ACTIONS(1622), + [sym__inline_math_state_track_marker] = ACTIONS(1622), + }, + [STATE(266)] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [sym__word] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1624), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_example] = ACTIONS(1468), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym_minus_metadata] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + [sym__fenced_div_start] = ACTIONS(1468), + [sym_ref_id_specifier] = ACTIONS(1468), + [sym__display_math_state_track_marker] = ACTIONS(1468), + [sym__inline_math_state_track_marker] = ACTIONS(1468), + }, + [STATE(267)] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym_block_continuation] = ACTIONS(1626), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(268)] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1628), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(269)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym__block_close] = ACTIONS(1356), + [sym_block_continuation] = ACTIONS(1630), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(270)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_RBRACK] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym__] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [sym__word] = ACTIONS(1432), + [sym__soft_line_ending] = ACTIONS(1432), + [sym__block_close] = ACTIONS(1432), + [sym__block_quote_start] = ACTIONS(1432), + [sym__indented_chunk_start] = ACTIONS(1432), + [sym_atx_h1_marker] = ACTIONS(1432), + [sym_atx_h2_marker] = ACTIONS(1432), + [sym_atx_h3_marker] = ACTIONS(1432), + [sym_atx_h4_marker] = ACTIONS(1432), + [sym_atx_h5_marker] = ACTIONS(1432), + [sym_atx_h6_marker] = ACTIONS(1432), + [sym__thematic_break] = ACTIONS(1432), + [sym__list_marker_minus] = ACTIONS(1432), + [sym__list_marker_plus] = ACTIONS(1432), + [sym__list_marker_star] = ACTIONS(1432), + [sym__list_marker_parenthesis] = ACTIONS(1432), + [sym__list_marker_dot] = ACTIONS(1432), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_example] = ACTIONS(1432), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1432), + [sym__fenced_code_block_start_backtick] = ACTIONS(1432), + [sym__fenced_code_block_start_tilde] = ACTIONS(1432), + [sym__blank_line_start] = ACTIONS(1432), + [sym_minus_metadata] = ACTIONS(1432), + [sym__pipe_table_start] = ACTIONS(1432), + [sym__fenced_div_start] = ACTIONS(1432), + [sym__fenced_div_end] = ACTIONS(1432), + [sym_ref_id_specifier] = ACTIONS(1432), + [sym__display_math_state_track_marker] = ACTIONS(1432), + [sym__inline_math_state_track_marker] = ACTIONS(1432), + }, + [STATE(271)] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym_block_continuation] = ACTIONS(1632), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(272)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym__block_close] = ACTIONS(1454), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym__fenced_div_end] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), + }, + [STATE(273)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_DOT] = ACTIONS(1634), + [anon_sym_SLASH] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_QMARK] = ACTIONS(1634), + [anon_sym_AT] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_BSLASH] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1634), + [anon_sym__] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1634), + [sym__word] = ACTIONS(1634), + [sym__soft_line_ending] = ACTIONS(1634), + [sym__block_close] = ACTIONS(1634), + [sym__block_quote_start] = ACTIONS(1634), + [sym__indented_chunk_start] = ACTIONS(1634), + [sym_atx_h1_marker] = ACTIONS(1634), + [sym_atx_h2_marker] = ACTIONS(1634), + [sym_atx_h3_marker] = ACTIONS(1634), + [sym_atx_h4_marker] = ACTIONS(1634), + [sym_atx_h5_marker] = ACTIONS(1634), + [sym_atx_h6_marker] = ACTIONS(1634), + [sym__thematic_break] = ACTIONS(1634), + [sym__list_marker_minus] = ACTIONS(1634), + [sym__list_marker_plus] = ACTIONS(1634), + [sym__list_marker_star] = ACTIONS(1634), + [sym__list_marker_parenthesis] = ACTIONS(1634), + [sym__list_marker_dot] = ACTIONS(1634), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_example] = ACTIONS(1634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1634), + [sym__fenced_code_block_start_backtick] = ACTIONS(1634), + [sym__fenced_code_block_start_tilde] = ACTIONS(1634), + [sym__blank_line_start] = ACTIONS(1634), + [sym_minus_metadata] = ACTIONS(1634), + [sym__pipe_table_start] = ACTIONS(1634), + [sym__fenced_div_start] = ACTIONS(1634), + [sym__fenced_div_end] = ACTIONS(1634), + [sym_ref_id_specifier] = ACTIONS(1634), + [sym__display_math_state_track_marker] = ACTIONS(1634), + [sym__inline_math_state_track_marker] = ACTIONS(1634), + }, + [STATE(274)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [sym__word] = ACTIONS(1436), + [sym__soft_line_ending] = ACTIONS(1436), + [sym__block_close] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(1436), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_example] = ACTIONS(1436), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym_minus_metadata] = ACTIONS(1436), + [sym__pipe_table_start] = ACTIONS(1436), + [sym__fenced_div_start] = ACTIONS(1436), + [sym__fenced_div_end] = ACTIONS(1436), + [sym_ref_id_specifier] = ACTIONS(1436), + [sym__display_math_state_track_marker] = ACTIONS(1436), + [sym__inline_math_state_track_marker] = ACTIONS(1436), + }, + [STATE(275)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym__block_close] = ACTIONS(1458), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym__fenced_div_end] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), + }, + [STATE(276)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [sym__word] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_close] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_example] = ACTIONS(1636), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym_minus_metadata] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + [sym__fenced_div_start] = ACTIONS(1636), + [sym__fenced_div_end] = ACTIONS(1636), + [sym_ref_id_specifier] = ACTIONS(1636), + [sym__display_math_state_track_marker] = ACTIONS(1636), + [sym__inline_math_state_track_marker] = ACTIONS(1636), + }, + [STATE(277)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_DOLLAR] = ACTIONS(1638), + [anon_sym_PERCENT] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym__] = ACTIONS(1638), + [anon_sym_BQUOTE] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1638), + [sym__word] = ACTIONS(1638), + [sym__soft_line_ending] = ACTIONS(1638), + [sym__block_close] = ACTIONS(1638), + [sym__block_quote_start] = ACTIONS(1638), + [sym__indented_chunk_start] = ACTIONS(1638), + [sym_atx_h1_marker] = ACTIONS(1638), + [sym_atx_h2_marker] = ACTIONS(1638), + [sym_atx_h3_marker] = ACTIONS(1638), + [sym_atx_h4_marker] = ACTIONS(1638), + [sym_atx_h5_marker] = ACTIONS(1638), + [sym_atx_h6_marker] = ACTIONS(1638), + [sym__thematic_break] = ACTIONS(1638), + [sym__list_marker_minus] = ACTIONS(1638), + [sym__list_marker_plus] = ACTIONS(1638), + [sym__list_marker_star] = ACTIONS(1638), + [sym__list_marker_parenthesis] = ACTIONS(1638), + [sym__list_marker_dot] = ACTIONS(1638), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_example] = ACTIONS(1638), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1638), + [sym__fenced_code_block_start_backtick] = ACTIONS(1638), + [sym__fenced_code_block_start_tilde] = ACTIONS(1638), + [sym__blank_line_start] = ACTIONS(1638), + [sym_minus_metadata] = ACTIONS(1638), + [sym__pipe_table_start] = ACTIONS(1638), + [sym__fenced_div_start] = ACTIONS(1638), + [sym__fenced_div_end] = ACTIONS(1638), + [sym_ref_id_specifier] = ACTIONS(1638), + [sym__display_math_state_track_marker] = ACTIONS(1638), + [sym__inline_math_state_track_marker] = ACTIONS(1638), + }, + [STATE(278)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_close] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym__fenced_div_end] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(279)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1642), + [anon_sym_PERCENT] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1642), + [anon_sym_SLASH] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1642), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_CARET] = ACTIONS(1642), + [anon_sym__] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_TILDE] = ACTIONS(1642), + [sym__word] = ACTIONS(1642), + [sym__soft_line_ending] = ACTIONS(1642), + [sym__block_close] = ACTIONS(1642), + [sym__block_quote_start] = ACTIONS(1642), + [sym__indented_chunk_start] = ACTIONS(1642), + [sym_atx_h1_marker] = ACTIONS(1642), + [sym_atx_h2_marker] = ACTIONS(1642), + [sym_atx_h3_marker] = ACTIONS(1642), + [sym_atx_h4_marker] = ACTIONS(1642), + [sym_atx_h5_marker] = ACTIONS(1642), + [sym_atx_h6_marker] = ACTIONS(1642), + [sym__thematic_break] = ACTIONS(1642), + [sym__list_marker_minus] = ACTIONS(1642), + [sym__list_marker_plus] = ACTIONS(1642), + [sym__list_marker_star] = ACTIONS(1642), + [sym__list_marker_parenthesis] = ACTIONS(1642), + [sym__list_marker_dot] = ACTIONS(1642), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_example] = ACTIONS(1642), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1642), + [sym__fenced_code_block_start_backtick] = ACTIONS(1642), + [sym__fenced_code_block_start_tilde] = ACTIONS(1642), + [sym__blank_line_start] = ACTIONS(1642), + [sym_minus_metadata] = ACTIONS(1642), + [sym__pipe_table_start] = ACTIONS(1642), + [sym__fenced_div_start] = ACTIONS(1642), + [sym__fenced_div_end] = ACTIONS(1642), + [sym_ref_id_specifier] = ACTIONS(1642), + [sym__display_math_state_track_marker] = ACTIONS(1642), + [sym__inline_math_state_track_marker] = ACTIONS(1642), + }, + [STATE(280)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PERCENT] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_PLUS] = ACTIONS(1644), + [anon_sym_COMMA] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_DOT] = ACTIONS(1644), + [anon_sym_SLASH] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_BSLASH] = ACTIONS(1644), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_CARET] = ACTIONS(1644), + [anon_sym__] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [sym__word] = ACTIONS(1644), + [sym__soft_line_ending] = ACTIONS(1644), + [sym__block_close] = ACTIONS(1644), + [sym__block_quote_start] = ACTIONS(1644), + [sym__indented_chunk_start] = ACTIONS(1644), + [sym_atx_h1_marker] = ACTIONS(1644), + [sym_atx_h2_marker] = ACTIONS(1644), + [sym_atx_h3_marker] = ACTIONS(1644), + [sym_atx_h4_marker] = ACTIONS(1644), + [sym_atx_h5_marker] = ACTIONS(1644), + [sym_atx_h6_marker] = ACTIONS(1644), + [sym__thematic_break] = ACTIONS(1644), + [sym__list_marker_minus] = ACTIONS(1644), + [sym__list_marker_plus] = ACTIONS(1644), + [sym__list_marker_star] = ACTIONS(1644), + [sym__list_marker_parenthesis] = ACTIONS(1644), + [sym__list_marker_dot] = ACTIONS(1644), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_example] = ACTIONS(1644), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1644), + [sym__fenced_code_block_start_backtick] = ACTIONS(1644), + [sym__fenced_code_block_start_tilde] = ACTIONS(1644), + [sym__blank_line_start] = ACTIONS(1644), + [sym_minus_metadata] = ACTIONS(1644), + [sym__pipe_table_start] = ACTIONS(1644), + [sym__fenced_div_start] = ACTIONS(1644), + [sym__fenced_div_end] = ACTIONS(1644), + [sym_ref_id_specifier] = ACTIONS(1644), + [sym__display_math_state_track_marker] = ACTIONS(1644), + [sym__inline_math_state_track_marker] = ACTIONS(1644), + }, + [STATE(281)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_BSLASH] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym__] = ACTIONS(1646), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1646), + [sym__word] = ACTIONS(1646), + [sym__soft_line_ending] = ACTIONS(1646), + [sym__block_close] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1646), + [sym__indented_chunk_start] = ACTIONS(1646), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1646), + [sym__thematic_break] = ACTIONS(1646), + [sym__list_marker_minus] = ACTIONS(1646), + [sym__list_marker_plus] = ACTIONS(1646), + [sym__list_marker_star] = ACTIONS(1646), + [sym__list_marker_parenthesis] = ACTIONS(1646), + [sym__list_marker_dot] = ACTIONS(1646), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_example] = ACTIONS(1646), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1646), + [sym__fenced_code_block_start_backtick] = ACTIONS(1646), + [sym__fenced_code_block_start_tilde] = ACTIONS(1646), + [sym__blank_line_start] = ACTIONS(1646), + [sym_minus_metadata] = ACTIONS(1646), + [sym__pipe_table_start] = ACTIONS(1646), + [sym__fenced_div_start] = ACTIONS(1646), + [sym__fenced_div_end] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1646), + [sym__display_math_state_track_marker] = ACTIONS(1646), + [sym__inline_math_state_track_marker] = ACTIONS(1646), + }, + [STATE(282)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1648), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_AT] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_BSLASH] = ACTIONS(1648), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym__] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [sym__word] = ACTIONS(1648), + [sym__soft_line_ending] = ACTIONS(1648), + [sym__block_close] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1648), + [sym__indented_chunk_start] = ACTIONS(1648), + [sym_atx_h1_marker] = ACTIONS(1648), + [sym_atx_h2_marker] = ACTIONS(1648), + [sym_atx_h3_marker] = ACTIONS(1648), + [sym_atx_h4_marker] = ACTIONS(1648), + [sym_atx_h5_marker] = ACTIONS(1648), + [sym_atx_h6_marker] = ACTIONS(1648), + [sym__thematic_break] = ACTIONS(1648), + [sym__list_marker_minus] = ACTIONS(1648), + [sym__list_marker_plus] = ACTIONS(1648), + [sym__list_marker_star] = ACTIONS(1648), + [sym__list_marker_parenthesis] = ACTIONS(1648), + [sym__list_marker_dot] = ACTIONS(1648), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_example] = ACTIONS(1648), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1648), + [sym__fenced_code_block_start_backtick] = ACTIONS(1648), + [sym__fenced_code_block_start_tilde] = ACTIONS(1648), + [sym__blank_line_start] = ACTIONS(1648), + [sym_minus_metadata] = ACTIONS(1648), + [sym__pipe_table_start] = ACTIONS(1648), + [sym__fenced_div_start] = ACTIONS(1648), + [sym__fenced_div_end] = ACTIONS(1648), + [sym_ref_id_specifier] = ACTIONS(1648), + [sym__display_math_state_track_marker] = ACTIONS(1648), + [sym__inline_math_state_track_marker] = ACTIONS(1648), + }, + [STATE(283)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1650), + [anon_sym_SLASH] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_AT] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_BSLASH] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1650), + [anon_sym__] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1650), + [sym__word] = ACTIONS(1650), + [sym__soft_line_ending] = ACTIONS(1650), + [sym__block_close] = ACTIONS(1650), + [sym__block_quote_start] = ACTIONS(1650), + [sym__indented_chunk_start] = ACTIONS(1650), + [sym_atx_h1_marker] = ACTIONS(1650), + [sym_atx_h2_marker] = ACTIONS(1650), + [sym_atx_h3_marker] = ACTIONS(1650), + [sym_atx_h4_marker] = ACTIONS(1650), + [sym_atx_h5_marker] = ACTIONS(1650), + [sym_atx_h6_marker] = ACTIONS(1650), + [sym__thematic_break] = ACTIONS(1650), + [sym__list_marker_minus] = ACTIONS(1650), + [sym__list_marker_plus] = ACTIONS(1650), + [sym__list_marker_star] = ACTIONS(1650), + [sym__list_marker_parenthesis] = ACTIONS(1650), + [sym__list_marker_dot] = ACTIONS(1650), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_example] = ACTIONS(1650), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1650), + [sym__fenced_code_block_start_backtick] = ACTIONS(1650), + [sym__fenced_code_block_start_tilde] = ACTIONS(1650), + [sym__blank_line_start] = ACTIONS(1650), + [sym_minus_metadata] = ACTIONS(1650), + [sym__pipe_table_start] = ACTIONS(1650), + [sym__fenced_div_start] = ACTIONS(1650), + [sym__fenced_div_end] = ACTIONS(1650), + [sym_ref_id_specifier] = ACTIONS(1650), + [sym__display_math_state_track_marker] = ACTIONS(1650), + [sym__inline_math_state_track_marker] = ACTIONS(1650), + }, + [STATE(284)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_DOLLAR] = ACTIONS(1652), + [anon_sym_PERCENT] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_DOT] = ACTIONS(1652), + [anon_sym_SLASH] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_GT] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1652), + [anon_sym_AT] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_BSLASH] = ACTIONS(1652), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym__] = ACTIONS(1652), + [anon_sym_BQUOTE] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_TILDE] = ACTIONS(1652), + [sym__word] = ACTIONS(1652), + [sym__soft_line_ending] = ACTIONS(1652), + [sym__block_close] = ACTIONS(1652), + [sym__block_quote_start] = ACTIONS(1652), + [sym__indented_chunk_start] = ACTIONS(1652), + [sym_atx_h1_marker] = ACTIONS(1652), + [sym_atx_h2_marker] = ACTIONS(1652), + [sym_atx_h3_marker] = ACTIONS(1652), + [sym_atx_h4_marker] = ACTIONS(1652), + [sym_atx_h5_marker] = ACTIONS(1652), + [sym_atx_h6_marker] = ACTIONS(1652), + [sym__thematic_break] = ACTIONS(1652), + [sym__list_marker_minus] = ACTIONS(1652), + [sym__list_marker_plus] = ACTIONS(1652), + [sym__list_marker_star] = ACTIONS(1652), + [sym__list_marker_parenthesis] = ACTIONS(1652), + [sym__list_marker_dot] = ACTIONS(1652), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_example] = ACTIONS(1652), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1652), + [sym__fenced_code_block_start_backtick] = ACTIONS(1652), + [sym__fenced_code_block_start_tilde] = ACTIONS(1652), + [sym__blank_line_start] = ACTIONS(1652), + [sym_minus_metadata] = ACTIONS(1652), + [sym__pipe_table_start] = ACTIONS(1652), + [sym__fenced_div_start] = ACTIONS(1652), + [sym__fenced_div_end] = ACTIONS(1652), + [sym_ref_id_specifier] = ACTIONS(1652), + [sym__display_math_state_track_marker] = ACTIONS(1652), + [sym__inline_math_state_track_marker] = ACTIONS(1652), + }, + [STATE(285)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1654), + [anon_sym_DOLLAR] = ACTIONS(1654), + [anon_sym_PERCENT] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1654), + [anon_sym_RPAREN] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_DOT] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_GT] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_AT] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_BSLASH] = ACTIONS(1654), + [anon_sym_RBRACK] = ACTIONS(1654), + [anon_sym_CARET] = ACTIONS(1654), + [anon_sym__] = ACTIONS(1654), + [anon_sym_BQUOTE] = ACTIONS(1654), + [anon_sym_PIPE] = ACTIONS(1654), + [anon_sym_TILDE] = ACTIONS(1654), + [sym__word] = ACTIONS(1654), + [sym__soft_line_ending] = ACTIONS(1654), + [sym__block_close] = ACTIONS(1654), + [sym__block_quote_start] = ACTIONS(1654), + [sym__indented_chunk_start] = ACTIONS(1654), + [sym_atx_h1_marker] = ACTIONS(1654), + [sym_atx_h2_marker] = ACTIONS(1654), + [sym_atx_h3_marker] = ACTIONS(1654), + [sym_atx_h4_marker] = ACTIONS(1654), + [sym_atx_h5_marker] = ACTIONS(1654), + [sym_atx_h6_marker] = ACTIONS(1654), + [sym__thematic_break] = ACTIONS(1654), + [sym__list_marker_minus] = ACTIONS(1654), + [sym__list_marker_plus] = ACTIONS(1654), + [sym__list_marker_star] = ACTIONS(1654), + [sym__list_marker_parenthesis] = ACTIONS(1654), + [sym__list_marker_dot] = ACTIONS(1654), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_example] = ACTIONS(1654), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1654), + [sym__fenced_code_block_start_backtick] = ACTIONS(1654), + [sym__fenced_code_block_start_tilde] = ACTIONS(1654), + [sym__blank_line_start] = ACTIONS(1654), + [sym_minus_metadata] = ACTIONS(1654), + [sym__pipe_table_start] = ACTIONS(1654), + [sym__fenced_div_start] = ACTIONS(1654), + [sym__fenced_div_end] = ACTIONS(1654), + [sym_ref_id_specifier] = ACTIONS(1654), + [sym__display_math_state_track_marker] = ACTIONS(1654), + [sym__inline_math_state_track_marker] = ACTIONS(1654), + }, + [STATE(286)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym__block_close] = ACTIONS(1454), + [sym_block_continuation] = ACTIONS(1656), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), + }, + [STATE(287)] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym_block_continuation] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), + }, + [STATE(288)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym__block_close] = ACTIONS(1458), + [sym_block_continuation] = ACTIONS(1660), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), + }, + [STATE(289)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym__] = ACTIONS(1662), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [sym__word] = ACTIONS(1662), + [sym__soft_line_ending] = ACTIONS(1662), + [sym__block_close] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1662), + [sym__indented_chunk_start] = ACTIONS(1662), + [sym_atx_h1_marker] = ACTIONS(1662), + [sym_atx_h2_marker] = ACTIONS(1662), + [sym_atx_h3_marker] = ACTIONS(1662), + [sym_atx_h4_marker] = ACTIONS(1662), + [sym_atx_h5_marker] = ACTIONS(1662), + [sym_atx_h6_marker] = ACTIONS(1662), + [sym__thematic_break] = ACTIONS(1662), + [sym__list_marker_minus] = ACTIONS(1662), + [sym__list_marker_plus] = ACTIONS(1662), + [sym__list_marker_star] = ACTIONS(1662), + [sym__list_marker_parenthesis] = ACTIONS(1662), + [sym__list_marker_dot] = ACTIONS(1662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_example] = ACTIONS(1662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1662), + [sym__fenced_code_block_start_backtick] = ACTIONS(1662), + [sym__fenced_code_block_start_tilde] = ACTIONS(1662), + [sym__blank_line_start] = ACTIONS(1662), + [sym_minus_metadata] = ACTIONS(1662), + [sym__pipe_table_start] = ACTIONS(1662), + [sym__fenced_div_start] = ACTIONS(1662), + [sym__fenced_div_end] = ACTIONS(1662), + [sym_ref_id_specifier] = ACTIONS(1662), + [sym__display_math_state_track_marker] = ACTIONS(1662), + [sym__inline_math_state_track_marker] = ACTIONS(1662), + }, + [STATE(290)] = { + [ts_builtin_sym_end] = ACTIONS(1464), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [sym__word] = ACTIONS(1464), + [sym__soft_line_ending] = ACTIONS(1464), + [sym_block_continuation] = ACTIONS(1664), + [sym__block_quote_start] = ACTIONS(1464), + [sym__indented_chunk_start] = ACTIONS(1464), + [sym_atx_h1_marker] = ACTIONS(1464), + [sym_atx_h2_marker] = ACTIONS(1464), + [sym_atx_h3_marker] = ACTIONS(1464), + [sym_atx_h4_marker] = ACTIONS(1464), + [sym_atx_h5_marker] = ACTIONS(1464), + [sym_atx_h6_marker] = ACTIONS(1464), + [sym__thematic_break] = ACTIONS(1464), + [sym__list_marker_minus] = ACTIONS(1464), + [sym__list_marker_plus] = ACTIONS(1464), + [sym__list_marker_star] = ACTIONS(1464), + [sym__list_marker_parenthesis] = ACTIONS(1464), + [sym__list_marker_dot] = ACTIONS(1464), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_example] = ACTIONS(1464), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1464), + [sym__fenced_code_block_start_backtick] = ACTIONS(1464), + [sym__fenced_code_block_start_tilde] = ACTIONS(1464), + [sym__blank_line_start] = ACTIONS(1464), + [sym_minus_metadata] = ACTIONS(1464), + [sym__pipe_table_start] = ACTIONS(1464), + [sym__fenced_div_start] = ACTIONS(1464), + [sym_ref_id_specifier] = ACTIONS(1464), + [sym__display_math_state_track_marker] = ACTIONS(1464), + [sym__inline_math_state_track_marker] = ACTIONS(1464), + }, + [STATE(291)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_SLASH] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_BSLASH] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_CARET] = ACTIONS(1666), + [anon_sym__] = ACTIONS(1666), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1666), + [sym__word] = ACTIONS(1666), + [sym__soft_line_ending] = ACTIONS(1666), + [sym__block_close] = ACTIONS(1666), + [sym__block_quote_start] = ACTIONS(1666), + [sym__indented_chunk_start] = ACTIONS(1666), + [sym_atx_h1_marker] = ACTIONS(1666), + [sym_atx_h2_marker] = ACTIONS(1666), + [sym_atx_h3_marker] = ACTIONS(1666), + [sym_atx_h4_marker] = ACTIONS(1666), + [sym_atx_h5_marker] = ACTIONS(1666), + [sym_atx_h6_marker] = ACTIONS(1666), + [sym__thematic_break] = ACTIONS(1666), + [sym__list_marker_minus] = ACTIONS(1666), + [sym__list_marker_plus] = ACTIONS(1666), + [sym__list_marker_star] = ACTIONS(1666), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1666), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_example] = ACTIONS(1666), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1666), + [sym__fenced_code_block_start_backtick] = ACTIONS(1666), + [sym__fenced_code_block_start_tilde] = ACTIONS(1666), + [sym__blank_line_start] = ACTIONS(1666), + [sym_minus_metadata] = ACTIONS(1666), + [sym__pipe_table_start] = ACTIONS(1666), + [sym__fenced_div_start] = ACTIONS(1666), + [sym__fenced_div_end] = ACTIONS(1666), + [sym_ref_id_specifier] = ACTIONS(1666), + [sym__display_math_state_track_marker] = ACTIONS(1666), + [sym__inline_math_state_track_marker] = ACTIONS(1666), + }, + [STATE(292)] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym_block_continuation] = ACTIONS(1668), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(293)] = { + [ts_builtin_sym_end] = ACTIONS(1446), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [sym__word] = ACTIONS(1446), + [sym__soft_line_ending] = ACTIONS(1446), + [sym_block_continuation] = ACTIONS(1670), + [sym__block_quote_start] = ACTIONS(1446), + [sym__indented_chunk_start] = ACTIONS(1446), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1446), + [sym_atx_h6_marker] = ACTIONS(1446), + [sym__thematic_break] = ACTIONS(1446), + [sym__list_marker_minus] = ACTIONS(1446), + [sym__list_marker_plus] = ACTIONS(1446), + [sym__list_marker_star] = ACTIONS(1446), + [sym__list_marker_parenthesis] = ACTIONS(1446), + [sym__list_marker_dot] = ACTIONS(1446), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_example] = ACTIONS(1446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1446), + [sym__fenced_code_block_start_backtick] = ACTIONS(1446), + [sym__fenced_code_block_start_tilde] = ACTIONS(1446), + [sym__blank_line_start] = ACTIONS(1446), + [sym_minus_metadata] = ACTIONS(1446), + [sym__pipe_table_start] = ACTIONS(1446), + [sym__fenced_div_start] = ACTIONS(1446), + [sym_ref_id_specifier] = ACTIONS(1446), + [sym__display_math_state_track_marker] = ACTIONS(1446), + [sym__inline_math_state_track_marker] = ACTIONS(1446), + }, + [STATE(294)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [sym__word] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_close] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym_minus_metadata] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + [sym__fenced_div_start] = ACTIONS(1672), + [sym__fenced_div_end] = ACTIONS(1672), + [sym_ref_id_specifier] = ACTIONS(1672), + [sym__display_math_state_track_marker] = ACTIONS(1672), + [sym__inline_math_state_track_marker] = ACTIONS(1672), + }, + [STATE(295)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [sym__word] = ACTIONS(1674), + [sym__soft_line_ending] = ACTIONS(1674), + [sym__block_close] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_example] = ACTIONS(1674), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym_minus_metadata] = ACTIONS(1674), + [sym__pipe_table_start] = ACTIONS(1674), + [sym__fenced_div_start] = ACTIONS(1674), + [sym__fenced_div_end] = ACTIONS(1674), + [sym_ref_id_specifier] = ACTIONS(1674), + [sym__display_math_state_track_marker] = ACTIONS(1674), + [sym__inline_math_state_track_marker] = ACTIONS(1674), + }, + [STATE(296)] = { + [ts_builtin_sym_end] = ACTIONS(1500), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym_block_continuation] = ACTIONS(1676), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(297)] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym_block_continuation] = ACTIONS(1678), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(298)] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [sym__word] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym_block_continuation] = ACTIONS(1680), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_example] = ACTIONS(1512), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym_minus_metadata] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + [sym__fenced_div_start] = ACTIONS(1512), + [sym_ref_id_specifier] = ACTIONS(1512), + [sym__display_math_state_track_marker] = ACTIONS(1512), + [sym__inline_math_state_track_marker] = ACTIONS(1512), + }, + [STATE(299)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_BSLASH] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym__] = ACTIONS(1682), + [anon_sym_BQUOTE] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [sym__word] = ACTIONS(1682), + [sym__soft_line_ending] = ACTIONS(1682), + [sym__block_close] = ACTIONS(1682), + [sym__block_quote_start] = ACTIONS(1682), + [sym__indented_chunk_start] = ACTIONS(1682), + [sym_atx_h1_marker] = ACTIONS(1682), + [sym_atx_h2_marker] = ACTIONS(1682), + [sym_atx_h3_marker] = ACTIONS(1682), + [sym_atx_h4_marker] = ACTIONS(1682), + [sym_atx_h5_marker] = ACTIONS(1682), + [sym_atx_h6_marker] = ACTIONS(1682), + [sym__thematic_break] = ACTIONS(1682), + [sym__list_marker_minus] = ACTIONS(1682), + [sym__list_marker_plus] = ACTIONS(1682), + [sym__list_marker_star] = ACTIONS(1682), + [sym__list_marker_parenthesis] = ACTIONS(1682), + [sym__list_marker_dot] = ACTIONS(1682), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_example] = ACTIONS(1682), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1682), + [sym__fenced_code_block_start_backtick] = ACTIONS(1682), + [sym__fenced_code_block_start_tilde] = ACTIONS(1682), + [sym__blank_line_start] = ACTIONS(1682), + [sym_minus_metadata] = ACTIONS(1682), + [sym__pipe_table_start] = ACTIONS(1682), + [sym__fenced_div_start] = ACTIONS(1682), + [sym__fenced_div_end] = ACTIONS(1682), + [sym_ref_id_specifier] = ACTIONS(1682), + [sym__display_math_state_track_marker] = ACTIONS(1682), + [sym__inline_math_state_track_marker] = ACTIONS(1682), + }, + [STATE(300)] = { + [sym__blank_line] = STATE(1016), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [sym__word] = ACTIONS(1412), + [sym__soft_line_ending] = ACTIONS(1412), + [sym__block_close] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1412), + [sym__indented_chunk_start] = ACTIONS(1412), + [sym_atx_h1_marker] = ACTIONS(1412), + [sym_atx_h2_marker] = ACTIONS(1412), + [sym_atx_h3_marker] = ACTIONS(1412), + [sym_atx_h4_marker] = ACTIONS(1412), + [sym_atx_h5_marker] = ACTIONS(1412), + [sym_atx_h6_marker] = ACTIONS(1412), + [sym__thematic_break] = ACTIONS(1412), + [sym__list_marker_minus] = ACTIONS(1412), + [sym__list_marker_plus] = ACTIONS(1412), + [sym__list_marker_star] = ACTIONS(1412), + [sym__list_marker_parenthesis] = ACTIONS(1412), + [sym__list_marker_dot] = ACTIONS(1412), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_example] = ACTIONS(1412), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1412), + [sym__fenced_code_block_start_backtick] = ACTIONS(1412), + [sym__fenced_code_block_start_tilde] = ACTIONS(1412), + [sym__blank_line_start] = ACTIONS(1684), + [sym_minus_metadata] = ACTIONS(1412), + [sym__pipe_table_start] = ACTIONS(1412), + [sym__fenced_div_start] = ACTIONS(1412), + [sym_ref_id_specifier] = ACTIONS(1412), + [sym__display_math_state_track_marker] = ACTIONS(1412), + [sym__inline_math_state_track_marker] = ACTIONS(1412), + }, + [STATE(301)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [sym_block_continuation] = ACTIONS(1686), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(302)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_close] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1688), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(303)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym__block_close] = ACTIONS(1480), + [sym_block_continuation] = ACTIONS(1690), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(304)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1692), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(305)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym__block_close] = ACTIONS(1488), + [sym_block_continuation] = ACTIONS(1694), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(306)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym_block_continuation] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(307)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym_block_continuation] = ACTIONS(1698), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(308)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym__block_close] = ACTIONS(1500), + [sym_block_continuation] = ACTIONS(1700), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(309)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym_block_continuation] = ACTIONS(1702), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(310)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [sym__word] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym__block_close] = ACTIONS(1512), + [sym_block_continuation] = ACTIONS(1704), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_example] = ACTIONS(1512), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym_minus_metadata] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + [sym__fenced_div_start] = ACTIONS(1512), + [sym_ref_id_specifier] = ACTIONS(1512), + [sym__display_math_state_track_marker] = ACTIONS(1512), + [sym__inline_math_state_track_marker] = ACTIONS(1512), + }, + [STATE(311)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym_block_continuation] = ACTIONS(1706), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(312)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym_block_continuation] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(313)] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1710), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(314)] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym_block_continuation] = ACTIONS(1712), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(315)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [sym__word] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_close] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_example] = ACTIONS(1714), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym_minus_metadata] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + [sym__fenced_div_start] = ACTIONS(1714), + [sym__fenced_div_end] = ACTIONS(1714), + [sym_ref_id_specifier] = ACTIONS(1714), + [sym__display_math_state_track_marker] = ACTIONS(1714), + [sym__inline_math_state_track_marker] = ACTIONS(1714), + }, + [STATE(316)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_SLASH] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1716), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [sym__word] = ACTIONS(1716), + [sym__soft_line_ending] = ACTIONS(1716), + [sym__block_close] = ACTIONS(1716), + [sym__block_quote_start] = ACTIONS(1716), + [sym__indented_chunk_start] = ACTIONS(1716), + [sym_atx_h1_marker] = ACTIONS(1716), + [sym_atx_h2_marker] = ACTIONS(1716), + [sym_atx_h3_marker] = ACTIONS(1716), + [sym_atx_h4_marker] = ACTIONS(1716), + [sym_atx_h5_marker] = ACTIONS(1716), + [sym_atx_h6_marker] = ACTIONS(1716), + [sym__thematic_break] = ACTIONS(1716), + [sym__list_marker_minus] = ACTIONS(1716), + [sym__list_marker_plus] = ACTIONS(1716), + [sym__list_marker_star] = ACTIONS(1716), + [sym__list_marker_parenthesis] = ACTIONS(1716), + [sym__list_marker_dot] = ACTIONS(1716), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_example] = ACTIONS(1716), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1716), + [sym__fenced_code_block_start_backtick] = ACTIONS(1716), + [sym__fenced_code_block_start_tilde] = ACTIONS(1716), + [sym__blank_line_start] = ACTIONS(1716), + [sym_minus_metadata] = ACTIONS(1716), + [sym__pipe_table_start] = ACTIONS(1716), + [sym__fenced_div_start] = ACTIONS(1716), + [sym__fenced_div_end] = ACTIONS(1716), + [sym_ref_id_specifier] = ACTIONS(1716), + [sym__display_math_state_track_marker] = ACTIONS(1716), + [sym__inline_math_state_track_marker] = ACTIONS(1716), + }, + [STATE(317)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [sym__word] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_close] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1718), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym_minus_metadata] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + [sym__fenced_div_start] = ACTIONS(1718), + [sym__fenced_div_end] = ACTIONS(1718), + [sym_ref_id_specifier] = ACTIONS(1718), + [sym__display_math_state_track_marker] = ACTIONS(1718), + [sym__inline_math_state_track_marker] = ACTIONS(1718), + }, + [STATE(318)] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [anon_sym_RBRACK] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym__] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [sym__word] = ACTIONS(1524), + [sym__soft_line_ending] = ACTIONS(1524), + [sym__block_quote_start] = ACTIONS(1524), + [sym__indented_chunk_start] = ACTIONS(1524), + [sym_atx_h1_marker] = ACTIONS(1524), + [sym_atx_h2_marker] = ACTIONS(1524), + [sym_atx_h3_marker] = ACTIONS(1524), + [sym_atx_h4_marker] = ACTIONS(1524), + [sym_atx_h5_marker] = ACTIONS(1524), + [sym_atx_h6_marker] = ACTIONS(1524), + [sym__thematic_break] = ACTIONS(1524), + [sym__list_marker_minus] = ACTIONS(1524), + [sym__list_marker_plus] = ACTIONS(1524), + [sym__list_marker_star] = ACTIONS(1524), + [sym__list_marker_parenthesis] = ACTIONS(1524), + [sym__list_marker_dot] = ACTIONS(1524), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_example] = ACTIONS(1524), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1524), + [sym__fenced_code_block_start_backtick] = ACTIONS(1524), + [sym__fenced_code_block_start_tilde] = ACTIONS(1524), + [sym__blank_line_start] = ACTIONS(1524), + [sym_minus_metadata] = ACTIONS(1524), + [sym__pipe_table_start] = ACTIONS(1524), + [sym__fenced_div_start] = ACTIONS(1524), + [sym_ref_id_specifier] = ACTIONS(1524), + [sym__display_math_state_track_marker] = ACTIONS(1524), + [sym__inline_math_state_track_marker] = ACTIONS(1524), + }, + [STATE(319)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_PERCENT] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1720), + [anon_sym_SLASH] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1720), + [anon_sym_QMARK] = ACTIONS(1720), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_BSLASH] = ACTIONS(1720), + [anon_sym_RBRACK] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym__] = ACTIONS(1720), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1720), + [sym__word] = ACTIONS(1720), + [sym__soft_line_ending] = ACTIONS(1720), + [sym_block_continuation] = ACTIONS(1720), + [sym__block_quote_start] = ACTIONS(1720), + [sym__indented_chunk_start] = ACTIONS(1720), + [sym_atx_h1_marker] = ACTIONS(1720), + [sym_atx_h2_marker] = ACTIONS(1720), + [sym_atx_h3_marker] = ACTIONS(1720), + [sym_atx_h4_marker] = ACTIONS(1720), + [sym_atx_h5_marker] = ACTIONS(1720), + [sym_atx_h6_marker] = ACTIONS(1720), + [sym__thematic_break] = ACTIONS(1720), + [sym__list_marker_minus] = ACTIONS(1720), + [sym__list_marker_plus] = ACTIONS(1720), + [sym__list_marker_star] = ACTIONS(1720), + [sym__list_marker_parenthesis] = ACTIONS(1720), + [sym__list_marker_dot] = ACTIONS(1720), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_example] = ACTIONS(1720), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1720), + [sym__fenced_code_block_start_backtick] = ACTIONS(1720), + [sym__fenced_code_block_start_tilde] = ACTIONS(1720), + [sym__blank_line_start] = ACTIONS(1720), + [sym_minus_metadata] = ACTIONS(1720), + [sym__pipe_table_start] = ACTIONS(1720), + [sym__fenced_div_start] = ACTIONS(1720), + [sym_ref_id_specifier] = ACTIONS(1720), + [sym__display_math_state_track_marker] = ACTIONS(1720), + [sym__inline_math_state_track_marker] = ACTIONS(1720), + }, + [STATE(320)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_SLASH] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1576), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1576), + [sym__word] = ACTIONS(1576), + [sym__soft_line_ending] = ACTIONS(1576), + [sym__block_close] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1576), + [sym__indented_chunk_start] = ACTIONS(1576), + [sym_atx_h1_marker] = ACTIONS(1576), + [sym_atx_h2_marker] = ACTIONS(1576), + [sym_atx_h3_marker] = ACTIONS(1576), + [sym_atx_h4_marker] = ACTIONS(1576), + [sym_atx_h5_marker] = ACTIONS(1576), + [sym_atx_h6_marker] = ACTIONS(1576), + [sym__thematic_break] = ACTIONS(1576), + [sym__list_marker_minus] = ACTIONS(1576), + [sym__list_marker_plus] = ACTIONS(1576), + [sym__list_marker_star] = ACTIONS(1576), + [sym__list_marker_parenthesis] = ACTIONS(1576), + [sym__list_marker_dot] = ACTIONS(1576), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_example] = ACTIONS(1576), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1576), + [sym__fenced_code_block_start_backtick] = ACTIONS(1576), + [sym__fenced_code_block_start_tilde] = ACTIONS(1576), + [sym__blank_line_start] = ACTIONS(1576), + [sym_minus_metadata] = ACTIONS(1576), + [sym__pipe_table_start] = ACTIONS(1576), + [sym__fenced_div_start] = ACTIONS(1576), + [sym_ref_id_specifier] = ACTIONS(1576), + [sym__display_math_state_track_marker] = ACTIONS(1576), + [sym__inline_math_state_track_marker] = ACTIONS(1576), + }, + [STATE(321)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1578), + [anon_sym_SLASH] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_GT] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym__] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1578), + [sym__word] = ACTIONS(1578), + [sym__soft_line_ending] = ACTIONS(1578), + [sym__block_close] = ACTIONS(1578), + [sym__block_quote_start] = ACTIONS(1578), + [sym__indented_chunk_start] = ACTIONS(1578), + [sym_atx_h1_marker] = ACTIONS(1578), + [sym_atx_h2_marker] = ACTIONS(1578), + [sym_atx_h3_marker] = ACTIONS(1578), + [sym_atx_h4_marker] = ACTIONS(1578), + [sym_atx_h5_marker] = ACTIONS(1578), + [sym_atx_h6_marker] = ACTIONS(1578), + [sym__thematic_break] = ACTIONS(1578), + [sym__list_marker_minus] = ACTIONS(1578), + [sym__list_marker_plus] = ACTIONS(1578), + [sym__list_marker_star] = ACTIONS(1578), + [sym__list_marker_parenthesis] = ACTIONS(1578), + [sym__list_marker_dot] = ACTIONS(1578), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_example] = ACTIONS(1578), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1578), + [sym__fenced_code_block_start_backtick] = ACTIONS(1578), + [sym__fenced_code_block_start_tilde] = ACTIONS(1578), + [sym__blank_line_start] = ACTIONS(1578), + [sym_minus_metadata] = ACTIONS(1578), + [sym__pipe_table_start] = ACTIONS(1578), + [sym__fenced_div_start] = ACTIONS(1578), + [sym_ref_id_specifier] = ACTIONS(1578), + [sym__display_math_state_track_marker] = ACTIONS(1578), + [sym__inline_math_state_track_marker] = ACTIONS(1578), + }, + [STATE(322)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym__] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_close] = ACTIONS(1580), + [sym__block_quote_start] = ACTIONS(1580), + [sym__indented_chunk_start] = ACTIONS(1580), + [sym_atx_h1_marker] = ACTIONS(1580), + [sym_atx_h2_marker] = ACTIONS(1580), + [sym_atx_h3_marker] = ACTIONS(1580), + [sym_atx_h4_marker] = ACTIONS(1580), + [sym_atx_h5_marker] = ACTIONS(1580), + [sym_atx_h6_marker] = ACTIONS(1580), + [sym__thematic_break] = ACTIONS(1580), + [sym__list_marker_minus] = ACTIONS(1580), + [sym__list_marker_plus] = ACTIONS(1580), + [sym__list_marker_star] = ACTIONS(1580), + [sym__list_marker_parenthesis] = ACTIONS(1580), + [sym__list_marker_dot] = ACTIONS(1580), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_example] = ACTIONS(1580), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1580), + [sym__fenced_code_block_start_backtick] = ACTIONS(1580), + [sym__fenced_code_block_start_tilde] = ACTIONS(1580), + [sym__blank_line_start] = ACTIONS(1580), + [sym_minus_metadata] = ACTIONS(1580), + [sym__pipe_table_start] = ACTIONS(1580), + [sym__fenced_div_start] = ACTIONS(1580), + [sym_ref_id_specifier] = ACTIONS(1580), + [sym__display_math_state_track_marker] = ACTIONS(1580), + [sym__inline_math_state_track_marker] = ACTIONS(1580), + }, + [STATE(323)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [sym__word] = ACTIONS(1582), + [sym__soft_line_ending] = ACTIONS(1582), + [sym__block_close] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_example] = ACTIONS(1582), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym_minus_metadata] = ACTIONS(1582), + [sym__pipe_table_start] = ACTIONS(1582), + [sym__fenced_div_start] = ACTIONS(1582), + [sym_ref_id_specifier] = ACTIONS(1582), + [sym__display_math_state_track_marker] = ACTIONS(1582), + [sym__inline_math_state_track_marker] = ACTIONS(1582), + }, + [STATE(324)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_CARET] = ACTIONS(1584), + [anon_sym__] = ACTIONS(1584), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1584), + [sym__word] = ACTIONS(1584), + [sym__soft_line_ending] = ACTIONS(1584), + [sym__block_close] = ACTIONS(1584), + [sym__block_quote_start] = ACTIONS(1584), + [sym__indented_chunk_start] = ACTIONS(1584), + [sym_atx_h1_marker] = ACTIONS(1584), + [sym_atx_h2_marker] = ACTIONS(1584), + [sym_atx_h3_marker] = ACTIONS(1584), + [sym_atx_h4_marker] = ACTIONS(1584), + [sym_atx_h5_marker] = ACTIONS(1584), + [sym_atx_h6_marker] = ACTIONS(1584), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1584), + [sym__list_marker_plus] = ACTIONS(1584), + [sym__list_marker_star] = ACTIONS(1584), + [sym__list_marker_parenthesis] = ACTIONS(1584), + [sym__list_marker_dot] = ACTIONS(1584), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_example] = ACTIONS(1584), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1584), + [sym__fenced_code_block_start_backtick] = ACTIONS(1584), + [sym__fenced_code_block_start_tilde] = ACTIONS(1584), + [sym__blank_line_start] = ACTIONS(1584), + [sym_minus_metadata] = ACTIONS(1584), + [sym__pipe_table_start] = ACTIONS(1584), + [sym__fenced_div_start] = ACTIONS(1584), + [sym_ref_id_specifier] = ACTIONS(1584), + [sym__display_math_state_track_marker] = ACTIONS(1584), + [sym__inline_math_state_track_marker] = ACTIONS(1584), + }, + [STATE(325)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_GT] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym__] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_close] = ACTIONS(1586), + [sym__block_quote_start] = ACTIONS(1586), + [sym__indented_chunk_start] = ACTIONS(1586), + [sym_atx_h1_marker] = ACTIONS(1586), + [sym_atx_h2_marker] = ACTIONS(1586), + [sym_atx_h3_marker] = ACTIONS(1586), + [sym_atx_h4_marker] = ACTIONS(1586), + [sym_atx_h5_marker] = ACTIONS(1586), + [sym_atx_h6_marker] = ACTIONS(1586), + [sym__thematic_break] = ACTIONS(1586), + [sym__list_marker_minus] = ACTIONS(1586), + [sym__list_marker_plus] = ACTIONS(1586), + [sym__list_marker_star] = ACTIONS(1586), + [sym__list_marker_parenthesis] = ACTIONS(1586), + [sym__list_marker_dot] = ACTIONS(1586), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_example] = ACTIONS(1586), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1586), + [sym__fenced_code_block_start_backtick] = ACTIONS(1586), + [sym__fenced_code_block_start_tilde] = ACTIONS(1586), + [sym__blank_line_start] = ACTIONS(1586), + [sym_minus_metadata] = ACTIONS(1586), + [sym__pipe_table_start] = ACTIONS(1586), + [sym__fenced_div_start] = ACTIONS(1586), + [sym_ref_id_specifier] = ACTIONS(1586), + [sym__display_math_state_track_marker] = ACTIONS(1586), + [sym__inline_math_state_track_marker] = ACTIONS(1586), + }, + [STATE(326)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [sym__word] = ACTIONS(1588), + [sym__soft_line_ending] = ACTIONS(1588), + [sym__block_close] = ACTIONS(1588), + [sym__block_quote_start] = ACTIONS(1588), + [sym__indented_chunk_start] = ACTIONS(1588), + [sym_atx_h1_marker] = ACTIONS(1588), + [sym_atx_h2_marker] = ACTIONS(1588), + [sym_atx_h3_marker] = ACTIONS(1588), + [sym_atx_h4_marker] = ACTIONS(1588), + [sym_atx_h5_marker] = ACTIONS(1588), + [sym_atx_h6_marker] = ACTIONS(1588), + [sym__thematic_break] = ACTIONS(1588), + [sym__list_marker_minus] = ACTIONS(1588), + [sym__list_marker_plus] = ACTIONS(1588), + [sym__list_marker_star] = ACTIONS(1588), + [sym__list_marker_parenthesis] = ACTIONS(1588), + [sym__list_marker_dot] = ACTIONS(1588), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_example] = ACTIONS(1588), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1588), + [sym__fenced_code_block_start_backtick] = ACTIONS(1588), + [sym__fenced_code_block_start_tilde] = ACTIONS(1588), + [sym__blank_line_start] = ACTIONS(1588), + [sym_minus_metadata] = ACTIONS(1588), + [sym__pipe_table_start] = ACTIONS(1588), + [sym__fenced_div_start] = ACTIONS(1588), + [sym_ref_id_specifier] = ACTIONS(1588), + [sym__display_math_state_track_marker] = ACTIONS(1588), + [sym__inline_math_state_track_marker] = ACTIONS(1588), + }, + [STATE(327)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [sym__word] = ACTIONS(1590), + [sym__soft_line_ending] = ACTIONS(1590), + [sym__block_close] = ACTIONS(1590), + [sym__block_quote_start] = ACTIONS(1590), + [sym__indented_chunk_start] = ACTIONS(1590), + [sym_atx_h1_marker] = ACTIONS(1590), + [sym_atx_h2_marker] = ACTIONS(1590), + [sym_atx_h3_marker] = ACTIONS(1590), + [sym_atx_h4_marker] = ACTIONS(1590), + [sym_atx_h5_marker] = ACTIONS(1590), + [sym_atx_h6_marker] = ACTIONS(1590), + [sym__thematic_break] = ACTIONS(1590), + [sym__list_marker_minus] = ACTIONS(1590), + [sym__list_marker_plus] = ACTIONS(1590), + [sym__list_marker_star] = ACTIONS(1590), + [sym__list_marker_parenthesis] = ACTIONS(1590), + [sym__list_marker_dot] = ACTIONS(1590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_example] = ACTIONS(1590), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1590), + [sym__fenced_code_block_start_backtick] = ACTIONS(1590), + [sym__fenced_code_block_start_tilde] = ACTIONS(1590), + [sym__blank_line_start] = ACTIONS(1590), + [sym_minus_metadata] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1590), + [sym__fenced_div_start] = ACTIONS(1590), + [sym_ref_id_specifier] = ACTIONS(1590), + [sym__display_math_state_track_marker] = ACTIONS(1590), + [sym__inline_math_state_track_marker] = ACTIONS(1590), + }, + [STATE(328)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_close] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_example] = ACTIONS(1592), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym_minus_metadata] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + [sym__fenced_div_start] = ACTIONS(1592), + [sym_ref_id_specifier] = ACTIONS(1592), + [sym__display_math_state_track_marker] = ACTIONS(1592), + [sym__inline_math_state_track_marker] = ACTIONS(1592), + }, + [STATE(329)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(330)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym__] = ACTIONS(1596), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [sym__word] = ACTIONS(1596), + [sym__soft_line_ending] = ACTIONS(1596), + [sym__block_close] = ACTIONS(1596), + [sym__block_quote_start] = ACTIONS(1596), + [sym__indented_chunk_start] = ACTIONS(1596), + [sym_atx_h1_marker] = ACTIONS(1596), + [sym_atx_h2_marker] = ACTIONS(1596), + [sym_atx_h3_marker] = ACTIONS(1596), + [sym_atx_h4_marker] = ACTIONS(1596), + [sym_atx_h5_marker] = ACTIONS(1596), + [sym_atx_h6_marker] = ACTIONS(1596), + [sym__thematic_break] = ACTIONS(1596), + [sym__list_marker_minus] = ACTIONS(1596), + [sym__list_marker_plus] = ACTIONS(1596), + [sym__list_marker_star] = ACTIONS(1596), + [sym__list_marker_parenthesis] = ACTIONS(1596), + [sym__list_marker_dot] = ACTIONS(1596), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_example] = ACTIONS(1596), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1596), + [sym__fenced_code_block_start_backtick] = ACTIONS(1596), + [sym__fenced_code_block_start_tilde] = ACTIONS(1596), + [sym__blank_line_start] = ACTIONS(1596), + [sym_minus_metadata] = ACTIONS(1596), + [sym__pipe_table_start] = ACTIONS(1596), + [sym__fenced_div_start] = ACTIONS(1596), + [sym_ref_id_specifier] = ACTIONS(1596), + [sym__display_math_state_track_marker] = ACTIONS(1596), + [sym__inline_math_state_track_marker] = ACTIONS(1596), + }, + [STATE(331)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_close] = ACTIONS(1598), + [sym__block_quote_start] = ACTIONS(1598), + [sym__indented_chunk_start] = ACTIONS(1598), + [sym_atx_h1_marker] = ACTIONS(1598), + [sym_atx_h2_marker] = ACTIONS(1598), + [sym_atx_h3_marker] = ACTIONS(1598), + [sym_atx_h4_marker] = ACTIONS(1598), + [sym_atx_h5_marker] = ACTIONS(1598), + [sym_atx_h6_marker] = ACTIONS(1598), + [sym__thematic_break] = ACTIONS(1598), + [sym__list_marker_minus] = ACTIONS(1598), + [sym__list_marker_plus] = ACTIONS(1598), + [sym__list_marker_star] = ACTIONS(1598), + [sym__list_marker_parenthesis] = ACTIONS(1598), + [sym__list_marker_dot] = ACTIONS(1598), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_example] = ACTIONS(1598), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1598), + [sym__fenced_code_block_start_backtick] = ACTIONS(1598), + [sym__fenced_code_block_start_tilde] = ACTIONS(1598), + [sym__blank_line_start] = ACTIONS(1598), + [sym_minus_metadata] = ACTIONS(1598), + [sym__pipe_table_start] = ACTIONS(1598), + [sym__fenced_div_start] = ACTIONS(1598), + [sym_ref_id_specifier] = ACTIONS(1598), + [sym__display_math_state_track_marker] = ACTIONS(1598), + [sym__inline_math_state_track_marker] = ACTIONS(1598), + }, + [STATE(332)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [sym__word] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_close] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_example] = ACTIONS(1600), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym_minus_metadata] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + [sym__fenced_div_start] = ACTIONS(1600), + [sym_ref_id_specifier] = ACTIONS(1600), + [sym__display_math_state_track_marker] = ACTIONS(1600), + [sym__inline_math_state_track_marker] = ACTIONS(1600), + }, + [STATE(333)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_CARET] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1602), + [sym__word] = ACTIONS(1602), + [sym__soft_line_ending] = ACTIONS(1602), + [sym__block_close] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(1602), + [sym__indented_chunk_start] = ACTIONS(1602), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(1602), + [sym__thematic_break] = ACTIONS(1602), + [sym__list_marker_minus] = ACTIONS(1602), + [sym__list_marker_plus] = ACTIONS(1602), + [sym__list_marker_star] = ACTIONS(1602), + [sym__list_marker_parenthesis] = ACTIONS(1602), + [sym__list_marker_dot] = ACTIONS(1602), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_example] = ACTIONS(1602), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1602), + [sym__fenced_code_block_start_backtick] = ACTIONS(1602), + [sym__fenced_code_block_start_tilde] = ACTIONS(1602), + [sym__blank_line_start] = ACTIONS(1602), + [sym_minus_metadata] = ACTIONS(1602), + [sym__pipe_table_start] = ACTIONS(1602), + [sym__fenced_div_start] = ACTIONS(1602), + [sym_ref_id_specifier] = ACTIONS(1602), + [sym__display_math_state_track_marker] = ACTIONS(1602), + [sym__inline_math_state_track_marker] = ACTIONS(1602), + }, + [STATE(334)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = 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_SEMI] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_close] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_example] = ACTIONS(1604), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym_minus_metadata] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + [sym__fenced_div_start] = ACTIONS(1604), + [sym_ref_id_specifier] = ACTIONS(1604), + [sym__display_math_state_track_marker] = ACTIONS(1604), + [sym__inline_math_state_track_marker] = ACTIONS(1604), + }, + [STATE(335)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_PLUS] = ACTIONS(1606), + [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_SLASH] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1606), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_CARET] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_TILDE] = ACTIONS(1606), + [sym__word] = ACTIONS(1606), + [sym__soft_line_ending] = ACTIONS(1606), + [sym__block_close] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(1606), + [sym__indented_chunk_start] = ACTIONS(1606), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(1606), + [sym__thematic_break] = ACTIONS(1606), + [sym__list_marker_minus] = ACTIONS(1606), + [sym__list_marker_plus] = ACTIONS(1606), + [sym__list_marker_star] = ACTIONS(1606), + [sym__list_marker_parenthesis] = ACTIONS(1606), + [sym__list_marker_dot] = ACTIONS(1606), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_example] = ACTIONS(1606), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1606), + [sym__fenced_code_block_start_backtick] = ACTIONS(1606), + [sym__fenced_code_block_start_tilde] = ACTIONS(1606), + [sym__blank_line_start] = ACTIONS(1606), + [sym_minus_metadata] = ACTIONS(1606), + [sym__pipe_table_start] = ACTIONS(1606), + [sym__fenced_div_start] = ACTIONS(1606), + [sym_ref_id_specifier] = ACTIONS(1606), + [sym__display_math_state_track_marker] = ACTIONS(1606), + [sym__inline_math_state_track_marker] = ACTIONS(1606), + }, + [STATE(336)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [sym__word] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_close] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_example] = ACTIONS(1608), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym_minus_metadata] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + [sym__fenced_div_start] = ACTIONS(1608), + [sym_ref_id_specifier] = ACTIONS(1608), + [sym__display_math_state_track_marker] = ACTIONS(1608), + [sym__inline_math_state_track_marker] = ACTIONS(1608), + }, + [STATE(337)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [sym__word] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_close] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_example] = ACTIONS(1610), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym_minus_metadata] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + [sym__fenced_div_start] = ACTIONS(1610), + [sym_ref_id_specifier] = ACTIONS(1610), + [sym__display_math_state_track_marker] = ACTIONS(1610), + [sym__inline_math_state_track_marker] = ACTIONS(1610), + }, + [STATE(338)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_DOT] = ACTIONS(1612), + [anon_sym_SLASH] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1612), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_BSLASH] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_CARET] = ACTIONS(1612), + [anon_sym__] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1612), + [sym__word] = ACTIONS(1612), + [sym__soft_line_ending] = ACTIONS(1612), + [sym__block_close] = ACTIONS(1612), + [sym__block_quote_start] = ACTIONS(1612), + [sym__indented_chunk_start] = ACTIONS(1612), + [sym_atx_h1_marker] = ACTIONS(1612), + [sym_atx_h2_marker] = ACTIONS(1612), + [sym_atx_h3_marker] = ACTIONS(1612), + [sym_atx_h4_marker] = ACTIONS(1612), + [sym_atx_h5_marker] = ACTIONS(1612), + [sym_atx_h6_marker] = ACTIONS(1612), + [sym__thematic_break] = ACTIONS(1612), + [sym__list_marker_minus] = ACTIONS(1612), + [sym__list_marker_plus] = ACTIONS(1612), + [sym__list_marker_star] = ACTIONS(1612), + [sym__list_marker_parenthesis] = ACTIONS(1612), + [sym__list_marker_dot] = ACTIONS(1612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_example] = ACTIONS(1612), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1612), + [sym__fenced_code_block_start_backtick] = ACTIONS(1612), + [sym__fenced_code_block_start_tilde] = ACTIONS(1612), + [sym__blank_line_start] = ACTIONS(1612), + [sym_minus_metadata] = ACTIONS(1612), + [sym__pipe_table_start] = ACTIONS(1612), + [sym__fenced_div_start] = ACTIONS(1612), + [sym_ref_id_specifier] = ACTIONS(1612), + [sym__display_math_state_track_marker] = ACTIONS(1612), + [sym__inline_math_state_track_marker] = ACTIONS(1612), + }, + [STATE(339)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1614), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_BSLASH] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_CARET] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_TILDE] = ACTIONS(1614), + [sym__word] = ACTIONS(1614), + [sym__soft_line_ending] = ACTIONS(1614), + [sym__block_close] = ACTIONS(1614), + [sym__block_quote_start] = ACTIONS(1614), + [sym__indented_chunk_start] = ACTIONS(1614), + [sym_atx_h1_marker] = ACTIONS(1614), + [sym_atx_h2_marker] = ACTIONS(1614), + [sym_atx_h3_marker] = ACTIONS(1614), + [sym_atx_h4_marker] = ACTIONS(1614), + [sym_atx_h5_marker] = ACTIONS(1614), + [sym_atx_h6_marker] = ACTIONS(1614), + [sym__thematic_break] = ACTIONS(1614), + [sym__list_marker_minus] = ACTIONS(1614), + [sym__list_marker_plus] = ACTIONS(1614), + [sym__list_marker_star] = ACTIONS(1614), + [sym__list_marker_parenthesis] = ACTIONS(1614), + [sym__list_marker_dot] = ACTIONS(1614), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_example] = ACTIONS(1614), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1614), + [sym__fenced_code_block_start_backtick] = ACTIONS(1614), + [sym__fenced_code_block_start_tilde] = ACTIONS(1614), + [sym__blank_line_start] = ACTIONS(1614), + [sym_minus_metadata] = ACTIONS(1614), + [sym__pipe_table_start] = ACTIONS(1614), + [sym__fenced_div_start] = ACTIONS(1614), + [sym_ref_id_specifier] = ACTIONS(1614), + [sym__display_math_state_track_marker] = ACTIONS(1614), + [sym__inline_math_state_track_marker] = ACTIONS(1614), + }, + [STATE(340)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [sym__word] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_close] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_example] = ACTIONS(1616), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym_minus_metadata] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + [sym__fenced_div_start] = ACTIONS(1616), + [sym_ref_id_specifier] = ACTIONS(1616), + [sym__display_math_state_track_marker] = ACTIONS(1616), + [sym__inline_math_state_track_marker] = ACTIONS(1616), + }, + [STATE(341)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [sym__word] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_close] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1718), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym_minus_metadata] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + [sym__fenced_div_start] = ACTIONS(1718), + [sym_ref_id_specifier] = ACTIONS(1718), + [sym__display_math_state_track_marker] = ACTIONS(1718), + [sym__inline_math_state_track_marker] = ACTIONS(1718), + }, + [STATE(342)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [sym__word] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_close] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_example] = ACTIONS(1620), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym_minus_metadata] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + [sym__fenced_div_start] = ACTIONS(1620), + [sym_ref_id_specifier] = ACTIONS(1620), + [sym__display_math_state_track_marker] = ACTIONS(1620), + [sym__inline_math_state_track_marker] = ACTIONS(1620), + }, + [STATE(343)] = { + [ts_builtin_sym_end] = ACTIONS(1538), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_example] = ACTIONS(1538), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym_minus_metadata] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + [sym__fenced_div_start] = ACTIONS(1538), + [sym_ref_id_specifier] = ACTIONS(1538), + [sym__display_math_state_track_marker] = ACTIONS(1538), + [sym__inline_math_state_track_marker] = ACTIONS(1538), + }, + [STATE(344)] = { + [ts_builtin_sym_end] = ACTIONS(1544), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym__] = ACTIONS(1544), + [anon_sym_BQUOTE] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_quote_start] = ACTIONS(1544), + [sym__indented_chunk_start] = ACTIONS(1544), + [sym_atx_h1_marker] = ACTIONS(1544), + [sym_atx_h2_marker] = ACTIONS(1544), + [sym_atx_h3_marker] = ACTIONS(1544), + [sym_atx_h4_marker] = ACTIONS(1544), + [sym_atx_h5_marker] = ACTIONS(1544), + [sym_atx_h6_marker] = ACTIONS(1544), + [sym__thematic_break] = ACTIONS(1544), + [sym__list_marker_minus] = ACTIONS(1544), + [sym__list_marker_plus] = ACTIONS(1544), + [sym__list_marker_star] = ACTIONS(1544), + [sym__list_marker_parenthesis] = ACTIONS(1544), + [sym__list_marker_dot] = ACTIONS(1544), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_example] = ACTIONS(1544), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1544), + [sym__fenced_code_block_start_backtick] = ACTIONS(1544), + [sym__fenced_code_block_start_tilde] = ACTIONS(1544), + [sym__blank_line_start] = ACTIONS(1544), + [sym_minus_metadata] = ACTIONS(1544), + [sym__pipe_table_start] = ACTIONS(1544), + [sym__fenced_div_start] = ACTIONS(1544), + [sym_ref_id_specifier] = ACTIONS(1544), + [sym__display_math_state_track_marker] = ACTIONS(1544), + [sym__inline_math_state_track_marker] = ACTIONS(1544), + }, + [STATE(345)] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [sym__word] = ACTIONS(1546), + [sym__soft_line_ending] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_example] = ACTIONS(1546), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym_minus_metadata] = ACTIONS(1546), + [sym__pipe_table_start] = ACTIONS(1546), + [sym__fenced_div_start] = ACTIONS(1546), + [sym_ref_id_specifier] = ACTIONS(1546), + [sym__display_math_state_track_marker] = ACTIONS(1546), + [sym__inline_math_state_track_marker] = ACTIONS(1546), + }, + [STATE(346)] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [sym__word] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_example] = ACTIONS(1548), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym_minus_metadata] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + [sym__fenced_div_start] = ACTIONS(1548), + [sym_ref_id_specifier] = ACTIONS(1548), + [sym__display_math_state_track_marker] = ACTIONS(1548), + [sym__inline_math_state_track_marker] = ACTIONS(1548), + }, + [STATE(347)] = { + [ts_builtin_sym_end] = ACTIONS(1550), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_PERCENT] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1550), + [anon_sym_SLASH] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_BQUOTE] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_quote_start] = ACTIONS(1550), + [sym__indented_chunk_start] = ACTIONS(1550), + [sym_atx_h1_marker] = ACTIONS(1550), + [sym_atx_h2_marker] = ACTIONS(1550), + [sym_atx_h3_marker] = ACTIONS(1550), + [sym_atx_h4_marker] = ACTIONS(1550), + [sym_atx_h5_marker] = ACTIONS(1550), + [sym_atx_h6_marker] = ACTIONS(1550), + [sym__thematic_break] = ACTIONS(1550), + [sym__list_marker_minus] = ACTIONS(1550), + [sym__list_marker_plus] = ACTIONS(1550), + [sym__list_marker_star] = ACTIONS(1550), + [sym__list_marker_parenthesis] = ACTIONS(1550), + [sym__list_marker_dot] = ACTIONS(1550), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_example] = ACTIONS(1550), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1550), + [sym__fenced_code_block_start_backtick] = ACTIONS(1550), + [sym__fenced_code_block_start_tilde] = ACTIONS(1550), + [sym__blank_line_start] = ACTIONS(1550), + [sym_minus_metadata] = ACTIONS(1550), + [sym__pipe_table_start] = ACTIONS(1550), + [sym__fenced_div_start] = ACTIONS(1550), + [sym_ref_id_specifier] = ACTIONS(1550), + [sym__display_math_state_track_marker] = ACTIONS(1550), + [sym__inline_math_state_track_marker] = ACTIONS(1550), + }, + [STATE(348)] = { + [ts_builtin_sym_end] = ACTIONS(1552), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [sym__word] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_example] = ACTIONS(1552), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym_minus_metadata] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + [sym__fenced_div_start] = ACTIONS(1552), + [sym_ref_id_specifier] = ACTIONS(1552), + [sym__display_math_state_track_marker] = ACTIONS(1552), + [sym__inline_math_state_track_marker] = ACTIONS(1552), + }, + [STATE(349)] = { + [ts_builtin_sym_end] = ACTIONS(1554), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_QMARK] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym__] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [sym__word] = ACTIONS(1554), + [sym__soft_line_ending] = ACTIONS(1554), + [sym__block_quote_start] = ACTIONS(1554), + [sym__indented_chunk_start] = ACTIONS(1554), + [sym_atx_h1_marker] = ACTIONS(1554), + [sym_atx_h2_marker] = ACTIONS(1554), + [sym_atx_h3_marker] = ACTIONS(1554), + [sym_atx_h4_marker] = ACTIONS(1554), + [sym_atx_h5_marker] = ACTIONS(1554), + [sym_atx_h6_marker] = ACTIONS(1554), + [sym__thematic_break] = ACTIONS(1554), + [sym__list_marker_minus] = ACTIONS(1554), + [sym__list_marker_plus] = ACTIONS(1554), + [sym__list_marker_star] = ACTIONS(1554), + [sym__list_marker_parenthesis] = ACTIONS(1554), + [sym__list_marker_dot] = ACTIONS(1554), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_example] = ACTIONS(1554), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1554), + [sym__fenced_code_block_start_backtick] = ACTIONS(1554), + [sym__fenced_code_block_start_tilde] = ACTIONS(1554), + [sym__blank_line_start] = ACTIONS(1554), + [sym_minus_metadata] = ACTIONS(1554), + [sym__pipe_table_start] = ACTIONS(1554), + [sym__fenced_div_start] = ACTIONS(1554), + [sym_ref_id_specifier] = ACTIONS(1554), + [sym__display_math_state_track_marker] = ACTIONS(1554), + [sym__inline_math_state_track_marker] = ACTIONS(1554), + }, + [STATE(350)] = { + [ts_builtin_sym_end] = ACTIONS(1556), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_example] = ACTIONS(1556), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym_minus_metadata] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + [sym__fenced_div_start] = ACTIONS(1556), + [sym_ref_id_specifier] = ACTIONS(1556), + [sym__display_math_state_track_marker] = ACTIONS(1556), + [sym__inline_math_state_track_marker] = ACTIONS(1556), + }, + [STATE(351)] = { + [ts_builtin_sym_end] = ACTIONS(1558), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_BSLASH] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym__] = ACTIONS(1558), + [anon_sym_BQUOTE] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [sym__word] = ACTIONS(1558), + [sym__soft_line_ending] = ACTIONS(1558), + [sym__block_quote_start] = ACTIONS(1558), + [sym__indented_chunk_start] = ACTIONS(1558), + [sym_atx_h1_marker] = ACTIONS(1558), + [sym_atx_h2_marker] = ACTIONS(1558), + [sym_atx_h3_marker] = ACTIONS(1558), + [sym_atx_h4_marker] = ACTIONS(1558), + [sym_atx_h5_marker] = ACTIONS(1558), + [sym_atx_h6_marker] = ACTIONS(1558), + [sym__thematic_break] = ACTIONS(1558), + [sym__list_marker_minus] = ACTIONS(1558), + [sym__list_marker_plus] = ACTIONS(1558), + [sym__list_marker_star] = ACTIONS(1558), + [sym__list_marker_parenthesis] = ACTIONS(1558), + [sym__list_marker_dot] = ACTIONS(1558), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_example] = ACTIONS(1558), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1558), + [sym__fenced_code_block_start_backtick] = ACTIONS(1558), + [sym__fenced_code_block_start_tilde] = ACTIONS(1558), + [sym__blank_line_start] = ACTIONS(1558), + [sym_minus_metadata] = ACTIONS(1558), + [sym__pipe_table_start] = ACTIONS(1558), + [sym__fenced_div_start] = ACTIONS(1558), + [sym_ref_id_specifier] = ACTIONS(1558), + [sym__display_math_state_track_marker] = ACTIONS(1558), + [sym__inline_math_state_track_marker] = ACTIONS(1558), + }, + [STATE(352)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1722), + [anon_sym_QMARK] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_BSLASH] = ACTIONS(1722), + [anon_sym_RBRACK] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1722), + [anon_sym__] = ACTIONS(1722), + [anon_sym_BQUOTE] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [sym__word] = ACTIONS(1722), + [sym__soft_line_ending] = ACTIONS(1722), + [sym_block_continuation] = ACTIONS(1722), + [sym__block_quote_start] = ACTIONS(1722), + [sym__indented_chunk_start] = ACTIONS(1722), + [sym_atx_h1_marker] = ACTIONS(1722), + [sym_atx_h2_marker] = ACTIONS(1722), + [sym_atx_h3_marker] = ACTIONS(1722), + [sym_atx_h4_marker] = ACTIONS(1722), + [sym_atx_h5_marker] = ACTIONS(1722), + [sym_atx_h6_marker] = ACTIONS(1722), + [sym__thematic_break] = ACTIONS(1722), + [sym__list_marker_minus] = ACTIONS(1722), + [sym__list_marker_plus] = ACTIONS(1722), + [sym__list_marker_star] = ACTIONS(1722), + [sym__list_marker_parenthesis] = ACTIONS(1722), + [sym__list_marker_dot] = ACTIONS(1722), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_example] = ACTIONS(1722), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1722), + [sym__fenced_code_block_start_backtick] = ACTIONS(1722), + [sym__fenced_code_block_start_tilde] = ACTIONS(1722), + [sym__blank_line_start] = ACTIONS(1722), + [sym_minus_metadata] = ACTIONS(1722), + [sym__pipe_table_start] = ACTIONS(1722), + [sym__fenced_div_start] = ACTIONS(1722), + [sym_ref_id_specifier] = ACTIONS(1722), + [sym__display_math_state_track_marker] = ACTIONS(1722), + [sym__inline_math_state_track_marker] = ACTIONS(1722), + }, + [STATE(353)] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [sym__word] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_example] = ACTIONS(1542), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym_minus_metadata] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + [sym__fenced_div_start] = ACTIONS(1542), + [sym_ref_id_specifier] = ACTIONS(1542), + [sym__display_math_state_track_marker] = ACTIONS(1542), + [sym__inline_math_state_track_marker] = ACTIONS(1542), + }, + [STATE(354)] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(355)] = { + [ts_builtin_sym_end] = ACTIONS(1560), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [sym__word] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_example] = ACTIONS(1560), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym_minus_metadata] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + [sym__fenced_div_start] = ACTIONS(1560), + [sym_ref_id_specifier] = ACTIONS(1560), + [sym__display_math_state_track_marker] = ACTIONS(1560), + [sym__inline_math_state_track_marker] = ACTIONS(1560), + }, + [STATE(356)] = { + [ts_builtin_sym_end] = ACTIONS(1500), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(357)] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(358)] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [sym__word] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_example] = ACTIONS(1512), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym_minus_metadata] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + [sym__fenced_div_start] = ACTIONS(1512), + [sym_ref_id_specifier] = ACTIONS(1512), + [sym__display_math_state_track_marker] = ACTIONS(1512), + [sym__inline_math_state_track_marker] = ACTIONS(1512), + }, + [STATE(359)] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(360)] = { + [ts_builtin_sym_end] = ACTIONS(1714), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [sym__word] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_example] = ACTIONS(1714), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym_minus_metadata] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + [sym__fenced_div_start] = ACTIONS(1714), + [sym_ref_id_specifier] = ACTIONS(1714), + [sym__display_math_state_track_marker] = ACTIONS(1714), + [sym__inline_math_state_track_marker] = ACTIONS(1714), + }, + [STATE(361)] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(362)] = { + [ts_builtin_sym_end] = ACTIONS(1570), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_EQ] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1570), + [anon_sym_PERCENT] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_RPAREN] = ACTIONS(1570), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_COMMA] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_GT] = ACTIONS(1570), + [anon_sym_QMARK] = ACTIONS(1570), + [anon_sym_AT] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_BSLASH] = ACTIONS(1570), + [anon_sym_RBRACK] = ACTIONS(1570), + [anon_sym_CARET] = ACTIONS(1570), + [anon_sym__] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1570), + [sym__word] = ACTIONS(1570), + [sym__soft_line_ending] = ACTIONS(1570), + [sym__block_quote_start] = ACTIONS(1570), + [sym__indented_chunk_start] = ACTIONS(1570), + [sym_atx_h1_marker] = ACTIONS(1570), + [sym_atx_h2_marker] = ACTIONS(1570), + [sym_atx_h3_marker] = ACTIONS(1570), + [sym_atx_h4_marker] = ACTIONS(1570), + [sym_atx_h5_marker] = ACTIONS(1570), + [sym_atx_h6_marker] = ACTIONS(1570), + [sym__thematic_break] = ACTIONS(1570), + [sym__list_marker_minus] = ACTIONS(1570), + [sym__list_marker_plus] = ACTIONS(1570), + [sym__list_marker_star] = ACTIONS(1570), + [sym__list_marker_parenthesis] = ACTIONS(1570), + [sym__list_marker_dot] = ACTIONS(1570), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_example] = ACTIONS(1570), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1570), + [sym__fenced_code_block_start_backtick] = ACTIONS(1570), + [sym__fenced_code_block_start_tilde] = ACTIONS(1570), + [sym__blank_line_start] = ACTIONS(1570), + [sym_minus_metadata] = ACTIONS(1570), + [sym__pipe_table_start] = ACTIONS(1570), + [sym__fenced_div_start] = ACTIONS(1570), + [sym_ref_id_specifier] = ACTIONS(1570), + [sym__display_math_state_track_marker] = ACTIONS(1570), + [sym__inline_math_state_track_marker] = ACTIONS(1570), + }, + [STATE(363)] = { + [ts_builtin_sym_end] = ACTIONS(1572), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [sym__word] = ACTIONS(1572), + [sym__soft_line_ending] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1572), + [sym__indented_chunk_start] = ACTIONS(1572), + [sym_atx_h1_marker] = ACTIONS(1572), + [sym_atx_h2_marker] = ACTIONS(1572), + [sym_atx_h3_marker] = ACTIONS(1572), + [sym_atx_h4_marker] = ACTIONS(1572), + [sym_atx_h5_marker] = ACTIONS(1572), + [sym_atx_h6_marker] = ACTIONS(1572), + [sym__thematic_break] = ACTIONS(1572), + [sym__list_marker_minus] = ACTIONS(1572), + [sym__list_marker_plus] = ACTIONS(1572), + [sym__list_marker_star] = ACTIONS(1572), + [sym__list_marker_parenthesis] = ACTIONS(1572), + [sym__list_marker_dot] = ACTIONS(1572), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_example] = ACTIONS(1572), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1572), + [sym__fenced_code_block_start_backtick] = ACTIONS(1572), + [sym__fenced_code_block_start_tilde] = ACTIONS(1572), + [sym__blank_line_start] = ACTIONS(1572), + [sym_minus_metadata] = ACTIONS(1572), + [sym__pipe_table_start] = ACTIONS(1572), + [sym__fenced_div_start] = ACTIONS(1572), + [sym_ref_id_specifier] = ACTIONS(1572), + [sym__display_math_state_track_marker] = ACTIONS(1572), + [sym__inline_math_state_track_marker] = ACTIONS(1572), + }, + [STATE(364)] = { + [ts_builtin_sym_end] = ACTIONS(1576), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_SLASH] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1576), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1576), + [sym__word] = ACTIONS(1576), + [sym__soft_line_ending] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1576), + [sym__indented_chunk_start] = ACTIONS(1576), + [sym_atx_h1_marker] = ACTIONS(1576), + [sym_atx_h2_marker] = ACTIONS(1576), + [sym_atx_h3_marker] = ACTIONS(1576), + [sym_atx_h4_marker] = ACTIONS(1576), + [sym_atx_h5_marker] = ACTIONS(1576), + [sym_atx_h6_marker] = ACTIONS(1576), + [sym__thematic_break] = ACTIONS(1576), + [sym__list_marker_minus] = ACTIONS(1576), + [sym__list_marker_plus] = ACTIONS(1576), + [sym__list_marker_star] = ACTIONS(1576), + [sym__list_marker_parenthesis] = ACTIONS(1576), + [sym__list_marker_dot] = ACTIONS(1576), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_example] = ACTIONS(1576), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1576), + [sym__fenced_code_block_start_backtick] = ACTIONS(1576), + [sym__fenced_code_block_start_tilde] = ACTIONS(1576), + [sym__blank_line_start] = ACTIONS(1576), + [sym_minus_metadata] = ACTIONS(1576), + [sym__pipe_table_start] = ACTIONS(1576), + [sym__fenced_div_start] = ACTIONS(1576), + [sym_ref_id_specifier] = ACTIONS(1576), + [sym__display_math_state_track_marker] = ACTIONS(1576), + [sym__inline_math_state_track_marker] = ACTIONS(1576), + }, + [STATE(365)] = { + [ts_builtin_sym_end] = ACTIONS(1578), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1578), + [anon_sym_SLASH] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_GT] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym__] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1578), + [sym__word] = ACTIONS(1578), + [sym__soft_line_ending] = ACTIONS(1578), + [sym__block_quote_start] = ACTIONS(1578), + [sym__indented_chunk_start] = ACTIONS(1578), + [sym_atx_h1_marker] = ACTIONS(1578), + [sym_atx_h2_marker] = ACTIONS(1578), + [sym_atx_h3_marker] = ACTIONS(1578), + [sym_atx_h4_marker] = ACTIONS(1578), + [sym_atx_h5_marker] = ACTIONS(1578), + [sym_atx_h6_marker] = ACTIONS(1578), + [sym__thematic_break] = ACTIONS(1578), + [sym__list_marker_minus] = ACTIONS(1578), + [sym__list_marker_plus] = ACTIONS(1578), + [sym__list_marker_star] = ACTIONS(1578), + [sym__list_marker_parenthesis] = ACTIONS(1578), + [sym__list_marker_dot] = ACTIONS(1578), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_example] = ACTIONS(1578), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1578), + [sym__fenced_code_block_start_backtick] = ACTIONS(1578), + [sym__fenced_code_block_start_tilde] = ACTIONS(1578), + [sym__blank_line_start] = ACTIONS(1578), + [sym_minus_metadata] = ACTIONS(1578), + [sym__pipe_table_start] = ACTIONS(1578), + [sym__fenced_div_start] = ACTIONS(1578), + [sym_ref_id_specifier] = ACTIONS(1578), + [sym__display_math_state_track_marker] = ACTIONS(1578), + [sym__inline_math_state_track_marker] = ACTIONS(1578), + }, + [STATE(366)] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym__] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_quote_start] = ACTIONS(1580), + [sym__indented_chunk_start] = ACTIONS(1580), + [sym_atx_h1_marker] = ACTIONS(1580), + [sym_atx_h2_marker] = ACTIONS(1580), + [sym_atx_h3_marker] = ACTIONS(1580), + [sym_atx_h4_marker] = ACTIONS(1580), + [sym_atx_h5_marker] = ACTIONS(1580), + [sym_atx_h6_marker] = ACTIONS(1580), + [sym__thematic_break] = ACTIONS(1580), + [sym__list_marker_minus] = ACTIONS(1580), + [sym__list_marker_plus] = ACTIONS(1580), + [sym__list_marker_star] = ACTIONS(1580), + [sym__list_marker_parenthesis] = ACTIONS(1580), + [sym__list_marker_dot] = ACTIONS(1580), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_example] = ACTIONS(1580), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1580), + [sym__fenced_code_block_start_backtick] = ACTIONS(1580), + [sym__fenced_code_block_start_tilde] = ACTIONS(1580), + [sym__blank_line_start] = ACTIONS(1580), + [sym_minus_metadata] = ACTIONS(1580), + [sym__pipe_table_start] = ACTIONS(1580), + [sym__fenced_div_start] = ACTIONS(1580), + [sym_ref_id_specifier] = ACTIONS(1580), + [sym__display_math_state_track_marker] = ACTIONS(1580), + [sym__inline_math_state_track_marker] = ACTIONS(1580), + }, + [STATE(367)] = { + [ts_builtin_sym_end] = ACTIONS(1582), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [sym__word] = ACTIONS(1582), + [sym__soft_line_ending] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_example] = ACTIONS(1582), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym_minus_metadata] = ACTIONS(1582), + [sym__pipe_table_start] = ACTIONS(1582), + [sym__fenced_div_start] = ACTIONS(1582), + [sym_ref_id_specifier] = ACTIONS(1582), + [sym__display_math_state_track_marker] = ACTIONS(1582), + [sym__inline_math_state_track_marker] = ACTIONS(1582), + }, + [STATE(368)] = { + [ts_builtin_sym_end] = ACTIONS(1584), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_CARET] = ACTIONS(1584), + [anon_sym__] = ACTIONS(1584), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1584), + [sym__word] = ACTIONS(1584), + [sym__soft_line_ending] = ACTIONS(1584), + [sym__block_quote_start] = ACTIONS(1584), + [sym__indented_chunk_start] = ACTIONS(1584), + [sym_atx_h1_marker] = ACTIONS(1584), + [sym_atx_h2_marker] = ACTIONS(1584), + [sym_atx_h3_marker] = ACTIONS(1584), + [sym_atx_h4_marker] = ACTIONS(1584), + [sym_atx_h5_marker] = ACTIONS(1584), + [sym_atx_h6_marker] = ACTIONS(1584), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1584), + [sym__list_marker_plus] = ACTIONS(1584), + [sym__list_marker_star] = ACTIONS(1584), + [sym__list_marker_parenthesis] = ACTIONS(1584), + [sym__list_marker_dot] = ACTIONS(1584), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_example] = ACTIONS(1584), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1584), + [sym__fenced_code_block_start_backtick] = ACTIONS(1584), + [sym__fenced_code_block_start_tilde] = ACTIONS(1584), + [sym__blank_line_start] = ACTIONS(1584), + [sym_minus_metadata] = ACTIONS(1584), + [sym__pipe_table_start] = ACTIONS(1584), + [sym__fenced_div_start] = ACTIONS(1584), + [sym_ref_id_specifier] = ACTIONS(1584), + [sym__display_math_state_track_marker] = ACTIONS(1584), + [sym__inline_math_state_track_marker] = ACTIONS(1584), + }, + [STATE(369)] = { + [ts_builtin_sym_end] = ACTIONS(1432), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_RBRACK] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym__] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [sym__word] = ACTIONS(1432), + [sym__soft_line_ending] = ACTIONS(1432), + [sym__block_quote_start] = ACTIONS(1432), + [sym__indented_chunk_start] = ACTIONS(1432), + [sym_atx_h1_marker] = ACTIONS(1432), + [sym_atx_h2_marker] = ACTIONS(1432), + [sym_atx_h3_marker] = ACTIONS(1432), + [sym_atx_h4_marker] = ACTIONS(1432), + [sym_atx_h5_marker] = ACTIONS(1432), + [sym_atx_h6_marker] = ACTIONS(1432), + [sym__thematic_break] = ACTIONS(1432), + [sym__list_marker_minus] = ACTIONS(1432), + [sym__list_marker_plus] = ACTIONS(1432), + [sym__list_marker_star] = ACTIONS(1432), + [sym__list_marker_parenthesis] = ACTIONS(1432), + [sym__list_marker_dot] = ACTIONS(1432), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_example] = ACTIONS(1432), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1432), + [sym__fenced_code_block_start_backtick] = ACTIONS(1432), + [sym__fenced_code_block_start_tilde] = ACTIONS(1432), + [sym__blank_line_start] = ACTIONS(1432), + [sym_minus_metadata] = ACTIONS(1432), + [sym__pipe_table_start] = ACTIONS(1432), + [sym__fenced_div_start] = ACTIONS(1432), + [sym_ref_id_specifier] = ACTIONS(1432), + [sym__display_math_state_track_marker] = ACTIONS(1432), + [sym__inline_math_state_track_marker] = ACTIONS(1432), + }, + [STATE(370)] = { + [ts_builtin_sym_end] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_GT] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym__] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_quote_start] = ACTIONS(1586), + [sym__indented_chunk_start] = ACTIONS(1586), + [sym_atx_h1_marker] = ACTIONS(1586), + [sym_atx_h2_marker] = ACTIONS(1586), + [sym_atx_h3_marker] = ACTIONS(1586), + [sym_atx_h4_marker] = ACTIONS(1586), + [sym_atx_h5_marker] = ACTIONS(1586), + [sym_atx_h6_marker] = ACTIONS(1586), + [sym__thematic_break] = ACTIONS(1586), + [sym__list_marker_minus] = ACTIONS(1586), + [sym__list_marker_plus] = ACTIONS(1586), + [sym__list_marker_star] = ACTIONS(1586), + [sym__list_marker_parenthesis] = ACTIONS(1586), + [sym__list_marker_dot] = ACTIONS(1586), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_example] = ACTIONS(1586), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1586), + [sym__fenced_code_block_start_backtick] = ACTIONS(1586), + [sym__fenced_code_block_start_tilde] = ACTIONS(1586), + [sym__blank_line_start] = ACTIONS(1586), + [sym_minus_metadata] = ACTIONS(1586), + [sym__pipe_table_start] = ACTIONS(1586), + [sym__fenced_div_start] = ACTIONS(1586), + [sym_ref_id_specifier] = ACTIONS(1586), + [sym__display_math_state_track_marker] = ACTIONS(1586), + [sym__inline_math_state_track_marker] = ACTIONS(1586), + }, + [STATE(371)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [sym__word] = ACTIONS(1588), + [sym__soft_line_ending] = ACTIONS(1588), + [sym__block_quote_start] = ACTIONS(1588), + [sym__indented_chunk_start] = ACTIONS(1588), + [sym_atx_h1_marker] = ACTIONS(1588), + [sym_atx_h2_marker] = ACTIONS(1588), + [sym_atx_h3_marker] = ACTIONS(1588), + [sym_atx_h4_marker] = ACTIONS(1588), + [sym_atx_h5_marker] = ACTIONS(1588), + [sym_atx_h6_marker] = ACTIONS(1588), + [sym__thematic_break] = ACTIONS(1588), + [sym__list_marker_minus] = ACTIONS(1588), + [sym__list_marker_plus] = ACTIONS(1588), + [sym__list_marker_star] = ACTIONS(1588), + [sym__list_marker_parenthesis] = ACTIONS(1588), + [sym__list_marker_dot] = ACTIONS(1588), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_example] = ACTIONS(1588), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1588), + [sym__fenced_code_block_start_backtick] = ACTIONS(1588), + [sym__fenced_code_block_start_tilde] = ACTIONS(1588), + [sym__blank_line_start] = ACTIONS(1588), + [sym_minus_metadata] = ACTIONS(1588), + [sym__pipe_table_start] = ACTIONS(1588), + [sym__fenced_div_start] = ACTIONS(1588), + [sym_ref_id_specifier] = ACTIONS(1588), + [sym__display_math_state_track_marker] = ACTIONS(1588), + [sym__inline_math_state_track_marker] = ACTIONS(1588), + }, + [STATE(372)] = { + [ts_builtin_sym_end] = ACTIONS(1590), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [sym__word] = ACTIONS(1590), + [sym__soft_line_ending] = ACTIONS(1590), + [sym__block_quote_start] = ACTIONS(1590), + [sym__indented_chunk_start] = ACTIONS(1590), + [sym_atx_h1_marker] = ACTIONS(1590), + [sym_atx_h2_marker] = ACTIONS(1590), + [sym_atx_h3_marker] = ACTIONS(1590), + [sym_atx_h4_marker] = ACTIONS(1590), + [sym_atx_h5_marker] = ACTIONS(1590), + [sym_atx_h6_marker] = ACTIONS(1590), + [sym__thematic_break] = ACTIONS(1590), + [sym__list_marker_minus] = ACTIONS(1590), + [sym__list_marker_plus] = ACTIONS(1590), + [sym__list_marker_star] = ACTIONS(1590), + [sym__list_marker_parenthesis] = ACTIONS(1590), + [sym__list_marker_dot] = ACTIONS(1590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_example] = ACTIONS(1590), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1590), + [sym__fenced_code_block_start_backtick] = ACTIONS(1590), + [sym__fenced_code_block_start_tilde] = ACTIONS(1590), + [sym__blank_line_start] = ACTIONS(1590), + [sym_minus_metadata] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1590), + [sym__fenced_div_start] = ACTIONS(1590), + [sym_ref_id_specifier] = ACTIONS(1590), + [sym__display_math_state_track_marker] = ACTIONS(1590), + [sym__inline_math_state_track_marker] = ACTIONS(1590), + }, + [STATE(373)] = { + [ts_builtin_sym_end] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_example] = ACTIONS(1592), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym_minus_metadata] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + [sym__fenced_div_start] = ACTIONS(1592), + [sym_ref_id_specifier] = ACTIONS(1592), + [sym__display_math_state_track_marker] = ACTIONS(1592), + [sym__inline_math_state_track_marker] = ACTIONS(1592), + }, + [STATE(374)] = { + [ts_builtin_sym_end] = ACTIONS(1428), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(375)] = { + [ts_builtin_sym_end] = ACTIONS(1596), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_COMMA] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_AT] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [anon_sym_RBRACK] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym__] = ACTIONS(1596), + [anon_sym_BQUOTE] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_TILDE] = ACTIONS(1596), + [sym__word] = ACTIONS(1596), + [sym__soft_line_ending] = ACTIONS(1596), + [sym__block_quote_start] = ACTIONS(1596), + [sym__indented_chunk_start] = ACTIONS(1596), + [sym_atx_h1_marker] = ACTIONS(1596), + [sym_atx_h2_marker] = ACTIONS(1596), + [sym_atx_h3_marker] = ACTIONS(1596), + [sym_atx_h4_marker] = ACTIONS(1596), + [sym_atx_h5_marker] = ACTIONS(1596), + [sym_atx_h6_marker] = ACTIONS(1596), + [sym__thematic_break] = ACTIONS(1596), + [sym__list_marker_minus] = ACTIONS(1596), + [sym__list_marker_plus] = ACTIONS(1596), + [sym__list_marker_star] = ACTIONS(1596), + [sym__list_marker_parenthesis] = ACTIONS(1596), + [sym__list_marker_dot] = ACTIONS(1596), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1596), + [sym__list_marker_example] = ACTIONS(1596), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1596), + [sym__fenced_code_block_start_backtick] = ACTIONS(1596), + [sym__fenced_code_block_start_tilde] = ACTIONS(1596), + [sym__blank_line_start] = ACTIONS(1596), + [sym_minus_metadata] = ACTIONS(1596), + [sym__pipe_table_start] = ACTIONS(1596), + [sym__fenced_div_start] = ACTIONS(1596), + [sym_ref_id_specifier] = ACTIONS(1596), + [sym__display_math_state_track_marker] = ACTIONS(1596), + [sym__inline_math_state_track_marker] = ACTIONS(1596), + }, + [STATE(376)] = { + [ts_builtin_sym_end] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_quote_start] = ACTIONS(1598), + [sym__indented_chunk_start] = ACTIONS(1598), + [sym_atx_h1_marker] = ACTIONS(1598), + [sym_atx_h2_marker] = ACTIONS(1598), + [sym_atx_h3_marker] = ACTIONS(1598), + [sym_atx_h4_marker] = ACTIONS(1598), + [sym_atx_h5_marker] = ACTIONS(1598), + [sym_atx_h6_marker] = ACTIONS(1598), + [sym__thematic_break] = ACTIONS(1598), + [sym__list_marker_minus] = ACTIONS(1598), + [sym__list_marker_plus] = ACTIONS(1598), + [sym__list_marker_star] = ACTIONS(1598), + [sym__list_marker_parenthesis] = ACTIONS(1598), + [sym__list_marker_dot] = ACTIONS(1598), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_example] = ACTIONS(1598), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1598), + [sym__fenced_code_block_start_backtick] = ACTIONS(1598), + [sym__fenced_code_block_start_tilde] = ACTIONS(1598), + [sym__blank_line_start] = ACTIONS(1598), + [sym_minus_metadata] = ACTIONS(1598), + [sym__pipe_table_start] = ACTIONS(1598), + [sym__fenced_div_start] = ACTIONS(1598), + [sym_ref_id_specifier] = ACTIONS(1598), + [sym__display_math_state_track_marker] = ACTIONS(1598), + [sym__inline_math_state_track_marker] = ACTIONS(1598), + }, + [STATE(377)] = { + [ts_builtin_sym_end] = ACTIONS(1600), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [sym__word] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_example] = ACTIONS(1600), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym_minus_metadata] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + [sym__fenced_div_start] = ACTIONS(1600), + [sym_ref_id_specifier] = ACTIONS(1600), + [sym__display_math_state_track_marker] = ACTIONS(1600), + [sym__inline_math_state_track_marker] = ACTIONS(1600), + }, + [STATE(378)] = { + [ts_builtin_sym_end] = ACTIONS(1602), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_CARET] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1602), + [sym__word] = ACTIONS(1602), + [sym__soft_line_ending] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(1602), + [sym__indented_chunk_start] = ACTIONS(1602), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(1602), + [sym__thematic_break] = ACTIONS(1602), + [sym__list_marker_minus] = ACTIONS(1602), + [sym__list_marker_plus] = ACTIONS(1602), + [sym__list_marker_star] = ACTIONS(1602), + [sym__list_marker_parenthesis] = ACTIONS(1602), + [sym__list_marker_dot] = ACTIONS(1602), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_example] = ACTIONS(1602), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1602), + [sym__fenced_code_block_start_backtick] = ACTIONS(1602), + [sym__fenced_code_block_start_tilde] = ACTIONS(1602), + [sym__blank_line_start] = ACTIONS(1602), + [sym_minus_metadata] = ACTIONS(1602), + [sym__pipe_table_start] = ACTIONS(1602), + [sym__fenced_div_start] = ACTIONS(1602), + [sym_ref_id_specifier] = ACTIONS(1602), + [sym__display_math_state_track_marker] = ACTIONS(1602), + [sym__inline_math_state_track_marker] = ACTIONS(1602), + }, + [STATE(379)] = { + [ts_builtin_sym_end] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = 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_SEMI] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_example] = ACTIONS(1604), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym_minus_metadata] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + [sym__fenced_div_start] = ACTIONS(1604), + [sym_ref_id_specifier] = ACTIONS(1604), + [sym__display_math_state_track_marker] = ACTIONS(1604), + [sym__inline_math_state_track_marker] = ACTIONS(1604), + }, + [STATE(380)] = { + [ts_builtin_sym_end] = ACTIONS(1606), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_PLUS] = ACTIONS(1606), + [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_SLASH] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1606), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_CARET] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_TILDE] = ACTIONS(1606), + [sym__word] = ACTIONS(1606), + [sym__soft_line_ending] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(1606), + [sym__indented_chunk_start] = ACTIONS(1606), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(1606), + [sym__thematic_break] = ACTIONS(1606), + [sym__list_marker_minus] = ACTIONS(1606), + [sym__list_marker_plus] = ACTIONS(1606), + [sym__list_marker_star] = ACTIONS(1606), + [sym__list_marker_parenthesis] = ACTIONS(1606), + [sym__list_marker_dot] = ACTIONS(1606), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_example] = ACTIONS(1606), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1606), + [sym__fenced_code_block_start_backtick] = ACTIONS(1606), + [sym__fenced_code_block_start_tilde] = ACTIONS(1606), + [sym__blank_line_start] = ACTIONS(1606), + [sym_minus_metadata] = ACTIONS(1606), + [sym__pipe_table_start] = ACTIONS(1606), + [sym__fenced_div_start] = ACTIONS(1606), + [sym_ref_id_specifier] = ACTIONS(1606), + [sym__display_math_state_track_marker] = ACTIONS(1606), + [sym__inline_math_state_track_marker] = ACTIONS(1606), + }, + [STATE(381)] = { + [ts_builtin_sym_end] = ACTIONS(1608), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [sym__word] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_example] = ACTIONS(1608), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym_minus_metadata] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + [sym__fenced_div_start] = ACTIONS(1608), + [sym_ref_id_specifier] = ACTIONS(1608), + [sym__display_math_state_track_marker] = ACTIONS(1608), + [sym__inline_math_state_track_marker] = ACTIONS(1608), + }, + [STATE(382)] = { + [ts_builtin_sym_end] = ACTIONS(1610), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [sym__word] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_example] = ACTIONS(1610), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym_minus_metadata] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + [sym__fenced_div_start] = ACTIONS(1610), + [sym_ref_id_specifier] = ACTIONS(1610), + [sym__display_math_state_track_marker] = ACTIONS(1610), + [sym__inline_math_state_track_marker] = ACTIONS(1610), + }, + [STATE(383)] = { + [ts_builtin_sym_end] = ACTIONS(1612), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_DOT] = ACTIONS(1612), + [anon_sym_SLASH] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1612), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_BSLASH] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_CARET] = ACTIONS(1612), + [anon_sym__] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1612), + [sym__word] = ACTIONS(1612), + [sym__soft_line_ending] = ACTIONS(1612), + [sym__block_quote_start] = ACTIONS(1612), + [sym__indented_chunk_start] = ACTIONS(1612), + [sym_atx_h1_marker] = ACTIONS(1612), + [sym_atx_h2_marker] = ACTIONS(1612), + [sym_atx_h3_marker] = ACTIONS(1612), + [sym_atx_h4_marker] = ACTIONS(1612), + [sym_atx_h5_marker] = ACTIONS(1612), + [sym_atx_h6_marker] = ACTIONS(1612), + [sym__thematic_break] = ACTIONS(1612), + [sym__list_marker_minus] = ACTIONS(1612), + [sym__list_marker_plus] = ACTIONS(1612), + [sym__list_marker_star] = ACTIONS(1612), + [sym__list_marker_parenthesis] = ACTIONS(1612), + [sym__list_marker_dot] = ACTIONS(1612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_example] = ACTIONS(1612), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1612), + [sym__fenced_code_block_start_backtick] = ACTIONS(1612), + [sym__fenced_code_block_start_tilde] = ACTIONS(1612), + [sym__blank_line_start] = ACTIONS(1612), + [sym_minus_metadata] = ACTIONS(1612), + [sym__pipe_table_start] = ACTIONS(1612), + [sym__fenced_div_start] = ACTIONS(1612), + [sym_ref_id_specifier] = ACTIONS(1612), + [sym__display_math_state_track_marker] = ACTIONS(1612), + [sym__inline_math_state_track_marker] = ACTIONS(1612), + }, + [STATE(384)] = { + [ts_builtin_sym_end] = ACTIONS(1614), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1614), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_BSLASH] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_CARET] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_TILDE] = ACTIONS(1614), + [sym__word] = ACTIONS(1614), + [sym__soft_line_ending] = ACTIONS(1614), + [sym__block_quote_start] = ACTIONS(1614), + [sym__indented_chunk_start] = ACTIONS(1614), + [sym_atx_h1_marker] = ACTIONS(1614), + [sym_atx_h2_marker] = ACTIONS(1614), + [sym_atx_h3_marker] = ACTIONS(1614), + [sym_atx_h4_marker] = ACTIONS(1614), + [sym_atx_h5_marker] = ACTIONS(1614), + [sym_atx_h6_marker] = ACTIONS(1614), + [sym__thematic_break] = ACTIONS(1614), + [sym__list_marker_minus] = ACTIONS(1614), + [sym__list_marker_plus] = ACTIONS(1614), + [sym__list_marker_star] = ACTIONS(1614), + [sym__list_marker_parenthesis] = ACTIONS(1614), + [sym__list_marker_dot] = ACTIONS(1614), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_example] = ACTIONS(1614), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1614), + [sym__fenced_code_block_start_backtick] = ACTIONS(1614), + [sym__fenced_code_block_start_tilde] = ACTIONS(1614), + [sym__blank_line_start] = ACTIONS(1614), + [sym_minus_metadata] = ACTIONS(1614), + [sym__pipe_table_start] = ACTIONS(1614), + [sym__fenced_div_start] = ACTIONS(1614), + [sym_ref_id_specifier] = ACTIONS(1614), + [sym__display_math_state_track_marker] = ACTIONS(1614), + [sym__inline_math_state_track_marker] = ACTIONS(1614), + }, + [STATE(385)] = { + [ts_builtin_sym_end] = ACTIONS(1616), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [sym__word] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_example] = ACTIONS(1616), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym_minus_metadata] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + [sym__fenced_div_start] = ACTIONS(1616), + [sym_ref_id_specifier] = ACTIONS(1616), + [sym__display_math_state_track_marker] = ACTIONS(1616), + [sym__inline_math_state_track_marker] = ACTIONS(1616), + }, + [STATE(386)] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [sym__word] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1718), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym_minus_metadata] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + [sym__fenced_div_start] = ACTIONS(1718), + [sym_ref_id_specifier] = ACTIONS(1718), + [sym__display_math_state_track_marker] = ACTIONS(1718), + [sym__inline_math_state_track_marker] = ACTIONS(1718), + }, + [STATE(387)] = { + [ts_builtin_sym_end] = ACTIONS(1620), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [sym__word] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_example] = ACTIONS(1620), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym_minus_metadata] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + [sym__fenced_div_start] = ACTIONS(1620), + [sym_ref_id_specifier] = ACTIONS(1620), + [sym__display_math_state_track_marker] = ACTIONS(1620), + [sym__inline_math_state_track_marker] = ACTIONS(1620), + }, + [STATE(388)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [sym__word] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_close] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_example] = ACTIONS(1714), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym_minus_metadata] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + [sym__fenced_div_start] = ACTIONS(1714), + [sym_ref_id_specifier] = ACTIONS(1714), + [sym__display_math_state_track_marker] = ACTIONS(1714), + [sym__inline_math_state_track_marker] = ACTIONS(1714), + }, + [STATE(389)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_SLASH] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1716), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [sym__word] = ACTIONS(1716), + [sym__soft_line_ending] = ACTIONS(1716), + [sym__block_close] = ACTIONS(1716), + [sym__block_quote_start] = ACTIONS(1716), + [sym__indented_chunk_start] = ACTIONS(1716), + [sym_atx_h1_marker] = ACTIONS(1716), + [sym_atx_h2_marker] = ACTIONS(1716), + [sym_atx_h3_marker] = ACTIONS(1716), + [sym_atx_h4_marker] = ACTIONS(1716), + [sym_atx_h5_marker] = ACTIONS(1716), + [sym_atx_h6_marker] = ACTIONS(1716), + [sym__thematic_break] = ACTIONS(1716), + [sym__list_marker_minus] = ACTIONS(1716), + [sym__list_marker_plus] = ACTIONS(1716), + [sym__list_marker_star] = ACTIONS(1716), + [sym__list_marker_parenthesis] = ACTIONS(1716), + [sym__list_marker_dot] = ACTIONS(1716), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_example] = ACTIONS(1716), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1716), + [sym__fenced_code_block_start_backtick] = ACTIONS(1716), + [sym__fenced_code_block_start_tilde] = ACTIONS(1716), + [sym__blank_line_start] = ACTIONS(1716), + [sym_minus_metadata] = ACTIONS(1716), + [sym__pipe_table_start] = ACTIONS(1716), + [sym__fenced_div_start] = ACTIONS(1716), + [sym_ref_id_specifier] = ACTIONS(1716), + [sym__display_math_state_track_marker] = ACTIONS(1716), + [sym__inline_math_state_track_marker] = ACTIONS(1716), + }, + [STATE(390)] = { + [ts_builtin_sym_end] = ACTIONS(1540), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(391)] = { + [ts_builtin_sym_end] = ACTIONS(1540), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(392)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_EQ] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_COMMA] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_DOT] = ACTIONS(1724), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_QMARK] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_BSLASH] = ACTIONS(1724), + [anon_sym_RBRACK] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym__] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1724), + [sym__word] = ACTIONS(1724), + [sym__soft_line_ending] = ACTIONS(1724), + [sym_block_continuation] = ACTIONS(1724), + [sym__block_quote_start] = ACTIONS(1724), + [sym__indented_chunk_start] = ACTIONS(1724), + [sym_atx_h1_marker] = ACTIONS(1724), + [sym_atx_h2_marker] = ACTIONS(1724), + [sym_atx_h3_marker] = ACTIONS(1724), + [sym_atx_h4_marker] = ACTIONS(1724), + [sym_atx_h5_marker] = ACTIONS(1724), + [sym_atx_h6_marker] = ACTIONS(1724), + [sym__thematic_break] = ACTIONS(1724), + [sym__list_marker_minus] = ACTIONS(1724), + [sym__list_marker_plus] = ACTIONS(1724), + [sym__list_marker_star] = ACTIONS(1724), + [sym__list_marker_parenthesis] = ACTIONS(1724), + [sym__list_marker_dot] = ACTIONS(1724), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_example] = ACTIONS(1724), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1724), + [sym__fenced_code_block_start_backtick] = ACTIONS(1724), + [sym__fenced_code_block_start_tilde] = ACTIONS(1724), + [sym__blank_line_start] = ACTIONS(1724), + [sym_minus_metadata] = ACTIONS(1724), + [sym__pipe_table_start] = ACTIONS(1724), + [sym__fenced_div_start] = ACTIONS(1724), + [sym_ref_id_specifier] = ACTIONS(1724), + [sym__display_math_state_track_marker] = ACTIONS(1724), + [sym__inline_math_state_track_marker] = ACTIONS(1724), + }, + [STATE(393)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_close] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(394)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_close] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(395)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [sym__word] = ACTIONS(1536), + [sym__soft_line_ending] = ACTIONS(1536), + [sym__block_close] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(1536), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_example] = ACTIONS(1536), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym_minus_metadata] = ACTIONS(1536), + [sym__pipe_table_start] = ACTIONS(1536), + [sym__fenced_div_start] = ACTIONS(1536), + [sym_ref_id_specifier] = ACTIONS(1536), + [sym__display_math_state_track_marker] = ACTIONS(1536), + [sym__inline_math_state_track_marker] = ACTIONS(1536), + }, + [STATE(396)] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [sym__word] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_example] = ACTIONS(1564), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym_minus_metadata] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + [sym__fenced_div_start] = ACTIONS(1564), + [sym_ref_id_specifier] = ACTIONS(1564), + [sym__display_math_state_track_marker] = ACTIONS(1564), + [sym__inline_math_state_track_marker] = ACTIONS(1564), + }, + [STATE(397)] = { + [ts_builtin_sym_end] = ACTIONS(1566), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym__] = ACTIONS(1566), + [anon_sym_BQUOTE] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [sym__word] = ACTIONS(1566), + [sym__soft_line_ending] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1566), + [sym__indented_chunk_start] = ACTIONS(1566), + [sym_atx_h1_marker] = ACTIONS(1566), + [sym_atx_h2_marker] = ACTIONS(1566), + [sym_atx_h3_marker] = ACTIONS(1566), + [sym_atx_h4_marker] = ACTIONS(1566), + [sym_atx_h5_marker] = ACTIONS(1566), + [sym_atx_h6_marker] = ACTIONS(1566), + [sym__thematic_break] = ACTIONS(1566), + [sym__list_marker_minus] = ACTIONS(1566), + [sym__list_marker_plus] = ACTIONS(1566), + [sym__list_marker_star] = ACTIONS(1566), + [sym__list_marker_parenthesis] = ACTIONS(1566), + [sym__list_marker_dot] = ACTIONS(1566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_example] = ACTIONS(1566), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1566), + [sym__fenced_code_block_start_backtick] = ACTIONS(1566), + [sym__fenced_code_block_start_tilde] = ACTIONS(1566), + [sym__blank_line_start] = ACTIONS(1566), + [sym_minus_metadata] = ACTIONS(1566), + [sym__pipe_table_start] = ACTIONS(1566), + [sym__fenced_div_start] = ACTIONS(1566), + [sym_ref_id_specifier] = ACTIONS(1566), + [sym__display_math_state_track_marker] = ACTIONS(1566), + [sym__inline_math_state_track_marker] = ACTIONS(1566), + }, + [STATE(398)] = { + [ts_builtin_sym_end] = ACTIONS(1634), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_DOT] = ACTIONS(1634), + [anon_sym_SLASH] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_QMARK] = ACTIONS(1634), + [anon_sym_AT] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_BSLASH] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1634), + [anon_sym__] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1634), + [sym__word] = ACTIONS(1634), + [sym__soft_line_ending] = ACTIONS(1634), + [sym__block_quote_start] = ACTIONS(1634), + [sym__indented_chunk_start] = ACTIONS(1634), + [sym_atx_h1_marker] = ACTIONS(1634), + [sym_atx_h2_marker] = ACTIONS(1634), + [sym_atx_h3_marker] = ACTIONS(1634), + [sym_atx_h4_marker] = ACTIONS(1634), + [sym_atx_h5_marker] = ACTIONS(1634), + [sym_atx_h6_marker] = ACTIONS(1634), + [sym__thematic_break] = ACTIONS(1634), + [sym__list_marker_minus] = ACTIONS(1634), + [sym__list_marker_plus] = ACTIONS(1634), + [sym__list_marker_star] = ACTIONS(1634), + [sym__list_marker_parenthesis] = ACTIONS(1634), + [sym__list_marker_dot] = ACTIONS(1634), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_example] = ACTIONS(1634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1634), + [sym__fenced_code_block_start_backtick] = ACTIONS(1634), + [sym__fenced_code_block_start_tilde] = ACTIONS(1634), + [sym__blank_line_start] = ACTIONS(1634), + [sym_minus_metadata] = ACTIONS(1634), + [sym__pipe_table_start] = ACTIONS(1634), + [sym__fenced_div_start] = ACTIONS(1634), + [sym_ref_id_specifier] = ACTIONS(1634), + [sym__display_math_state_track_marker] = ACTIONS(1634), + [sym__inline_math_state_track_marker] = ACTIONS(1634), + }, + [STATE(399)] = { + [ts_builtin_sym_end] = ACTIONS(1636), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [sym__word] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_example] = ACTIONS(1636), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym_minus_metadata] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + [sym__fenced_div_start] = ACTIONS(1636), + [sym_ref_id_specifier] = ACTIONS(1636), + [sym__display_math_state_track_marker] = ACTIONS(1636), + [sym__inline_math_state_track_marker] = ACTIONS(1636), + }, + [STATE(400)] = { + [ts_builtin_sym_end] = ACTIONS(1454), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), + }, + [STATE(401)] = { + [ts_builtin_sym_end] = ACTIONS(1518), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [sym__word] = ACTIONS(1518), + [sym__soft_line_ending] = ACTIONS(1518), + [sym__block_quote_start] = ACTIONS(1518), + [sym__indented_chunk_start] = ACTIONS(1518), + [sym_atx_h1_marker] = ACTIONS(1518), + [sym_atx_h2_marker] = ACTIONS(1518), + [sym_atx_h3_marker] = ACTIONS(1518), + [sym_atx_h4_marker] = ACTIONS(1518), + [sym_atx_h5_marker] = ACTIONS(1518), + [sym_atx_h6_marker] = ACTIONS(1518), + [sym__thematic_break] = ACTIONS(1518), + [sym__list_marker_minus] = ACTIONS(1518), + [sym__list_marker_plus] = ACTIONS(1518), + [sym__list_marker_star] = ACTIONS(1518), + [sym__list_marker_parenthesis] = ACTIONS(1518), + [sym__list_marker_dot] = ACTIONS(1518), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_example] = ACTIONS(1518), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1518), + [sym__fenced_code_block_start_backtick] = ACTIONS(1518), + [sym__fenced_code_block_start_tilde] = ACTIONS(1518), + [sym__blank_line_start] = ACTIONS(1518), + [sym_minus_metadata] = ACTIONS(1518), + [sym__pipe_table_start] = ACTIONS(1518), + [sym__fenced_div_start] = ACTIONS(1518), + [sym_ref_id_specifier] = ACTIONS(1518), + [sym__display_math_state_track_marker] = ACTIONS(1518), + [sym__inline_math_state_track_marker] = ACTIONS(1518), + }, + [STATE(402)] = { + [ts_builtin_sym_end] = ACTIONS(1522), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [sym__word] = ACTIONS(1522), + [sym__soft_line_ending] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1522), + [sym__indented_chunk_start] = ACTIONS(1522), + [sym_atx_h1_marker] = ACTIONS(1522), + [sym_atx_h2_marker] = ACTIONS(1522), + [sym_atx_h3_marker] = ACTIONS(1522), + [sym_atx_h4_marker] = ACTIONS(1522), + [sym_atx_h5_marker] = ACTIONS(1522), + [sym_atx_h6_marker] = ACTIONS(1522), + [sym__thematic_break] = ACTIONS(1522), + [sym__list_marker_minus] = ACTIONS(1522), + [sym__list_marker_plus] = ACTIONS(1522), + [sym__list_marker_star] = ACTIONS(1522), + [sym__list_marker_parenthesis] = ACTIONS(1522), + [sym__list_marker_dot] = ACTIONS(1522), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_example] = ACTIONS(1522), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1522), + [sym__fenced_code_block_start_backtick] = ACTIONS(1522), + [sym__fenced_code_block_start_tilde] = ACTIONS(1522), + [sym__blank_line_start] = ACTIONS(1522), + [sym_minus_metadata] = ACTIONS(1522), + [sym__pipe_table_start] = ACTIONS(1522), + [sym__fenced_div_start] = ACTIONS(1522), + [sym_ref_id_specifier] = ACTIONS(1522), + [sym__display_math_state_track_marker] = ACTIONS(1522), + [sym__inline_math_state_track_marker] = ACTIONS(1522), + }, + [STATE(403)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DOT] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_BSLASH] = ACTIONS(1726), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym__] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [sym__word] = ACTIONS(1726), + [sym__soft_line_ending] = ACTIONS(1726), + [sym_block_continuation] = ACTIONS(1726), + [sym__block_quote_start] = ACTIONS(1726), + [sym__indented_chunk_start] = ACTIONS(1726), + [sym_atx_h1_marker] = ACTIONS(1726), + [sym_atx_h2_marker] = ACTIONS(1726), + [sym_atx_h3_marker] = ACTIONS(1726), + [sym_atx_h4_marker] = ACTIONS(1726), + [sym_atx_h5_marker] = ACTIONS(1726), + [sym_atx_h6_marker] = ACTIONS(1726), + [sym__thematic_break] = ACTIONS(1726), + [sym__list_marker_minus] = ACTIONS(1726), + [sym__list_marker_plus] = ACTIONS(1726), + [sym__list_marker_star] = ACTIONS(1726), + [sym__list_marker_parenthesis] = ACTIONS(1726), + [sym__list_marker_dot] = ACTIONS(1726), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_example] = ACTIONS(1726), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1726), + [sym__fenced_code_block_start_backtick] = ACTIONS(1726), + [sym__fenced_code_block_start_tilde] = ACTIONS(1726), + [sym__blank_line_start] = ACTIONS(1726), + [sym_minus_metadata] = ACTIONS(1726), + [sym__pipe_table_start] = ACTIONS(1726), + [sym__fenced_div_start] = ACTIONS(1726), + [sym_ref_id_specifier] = ACTIONS(1726), + [sym__display_math_state_track_marker] = ACTIONS(1726), + [sym__inline_math_state_track_marker] = ACTIONS(1726), + }, + [STATE(404)] = { + [ts_builtin_sym_end] = ACTIONS(1458), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), + }, + [STATE(405)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [sym__word] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_close] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_example] = ACTIONS(1564), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym_minus_metadata] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + [sym__fenced_div_start] = ACTIONS(1564), + [sym_ref_id_specifier] = ACTIONS(1564), + [sym__display_math_state_track_marker] = ACTIONS(1564), + [sym__inline_math_state_track_marker] = ACTIONS(1564), + }, + [STATE(406)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym__] = ACTIONS(1566), + [anon_sym_BQUOTE] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [sym__word] = ACTIONS(1566), + [sym__soft_line_ending] = ACTIONS(1566), + [sym__block_close] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1566), + [sym__indented_chunk_start] = ACTIONS(1566), + [sym_atx_h1_marker] = ACTIONS(1566), + [sym_atx_h2_marker] = ACTIONS(1566), + [sym_atx_h3_marker] = ACTIONS(1566), + [sym_atx_h4_marker] = ACTIONS(1566), + [sym_atx_h5_marker] = ACTIONS(1566), + [sym_atx_h6_marker] = ACTIONS(1566), + [sym__thematic_break] = ACTIONS(1566), + [sym__list_marker_minus] = ACTIONS(1566), + [sym__list_marker_plus] = ACTIONS(1566), + [sym__list_marker_star] = ACTIONS(1566), + [sym__list_marker_parenthesis] = ACTIONS(1566), + [sym__list_marker_dot] = ACTIONS(1566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_example] = ACTIONS(1566), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1566), + [sym__fenced_code_block_start_backtick] = ACTIONS(1566), + [sym__fenced_code_block_start_tilde] = ACTIONS(1566), + [sym__blank_line_start] = ACTIONS(1566), + [sym_minus_metadata] = ACTIONS(1566), + [sym__pipe_table_start] = ACTIONS(1566), + [sym__fenced_div_start] = ACTIONS(1566), + [sym_ref_id_specifier] = ACTIONS(1566), + [sym__display_math_state_track_marker] = ACTIONS(1566), + [sym__inline_math_state_track_marker] = ACTIONS(1566), + }, + [STATE(407)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_DOT] = ACTIONS(1634), + [anon_sym_SLASH] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_QMARK] = ACTIONS(1634), + [anon_sym_AT] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_BSLASH] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1634), + [anon_sym__] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1634), + [sym__word] = ACTIONS(1634), + [sym__soft_line_ending] = ACTIONS(1634), + [sym__block_close] = ACTIONS(1634), + [sym__block_quote_start] = ACTIONS(1634), + [sym__indented_chunk_start] = ACTIONS(1634), + [sym_atx_h1_marker] = ACTIONS(1634), + [sym_atx_h2_marker] = ACTIONS(1634), + [sym_atx_h3_marker] = ACTIONS(1634), + [sym_atx_h4_marker] = ACTIONS(1634), + [sym_atx_h5_marker] = ACTIONS(1634), + [sym_atx_h6_marker] = ACTIONS(1634), + [sym__thematic_break] = ACTIONS(1634), + [sym__list_marker_minus] = ACTIONS(1634), + [sym__list_marker_plus] = ACTIONS(1634), + [sym__list_marker_star] = ACTIONS(1634), + [sym__list_marker_parenthesis] = ACTIONS(1634), + [sym__list_marker_dot] = ACTIONS(1634), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_example] = ACTIONS(1634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1634), + [sym__fenced_code_block_start_backtick] = ACTIONS(1634), + [sym__fenced_code_block_start_tilde] = ACTIONS(1634), + [sym__blank_line_start] = ACTIONS(1634), + [sym_minus_metadata] = ACTIONS(1634), + [sym__pipe_table_start] = ACTIONS(1634), + [sym__fenced_div_start] = ACTIONS(1634), + [sym_ref_id_specifier] = ACTIONS(1634), + [sym__display_math_state_track_marker] = ACTIONS(1634), + [sym__inline_math_state_track_marker] = ACTIONS(1634), + }, + [STATE(408)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [sym__word] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_close] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_example] = ACTIONS(1636), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym_minus_metadata] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + [sym__fenced_div_start] = ACTIONS(1636), + [sym_ref_id_specifier] = ACTIONS(1636), + [sym__display_math_state_track_marker] = ACTIONS(1636), + [sym__inline_math_state_track_marker] = ACTIONS(1636), + }, + [STATE(409)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_PERCENT] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1518), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_AT] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_CARET] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1518), + [anon_sym_BQUOTE] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [sym__word] = ACTIONS(1518), + [sym__soft_line_ending] = ACTIONS(1518), + [sym__block_close] = ACTIONS(1518), + [sym__block_quote_start] = ACTIONS(1518), + [sym__indented_chunk_start] = ACTIONS(1518), + [sym_atx_h1_marker] = ACTIONS(1518), + [sym_atx_h2_marker] = ACTIONS(1518), + [sym_atx_h3_marker] = ACTIONS(1518), + [sym_atx_h4_marker] = ACTIONS(1518), + [sym_atx_h5_marker] = ACTIONS(1518), + [sym_atx_h6_marker] = ACTIONS(1518), + [sym__thematic_break] = ACTIONS(1518), + [sym__list_marker_minus] = ACTIONS(1518), + [sym__list_marker_plus] = ACTIONS(1518), + [sym__list_marker_star] = ACTIONS(1518), + [sym__list_marker_parenthesis] = ACTIONS(1518), + [sym__list_marker_dot] = ACTIONS(1518), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1518), + [sym__list_marker_example] = ACTIONS(1518), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1518), + [sym__fenced_code_block_start_backtick] = ACTIONS(1518), + [sym__fenced_code_block_start_tilde] = ACTIONS(1518), + [sym__blank_line_start] = ACTIONS(1518), + [sym_minus_metadata] = ACTIONS(1518), + [sym__pipe_table_start] = ACTIONS(1518), + [sym__fenced_div_start] = ACTIONS(1518), + [sym_ref_id_specifier] = ACTIONS(1518), + [sym__display_math_state_track_marker] = ACTIONS(1518), + [sym__inline_math_state_track_marker] = ACTIONS(1518), + }, + [STATE(410)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [sym__word] = ACTIONS(1522), + [sym__soft_line_ending] = ACTIONS(1522), + [sym__block_close] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1522), + [sym__indented_chunk_start] = ACTIONS(1522), + [sym_atx_h1_marker] = ACTIONS(1522), + [sym_atx_h2_marker] = ACTIONS(1522), + [sym_atx_h3_marker] = ACTIONS(1522), + [sym_atx_h4_marker] = ACTIONS(1522), + [sym_atx_h5_marker] = ACTIONS(1522), + [sym_atx_h6_marker] = ACTIONS(1522), + [sym__thematic_break] = ACTIONS(1522), + [sym__list_marker_minus] = ACTIONS(1522), + [sym__list_marker_plus] = ACTIONS(1522), + [sym__list_marker_star] = ACTIONS(1522), + [sym__list_marker_parenthesis] = ACTIONS(1522), + [sym__list_marker_dot] = ACTIONS(1522), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_example] = ACTIONS(1522), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1522), + [sym__fenced_code_block_start_backtick] = ACTIONS(1522), + [sym__fenced_code_block_start_tilde] = ACTIONS(1522), + [sym__blank_line_start] = ACTIONS(1522), + [sym_minus_metadata] = ACTIONS(1522), + [sym__pipe_table_start] = ACTIONS(1522), + [sym__fenced_div_start] = ACTIONS(1522), + [sym_ref_id_specifier] = ACTIONS(1522), + [sym__display_math_state_track_marker] = ACTIONS(1522), + [sym__inline_math_state_track_marker] = ACTIONS(1522), + }, + [STATE(411)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [anon_sym_RBRACK] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym__] = ACTIONS(1524), + [anon_sym_BQUOTE] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [sym__word] = ACTIONS(1524), + [sym__soft_line_ending] = ACTIONS(1524), + [sym__block_close] = ACTIONS(1524), + [sym__block_quote_start] = ACTIONS(1524), + [sym__indented_chunk_start] = ACTIONS(1524), + [sym_atx_h1_marker] = ACTIONS(1524), + [sym_atx_h2_marker] = ACTIONS(1524), + [sym_atx_h3_marker] = ACTIONS(1524), + [sym_atx_h4_marker] = ACTIONS(1524), + [sym_atx_h5_marker] = ACTIONS(1524), + [sym_atx_h6_marker] = ACTIONS(1524), + [sym__thematic_break] = ACTIONS(1524), + [sym__list_marker_minus] = ACTIONS(1524), + [sym__list_marker_plus] = ACTIONS(1524), + [sym__list_marker_star] = ACTIONS(1524), + [sym__list_marker_parenthesis] = ACTIONS(1524), + [sym__list_marker_dot] = ACTIONS(1524), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1524), + [sym__list_marker_example] = ACTIONS(1524), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1524), + [sym__fenced_code_block_start_backtick] = ACTIONS(1524), + [sym__fenced_code_block_start_tilde] = ACTIONS(1524), + [sym__blank_line_start] = ACTIONS(1524), + [sym_minus_metadata] = ACTIONS(1524), + [sym__pipe_table_start] = ACTIONS(1524), + [sym__fenced_div_start] = ACTIONS(1524), + [sym_ref_id_specifier] = ACTIONS(1524), + [sym__display_math_state_track_marker] = ACTIONS(1524), + [sym__inline_math_state_track_marker] = ACTIONS(1524), + }, + [STATE(412)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_close] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_example] = ACTIONS(1622), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym_minus_metadata] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + [sym__fenced_div_start] = ACTIONS(1622), + [sym_ref_id_specifier] = ACTIONS(1622), + [sym__display_math_state_track_marker] = ACTIONS(1622), + [sym__inline_math_state_track_marker] = ACTIONS(1622), + }, + [STATE(413)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [sym__word] = ACTIONS(1530), + [sym__soft_line_ending] = ACTIONS(1530), + [sym__block_close] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1530), + [sym__indented_chunk_start] = ACTIONS(1530), + [sym_atx_h1_marker] = ACTIONS(1530), + [sym_atx_h2_marker] = ACTIONS(1530), + [sym_atx_h3_marker] = ACTIONS(1530), + [sym_atx_h4_marker] = ACTIONS(1530), + [sym_atx_h5_marker] = ACTIONS(1530), + [sym_atx_h6_marker] = ACTIONS(1530), + [sym__thematic_break] = ACTIONS(1530), + [sym__list_marker_minus] = ACTIONS(1530), + [sym__list_marker_plus] = ACTIONS(1530), + [sym__list_marker_star] = ACTIONS(1530), + [sym__list_marker_parenthesis] = ACTIONS(1530), + [sym__list_marker_dot] = ACTIONS(1530), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_example] = ACTIONS(1530), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1530), + [sym__fenced_code_block_start_backtick] = ACTIONS(1530), + [sym__fenced_code_block_start_tilde] = ACTIONS(1530), + [sym__blank_line_start] = ACTIONS(1530), + [sym_minus_metadata] = ACTIONS(1530), + [sym__pipe_table_start] = ACTIONS(1530), + [sym__fenced_div_start] = ACTIONS(1530), + [sym_ref_id_specifier] = ACTIONS(1530), + [sym__display_math_state_track_marker] = ACTIONS(1530), + [sym__inline_math_state_track_marker] = ACTIONS(1530), + }, + [STATE(414)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [sym__word] = ACTIONS(1534), + [sym__soft_line_ending] = ACTIONS(1534), + [sym__block_close] = ACTIONS(1534), + [sym__block_quote_start] = ACTIONS(1534), + [sym__indented_chunk_start] = ACTIONS(1534), + [sym_atx_h1_marker] = ACTIONS(1534), + [sym_atx_h2_marker] = ACTIONS(1534), + [sym_atx_h3_marker] = ACTIONS(1534), + [sym_atx_h4_marker] = ACTIONS(1534), + [sym_atx_h5_marker] = ACTIONS(1534), + [sym_atx_h6_marker] = ACTIONS(1534), + [sym__thematic_break] = ACTIONS(1534), + [sym__list_marker_minus] = ACTIONS(1534), + [sym__list_marker_plus] = ACTIONS(1534), + [sym__list_marker_star] = ACTIONS(1534), + [sym__list_marker_parenthesis] = ACTIONS(1534), + [sym__list_marker_dot] = ACTIONS(1534), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_example] = ACTIONS(1534), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1534), + [sym__fenced_code_block_start_backtick] = ACTIONS(1534), + [sym__fenced_code_block_start_tilde] = ACTIONS(1534), + [sym__blank_line_start] = ACTIONS(1534), + [sym_minus_metadata] = ACTIONS(1534), + [sym__pipe_table_start] = ACTIONS(1534), + [sym__fenced_div_start] = ACTIONS(1534), + [sym_ref_id_specifier] = ACTIONS(1534), + [sym__display_math_state_track_marker] = ACTIONS(1534), + [sym__inline_math_state_track_marker] = ACTIONS(1534), + }, + [STATE(415)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_close] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_example] = ACTIONS(1538), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym_minus_metadata] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + [sym__fenced_div_start] = ACTIONS(1538), + [sym_ref_id_specifier] = ACTIONS(1538), + [sym__display_math_state_track_marker] = ACTIONS(1538), + [sym__inline_math_state_track_marker] = ACTIONS(1538), + }, + [STATE(416)] = { + [ts_builtin_sym_end] = ACTIONS(1638), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_DOLLAR] = ACTIONS(1638), + [anon_sym_PERCENT] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym__] = ACTIONS(1638), + [anon_sym_BQUOTE] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1638), + [sym__word] = ACTIONS(1638), + [sym__soft_line_ending] = ACTIONS(1638), + [sym__block_quote_start] = ACTIONS(1638), + [sym__indented_chunk_start] = ACTIONS(1638), + [sym_atx_h1_marker] = ACTIONS(1638), + [sym_atx_h2_marker] = ACTIONS(1638), + [sym_atx_h3_marker] = ACTIONS(1638), + [sym_atx_h4_marker] = ACTIONS(1638), + [sym_atx_h5_marker] = ACTIONS(1638), + [sym_atx_h6_marker] = ACTIONS(1638), + [sym__thematic_break] = ACTIONS(1638), + [sym__list_marker_minus] = ACTIONS(1638), + [sym__list_marker_plus] = ACTIONS(1638), + [sym__list_marker_star] = ACTIONS(1638), + [sym__list_marker_parenthesis] = ACTIONS(1638), + [sym__list_marker_dot] = ACTIONS(1638), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_example] = ACTIONS(1638), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1638), + [sym__fenced_code_block_start_backtick] = ACTIONS(1638), + [sym__fenced_code_block_start_tilde] = ACTIONS(1638), + [sym__blank_line_start] = ACTIONS(1638), + [sym_minus_metadata] = ACTIONS(1638), + [sym__pipe_table_start] = ACTIONS(1638), + [sym__fenced_div_start] = ACTIONS(1638), + [sym_ref_id_specifier] = ACTIONS(1638), + [sym__display_math_state_track_marker] = ACTIONS(1638), + [sym__inline_math_state_track_marker] = ACTIONS(1638), + }, + [STATE(417)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [sym__word] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_close] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_example] = ACTIONS(1542), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym_minus_metadata] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + [sym__fenced_div_start] = ACTIONS(1542), + [sym_ref_id_specifier] = ACTIONS(1542), + [sym__display_math_state_track_marker] = ACTIONS(1542), + [sym__inline_math_state_track_marker] = ACTIONS(1542), + }, + [STATE(418)] = { + [ts_builtin_sym_end] = ACTIONS(1640), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(419)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [sym__word] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_close] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_example] = ACTIONS(1560), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym_minus_metadata] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + [sym__fenced_div_start] = ACTIONS(1560), + [sym_ref_id_specifier] = ACTIONS(1560), + [sym__display_math_state_track_marker] = ACTIONS(1560), + [sym__inline_math_state_track_marker] = ACTIONS(1560), + }, + [STATE(420)] = { + [ts_builtin_sym_end] = ACTIONS(1642), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1642), + [anon_sym_PERCENT] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1642), + [anon_sym_SLASH] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1642), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_CARET] = ACTIONS(1642), + [anon_sym__] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_TILDE] = ACTIONS(1642), + [sym__word] = ACTIONS(1642), + [sym__soft_line_ending] = ACTIONS(1642), + [sym__block_quote_start] = ACTIONS(1642), + [sym__indented_chunk_start] = ACTIONS(1642), + [sym_atx_h1_marker] = ACTIONS(1642), + [sym_atx_h2_marker] = ACTIONS(1642), + [sym_atx_h3_marker] = ACTIONS(1642), + [sym_atx_h4_marker] = ACTIONS(1642), + [sym_atx_h5_marker] = ACTIONS(1642), + [sym_atx_h6_marker] = ACTIONS(1642), + [sym__thematic_break] = ACTIONS(1642), + [sym__list_marker_minus] = ACTIONS(1642), + [sym__list_marker_plus] = ACTIONS(1642), + [sym__list_marker_star] = ACTIONS(1642), + [sym__list_marker_parenthesis] = ACTIONS(1642), + [sym__list_marker_dot] = ACTIONS(1642), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_example] = ACTIONS(1642), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1642), + [sym__fenced_code_block_start_backtick] = ACTIONS(1642), + [sym__fenced_code_block_start_tilde] = ACTIONS(1642), + [sym__blank_line_start] = ACTIONS(1642), + [sym_minus_metadata] = ACTIONS(1642), + [sym__pipe_table_start] = ACTIONS(1642), + [sym__fenced_div_start] = ACTIONS(1642), + [sym_ref_id_specifier] = ACTIONS(1642), + [sym__display_math_state_track_marker] = ACTIONS(1642), + [sym__inline_math_state_track_marker] = ACTIONS(1642), + }, + [STATE(421)] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PERCENT] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_PLUS] = ACTIONS(1644), + [anon_sym_COMMA] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_DOT] = ACTIONS(1644), + [anon_sym_SLASH] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_BSLASH] = ACTIONS(1644), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_CARET] = ACTIONS(1644), + [anon_sym__] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [sym__word] = ACTIONS(1644), + [sym__soft_line_ending] = ACTIONS(1644), + [sym__block_quote_start] = ACTIONS(1644), + [sym__indented_chunk_start] = ACTIONS(1644), + [sym_atx_h1_marker] = ACTIONS(1644), + [sym_atx_h2_marker] = ACTIONS(1644), + [sym_atx_h3_marker] = ACTIONS(1644), + [sym_atx_h4_marker] = ACTIONS(1644), + [sym_atx_h5_marker] = ACTIONS(1644), + [sym_atx_h6_marker] = ACTIONS(1644), + [sym__thematic_break] = ACTIONS(1644), + [sym__list_marker_minus] = ACTIONS(1644), + [sym__list_marker_plus] = ACTIONS(1644), + [sym__list_marker_star] = ACTIONS(1644), + [sym__list_marker_parenthesis] = ACTIONS(1644), + [sym__list_marker_dot] = ACTIONS(1644), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_example] = ACTIONS(1644), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1644), + [sym__fenced_code_block_start_backtick] = ACTIONS(1644), + [sym__fenced_code_block_start_tilde] = ACTIONS(1644), + [sym__blank_line_start] = ACTIONS(1644), + [sym_minus_metadata] = ACTIONS(1644), + [sym__pipe_table_start] = ACTIONS(1644), + [sym__fenced_div_start] = ACTIONS(1644), + [sym_ref_id_specifier] = ACTIONS(1644), + [sym__display_math_state_track_marker] = ACTIONS(1644), + [sym__inline_math_state_track_marker] = ACTIONS(1644), + }, + [STATE(422)] = { + [ts_builtin_sym_end] = ACTIONS(1646), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_BSLASH] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym__] = ACTIONS(1646), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1646), + [sym__word] = ACTIONS(1646), + [sym__soft_line_ending] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1646), + [sym__indented_chunk_start] = ACTIONS(1646), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1646), + [sym__thematic_break] = ACTIONS(1646), + [sym__list_marker_minus] = ACTIONS(1646), + [sym__list_marker_plus] = ACTIONS(1646), + [sym__list_marker_star] = ACTIONS(1646), + [sym__list_marker_parenthesis] = ACTIONS(1646), + [sym__list_marker_dot] = ACTIONS(1646), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_example] = ACTIONS(1646), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1646), + [sym__fenced_code_block_start_backtick] = ACTIONS(1646), + [sym__fenced_code_block_start_tilde] = ACTIONS(1646), + [sym__blank_line_start] = ACTIONS(1646), + [sym_minus_metadata] = ACTIONS(1646), + [sym__pipe_table_start] = ACTIONS(1646), + [sym__fenced_div_start] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1646), + [sym__display_math_state_track_marker] = ACTIONS(1646), + [sym__inline_math_state_track_marker] = ACTIONS(1646), + }, + [STATE(423)] = { + [ts_builtin_sym_end] = ACTIONS(1648), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1648), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_AT] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_BSLASH] = ACTIONS(1648), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym__] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [sym__word] = ACTIONS(1648), + [sym__soft_line_ending] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1648), + [sym__indented_chunk_start] = ACTIONS(1648), + [sym_atx_h1_marker] = ACTIONS(1648), + [sym_atx_h2_marker] = ACTIONS(1648), + [sym_atx_h3_marker] = ACTIONS(1648), + [sym_atx_h4_marker] = ACTIONS(1648), + [sym_atx_h5_marker] = ACTIONS(1648), + [sym_atx_h6_marker] = ACTIONS(1648), + [sym__thematic_break] = ACTIONS(1648), + [sym__list_marker_minus] = ACTIONS(1648), + [sym__list_marker_plus] = ACTIONS(1648), + [sym__list_marker_star] = ACTIONS(1648), + [sym__list_marker_parenthesis] = ACTIONS(1648), + [sym__list_marker_dot] = ACTIONS(1648), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_example] = ACTIONS(1648), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1648), + [sym__fenced_code_block_start_backtick] = ACTIONS(1648), + [sym__fenced_code_block_start_tilde] = ACTIONS(1648), + [sym__blank_line_start] = ACTIONS(1648), + [sym_minus_metadata] = ACTIONS(1648), + [sym__pipe_table_start] = ACTIONS(1648), + [sym__fenced_div_start] = ACTIONS(1648), + [sym_ref_id_specifier] = ACTIONS(1648), + [sym__display_math_state_track_marker] = ACTIONS(1648), + [sym__inline_math_state_track_marker] = ACTIONS(1648), + }, + [STATE(424)] = { + [ts_builtin_sym_end] = ACTIONS(1650), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1650), + [anon_sym_SLASH] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_AT] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_BSLASH] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1650), + [anon_sym__] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1650), + [sym__word] = ACTIONS(1650), + [sym__soft_line_ending] = ACTIONS(1650), + [sym__block_quote_start] = ACTIONS(1650), + [sym__indented_chunk_start] = ACTIONS(1650), + [sym_atx_h1_marker] = ACTIONS(1650), + [sym_atx_h2_marker] = ACTIONS(1650), + [sym_atx_h3_marker] = ACTIONS(1650), + [sym_atx_h4_marker] = ACTIONS(1650), + [sym_atx_h5_marker] = ACTIONS(1650), + [sym_atx_h6_marker] = ACTIONS(1650), + [sym__thematic_break] = ACTIONS(1650), + [sym__list_marker_minus] = ACTIONS(1650), + [sym__list_marker_plus] = ACTIONS(1650), + [sym__list_marker_star] = ACTIONS(1650), + [sym__list_marker_parenthesis] = ACTIONS(1650), + [sym__list_marker_dot] = ACTIONS(1650), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_example] = ACTIONS(1650), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1650), + [sym__fenced_code_block_start_backtick] = ACTIONS(1650), + [sym__fenced_code_block_start_tilde] = ACTIONS(1650), + [sym__blank_line_start] = ACTIONS(1650), + [sym_minus_metadata] = ACTIONS(1650), + [sym__pipe_table_start] = ACTIONS(1650), + [sym__fenced_div_start] = ACTIONS(1650), + [sym_ref_id_specifier] = ACTIONS(1650), + [sym__display_math_state_track_marker] = ACTIONS(1650), + [sym__inline_math_state_track_marker] = ACTIONS(1650), + }, + [STATE(425)] = { + [ts_builtin_sym_end] = ACTIONS(1652), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_DOLLAR] = ACTIONS(1652), + [anon_sym_PERCENT] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_DOT] = ACTIONS(1652), + [anon_sym_SLASH] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_GT] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1652), + [anon_sym_AT] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_BSLASH] = ACTIONS(1652), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym__] = ACTIONS(1652), + [anon_sym_BQUOTE] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_TILDE] = ACTIONS(1652), + [sym__word] = ACTIONS(1652), + [sym__soft_line_ending] = ACTIONS(1652), + [sym__block_quote_start] = ACTIONS(1652), + [sym__indented_chunk_start] = ACTIONS(1652), + [sym_atx_h1_marker] = ACTIONS(1652), + [sym_atx_h2_marker] = ACTIONS(1652), + [sym_atx_h3_marker] = ACTIONS(1652), + [sym_atx_h4_marker] = ACTIONS(1652), + [sym_atx_h5_marker] = ACTIONS(1652), + [sym_atx_h6_marker] = ACTIONS(1652), + [sym__thematic_break] = ACTIONS(1652), + [sym__list_marker_minus] = ACTIONS(1652), + [sym__list_marker_plus] = ACTIONS(1652), + [sym__list_marker_star] = ACTIONS(1652), + [sym__list_marker_parenthesis] = ACTIONS(1652), + [sym__list_marker_dot] = ACTIONS(1652), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_example] = ACTIONS(1652), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1652), + [sym__fenced_code_block_start_backtick] = ACTIONS(1652), + [sym__fenced_code_block_start_tilde] = ACTIONS(1652), + [sym__blank_line_start] = ACTIONS(1652), + [sym_minus_metadata] = ACTIONS(1652), + [sym__pipe_table_start] = ACTIONS(1652), + [sym__fenced_div_start] = ACTIONS(1652), + [sym_ref_id_specifier] = ACTIONS(1652), + [sym__display_math_state_track_marker] = ACTIONS(1652), + [sym__inline_math_state_track_marker] = ACTIONS(1652), + }, + [STATE(426)] = { + [ts_builtin_sym_end] = ACTIONS(1654), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1654), + [anon_sym_DOLLAR] = ACTIONS(1654), + [anon_sym_PERCENT] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1654), + [anon_sym_RPAREN] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_DOT] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_GT] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_AT] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_BSLASH] = ACTIONS(1654), + [anon_sym_RBRACK] = ACTIONS(1654), + [anon_sym_CARET] = ACTIONS(1654), + [anon_sym__] = ACTIONS(1654), + [anon_sym_BQUOTE] = ACTIONS(1654), + [anon_sym_PIPE] = ACTIONS(1654), + [anon_sym_TILDE] = ACTIONS(1654), + [sym__word] = ACTIONS(1654), + [sym__soft_line_ending] = ACTIONS(1654), + [sym__block_quote_start] = ACTIONS(1654), + [sym__indented_chunk_start] = ACTIONS(1654), + [sym_atx_h1_marker] = ACTIONS(1654), + [sym_atx_h2_marker] = ACTIONS(1654), + [sym_atx_h3_marker] = ACTIONS(1654), + [sym_atx_h4_marker] = ACTIONS(1654), + [sym_atx_h5_marker] = ACTIONS(1654), + [sym_atx_h6_marker] = ACTIONS(1654), + [sym__thematic_break] = ACTIONS(1654), + [sym__list_marker_minus] = ACTIONS(1654), + [sym__list_marker_plus] = ACTIONS(1654), + [sym__list_marker_star] = ACTIONS(1654), + [sym__list_marker_parenthesis] = ACTIONS(1654), + [sym__list_marker_dot] = ACTIONS(1654), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_example] = ACTIONS(1654), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1654), + [sym__fenced_code_block_start_backtick] = ACTIONS(1654), + [sym__fenced_code_block_start_tilde] = ACTIONS(1654), + [sym__blank_line_start] = ACTIONS(1654), + [sym_minus_metadata] = ACTIONS(1654), + [sym__pipe_table_start] = ACTIONS(1654), + [sym__fenced_div_start] = ACTIONS(1654), + [sym_ref_id_specifier] = ACTIONS(1654), + [sym__display_math_state_track_marker] = ACTIONS(1654), + [sym__inline_math_state_track_marker] = ACTIONS(1654), + }, + [STATE(427)] = { + [ts_builtin_sym_end] = ACTIONS(1662), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym__] = ACTIONS(1662), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [sym__word] = ACTIONS(1662), + [sym__soft_line_ending] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1662), + [sym__indented_chunk_start] = ACTIONS(1662), + [sym_atx_h1_marker] = ACTIONS(1662), + [sym_atx_h2_marker] = ACTIONS(1662), + [sym_atx_h3_marker] = ACTIONS(1662), + [sym_atx_h4_marker] = ACTIONS(1662), + [sym_atx_h5_marker] = ACTIONS(1662), + [sym_atx_h6_marker] = ACTIONS(1662), + [sym__thematic_break] = ACTIONS(1662), + [sym__list_marker_minus] = ACTIONS(1662), + [sym__list_marker_plus] = ACTIONS(1662), + [sym__list_marker_star] = ACTIONS(1662), + [sym__list_marker_parenthesis] = ACTIONS(1662), + [sym__list_marker_dot] = ACTIONS(1662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_example] = ACTIONS(1662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1662), + [sym__fenced_code_block_start_backtick] = ACTIONS(1662), + [sym__fenced_code_block_start_tilde] = ACTIONS(1662), + [sym__blank_line_start] = ACTIONS(1662), + [sym_minus_metadata] = ACTIONS(1662), + [sym__pipe_table_start] = ACTIONS(1662), + [sym__fenced_div_start] = ACTIONS(1662), + [sym_ref_id_specifier] = ACTIONS(1662), + [sym__display_math_state_track_marker] = ACTIONS(1662), + [sym__inline_math_state_track_marker] = ACTIONS(1662), + }, + [STATE(428)] = { + [ts_builtin_sym_end] = ACTIONS(1666), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_SLASH] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_BSLASH] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_CARET] = ACTIONS(1666), + [anon_sym__] = ACTIONS(1666), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1666), + [sym__word] = ACTIONS(1666), + [sym__soft_line_ending] = ACTIONS(1666), + [sym__block_quote_start] = ACTIONS(1666), + [sym__indented_chunk_start] = ACTIONS(1666), + [sym_atx_h1_marker] = ACTIONS(1666), + [sym_atx_h2_marker] = ACTIONS(1666), + [sym_atx_h3_marker] = ACTIONS(1666), + [sym_atx_h4_marker] = ACTIONS(1666), + [sym_atx_h5_marker] = ACTIONS(1666), + [sym_atx_h6_marker] = ACTIONS(1666), + [sym__thematic_break] = ACTIONS(1666), + [sym__list_marker_minus] = ACTIONS(1666), + [sym__list_marker_plus] = ACTIONS(1666), + [sym__list_marker_star] = ACTIONS(1666), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1666), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_example] = ACTIONS(1666), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1666), + [sym__fenced_code_block_start_backtick] = ACTIONS(1666), + [sym__fenced_code_block_start_tilde] = ACTIONS(1666), + [sym__blank_line_start] = ACTIONS(1666), + [sym_minus_metadata] = ACTIONS(1666), + [sym__pipe_table_start] = ACTIONS(1666), + [sym__fenced_div_start] = ACTIONS(1666), + [sym_ref_id_specifier] = ACTIONS(1666), + [sym__display_math_state_track_marker] = ACTIONS(1666), + [sym__inline_math_state_track_marker] = ACTIONS(1666), + }, + [STATE(429)] = { + [ts_builtin_sym_end] = ACTIONS(1672), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [sym__word] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym_minus_metadata] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + [sym__fenced_div_start] = ACTIONS(1672), + [sym_ref_id_specifier] = ACTIONS(1672), + [sym__display_math_state_track_marker] = ACTIONS(1672), + [sym__inline_math_state_track_marker] = ACTIONS(1672), + }, + [STATE(430)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym__block_close] = ACTIONS(1454), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), + }, + [STATE(431)] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [sym__word] = ACTIONS(1674), + [sym__soft_line_ending] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_example] = ACTIONS(1674), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym_minus_metadata] = ACTIONS(1674), + [sym__pipe_table_start] = ACTIONS(1674), + [sym__fenced_div_start] = ACTIONS(1674), + [sym_ref_id_specifier] = ACTIONS(1674), + [sym__display_math_state_track_marker] = ACTIONS(1674), + [sym__inline_math_state_track_marker] = ACTIONS(1674), + }, + [STATE(432)] = { + [ts_builtin_sym_end] = ACTIONS(1436), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [sym__word] = ACTIONS(1436), + [sym__soft_line_ending] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(1436), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_example] = ACTIONS(1436), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym_minus_metadata] = ACTIONS(1436), + [sym__pipe_table_start] = ACTIONS(1436), + [sym__fenced_div_start] = ACTIONS(1436), + [sym_ref_id_specifier] = ACTIONS(1436), + [sym__display_math_state_track_marker] = ACTIONS(1436), + [sym__inline_math_state_track_marker] = ACTIONS(1436), + }, + [STATE(433)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym__block_close] = ACTIONS(1458), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), + }, + [STATE(434)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_DOLLAR] = ACTIONS(1638), + [anon_sym_PERCENT] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym__] = ACTIONS(1638), + [anon_sym_BQUOTE] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1638), + [sym__word] = ACTIONS(1638), + [sym__soft_line_ending] = ACTIONS(1638), + [sym__block_close] = ACTIONS(1638), + [sym__block_quote_start] = ACTIONS(1638), + [sym__indented_chunk_start] = ACTIONS(1638), + [sym_atx_h1_marker] = ACTIONS(1638), + [sym_atx_h2_marker] = ACTIONS(1638), + [sym_atx_h3_marker] = ACTIONS(1638), + [sym_atx_h4_marker] = ACTIONS(1638), + [sym_atx_h5_marker] = ACTIONS(1638), + [sym_atx_h6_marker] = ACTIONS(1638), + [sym__thematic_break] = ACTIONS(1638), + [sym__list_marker_minus] = ACTIONS(1638), + [sym__list_marker_plus] = ACTIONS(1638), + [sym__list_marker_star] = ACTIONS(1638), + [sym__list_marker_parenthesis] = ACTIONS(1638), + [sym__list_marker_dot] = ACTIONS(1638), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_example] = ACTIONS(1638), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1638), + [sym__fenced_code_block_start_backtick] = ACTIONS(1638), + [sym__fenced_code_block_start_tilde] = ACTIONS(1638), + [sym__blank_line_start] = ACTIONS(1638), + [sym_minus_metadata] = ACTIONS(1638), + [sym__pipe_table_start] = ACTIONS(1638), + [sym__fenced_div_start] = ACTIONS(1638), + [sym_ref_id_specifier] = ACTIONS(1638), + [sym__display_math_state_track_marker] = ACTIONS(1638), + [sym__inline_math_state_track_marker] = ACTIONS(1638), + }, + [STATE(435)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_close] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(436)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1642), + [anon_sym_PERCENT] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1642), + [anon_sym_SLASH] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1642), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_CARET] = ACTIONS(1642), + [anon_sym__] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_TILDE] = ACTIONS(1642), + [sym__word] = ACTIONS(1642), + [sym__soft_line_ending] = ACTIONS(1642), + [sym__block_close] = ACTIONS(1642), + [sym__block_quote_start] = ACTIONS(1642), + [sym__indented_chunk_start] = ACTIONS(1642), + [sym_atx_h1_marker] = ACTIONS(1642), + [sym_atx_h2_marker] = ACTIONS(1642), + [sym_atx_h3_marker] = ACTIONS(1642), + [sym_atx_h4_marker] = ACTIONS(1642), + [sym_atx_h5_marker] = ACTIONS(1642), + [sym_atx_h6_marker] = ACTIONS(1642), + [sym__thematic_break] = ACTIONS(1642), + [sym__list_marker_minus] = ACTIONS(1642), + [sym__list_marker_plus] = ACTIONS(1642), + [sym__list_marker_star] = ACTIONS(1642), + [sym__list_marker_parenthesis] = ACTIONS(1642), + [sym__list_marker_dot] = ACTIONS(1642), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_example] = ACTIONS(1642), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1642), + [sym__fenced_code_block_start_backtick] = ACTIONS(1642), + [sym__fenced_code_block_start_tilde] = ACTIONS(1642), + [sym__blank_line_start] = ACTIONS(1642), + [sym_minus_metadata] = ACTIONS(1642), + [sym__pipe_table_start] = ACTIONS(1642), + [sym__fenced_div_start] = ACTIONS(1642), + [sym_ref_id_specifier] = ACTIONS(1642), + [sym__display_math_state_track_marker] = ACTIONS(1642), + [sym__inline_math_state_track_marker] = ACTIONS(1642), + }, + [STATE(437)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_EQ] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PERCENT] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_PLUS] = ACTIONS(1644), + [anon_sym_COMMA] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_DOT] = ACTIONS(1644), + [anon_sym_SLASH] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_GT] = ACTIONS(1644), + [anon_sym_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_BSLASH] = ACTIONS(1644), + [anon_sym_RBRACK] = ACTIONS(1644), + [anon_sym_CARET] = ACTIONS(1644), + [anon_sym__] = ACTIONS(1644), + [anon_sym_BQUOTE] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [sym__word] = ACTIONS(1644), + [sym__soft_line_ending] = ACTIONS(1644), + [sym__block_close] = ACTIONS(1644), + [sym__block_quote_start] = ACTIONS(1644), + [sym__indented_chunk_start] = ACTIONS(1644), + [sym_atx_h1_marker] = ACTIONS(1644), + [sym_atx_h2_marker] = ACTIONS(1644), + [sym_atx_h3_marker] = ACTIONS(1644), + [sym_atx_h4_marker] = ACTIONS(1644), + [sym_atx_h5_marker] = ACTIONS(1644), + [sym_atx_h6_marker] = ACTIONS(1644), + [sym__thematic_break] = ACTIONS(1644), + [sym__list_marker_minus] = ACTIONS(1644), + [sym__list_marker_plus] = ACTIONS(1644), + [sym__list_marker_star] = ACTIONS(1644), + [sym__list_marker_parenthesis] = ACTIONS(1644), + [sym__list_marker_dot] = ACTIONS(1644), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1644), + [sym__list_marker_example] = ACTIONS(1644), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1644), + [sym__fenced_code_block_start_backtick] = ACTIONS(1644), + [sym__fenced_code_block_start_tilde] = ACTIONS(1644), + [sym__blank_line_start] = ACTIONS(1644), + [sym_minus_metadata] = ACTIONS(1644), + [sym__pipe_table_start] = ACTIONS(1644), + [sym__fenced_div_start] = ACTIONS(1644), + [sym_ref_id_specifier] = ACTIONS(1644), + [sym__display_math_state_track_marker] = ACTIONS(1644), + [sym__inline_math_state_track_marker] = ACTIONS(1644), + }, + [STATE(438)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_BSLASH] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym__] = ACTIONS(1646), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1646), + [sym__word] = ACTIONS(1646), + [sym__soft_line_ending] = ACTIONS(1646), + [sym__block_close] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1646), + [sym__indented_chunk_start] = ACTIONS(1646), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1646), + [sym__thematic_break] = ACTIONS(1646), + [sym__list_marker_minus] = ACTIONS(1646), + [sym__list_marker_plus] = ACTIONS(1646), + [sym__list_marker_star] = ACTIONS(1646), + [sym__list_marker_parenthesis] = ACTIONS(1646), + [sym__list_marker_dot] = ACTIONS(1646), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_example] = ACTIONS(1646), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1646), + [sym__fenced_code_block_start_backtick] = ACTIONS(1646), + [sym__fenced_code_block_start_tilde] = ACTIONS(1646), + [sym__blank_line_start] = ACTIONS(1646), + [sym_minus_metadata] = ACTIONS(1646), + [sym__pipe_table_start] = ACTIONS(1646), + [sym__fenced_div_start] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1646), + [sym__display_math_state_track_marker] = ACTIONS(1646), + [sym__inline_math_state_track_marker] = ACTIONS(1646), + }, + [STATE(439)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1648), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1648), + [anon_sym_AT] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_BSLASH] = ACTIONS(1648), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym__] = ACTIONS(1648), + [anon_sym_BQUOTE] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1648), + [sym__word] = ACTIONS(1648), + [sym__soft_line_ending] = ACTIONS(1648), + [sym__block_close] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1648), + [sym__indented_chunk_start] = ACTIONS(1648), + [sym_atx_h1_marker] = ACTIONS(1648), + [sym_atx_h2_marker] = ACTIONS(1648), + [sym_atx_h3_marker] = ACTIONS(1648), + [sym_atx_h4_marker] = ACTIONS(1648), + [sym_atx_h5_marker] = ACTIONS(1648), + [sym_atx_h6_marker] = ACTIONS(1648), + [sym__thematic_break] = ACTIONS(1648), + [sym__list_marker_minus] = ACTIONS(1648), + [sym__list_marker_plus] = ACTIONS(1648), + [sym__list_marker_star] = ACTIONS(1648), + [sym__list_marker_parenthesis] = ACTIONS(1648), + [sym__list_marker_dot] = ACTIONS(1648), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1648), + [sym__list_marker_example] = ACTIONS(1648), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1648), + [sym__fenced_code_block_start_backtick] = ACTIONS(1648), + [sym__fenced_code_block_start_tilde] = ACTIONS(1648), + [sym__blank_line_start] = ACTIONS(1648), + [sym_minus_metadata] = ACTIONS(1648), + [sym__pipe_table_start] = ACTIONS(1648), + [sym__fenced_div_start] = ACTIONS(1648), + [sym_ref_id_specifier] = ACTIONS(1648), + [sym__display_math_state_track_marker] = ACTIONS(1648), + [sym__inline_math_state_track_marker] = ACTIONS(1648), + }, + [STATE(440)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1650), + [anon_sym_SLASH] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_AT] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_BSLASH] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1650), + [anon_sym__] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1650), + [sym__word] = ACTIONS(1650), + [sym__soft_line_ending] = ACTIONS(1650), + [sym__block_close] = ACTIONS(1650), + [sym__block_quote_start] = ACTIONS(1650), + [sym__indented_chunk_start] = ACTIONS(1650), + [sym_atx_h1_marker] = ACTIONS(1650), + [sym_atx_h2_marker] = ACTIONS(1650), + [sym_atx_h3_marker] = ACTIONS(1650), + [sym_atx_h4_marker] = ACTIONS(1650), + [sym_atx_h5_marker] = ACTIONS(1650), + [sym_atx_h6_marker] = ACTIONS(1650), + [sym__thematic_break] = ACTIONS(1650), + [sym__list_marker_minus] = ACTIONS(1650), + [sym__list_marker_plus] = ACTIONS(1650), + [sym__list_marker_star] = ACTIONS(1650), + [sym__list_marker_parenthesis] = ACTIONS(1650), + [sym__list_marker_dot] = ACTIONS(1650), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_example] = ACTIONS(1650), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1650), + [sym__fenced_code_block_start_backtick] = ACTIONS(1650), + [sym__fenced_code_block_start_tilde] = ACTIONS(1650), + [sym__blank_line_start] = ACTIONS(1650), + [sym_minus_metadata] = ACTIONS(1650), + [sym__pipe_table_start] = ACTIONS(1650), + [sym__fenced_div_start] = ACTIONS(1650), + [sym_ref_id_specifier] = ACTIONS(1650), + [sym__display_math_state_track_marker] = ACTIONS(1650), + [sym__inline_math_state_track_marker] = ACTIONS(1650), + }, + [STATE(441)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_DQUOTE] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_DOLLAR] = ACTIONS(1652), + [anon_sym_PERCENT] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_RPAREN] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_PLUS] = ACTIONS(1652), + [anon_sym_COMMA] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_DOT] = ACTIONS(1652), + [anon_sym_SLASH] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_GT] = ACTIONS(1652), + [anon_sym_QMARK] = ACTIONS(1652), + [anon_sym_AT] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_BSLASH] = ACTIONS(1652), + [anon_sym_RBRACK] = ACTIONS(1652), + [anon_sym_CARET] = ACTIONS(1652), + [anon_sym__] = ACTIONS(1652), + [anon_sym_BQUOTE] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_TILDE] = ACTIONS(1652), + [sym__word] = ACTIONS(1652), + [sym__soft_line_ending] = ACTIONS(1652), + [sym__block_close] = ACTIONS(1652), + [sym__block_quote_start] = ACTIONS(1652), + [sym__indented_chunk_start] = ACTIONS(1652), + [sym_atx_h1_marker] = ACTIONS(1652), + [sym_atx_h2_marker] = ACTIONS(1652), + [sym_atx_h3_marker] = ACTIONS(1652), + [sym_atx_h4_marker] = ACTIONS(1652), + [sym_atx_h5_marker] = ACTIONS(1652), + [sym_atx_h6_marker] = ACTIONS(1652), + [sym__thematic_break] = ACTIONS(1652), + [sym__list_marker_minus] = ACTIONS(1652), + [sym__list_marker_plus] = ACTIONS(1652), + [sym__list_marker_star] = ACTIONS(1652), + [sym__list_marker_parenthesis] = ACTIONS(1652), + [sym__list_marker_dot] = ACTIONS(1652), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1652), + [sym__list_marker_example] = ACTIONS(1652), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1652), + [sym__fenced_code_block_start_backtick] = ACTIONS(1652), + [sym__fenced_code_block_start_tilde] = ACTIONS(1652), + [sym__blank_line_start] = ACTIONS(1652), + [sym_minus_metadata] = ACTIONS(1652), + [sym__pipe_table_start] = ACTIONS(1652), + [sym__fenced_div_start] = ACTIONS(1652), + [sym_ref_id_specifier] = ACTIONS(1652), + [sym__display_math_state_track_marker] = ACTIONS(1652), + [sym__inline_math_state_track_marker] = ACTIONS(1652), + }, + [STATE(442)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1654), + [anon_sym_EQ] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1654), + [anon_sym_DQUOTE] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1654), + [anon_sym_DOLLAR] = ACTIONS(1654), + [anon_sym_PERCENT] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1654), + [anon_sym_RPAREN] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_COMMA] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_DOT] = ACTIONS(1654), + [anon_sym_SLASH] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_GT] = ACTIONS(1654), + [anon_sym_QMARK] = ACTIONS(1654), + [anon_sym_AT] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_BSLASH] = ACTIONS(1654), + [anon_sym_RBRACK] = ACTIONS(1654), + [anon_sym_CARET] = ACTIONS(1654), + [anon_sym__] = ACTIONS(1654), + [anon_sym_BQUOTE] = ACTIONS(1654), + [anon_sym_PIPE] = ACTIONS(1654), + [anon_sym_TILDE] = ACTIONS(1654), + [sym__word] = ACTIONS(1654), + [sym__soft_line_ending] = ACTIONS(1654), + [sym__block_close] = ACTIONS(1654), + [sym__block_quote_start] = ACTIONS(1654), + [sym__indented_chunk_start] = ACTIONS(1654), + [sym_atx_h1_marker] = ACTIONS(1654), + [sym_atx_h2_marker] = ACTIONS(1654), + [sym_atx_h3_marker] = ACTIONS(1654), + [sym_atx_h4_marker] = ACTIONS(1654), + [sym_atx_h5_marker] = ACTIONS(1654), + [sym_atx_h6_marker] = ACTIONS(1654), + [sym__thematic_break] = ACTIONS(1654), + [sym__list_marker_minus] = ACTIONS(1654), + [sym__list_marker_plus] = ACTIONS(1654), + [sym__list_marker_star] = ACTIONS(1654), + [sym__list_marker_parenthesis] = ACTIONS(1654), + [sym__list_marker_dot] = ACTIONS(1654), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1654), + [sym__list_marker_example] = ACTIONS(1654), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1654), + [sym__fenced_code_block_start_backtick] = ACTIONS(1654), + [sym__fenced_code_block_start_tilde] = ACTIONS(1654), + [sym__blank_line_start] = ACTIONS(1654), + [sym_minus_metadata] = ACTIONS(1654), + [sym__pipe_table_start] = ACTIONS(1654), + [sym__fenced_div_start] = ACTIONS(1654), + [sym_ref_id_specifier] = ACTIONS(1654), + [sym__display_math_state_track_marker] = ACTIONS(1654), + [sym__inline_math_state_track_marker] = ACTIONS(1654), + }, + [STATE(443)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_RBRACK] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym__] = ACTIONS(1432), + [anon_sym_BQUOTE] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [sym__word] = ACTIONS(1432), + [sym__soft_line_ending] = ACTIONS(1432), + [sym__block_close] = ACTIONS(1432), + [sym__block_quote_start] = ACTIONS(1432), + [sym__indented_chunk_start] = ACTIONS(1432), + [sym_atx_h1_marker] = ACTIONS(1432), + [sym_atx_h2_marker] = ACTIONS(1432), + [sym_atx_h3_marker] = ACTIONS(1432), + [sym_atx_h4_marker] = ACTIONS(1432), + [sym_atx_h5_marker] = ACTIONS(1432), + [sym_atx_h6_marker] = ACTIONS(1432), + [sym__thematic_break] = ACTIONS(1432), + [sym__list_marker_minus] = ACTIONS(1432), + [sym__list_marker_plus] = ACTIONS(1432), + [sym__list_marker_star] = ACTIONS(1432), + [sym__list_marker_parenthesis] = ACTIONS(1432), + [sym__list_marker_dot] = ACTIONS(1432), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), + [sym__list_marker_example] = ACTIONS(1432), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1432), + [sym__fenced_code_block_start_backtick] = ACTIONS(1432), + [sym__fenced_code_block_start_tilde] = ACTIONS(1432), + [sym__blank_line_start] = ACTIONS(1432), + [sym_minus_metadata] = ACTIONS(1432), + [sym__pipe_table_start] = ACTIONS(1432), + [sym__fenced_div_start] = ACTIONS(1432), + [sym_ref_id_specifier] = ACTIONS(1432), + [sym__display_math_state_track_marker] = ACTIONS(1432), + [sym__inline_math_state_track_marker] = ACTIONS(1432), + }, + [STATE(444)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym__] = ACTIONS(1662), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [sym__word] = ACTIONS(1662), + [sym__soft_line_ending] = ACTIONS(1662), + [sym__block_close] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1662), + [sym__indented_chunk_start] = ACTIONS(1662), + [sym_atx_h1_marker] = ACTIONS(1662), + [sym_atx_h2_marker] = ACTIONS(1662), + [sym_atx_h3_marker] = ACTIONS(1662), + [sym_atx_h4_marker] = ACTIONS(1662), + [sym_atx_h5_marker] = ACTIONS(1662), + [sym_atx_h6_marker] = ACTIONS(1662), + [sym__thematic_break] = ACTIONS(1662), + [sym__list_marker_minus] = ACTIONS(1662), + [sym__list_marker_plus] = ACTIONS(1662), + [sym__list_marker_star] = ACTIONS(1662), + [sym__list_marker_parenthesis] = ACTIONS(1662), + [sym__list_marker_dot] = ACTIONS(1662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_example] = ACTIONS(1662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1662), + [sym__fenced_code_block_start_backtick] = ACTIONS(1662), + [sym__fenced_code_block_start_tilde] = ACTIONS(1662), + [sym__blank_line_start] = ACTIONS(1662), + [sym_minus_metadata] = ACTIONS(1662), + [sym__pipe_table_start] = ACTIONS(1662), + [sym__fenced_div_start] = ACTIONS(1662), + [sym_ref_id_specifier] = ACTIONS(1662), + [sym__display_math_state_track_marker] = ACTIONS(1662), + [sym__inline_math_state_track_marker] = ACTIONS(1662), + }, + [STATE(445)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_SLASH] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_BSLASH] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_CARET] = ACTIONS(1666), + [anon_sym__] = ACTIONS(1666), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1666), + [sym__word] = ACTIONS(1666), + [sym__soft_line_ending] = ACTIONS(1666), + [sym__block_close] = ACTIONS(1666), + [sym__block_quote_start] = ACTIONS(1666), + [sym__indented_chunk_start] = ACTIONS(1666), + [sym_atx_h1_marker] = ACTIONS(1666), + [sym_atx_h2_marker] = ACTIONS(1666), + [sym_atx_h3_marker] = ACTIONS(1666), + [sym_atx_h4_marker] = ACTIONS(1666), + [sym_atx_h5_marker] = ACTIONS(1666), + [sym_atx_h6_marker] = ACTIONS(1666), + [sym__thematic_break] = ACTIONS(1666), + [sym__list_marker_minus] = ACTIONS(1666), + [sym__list_marker_plus] = ACTIONS(1666), + [sym__list_marker_star] = ACTIONS(1666), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1666), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_example] = ACTIONS(1666), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1666), + [sym__fenced_code_block_start_backtick] = ACTIONS(1666), + [sym__fenced_code_block_start_tilde] = ACTIONS(1666), + [sym__blank_line_start] = ACTIONS(1666), + [sym_minus_metadata] = ACTIONS(1666), + [sym__pipe_table_start] = ACTIONS(1666), + [sym__fenced_div_start] = ACTIONS(1666), + [sym_ref_id_specifier] = ACTIONS(1666), + [sym__display_math_state_track_marker] = ACTIONS(1666), + [sym__inline_math_state_track_marker] = ACTIONS(1666), + }, + [STATE(446)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [sym__word] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_close] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym_minus_metadata] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + [sym__fenced_div_start] = ACTIONS(1672), + [sym_ref_id_specifier] = ACTIONS(1672), + [sym__display_math_state_track_marker] = ACTIONS(1672), + [sym__inline_math_state_track_marker] = ACTIONS(1672), + }, + [STATE(447)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [sym__word] = ACTIONS(1674), + [sym__soft_line_ending] = ACTIONS(1674), + [sym__block_close] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_example] = ACTIONS(1674), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym_minus_metadata] = ACTIONS(1674), + [sym__pipe_table_start] = ACTIONS(1674), + [sym__fenced_div_start] = ACTIONS(1674), + [sym_ref_id_specifier] = ACTIONS(1674), + [sym__display_math_state_track_marker] = ACTIONS(1674), + [sym__inline_math_state_track_marker] = ACTIONS(1674), + }, + [STATE(448)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_DOLLAR] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym__] = ACTIONS(1436), + [anon_sym_BQUOTE] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [sym__word] = ACTIONS(1436), + [sym__soft_line_ending] = ACTIONS(1436), + [sym__block_close] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1436), + [sym__indented_chunk_start] = ACTIONS(1436), + [sym_atx_h1_marker] = ACTIONS(1436), + [sym_atx_h2_marker] = ACTIONS(1436), + [sym_atx_h3_marker] = ACTIONS(1436), + [sym_atx_h4_marker] = ACTIONS(1436), + [sym_atx_h5_marker] = ACTIONS(1436), + [sym_atx_h6_marker] = ACTIONS(1436), + [sym__thematic_break] = ACTIONS(1436), + [sym__list_marker_minus] = ACTIONS(1436), + [sym__list_marker_plus] = ACTIONS(1436), + [sym__list_marker_star] = ACTIONS(1436), + [sym__list_marker_parenthesis] = ACTIONS(1436), + [sym__list_marker_dot] = ACTIONS(1436), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), + [sym__list_marker_example] = ACTIONS(1436), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1436), + [sym__fenced_code_block_start_backtick] = ACTIONS(1436), + [sym__fenced_code_block_start_tilde] = ACTIONS(1436), + [sym__blank_line_start] = ACTIONS(1436), + [sym_minus_metadata] = ACTIONS(1436), + [sym__pipe_table_start] = ACTIONS(1436), + [sym__fenced_div_start] = ACTIONS(1436), + [sym_ref_id_specifier] = ACTIONS(1436), + [sym__display_math_state_track_marker] = ACTIONS(1436), + [sym__inline_math_state_track_marker] = ACTIONS(1436), + }, + [STATE(449)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_BSLASH] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym__] = ACTIONS(1682), + [anon_sym_BQUOTE] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [sym__word] = ACTIONS(1682), + [sym__soft_line_ending] = ACTIONS(1682), + [sym__block_close] = ACTIONS(1682), + [sym__block_quote_start] = ACTIONS(1682), + [sym__indented_chunk_start] = ACTIONS(1682), + [sym_atx_h1_marker] = ACTIONS(1682), + [sym_atx_h2_marker] = ACTIONS(1682), + [sym_atx_h3_marker] = ACTIONS(1682), + [sym_atx_h4_marker] = ACTIONS(1682), + [sym_atx_h5_marker] = ACTIONS(1682), + [sym_atx_h6_marker] = ACTIONS(1682), + [sym__thematic_break] = ACTIONS(1682), + [sym__list_marker_minus] = ACTIONS(1682), + [sym__list_marker_plus] = ACTIONS(1682), + [sym__list_marker_star] = ACTIONS(1682), + [sym__list_marker_parenthesis] = ACTIONS(1682), + [sym__list_marker_dot] = ACTIONS(1682), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_example] = ACTIONS(1682), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1682), + [sym__fenced_code_block_start_backtick] = ACTIONS(1682), + [sym__fenced_code_block_start_tilde] = ACTIONS(1682), + [sym__blank_line_start] = ACTIONS(1682), + [sym_minus_metadata] = ACTIONS(1682), + [sym__pipe_table_start] = ACTIONS(1682), + [sym__fenced_div_start] = ACTIONS(1682), + [sym_ref_id_specifier] = ACTIONS(1682), + [sym__display_math_state_track_marker] = ACTIONS(1682), + [sym__inline_math_state_track_marker] = ACTIONS(1682), + }, + [STATE(450)] = { + [ts_builtin_sym_end] = ACTIONS(1682), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_BSLASH] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym__] = ACTIONS(1682), + [anon_sym_BQUOTE] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [sym__word] = ACTIONS(1682), + [sym__soft_line_ending] = ACTIONS(1682), + [sym__block_quote_start] = ACTIONS(1682), + [sym__indented_chunk_start] = ACTIONS(1682), + [sym_atx_h1_marker] = ACTIONS(1682), + [sym_atx_h2_marker] = ACTIONS(1682), + [sym_atx_h3_marker] = ACTIONS(1682), + [sym_atx_h4_marker] = ACTIONS(1682), + [sym_atx_h5_marker] = ACTIONS(1682), + [sym_atx_h6_marker] = ACTIONS(1682), + [sym__thematic_break] = ACTIONS(1682), + [sym__list_marker_minus] = ACTIONS(1682), + [sym__list_marker_plus] = ACTIONS(1682), + [sym__list_marker_star] = ACTIONS(1682), + [sym__list_marker_parenthesis] = ACTIONS(1682), + [sym__list_marker_dot] = ACTIONS(1682), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_example] = ACTIONS(1682), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1682), + [sym__fenced_code_block_start_backtick] = ACTIONS(1682), + [sym__fenced_code_block_start_tilde] = ACTIONS(1682), + [sym__blank_line_start] = ACTIONS(1682), + [sym_minus_metadata] = ACTIONS(1682), + [sym__pipe_table_start] = ACTIONS(1682), + [sym__fenced_div_start] = ACTIONS(1682), + [sym_ref_id_specifier] = ACTIONS(1682), + [sym__display_math_state_track_marker] = ACTIONS(1682), + [sym__inline_math_state_track_marker] = ACTIONS(1682), + }, + [STATE(451)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_close] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1526), + [sym__indented_chunk_start] = ACTIONS(1526), + [sym_atx_h1_marker] = ACTIONS(1526), + [sym_atx_h2_marker] = ACTIONS(1526), + [sym_atx_h3_marker] = ACTIONS(1526), + [sym_atx_h4_marker] = ACTIONS(1526), + [sym_atx_h5_marker] = ACTIONS(1526), + [sym_atx_h6_marker] = ACTIONS(1526), + [sym__thematic_break] = ACTIONS(1526), + [sym__list_marker_minus] = ACTIONS(1526), + [sym__list_marker_plus] = ACTIONS(1526), + [sym__list_marker_star] = ACTIONS(1526), + [sym__list_marker_parenthesis] = ACTIONS(1526), + [sym__list_marker_dot] = ACTIONS(1526), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_example] = ACTIONS(1526), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1526), + [sym__fenced_code_block_start_backtick] = ACTIONS(1526), + [sym__fenced_code_block_start_tilde] = ACTIONS(1526), + [sym__blank_line_start] = ACTIONS(1526), + [sym_minus_metadata] = ACTIONS(1526), + [sym__pipe_table_start] = ACTIONS(1526), + [sym__fenced_div_start] = ACTIONS(1526), + [sym_ref_id_specifier] = ACTIONS(1526), + [sym__display_math_state_track_marker] = ACTIONS(1526), + [sym__inline_math_state_track_marker] = ACTIONS(1526), + }, + [STATE(452)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1528), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym__] = ACTIONS(1528), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [sym__word] = ACTIONS(1528), + [sym__soft_line_ending] = ACTIONS(1528), + [sym__block_close] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1528), + [sym__indented_chunk_start] = ACTIONS(1528), + [sym_atx_h1_marker] = ACTIONS(1528), + [sym_atx_h2_marker] = ACTIONS(1528), + [sym_atx_h3_marker] = ACTIONS(1528), + [sym_atx_h4_marker] = ACTIONS(1528), + [sym_atx_h5_marker] = ACTIONS(1528), + [sym_atx_h6_marker] = ACTIONS(1528), + [sym__thematic_break] = ACTIONS(1528), + [sym__list_marker_minus] = ACTIONS(1528), + [sym__list_marker_plus] = ACTIONS(1528), + [sym__list_marker_star] = ACTIONS(1528), + [sym__list_marker_parenthesis] = ACTIONS(1528), + [sym__list_marker_dot] = ACTIONS(1528), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_example] = ACTIONS(1528), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1528), + [sym__fenced_code_block_start_backtick] = ACTIONS(1528), + [sym__fenced_code_block_start_tilde] = ACTIONS(1528), + [sym__blank_line_start] = ACTIONS(1528), + [sym_minus_metadata] = ACTIONS(1528), + [sym__pipe_table_start] = ACTIONS(1528), + [sym__fenced_div_start] = ACTIONS(1528), + [sym_ref_id_specifier] = ACTIONS(1528), + [sym__display_math_state_track_marker] = ACTIONS(1528), + [sym__inline_math_state_track_marker] = ACTIONS(1528), + }, + [STATE(453)] = { + [ts_builtin_sym_end] = ACTIONS(1622), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_example] = ACTIONS(1622), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym_minus_metadata] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + [sym__fenced_div_start] = ACTIONS(1622), + [sym_ref_id_specifier] = ACTIONS(1622), + [sym__display_math_state_track_marker] = ACTIONS(1622), + [sym__inline_math_state_track_marker] = ACTIONS(1622), + }, + [STATE(454)] = { + [ts_builtin_sym_end] = ACTIONS(1536), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [sym__word] = ACTIONS(1536), + [sym__soft_line_ending] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(1536), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_example] = ACTIONS(1536), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym_minus_metadata] = ACTIONS(1536), + [sym__pipe_table_start] = ACTIONS(1536), + [sym__fenced_div_start] = ACTIONS(1536), + [sym_ref_id_specifier] = ACTIONS(1536), + [sym__display_math_state_track_marker] = ACTIONS(1536), + [sym__inline_math_state_track_marker] = ACTIONS(1536), + }, + [STATE(455)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(456)] = { + [ts_builtin_sym_end] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1526), + [sym__indented_chunk_start] = ACTIONS(1526), + [sym_atx_h1_marker] = ACTIONS(1526), + [sym_atx_h2_marker] = ACTIONS(1526), + [sym_atx_h3_marker] = ACTIONS(1526), + [sym_atx_h4_marker] = ACTIONS(1526), + [sym_atx_h5_marker] = ACTIONS(1526), + [sym_atx_h6_marker] = ACTIONS(1526), + [sym__thematic_break] = ACTIONS(1526), + [sym__list_marker_minus] = ACTIONS(1526), + [sym__list_marker_plus] = ACTIONS(1526), + [sym__list_marker_star] = ACTIONS(1526), + [sym__list_marker_parenthesis] = ACTIONS(1526), + [sym__list_marker_dot] = ACTIONS(1526), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_example] = ACTIONS(1526), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1526), + [sym__fenced_code_block_start_backtick] = ACTIONS(1526), + [sym__fenced_code_block_start_tilde] = ACTIONS(1526), + [sym__blank_line_start] = ACTIONS(1526), + [sym_minus_metadata] = ACTIONS(1526), + [sym__pipe_table_start] = ACTIONS(1526), + [sym__fenced_div_start] = ACTIONS(1526), + [sym_ref_id_specifier] = ACTIONS(1526), + [sym__display_math_state_track_marker] = ACTIONS(1526), + [sym__inline_math_state_track_marker] = ACTIONS(1526), + }, + [STATE(457)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym__] = ACTIONS(1544), + [anon_sym_BQUOTE] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_close] = ACTIONS(1544), + [sym__block_quote_start] = ACTIONS(1544), + [sym__indented_chunk_start] = ACTIONS(1544), + [sym_atx_h1_marker] = ACTIONS(1544), + [sym_atx_h2_marker] = ACTIONS(1544), + [sym_atx_h3_marker] = ACTIONS(1544), + [sym_atx_h4_marker] = ACTIONS(1544), + [sym_atx_h5_marker] = ACTIONS(1544), + [sym_atx_h6_marker] = ACTIONS(1544), + [sym__thematic_break] = ACTIONS(1544), + [sym__list_marker_minus] = ACTIONS(1544), + [sym__list_marker_plus] = ACTIONS(1544), + [sym__list_marker_star] = ACTIONS(1544), + [sym__list_marker_parenthesis] = ACTIONS(1544), + [sym__list_marker_dot] = ACTIONS(1544), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_example] = ACTIONS(1544), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1544), + [sym__fenced_code_block_start_backtick] = ACTIONS(1544), + [sym__fenced_code_block_start_tilde] = ACTIONS(1544), + [sym__blank_line_start] = ACTIONS(1544), + [sym_minus_metadata] = ACTIONS(1544), + [sym__pipe_table_start] = ACTIONS(1544), + [sym__fenced_div_start] = ACTIONS(1544), + [sym_ref_id_specifier] = ACTIONS(1544), + [sym__display_math_state_track_marker] = ACTIONS(1544), + [sym__inline_math_state_track_marker] = ACTIONS(1544), + }, + [STATE(458)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [sym__word] = ACTIONS(1546), + [sym__soft_line_ending] = ACTIONS(1546), + [sym__block_close] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_example] = ACTIONS(1546), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym_minus_metadata] = ACTIONS(1546), + [sym__pipe_table_start] = ACTIONS(1546), + [sym__fenced_div_start] = ACTIONS(1546), + [sym_ref_id_specifier] = ACTIONS(1546), + [sym__display_math_state_track_marker] = ACTIONS(1546), + [sym__inline_math_state_track_marker] = ACTIONS(1546), + }, + [STATE(459)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [sym__word] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_close] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_example] = ACTIONS(1548), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym_minus_metadata] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + [sym__fenced_div_start] = ACTIONS(1548), + [sym_ref_id_specifier] = ACTIONS(1548), + [sym__display_math_state_track_marker] = ACTIONS(1548), + [sym__inline_math_state_track_marker] = ACTIONS(1548), + }, + [STATE(460)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_PERCENT] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1550), + [anon_sym_SLASH] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_BQUOTE] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_close] = ACTIONS(1550), + [sym__block_quote_start] = ACTIONS(1550), + [sym__indented_chunk_start] = ACTIONS(1550), + [sym_atx_h1_marker] = ACTIONS(1550), + [sym_atx_h2_marker] = ACTIONS(1550), + [sym_atx_h3_marker] = ACTIONS(1550), + [sym_atx_h4_marker] = ACTIONS(1550), + [sym_atx_h5_marker] = ACTIONS(1550), + [sym_atx_h6_marker] = ACTIONS(1550), + [sym__thematic_break] = ACTIONS(1550), + [sym__list_marker_minus] = ACTIONS(1550), + [sym__list_marker_plus] = ACTIONS(1550), + [sym__list_marker_star] = ACTIONS(1550), + [sym__list_marker_parenthesis] = ACTIONS(1550), + [sym__list_marker_dot] = ACTIONS(1550), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_example] = ACTIONS(1550), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1550), + [sym__fenced_code_block_start_backtick] = ACTIONS(1550), + [sym__fenced_code_block_start_tilde] = ACTIONS(1550), + [sym__blank_line_start] = ACTIONS(1550), + [sym_minus_metadata] = ACTIONS(1550), + [sym__pipe_table_start] = ACTIONS(1550), + [sym__fenced_div_start] = ACTIONS(1550), + [sym_ref_id_specifier] = ACTIONS(1550), + [sym__display_math_state_track_marker] = ACTIONS(1550), + [sym__inline_math_state_track_marker] = ACTIONS(1550), + }, + [STATE(461)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [sym__word] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_close] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_example] = ACTIONS(1552), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym_minus_metadata] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + [sym__fenced_div_start] = ACTIONS(1552), + [sym_ref_id_specifier] = ACTIONS(1552), + [sym__display_math_state_track_marker] = ACTIONS(1552), + [sym__inline_math_state_track_marker] = ACTIONS(1552), + }, + [STATE(462)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_QMARK] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym__] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [sym__word] = ACTIONS(1554), + [sym__soft_line_ending] = ACTIONS(1554), + [sym__block_close] = ACTIONS(1554), + [sym__block_quote_start] = ACTIONS(1554), + [sym__indented_chunk_start] = ACTIONS(1554), + [sym_atx_h1_marker] = ACTIONS(1554), + [sym_atx_h2_marker] = ACTIONS(1554), + [sym_atx_h3_marker] = ACTIONS(1554), + [sym_atx_h4_marker] = ACTIONS(1554), + [sym_atx_h5_marker] = ACTIONS(1554), + [sym_atx_h6_marker] = ACTIONS(1554), + [sym__thematic_break] = ACTIONS(1554), + [sym__list_marker_minus] = ACTIONS(1554), + [sym__list_marker_plus] = ACTIONS(1554), + [sym__list_marker_star] = ACTIONS(1554), + [sym__list_marker_parenthesis] = ACTIONS(1554), + [sym__list_marker_dot] = ACTIONS(1554), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_example] = ACTIONS(1554), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1554), + [sym__fenced_code_block_start_backtick] = ACTIONS(1554), + [sym__fenced_code_block_start_tilde] = ACTIONS(1554), + [sym__blank_line_start] = ACTIONS(1554), + [sym_minus_metadata] = ACTIONS(1554), + [sym__pipe_table_start] = ACTIONS(1554), + [sym__fenced_div_start] = ACTIONS(1554), + [sym_ref_id_specifier] = ACTIONS(1554), + [sym__display_math_state_track_marker] = ACTIONS(1554), + [sym__inline_math_state_track_marker] = ACTIONS(1554), + }, + [STATE(463)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_close] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_example] = ACTIONS(1556), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym_minus_metadata] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + [sym__fenced_div_start] = ACTIONS(1556), + [sym_ref_id_specifier] = ACTIONS(1556), + [sym__display_math_state_track_marker] = ACTIONS(1556), + [sym__inline_math_state_track_marker] = ACTIONS(1556), + }, + [STATE(464)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_BSLASH] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym__] = ACTIONS(1558), + [anon_sym_BQUOTE] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [sym__word] = ACTIONS(1558), + [sym__soft_line_ending] = ACTIONS(1558), + [sym__block_close] = ACTIONS(1558), + [sym__block_quote_start] = ACTIONS(1558), + [sym__indented_chunk_start] = ACTIONS(1558), + [sym_atx_h1_marker] = ACTIONS(1558), + [sym_atx_h2_marker] = ACTIONS(1558), + [sym_atx_h3_marker] = ACTIONS(1558), + [sym_atx_h4_marker] = ACTIONS(1558), + [sym_atx_h5_marker] = ACTIONS(1558), + [sym_atx_h6_marker] = ACTIONS(1558), + [sym__thematic_break] = ACTIONS(1558), + [sym__list_marker_minus] = ACTIONS(1558), + [sym__list_marker_plus] = ACTIONS(1558), + [sym__list_marker_star] = ACTIONS(1558), + [sym__list_marker_parenthesis] = ACTIONS(1558), + [sym__list_marker_dot] = ACTIONS(1558), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_example] = ACTIONS(1558), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1558), + [sym__fenced_code_block_start_backtick] = ACTIONS(1558), + [sym__fenced_code_block_start_tilde] = ACTIONS(1558), + [sym__blank_line_start] = ACTIONS(1558), + [sym_minus_metadata] = ACTIONS(1558), + [sym__pipe_table_start] = ACTIONS(1558), + [sym__fenced_div_start] = ACTIONS(1558), + [sym_ref_id_specifier] = ACTIONS(1558), + [sym__display_math_state_track_marker] = ACTIONS(1558), + [sym__inline_math_state_track_marker] = ACTIONS(1558), + }, + [STATE(465)] = { + [ts_builtin_sym_end] = ACTIONS(1528), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1528), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym__] = ACTIONS(1528), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [sym__word] = ACTIONS(1528), + [sym__soft_line_ending] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1528), + [sym__indented_chunk_start] = ACTIONS(1528), + [sym_atx_h1_marker] = ACTIONS(1528), + [sym_atx_h2_marker] = ACTIONS(1528), + [sym_atx_h3_marker] = ACTIONS(1528), + [sym_atx_h4_marker] = ACTIONS(1528), + [sym_atx_h5_marker] = ACTIONS(1528), + [sym_atx_h6_marker] = ACTIONS(1528), + [sym__thematic_break] = ACTIONS(1528), + [sym__list_marker_minus] = ACTIONS(1528), + [sym__list_marker_plus] = ACTIONS(1528), + [sym__list_marker_star] = ACTIONS(1528), + [sym__list_marker_parenthesis] = ACTIONS(1528), + [sym__list_marker_dot] = ACTIONS(1528), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_example] = ACTIONS(1528), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1528), + [sym__fenced_code_block_start_backtick] = ACTIONS(1528), + [sym__fenced_code_block_start_tilde] = ACTIONS(1528), + [sym__blank_line_start] = ACTIONS(1528), + [sym_minus_metadata] = ACTIONS(1528), + [sym__pipe_table_start] = ACTIONS(1528), + [sym__fenced_div_start] = ACTIONS(1528), + [sym_ref_id_specifier] = ACTIONS(1528), + [sym__display_math_state_track_marker] = ACTIONS(1528), + [sym__inline_math_state_track_marker] = ACTIONS(1528), + }, + [STATE(466)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(467)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym__block_close] = ACTIONS(1500), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(468)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_SQUOTE] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_DQUOTE] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_QMARK] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_BSLASH] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(1728), + [anon_sym_CARET] = ACTIONS(1728), + [anon_sym__] = ACTIONS(1728), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1728), + [sym__word] = ACTIONS(1728), + [sym__soft_line_ending] = ACTIONS(1728), + [sym_block_continuation] = ACTIONS(1728), + [sym__block_quote_start] = ACTIONS(1728), + [sym__indented_chunk_start] = ACTIONS(1728), + [sym_atx_h1_marker] = ACTIONS(1728), + [sym_atx_h2_marker] = ACTIONS(1728), + [sym_atx_h3_marker] = ACTIONS(1728), + [sym_atx_h4_marker] = ACTIONS(1728), + [sym_atx_h5_marker] = ACTIONS(1728), + [sym_atx_h6_marker] = ACTIONS(1728), + [sym__thematic_break] = ACTIONS(1728), + [sym__list_marker_minus] = ACTIONS(1728), + [sym__list_marker_plus] = ACTIONS(1728), + [sym__list_marker_star] = ACTIONS(1728), + [sym__list_marker_parenthesis] = ACTIONS(1728), + [sym__list_marker_dot] = ACTIONS(1728), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_example] = ACTIONS(1728), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1728), + [sym__fenced_code_block_start_backtick] = ACTIONS(1728), + [sym__fenced_code_block_start_tilde] = ACTIONS(1728), + [sym__blank_line_start] = ACTIONS(1728), + [sym_minus_metadata] = ACTIONS(1728), + [sym__pipe_table_start] = ACTIONS(1728), + [sym__fenced_div_start] = ACTIONS(1728), + [sym_ref_id_specifier] = ACTIONS(1728), + [sym__display_math_state_track_marker] = ACTIONS(1728), + [sym__inline_math_state_track_marker] = ACTIONS(1728), + }, + [STATE(469)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(470)] = { + [ts_builtin_sym_end] = ACTIONS(1530), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [sym__word] = ACTIONS(1530), + [sym__soft_line_ending] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1530), + [sym__indented_chunk_start] = ACTIONS(1530), + [sym_atx_h1_marker] = ACTIONS(1530), + [sym_atx_h2_marker] = ACTIONS(1530), + [sym_atx_h3_marker] = ACTIONS(1530), + [sym_atx_h4_marker] = ACTIONS(1530), + [sym_atx_h5_marker] = ACTIONS(1530), + [sym_atx_h6_marker] = ACTIONS(1530), + [sym__thematic_break] = ACTIONS(1530), + [sym__list_marker_minus] = ACTIONS(1530), + [sym__list_marker_plus] = ACTIONS(1530), + [sym__list_marker_star] = ACTIONS(1530), + [sym__list_marker_parenthesis] = ACTIONS(1530), + [sym__list_marker_dot] = ACTIONS(1530), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_example] = ACTIONS(1530), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1530), + [sym__fenced_code_block_start_backtick] = ACTIONS(1530), + [sym__fenced_code_block_start_tilde] = ACTIONS(1530), + [sym__blank_line_start] = ACTIONS(1530), + [sym_minus_metadata] = ACTIONS(1530), + [sym__pipe_table_start] = ACTIONS(1530), + [sym__fenced_div_start] = ACTIONS(1530), + [sym_ref_id_specifier] = ACTIONS(1530), + [sym__display_math_state_track_marker] = ACTIONS(1530), + [sym__inline_math_state_track_marker] = ACTIONS(1530), + }, + [STATE(471)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym__] = ACTIONS(1512), + [anon_sym_BQUOTE] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [sym__word] = ACTIONS(1512), + [sym__soft_line_ending] = ACTIONS(1512), + [sym__block_close] = ACTIONS(1512), + [sym__block_quote_start] = ACTIONS(1512), + [sym__indented_chunk_start] = ACTIONS(1512), + [sym_atx_h1_marker] = ACTIONS(1512), + [sym_atx_h2_marker] = ACTIONS(1512), + [sym_atx_h3_marker] = ACTIONS(1512), + [sym_atx_h4_marker] = ACTIONS(1512), + [sym_atx_h5_marker] = ACTIONS(1512), + [sym_atx_h6_marker] = ACTIONS(1512), + [sym__thematic_break] = ACTIONS(1512), + [sym__list_marker_minus] = ACTIONS(1512), + [sym__list_marker_plus] = ACTIONS(1512), + [sym__list_marker_star] = ACTIONS(1512), + [sym__list_marker_parenthesis] = ACTIONS(1512), + [sym__list_marker_dot] = ACTIONS(1512), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1512), + [sym__list_marker_example] = ACTIONS(1512), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1512), + [sym__fenced_code_block_start_backtick] = ACTIONS(1512), + [sym__fenced_code_block_start_tilde] = ACTIONS(1512), + [sym__blank_line_start] = ACTIONS(1512), + [sym_minus_metadata] = ACTIONS(1512), + [sym__pipe_table_start] = ACTIONS(1512), + [sym__fenced_div_start] = ACTIONS(1512), + [sym_ref_id_specifier] = ACTIONS(1512), + [sym__display_math_state_track_marker] = ACTIONS(1512), + [sym__inline_math_state_track_marker] = ACTIONS(1512), + }, + [STATE(472)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_GT] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_BSLASH] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym__] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [sym__word] = ACTIONS(1730), + [sym__soft_line_ending] = ACTIONS(1730), + [sym_block_continuation] = ACTIONS(1730), + [sym__block_quote_start] = ACTIONS(1730), + [sym__indented_chunk_start] = ACTIONS(1730), + [sym_atx_h1_marker] = ACTIONS(1730), + [sym_atx_h2_marker] = ACTIONS(1730), + [sym_atx_h3_marker] = ACTIONS(1730), + [sym_atx_h4_marker] = ACTIONS(1730), + [sym_atx_h5_marker] = ACTIONS(1730), + [sym_atx_h6_marker] = ACTIONS(1730), + [sym__thematic_break] = ACTIONS(1730), + [sym__list_marker_minus] = ACTIONS(1730), + [sym__list_marker_plus] = ACTIONS(1730), + [sym__list_marker_star] = ACTIONS(1730), + [sym__list_marker_parenthesis] = ACTIONS(1730), + [sym__list_marker_dot] = ACTIONS(1730), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_example] = ACTIONS(1730), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1730), + [sym__fenced_code_block_start_backtick] = ACTIONS(1730), + [sym__fenced_code_block_start_tilde] = ACTIONS(1730), + [sym__blank_line_start] = ACTIONS(1730), + [sym_minus_metadata] = ACTIONS(1730), + [sym__pipe_table_start] = ACTIONS(1730), + [sym__fenced_div_start] = ACTIONS(1730), + [sym_ref_id_specifier] = ACTIONS(1730), + [sym__display_math_state_track_marker] = ACTIONS(1730), + [sym__inline_math_state_track_marker] = ACTIONS(1730), + }, + [STATE(473)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(474)] = { + [ts_builtin_sym_end] = ACTIONS(1534), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [sym__word] = ACTIONS(1534), + [sym__soft_line_ending] = ACTIONS(1534), + [sym__block_quote_start] = ACTIONS(1534), + [sym__indented_chunk_start] = ACTIONS(1534), + [sym_atx_h1_marker] = ACTIONS(1534), + [sym_atx_h2_marker] = ACTIONS(1534), + [sym_atx_h3_marker] = ACTIONS(1534), + [sym_atx_h4_marker] = ACTIONS(1534), + [sym_atx_h5_marker] = ACTIONS(1534), + [sym_atx_h6_marker] = ACTIONS(1534), + [sym__thematic_break] = ACTIONS(1534), + [sym__list_marker_minus] = ACTIONS(1534), + [sym__list_marker_plus] = ACTIONS(1534), + [sym__list_marker_star] = ACTIONS(1534), + [sym__list_marker_parenthesis] = ACTIONS(1534), + [sym__list_marker_dot] = ACTIONS(1534), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_example] = ACTIONS(1534), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1534), + [sym__fenced_code_block_start_backtick] = ACTIONS(1534), + [sym__fenced_code_block_start_tilde] = ACTIONS(1534), + [sym__blank_line_start] = ACTIONS(1534), + [sym_minus_metadata] = ACTIONS(1534), + [sym__pipe_table_start] = ACTIONS(1534), + [sym__fenced_div_start] = ACTIONS(1534), + [sym_ref_id_specifier] = ACTIONS(1534), + [sym__display_math_state_track_marker] = ACTIONS(1534), + [sym__inline_math_state_track_marker] = ACTIONS(1534), + }, + [STATE(475)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(476)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_EQ] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1570), + [anon_sym_PERCENT] = ACTIONS(1570), + [anon_sym_AMP] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_RPAREN] = ACTIONS(1570), + [anon_sym_STAR] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1570), + [anon_sym_COMMA] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(1570), + [anon_sym_SLASH] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1570), + [anon_sym_GT] = ACTIONS(1570), + [anon_sym_QMARK] = ACTIONS(1570), + [anon_sym_AT] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_BSLASH] = ACTIONS(1570), + [anon_sym_RBRACK] = ACTIONS(1570), + [anon_sym_CARET] = ACTIONS(1570), + [anon_sym__] = ACTIONS(1570), + [anon_sym_BQUOTE] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1570), + [sym__word] = ACTIONS(1570), + [sym__soft_line_ending] = ACTIONS(1570), + [sym__block_close] = ACTIONS(1570), + [sym__block_quote_start] = ACTIONS(1570), + [sym__indented_chunk_start] = ACTIONS(1570), + [sym_atx_h1_marker] = ACTIONS(1570), + [sym_atx_h2_marker] = ACTIONS(1570), + [sym_atx_h3_marker] = ACTIONS(1570), + [sym_atx_h4_marker] = ACTIONS(1570), + [sym_atx_h5_marker] = ACTIONS(1570), + [sym_atx_h6_marker] = ACTIONS(1570), + [sym__thematic_break] = ACTIONS(1570), + [sym__list_marker_minus] = ACTIONS(1570), + [sym__list_marker_plus] = ACTIONS(1570), + [sym__list_marker_star] = ACTIONS(1570), + [sym__list_marker_parenthesis] = ACTIONS(1570), + [sym__list_marker_dot] = ACTIONS(1570), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1570), + [sym__list_marker_example] = ACTIONS(1570), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1570), + [sym__fenced_code_block_start_backtick] = ACTIONS(1570), + [sym__fenced_code_block_start_tilde] = ACTIONS(1570), + [sym__blank_line_start] = ACTIONS(1570), + [sym_minus_metadata] = ACTIONS(1570), + [sym__pipe_table_start] = ACTIONS(1570), + [sym__fenced_div_start] = ACTIONS(1570), + [sym_ref_id_specifier] = ACTIONS(1570), + [sym__display_math_state_track_marker] = ACTIONS(1570), + [sym__inline_math_state_track_marker] = ACTIONS(1570), + }, + [STATE(477)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [sym__word] = ACTIONS(1572), + [sym__soft_line_ending] = ACTIONS(1572), + [sym__block_close] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1572), + [sym__indented_chunk_start] = ACTIONS(1572), + [sym_atx_h1_marker] = ACTIONS(1572), + [sym_atx_h2_marker] = ACTIONS(1572), + [sym_atx_h3_marker] = ACTIONS(1572), + [sym_atx_h4_marker] = ACTIONS(1572), + [sym_atx_h5_marker] = ACTIONS(1572), + [sym_atx_h6_marker] = ACTIONS(1572), + [sym__thematic_break] = ACTIONS(1572), + [sym__list_marker_minus] = ACTIONS(1572), + [sym__list_marker_plus] = ACTIONS(1572), + [sym__list_marker_star] = ACTIONS(1572), + [sym__list_marker_parenthesis] = ACTIONS(1572), + [sym__list_marker_dot] = ACTIONS(1572), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_example] = ACTIONS(1572), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1572), + [sym__fenced_code_block_start_backtick] = ACTIONS(1572), + [sym__fenced_code_block_start_tilde] = ACTIONS(1572), + [sym__blank_line_start] = ACTIONS(1572), + [sym_minus_metadata] = ACTIONS(1572), + [sym__pipe_table_start] = ACTIONS(1572), + [sym__fenced_div_start] = ACTIONS(1572), + [sym_ref_id_specifier] = ACTIONS(1572), + [sym__display_math_state_track_marker] = ACTIONS(1572), + [sym__inline_math_state_track_marker] = ACTIONS(1572), + }, + [STATE(478)] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 15, + ACTIONS(1732), 1, sym_raw_specifier, - ACTIONS(1678), 1, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1682), 1, + ACTIONS(1738), 1, anon_sym_RBRACE, - ACTIONS(1684), 1, + ACTIONS(1740), 1, sym_commonmark_name, - ACTIONS(1686), 1, + ACTIONS(1742), 1, sym_id_specifier, - ACTIONS(1688), 1, + ACTIONS(1744), 1, sym_class_specifier, - ACTIONS(1692), 1, + ACTIONS(1748), 1, sym_key_value_key, - STATE(637), 1, + STATE(656), 1, sym__last_token_punctuation, - STATE(663), 1, + STATE(689), 1, sym__commonmark_whitespace, - STATE(669), 1, + STATE(693), 1, aux_sym_commonmark_attribute_repeat1, - STATE(705), 1, + STATE(733), 1, aux_sym_commonmark_attribute_repeat2, - STATE(743), 1, - sym__attribute, - STATE(744), 1, + STATE(773), 1, aux_sym_commonmark_attribute_repeat3, - ACTIONS(1690), 6, + STATE(777), 1, + sym__attribute, + ACTIONS(1746), 6, anon_sym_EQ, anon_sym_POUND, anon_sym_DOT, anon_sym_LT, anon_sym__, sym__word, - ACTIONS(1680), 29, + ACTIONS(1736), 29, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -39936,37 +43430,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [17746] = 13, - ACTIONS(1696), 1, + [79] = 13, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1700), 1, + ACTIONS(1756), 1, anon_sym_BSLASH, - ACTIONS(1702), 1, + ACTIONS(1758), 1, anon_sym_PIPE, - ACTIONS(1706), 1, + ACTIONS(1762), 1, sym__code_span_start, - STATE(487), 1, + STATE(517), 1, aux_sym_pipe_table_row_repeat1, - STATE(501), 1, + STATE(525), 1, sym__pipe_table_code_span, - STATE(592), 1, + STATE(607), 1, sym__whitespace, - STATE(713), 1, + STATE(747), 1, sym_pipe_table_cell, - STATE(741), 1, + STATE(775), 1, sym__pipe_table_cell_contents, - STATE(828), 1, + STATE(860), 1, sym_pipe_table_row, - ACTIONS(1704), 3, + ACTIONS(1760), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1694), 4, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1698), 30, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -39997,30 +43491,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [17820] = 11, - ACTIONS(1708), 1, + [153] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1714), 1, + ACTIONS(1770), 1, sym__line_ending, - STATE(333), 1, + STATE(399), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(696), 1, + STATE(710), 1, sym__atx_heading_content, - STATE(894), 1, + STATE(884), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40055,30 +43549,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [17889] = 11, - ACTIONS(1708), 1, + [222] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1714), 1, + ACTIONS(1770), 1, sym__line_ending, - STATE(312), 1, + STATE(398), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(699), 1, + STATE(709), 1, sym__atx_heading_content, - STATE(843), 1, + STATE(881), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40113,30 +43607,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [17958] = 11, - ACTIONS(1708), 1, + [291] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1714), 1, + ACTIONS(1772), 1, sym__line_ending, - STATE(328), 1, + STATE(405), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(709), 1, + STATE(714), 1, sym__atx_heading_content, - STATE(870), 1, + STATE(945), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40171,30 +43665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18027] = 11, - ACTIONS(1708), 1, + [360] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1714), 1, + ACTIONS(1772), 1, sym__line_ending, - STATE(329), 1, + STATE(406), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(685), 1, + STATE(715), 1, sym__atx_heading_content, - STATE(881), 1, + STATE(948), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40229,30 +43723,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18096] = 11, - ACTIONS(1708), 1, + [429] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1714), 1, + ACTIONS(1772), 1, sym__line_ending, - STATE(450), 1, + STATE(407), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(698), 1, + STATE(716), 1, sym__atx_heading_content, - STATE(849), 1, - sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(951), 1, + sym__qmd_attribute, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40287,30 +43781,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18165] = 11, - ACTIONS(1708), 1, + [498] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1772), 1, sym__line_ending, - STATE(335), 1, + STATE(408), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(700), 1, + STATE(717), 1, sym__atx_heading_content, - STATE(915), 1, - sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(956), 1, + sym__qmd_attribute, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40345,30 +43839,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18234] = 11, - ACTIONS(1708), 1, + [567] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1772), 1, sym__line_ending, - STATE(336), 1, + STATE(409), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(701), 1, + STATE(718), 1, sym__atx_heading_content, - STATE(917), 1, - sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(961), 1, + sym__qmd_attribute, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40403,30 +43897,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18303] = 11, - ACTIONS(1708), 1, + [636] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1772), 1, sym__line_ending, - STATE(337), 1, + STATE(410), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(703), 1, + STATE(719), 1, sym__atx_heading_content, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(926), 1, + STATE(964), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40461,30 +43955,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18372] = 11, - ACTIONS(1708), 1, + [705] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1770), 1, sym__line_ending, - STATE(338), 1, + STATE(401), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(704), 1, + STATE(712), 1, sym__atx_heading_content, - STATE(922), 1, - sym__atx_heading_line, - STATE(928), 1, + STATE(911), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(950), 1, + sym__atx_heading_line, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40519,30 +44013,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18441] = 11, - ACTIONS(1708), 1, + [774] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1774), 1, sym__line_ending, - STATE(339), 1, + STATE(232), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(707), 1, + STATE(723), 1, sym__atx_heading_content, - STATE(922), 1, - sym__atx_heading_line, - STATE(938), 1, + STATE(888), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(950), 1, + sym__atx_heading_line, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40577,30 +44071,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18510] = 11, - ACTIONS(1708), 1, + [843] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1774), 1, sym__line_ending, - STATE(340), 1, + STATE(234), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(708), 1, + STATE(724), 1, sym__atx_heading_content, - STATE(922), 1, - sym__atx_heading_line, - STATE(940), 1, + STATE(890), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(950), 1, + sym__atx_heading_line, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40635,30 +44129,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18579] = 11, - ACTIONS(1708), 1, + [912] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1774), 1, sym__line_ending, - STATE(190), 1, + STATE(273), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(689), 1, + STATE(725), 1, sym__atx_heading_content, - STATE(860), 1, + STATE(891), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40693,30 +44187,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18648] = 11, - ACTIONS(1708), 1, + [981] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1774), 1, sym__line_ending, - STATE(191), 1, + STATE(276), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(691), 1, + STATE(726), 1, sym__atx_heading_content, - STATE(862), 1, + STATE(893), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40751,30 +44245,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18717] = 11, - ACTIONS(1708), 1, + [1050] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1774), 1, sym__line_ending, - STATE(192), 1, + STATE(204), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(692), 1, + STATE(727), 1, sym__atx_heading_content, - STATE(863), 1, + STATE(895), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40809,30 +44303,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18786] = 11, - ACTIONS(1708), 1, + [1119] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1774), 1, sym__line_ending, - STATE(193), 1, + STATE(206), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(693), 1, + STATE(728), 1, sym__atx_heading_content, - STATE(865), 1, + STATE(896), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40867,30 +44361,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18855] = 11, - ACTIONS(1708), 1, + [1188] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1770), 1, sym__line_ending, - STATE(194), 1, + STATE(402), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(694), 1, + STATE(722), 1, sym__atx_heading_content, - STATE(867), 1, + STATE(938), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40925,30 +44419,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18924] = 11, - ACTIONS(1708), 1, + [1257] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1770), 1, sym__line_ending, - STATE(195), 1, + STATE(396), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(695), 1, + STATE(731), 1, sym__atx_heading_content, - STATE(868), 1, + STATE(915), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40983,30 +44477,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18993] = 11, - ACTIONS(1708), 1, + [1326] = 11, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1710), 1, + ACTIONS(1766), 1, anon_sym_LBRACE, - ACTIONS(1714), 1, + ACTIONS(1770), 1, sym__line_ending, - STATE(302), 1, + STATE(397), 1, sym__newline, - STATE(591), 1, + STATE(601), 1, sym__whitespace, - STATE(613), 1, + STATE(631), 1, aux_sym__code_line_repeat1, - STATE(702), 1, + STATE(708), 1, sym__atx_heading_content, - STATE(836), 1, + STATE(870), 1, sym__qmd_attribute, - STATE(922), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1712), 34, + ACTIONS(1768), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41041,25 +44535,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19062] = 8, - ACTIONS(1720), 1, + [1395] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1726), 1, + ACTIONS(1782), 1, sym__block_close, - ACTIONS(1728), 1, + ACTIONS(1784), 1, sym__fenced_code_block_end_backtick, - STATE(882), 1, + STATE(940), 1, sym_code_fence_content, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(504), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41095,27 +44589,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19124] = 8, - ACTIONS(1720), 1, + [1457] = 11, + ACTIONS(1756), 1, + anon_sym_BSLASH, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1786), 1, + aux_sym__commonmark_whitespace_token1, + STATE(502), 1, + aux_sym_pipe_table_row_repeat1, + STATE(525), 1, + sym__pipe_table_code_span, + STATE(542), 1, + sym__whitespace, + STATE(735), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1788), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1750), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1754), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + [1525] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1730), 1, + ACTIONS(1790), 1, sym__block_close, - ACTIONS(1732), 1, + ACTIONS(1792), 1, sym__fenced_code_block_end_backtick, - STATE(854), 1, + STATE(882), 1, sym_code_fence_content, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(504), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1778), 35, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [1587] = 11, + ACTIONS(1797), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1803), 1, + anon_sym_BSLASH, + ACTIONS(1808), 1, + sym__code_span_start, + STATE(502), 1, + aux_sym_pipe_table_row_repeat1, + STATE(586), 1, + sym__pipe_table_code_span, + STATE(610), 1, + sym__whitespace, + STATE(836), 1, + sym_pipe_table_cell, + STATE(910), 1, + sym__pipe_table_cell_contents, + ACTIONS(1806), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1794), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1800), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41141,35 +44752,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [19186] = 8, - ACTIONS(1720), 1, + [1655] = 7, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, - sym__line_ending, - ACTIONS(1734), 1, - sym__block_close, - ACTIONS(1736), 1, - sym__fenced_code_block_end_backtick, - STATE(844), 1, - sym_code_fence_content, - STATE(550), 2, + ACTIONS(1813), 1, + anon_sym_BSLASH, + STATE(526), 1, + sym__last_token_punctuation, + STATE(533), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(504), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1815), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1811), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41195,33 +44804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19248] = 8, - ACTIONS(1734), 1, - sym__block_close, - ACTIONS(1736), 1, - sym__fenced_code_block_end_tilde, - ACTIONS(1738), 1, + [1715] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, + ACTIONS(1780), 1, sym__line_ending, - STATE(845), 1, + ACTIONS(1817), 1, + sym__block_close, + ACTIONS(1819), 1, + sym__fenced_code_block_end_backtick, + STATE(869), 1, sym_code_fence_content, - STATE(556), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(499), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41257,25 +44864,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19310] = 8, - ACTIONS(1730), 1, + [1777] = 8, + ACTIONS(1817), 1, sym__block_close, - ACTIONS(1732), 1, + ACTIONS(1819), 1, sym__fenced_code_block_end_tilde, - ACTIONS(1738), 1, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, + ACTIONS(1825), 1, sym__line_ending, - STATE(855), 1, + STATE(871), 1, sym_code_fence_content, - STATE(556), 2, + STATE(574), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(499), 3, + STATE(523), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41311,25 +44918,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19372] = 8, - ACTIONS(1720), 1, + [1839] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1744), 1, + ACTIONS(1827), 1, sym__block_close, - ACTIONS(1746), 1, + ACTIONS(1829), 1, sym__fenced_code_block_end_backtick, - STATE(846), 1, + STATE(873), 1, sym_code_fence_content, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(504), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41365,25 +44972,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19434] = 8, - ACTIONS(1738), 1, + [1901] = 8, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(1744), 1, + ACTIONS(1827), 1, sym__block_close, - ACTIONS(1746), 1, + ACTIONS(1829), 1, sym__fenced_code_block_end_tilde, - STATE(848), 1, + STATE(875), 1, sym_code_fence_content, - STATE(556), 2, + STATE(574), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(499), 3, + STATE(523), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41419,25 +45026,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19496] = 8, - ACTIONS(1720), 1, + [1963] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1748), 1, + ACTIONS(1831), 1, sym__block_close, - ACTIONS(1750), 1, + ACTIONS(1833), 1, sym__fenced_code_block_end_backtick, - STATE(850), 1, + STATE(905), 1, sym_code_fence_content, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(504), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41473,25 +45080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19558] = 8, - ACTIONS(1738), 1, + [2025] = 8, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(1748), 1, + ACTIONS(1831), 1, sym__block_close, - ACTIONS(1750), 1, + ACTIONS(1833), 1, sym__fenced_code_block_end_tilde, - STATE(851), 1, + STATE(907), 1, sym_code_fence_content, - STATE(556), 2, + STATE(574), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(499), 3, + STATE(523), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41527,25 +45134,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19620] = 8, - ACTIONS(1720), 1, + [2087] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1752), 1, + ACTIONS(1835), 1, sym__block_close, - ACTIONS(1754), 1, + ACTIONS(1837), 1, sym__fenced_code_block_end_backtick, - STATE(873), 1, + STATE(908), 1, sym_code_fence_content, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(504), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41581,33 +45188,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19682] = 11, - ACTIONS(1700), 1, - anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1756), 1, + [2149] = 8, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - STATE(489), 1, - aux_sym_pipe_table_row_repeat1, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(523), 1, - sym__whitespace, - STATE(715), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1758), 3, + ACTIONS(1825), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1694), 4, + ACTIONS(1835), 1, + sym__block_close, + ACTIONS(1837), 1, + sym__fenced_code_block_end_tilde, + STATE(909), 1, + sym_code_fence_content, + STATE(574), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(523), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41633,30 +45234,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [19750] = 8, - ACTIONS(1720), 1, + sym__word, + [2211] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1760), 1, + ACTIONS(1839), 1, sym__block_close, - ACTIONS(1762), 1, + ACTIONS(1841), 1, sym__fenced_code_block_end_backtick, - STATE(921), 1, + STATE(913), 1, sym_code_fence_content, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(504), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41692,25 +45296,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19812] = 8, - ACTIONS(1738), 1, + [2273] = 8, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(1760), 1, + ACTIONS(1839), 1, sym__block_close, - ACTIONS(1762), 1, + ACTIONS(1841), 1, sym__fenced_code_block_end_tilde, - STATE(932), 1, + STATE(914), 1, sym_code_fence_content, - STATE(556), 2, + STATE(574), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(499), 3, + STATE(523), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41746,33 +45350,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19874] = 11, - ACTIONS(1700), 1, - anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1756), 1, + [2335] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - STATE(489), 1, - aux_sym_pipe_table_row_repeat1, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(510), 1, - sym__whitespace, - STATE(727), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1764), 3, + ACTIONS(1780), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1694), 4, + ACTIONS(1843), 1, + sym__block_close, + ACTIONS(1845), 1, + sym__fenced_code_block_end_backtick, + STATE(877), 1, + sym_code_fence_content, + STATE(585), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(529), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41798,38 +45396,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [19942] = 11, - ACTIONS(1700), 1, - anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1756), 1, + sym__word, + [2397] = 8, + ACTIONS(1790), 1, + sym__block_close, + ACTIONS(1792), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - STATE(489), 1, - aux_sym_pipe_table_row_repeat1, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(517), 1, - sym__whitespace, - STATE(722), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1766), 3, + ACTIONS(1825), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1694), 4, + STATE(942), 1, + sym_code_fence_content, + STATE(574), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(523), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41855,87 +45450,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [20010] = 11, - ACTIONS(1771), 1, + sym__word, + [2459] = 8, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1777), 1, - anon_sym_BSLASH, - ACTIONS(1782), 1, - sym__code_span_start, - STATE(489), 1, - aux_sym_pipe_table_row_repeat1, - STATE(571), 1, - sym__pipe_table_code_span, - STATE(584), 1, - sym__whitespace, - STATE(818), 1, - sym_pipe_table_cell, - STATE(944), 1, - sym__pipe_table_cell_contents, - ACTIONS(1780), 3, + ACTIONS(1825), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1768), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1774), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [20078] = 8, - ACTIONS(1726), 1, + ACTIONS(1843), 1, sym__block_close, - ACTIONS(1728), 1, + ACTIONS(1845), 1, sym__fenced_code_block_end_tilde, - ACTIONS(1738), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, - sym__line_ending, - STATE(884), 1, + STATE(878), 1, sym_code_fence_content, - STATE(556), 2, + STATE(574), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(499), 3, + STATE(523), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -41971,27 +45512,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20140] = 8, - ACTIONS(1720), 1, + [2521] = 11, + ACTIONS(1756), 1, + anon_sym_BSLASH, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, - sym__line_ending, - ACTIONS(1785), 1, - sym__block_close, - ACTIONS(1787), 1, - sym__fenced_code_block_end_backtick, - STATE(885), 1, - sym_code_fence_content, - STATE(550), 2, + STATE(502), 1, + aux_sym_pipe_table_row_repeat1, + STATE(525), 1, + sym__pipe_table_code_span, + STATE(546), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(504), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + STATE(749), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1847), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42017,35 +45564,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [20202] = 8, - ACTIONS(1738), 1, + [2589] = 11, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, - sym__line_ending, - ACTIONS(1785), 1, - sym__block_close, - ACTIONS(1787), 1, - sym__fenced_code_block_end_tilde, - STATE(887), 1, - sym_code_fence_content, - STATE(556), 2, + ACTIONS(1756), 1, + anon_sym_BSLASH, + ACTIONS(1762), 1, + sym__code_span_start, + STATE(520), 1, + aux_sym_pipe_table_row_repeat1, + STATE(525), 1, + sym__pipe_table_code_span, + STATE(599), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(499), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + STATE(735), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1849), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42071,33 +45621,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [20264] = 8, - ACTIONS(1720), 1, + [2657] = 8, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(1789), 1, + ACTIONS(1851), 1, sym__block_close, - ACTIONS(1791), 1, + ACTIONS(1853), 1, sym__fenced_code_block_end_backtick, - STATE(891), 1, + STATE(883), 1, sym_code_fence_content, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(504), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42133,27 +45680,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20326] = 8, - ACTIONS(1738), 1, + [2719] = 11, + ACTIONS(1756), 1, + anon_sym_BSLASH, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, - sym__line_ending, - ACTIONS(1789), 1, - sym__block_close, - ACTIONS(1791), 1, - sym__fenced_code_block_end_tilde, - STATE(947), 1, - sym_code_fence_content, - STATE(556), 2, + STATE(502), 1, + aux_sym_pipe_table_row_repeat1, + STATE(525), 1, + sym__pipe_table_code_span, + STATE(549), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(499), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + STATE(736), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1855), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42179,41 +45732,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [20388] = 11, - ACTIONS(1696), 1, + [2787] = 8, + ACTIONS(1782), 1, + sym__block_close, + ACTIONS(1784), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1700), 1, - anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - STATE(484), 1, - aux_sym_pipe_table_row_repeat1, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(580), 1, - sym__whitespace, - STATE(722), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1793), 3, + ACTIONS(1825), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1694), 4, + STATE(954), 1, + sym_code_fence_content, + STATE(574), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(523), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1698), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42239,30 +45783,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [20456] = 8, - ACTIONS(1738), 1, + sym__word, + [2849] = 8, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(1752), 1, + ACTIONS(1851), 1, sym__block_close, - ACTIONS(1754), 1, + ACTIONS(1853), 1, sym__fenced_code_block_end_tilde, - STATE(913), 1, + STATE(887), 1, sym_code_fence_content, - STATE(556), 2, + STATE(574), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(499), 3, + STATE(523), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42298,28 +45845,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20518] = 7, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1756), 1, + [2911] = 6, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1797), 1, - anon_sym_BSLASH, - STATE(503), 1, - sym__last_token_punctuation, - STATE(502), 3, - sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1799), 4, + ACTIONS(1825), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1795), 34, + ACTIONS(1857), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(574), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(528), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1823), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42345,39 +45888,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20578] = 12, - ACTIONS(1696), 1, + [2968] = 12, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1805), 1, + ACTIONS(1863), 1, anon_sym_BSLASH, - ACTIONS(1807), 1, + ACTIONS(1865), 1, anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1867), 1, sym__code_span_start, - STATE(520), 1, + STATE(545), 1, aux_sym_pipe_table_row_repeat1, - STATE(544), 1, + STATE(565), 1, sym__pipe_table_code_span, - STATE(588), 1, + STATE(603), 1, sym__whitespace, - STATE(757), 1, + STATE(812), 1, sym_pipe_table_cell, - STATE(800), 1, + STATE(840), 1, sym__pipe_table_cell_contents, - STATE(945), 1, + STATE(968), 1, sym_pipe_table_row, - ACTIONS(1801), 4, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1803), 30, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42408,24 +45953,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [20647] = 6, - ACTIONS(1738), 1, + [3037] = 6, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, - sym__line_ending, - ACTIONS(1811), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(556), 2, + ACTIONS(1813), 1, + anon_sym_BSLASH, + STATE(533), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(507), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1740), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1815), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1811), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42451,41 +45998,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20704] = 12, - ACTIONS(1696), 1, + [3094] = 6, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1805), 1, + ACTIONS(1871), 1, anon_sym_BSLASH, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, - sym__code_span_start, - STATE(520), 1, - aux_sym_pipe_table_row_repeat1, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(588), 1, + STATE(532), 3, sym__whitespace, - STATE(757), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - STATE(853), 1, - sym_pipe_table_row, - ACTIONS(1801), 4, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1873), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1869), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42516,26 +46054,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [20773] = 6, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1756), 1, + sym__word, + [3151] = 12, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1797), 1, + ACTIONS(1863), 1, anon_sym_BSLASH, - STATE(502), 3, - sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1799), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1865), 1, anon_sym_PIPE, - ACTIONS(1795), 34, + ACTIONS(1867), 1, + sym__code_span_start, + STATE(545), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(603), 1, + sym__whitespace, + STATE(812), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + STATE(967), 1, + sym_pipe_table_row, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42566,27 +46112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [20830] = 6, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1756), 1, + [3220] = 6, + ACTIONS(1875), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1815), 1, - anon_sym_BSLASH, - STATE(505), 3, - sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1817), 4, + ACTIONS(1881), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1813), 34, + ACTIONS(1884), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(574), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(528), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1878), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42612,32 +46155,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20887] = 6, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1756), 1, + [3277] = 6, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1821), 1, - anon_sym_BSLASH, - STATE(506), 3, - sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1817), 4, + ACTIONS(1780), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - ACTIONS(1819), 34, + ACTIONS(1857), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(585), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(530), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1778), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42663,28 +46206,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20944] = 6, - ACTIONS(1720), 1, + [3334] = 6, + ACTIONS(1886), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1724), 1, + ACTIONS(1892), 1, sym__line_ending, - ACTIONS(1811), 2, + ACTIONS(1884), 2, sym__block_close, sym__fenced_code_block_end_backtick, - STATE(550), 2, + STATE(585), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(508), 3, + STATE(530), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1722), 35, + ACTIONS(1889), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42720,23 +46265,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21001] = 6, - ACTIONS(1826), 1, + [3391] = 6, + ACTIONS(1898), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1829), 1, + ACTIONS(1901), 1, anon_sym_BSLASH, - ACTIONS(1834), 1, + ACTIONS(1906), 1, sym__code_span_start, - STATE(505), 3, + STATE(531), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1832), 4, + ACTIONS(1904), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_PIPE, - ACTIONS(1823), 34, + ACTIONS(1895), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -42771,23 +46316,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [21058] = 6, - ACTIONS(1706), 1, + [3448] = 6, + ACTIONS(1762), 1, sym__code_span_start, - ACTIONS(1756), 1, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1815), 1, + ACTIONS(1911), 1, anon_sym_BSLASH, - STATE(505), 3, + STATE(531), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1837), 4, + ACTIONS(1913), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_PIPE, - ACTIONS(1813), 34, + ACTIONS(1909), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -42822,24 +46367,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [21115] = 6, - ACTIONS(1839), 1, + [3505] = 6, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1845), 1, - sym__line_ending, - ACTIONS(1848), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(556), 2, + ACTIONS(1911), 1, + anon_sym_BSLASH, + STATE(531), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(507), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1842), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1873), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + ACTIONS(1909), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42865,32 +46412,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21172] = 6, - ACTIONS(1850), 1, + [3562] = 12, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1856), 1, - sym__line_ending, - ACTIONS(1848), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(550), 2, + ACTIONS(1863), 1, + anon_sym_BSLASH, + ACTIONS(1865), 1, + anon_sym_PIPE, + ACTIONS(1867), 1, + sym__code_span_start, + STATE(545), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(603), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(508), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1853), 35, + STATE(812), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + STATE(966), 1, + sym_pipe_table_row, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42916,41 +46470,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [21229] = 12, - ACTIONS(1696), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1805), 1, + [3631] = 11, + ACTIONS(1788), 1, + sym__line_ending, + ACTIONS(1863), 1, anon_sym_BSLASH, - ACTIONS(1807), 1, - anon_sym_PIPE, - ACTIONS(1809), 1, + ACTIONS(1867), 1, sym__code_span_start, - STATE(520), 1, + ACTIONS(1915), 1, + aux_sym__commonmark_whitespace_token1, + STATE(540), 1, aux_sym_pipe_table_row_repeat1, - STATE(544), 1, + STATE(565), 1, sym__pipe_table_code_span, - STATE(588), 1, + STATE(594), 1, sym__whitespace, - STATE(757), 1, - sym_pipe_table_cell, STATE(800), 1, + sym_pipe_table_cell, + STATE(840), 1, sym__pipe_table_cell_contents, - STATE(943), 1, - sym_pipe_table_row, - ACTIONS(1801), 4, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1803), 30, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42981,29 +46530,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21298] = 9, - ACTIONS(1700), 1, - anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1859), 1, - anon_sym_PIPE, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(736), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1766), 3, + [3697] = 10, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1770), 1, sym__line_ending, + ACTIONS(1917), 1, sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1694), 4, + STATE(369), 1, + sym__newline, + STATE(566), 1, + aux_sym_paragraph_repeat1, + STATE(596), 1, + sym__whitespace, + STATE(651), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, sym__word, - ACTIONS(1698), 30, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43022,35 +46571,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [21360] = 6, - ACTIONS(1861), 1, + [3761] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1865), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1919), 1, sym__line_ending, - ACTIONS(1867), 1, - sym__block_close, - STATE(575), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(516), 3, + ACTIONS(1921), 1, + sym__eof, + STATE(187), 1, sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1863), 35, + STATE(566), 1, + aux_sym_paragraph_repeat1, + STATE(596), 1, + sym__whitespace, + STATE(651), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43069,7 +46625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43083,32 +46638,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [21416] = 11, - ACTIONS(1766), 1, - sym__line_ending, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1869), 1, + [3825] = 6, + ACTIONS(1923), 1, aux_sym__commonmark_whitespace_token1, - STATE(514), 1, - aux_sym_pipe_table_row_repeat1, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(570), 1, + ACTIONS(1927), 1, + sym__line_ending, + ACTIONS(1929), 1, + sym__block_close, + STATE(608), 2, sym__whitespace, - STATE(776), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + aux_sym__code_line_repeat1, + STATE(550), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1925), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43134,36 +46680,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [21482] = 11, - ACTIONS(1696), 1, + sym__word, + [3881] = 6, + ACTIONS(1923), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1793), 1, + ACTIONS(1927), 1, sym__line_ending, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - STATE(530), 1, - aux_sym_pipe_table_row_repeat1, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(586), 1, + ACTIONS(1931), 1, + sym__block_close, + STATE(608), 2, sym__whitespace, - STATE(776), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + aux_sym__code_line_repeat1, + STATE(553), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1925), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43189,36 +46730,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [21548] = 11, - ACTIONS(1771), 1, + sym__word, + [3937] = 11, + ACTIONS(1797), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1777), 1, + ACTIONS(1803), 1, anon_sym_BSLASH, - ACTIONS(1780), 1, + ACTIONS(1806), 1, sym__line_ending, - ACTIONS(1782), 1, + ACTIONS(1808), 1, sym__code_span_start, - STATE(514), 1, + STATE(540), 1, aux_sym_pipe_table_row_repeat1, - STATE(571), 1, + STATE(586), 1, sym__pipe_table_code_span, - STATE(590), 1, + STATE(617), 1, sym__whitespace, - STATE(824), 1, + STATE(842), 1, sym_pipe_table_cell, - STATE(944), 1, + STATE(910), 1, sym__pipe_table_cell_contents, - ACTIONS(1768), 4, + ACTIONS(1794), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1774), 30, + ACTIONS(1800), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43249,23 +46793,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21614] = 6, - ACTIONS(1871), 1, + [4003] = 7, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(1915), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(1935), 1, + anon_sym_BSLASH, + STATE(561), 1, + sym__last_token_punctuation, + ACTIONS(1815), 2, sym__line_ending, - ACTIONS(1880), 1, - sym__block_close, - STATE(575), 2, + anon_sym_PIPE, + STATE(562), 3, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(515), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1874), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1933), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43291,31 +46838,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21670] = 6, - ACTIONS(1861), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1865), 1, + [4061] = 9, + ACTIONS(1756), 1, + anon_sym_BSLASH, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1937), 1, + anon_sym_PIPE, + STATE(525), 1, + sym__pipe_table_code_span, + STATE(758), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1855), 3, sym__line_ending, - ACTIONS(1882), 1, - sym__block_close, - STATE(575), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(515), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1863), 35, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43341,37 +46892,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [21726] = 9, - ACTIONS(1700), 1, + [4123] = 11, + ACTIONS(1752), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1849), 1, + sym__line_ending, + ACTIONS(1863), 1, anon_sym_BSLASH, - ACTIONS(1706), 1, + ACTIONS(1867), 1, sym__code_span_start, - ACTIONS(1859), 1, - anon_sym_PIPE, - STATE(501), 1, + STATE(547), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, sym__pipe_table_code_span, - STATE(714), 1, + STATE(615), 1, + sym__whitespace, + STATE(800), 1, sym_pipe_table_cell, - STATE(741), 1, + STATE(840), 1, sym__pipe_table_cell_contents, - ACTIONS(1758), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1694), 4, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1698), 30, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43402,26 +46952,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21788] = 7, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1869), 1, + [4189] = 6, + ACTIONS(1923), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1886), 1, - anon_sym_BSLASH, - STATE(536), 1, - sym__last_token_punctuation, - ACTIONS(1799), 2, + ACTIONS(1927), 1, sym__line_ending, - anon_sym_PIPE, - STATE(532), 3, + ACTIONS(1939), 1, + sym__block_close, + STATE(608), 2, sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1884), 34, + aux_sym__code_line_repeat1, + STATE(553), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1925), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43447,29 +46994,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21846] = 6, - ACTIONS(1861), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1865), 1, + [4245] = 11, + ACTIONS(1847), 1, sym__line_ending, - ACTIONS(1888), 1, - sym__block_close, - STATE(575), 2, + ACTIONS(1863), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(1915), 1, + aux_sym__commonmark_whitespace_token1, + STATE(540), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(583), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(522), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1863), 35, + STATE(813), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43495,39 +47052,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [21902] = 11, - ACTIONS(1764), 1, - sym__line_ending, - ACTIONS(1805), 1, + [4311] = 9, + ACTIONS(1756), 1, anon_sym_BSLASH, - ACTIONS(1809), 1, + ACTIONS(1762), 1, sym__code_span_start, - ACTIONS(1869), 1, - aux_sym__commonmark_whitespace_token1, - STATE(514), 1, - aux_sym_pipe_table_row_repeat1, - STATE(544), 1, + ACTIONS(1937), 1, + anon_sym_PIPE, + STATE(525), 1, sym__pipe_table_code_span, - STATE(551), 1, - sym__whitespace, - STATE(771), 1, + STATE(759), 1, sym_pipe_table_cell, - STATE(800), 1, + STATE(775), 1, sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + ACTIONS(1788), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1803), 30, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43558,29 +47110,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21968] = 10, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1890), 1, - sym__line_ending, - ACTIONS(1892), 1, - sym__eof, - STATE(183), 1, - sym__newline, - STATE(541), 1, - aux_sym_paragraph_repeat1, - STATE(555), 1, + [4373] = 11, + ACTIONS(1855), 1, + sym__line_ending, + ACTIONS(1863), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(1915), 1, + aux_sym__commonmark_whitespace_token1, + STATE(540), 1, + aux_sym_pipe_table_row_repeat1, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(573), 1, sym__whitespace, - STATE(616), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + STATE(793), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(7), 31, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43599,36 +47153,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [22032] = 6, - ACTIONS(1861), 1, + [4439] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1865), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1941), 1, sym__line_ending, - ACTIONS(1894), 1, - sym__block_close, - STATE(575), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(515), 3, + ACTIONS(1943), 1, + sym__eof, + STATE(198), 1, sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1863), 35, + STATE(566), 1, + aux_sym_paragraph_repeat1, + STATE(596), 1, + sym__whitespace, + STATE(651), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43647,7 +47206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43661,30 +47219,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22088] = 9, - ACTIONS(1700), 1, + [4503] = 9, + ACTIONS(1756), 1, anon_sym_BSLASH, - ACTIONS(1706), 1, + ACTIONS(1762), 1, sym__code_span_start, - ACTIONS(1859), 1, + ACTIONS(1937), 1, anon_sym_PIPE, - STATE(501), 1, + STATE(525), 1, sym__pipe_table_code_span, - STATE(720), 1, + STATE(742), 1, sym_pipe_table_cell, - STATE(741), 1, + STATE(775), 1, sym__pipe_table_cell_contents, - ACTIONS(1896), 3, + ACTIONS(1945), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1694), 4, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1698), 30, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43715,21 +47272,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [22150] = 6, - ACTIONS(1861), 1, + [4565] = 6, + ACTIONS(1923), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1865), 1, + ACTIONS(1927), 1, sym__line_ending, - ACTIONS(1898), 1, + ACTIONS(1947), 1, sym__block_close, - STATE(575), 2, + STATE(608), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(526), 3, + STATE(553), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1863), 35, + ACTIONS(1925), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43765,29 +47322,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22206] = 10, - ACTIONS(5), 1, + [4621] = 6, + ACTIONS(1923), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1714), 1, + ACTIONS(1927), 1, sym__line_ending, - ACTIONS(1900), 1, - sym__eof, - STATE(422), 1, - sym__newline, - STATE(541), 1, - aux_sym_paragraph_repeat1, - STATE(555), 1, + ACTIONS(1949), 1, + sym__block_close, + STATE(608), 2, sym__whitespace, - STATE(616), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + aux_sym__code_line_repeat1, + STATE(544), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1925), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43806,6 +47357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43819,21 +47371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [22270] = 6, - ACTIONS(1861), 1, + sym__word, + [4677] = 6, + ACTIONS(1923), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1865), 1, + ACTIONS(1927), 1, sym__line_ending, - ACTIONS(1902), 1, + ACTIONS(1951), 1, sym__block_close, - STATE(575), 2, + STATE(608), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(515), 3, + STATE(539), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1863), 35, + ACTIONS(1925), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43869,29 +47422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22326] = 10, - ACTIONS(5), 1, + [4733] = 6, + ACTIONS(1953), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1716), 1, + ACTIONS(1959), 1, sym__line_ending, - ACTIONS(1904), 1, - sym__eof, - STATE(441), 1, - sym__newline, - STATE(541), 1, - aux_sym_paragraph_repeat1, - STATE(555), 1, + ACTIONS(1962), 1, + sym__block_close, + STATE(608), 2, sym__whitespace, - STATE(616), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + aux_sym__code_line_repeat1, + STATE(553), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1956), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43910,6 +47457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -43923,22 +47471,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [22390] = 10, + sym__word, + [4789] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1906), 1, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(1908), 1, + ACTIONS(1964), 1, sym__eof, - STATE(147), 1, + STATE(443), 1, sym__newline, - STATE(541), 1, + STATE(566), 1, aux_sym_paragraph_repeat1, - STATE(555), 1, + STATE(596), 1, sym__whitespace, - STATE(616), 2, + STATE(651), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -43977,22 +47526,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [22454] = 10, + [4853] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1718), 1, + ACTIONS(1966), 1, sym__line_ending, - ACTIONS(1910), 1, + ACTIONS(1968), 1, sym__eof, - STATE(254), 1, + STATE(159), 1, sym__newline, - STATE(541), 1, + STATE(566), 1, aux_sym_paragraph_repeat1, - STATE(555), 1, + STATE(596), 1, sym__whitespace, - STATE(616), 2, + STATE(651), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -44031,31 +47580,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [22518] = 11, - ACTIONS(1758), 1, - sym__line_ending, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1869), 1, + [4917] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(514), 1, - aux_sym_pipe_table_row_repeat1, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(564), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1774), 1, + sym__line_ending, + ACTIONS(1970), 1, + sym__eof, + STATE(270), 1, + sym__newline, + STATE(566), 1, + aux_sym_paragraph_repeat1, + STATE(596), 1, sym__whitespace, - STATE(768), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + STATE(651), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, sym__word, - ACTIONS(1803), 30, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44074,41 +47621,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [22584] = 10, + [4981] = 5, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1912), 1, + STATE(579), 1, + sym__last_token_punctuation, + STATE(571), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(1974), 3, sym__line_ending, - ACTIONS(1914), 1, + sym__soft_line_ending, sym__eof, - STATE(169), 1, - sym__newline, - STATE(541), 1, - aux_sym_paragraph_repeat1, - STATE(555), 1, - sym__whitespace, - STATE(616), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + ACTIONS(1972), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44127,6 +47667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -44140,24 +47681,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [22648] = 6, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1869), 1, + sym__word, + [5034] = 10, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1918), 1, + ACTIONS(1756), 1, anon_sym_BSLASH, - ACTIONS(1817), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(534), 3, - sym__whitespace, + ACTIONS(1762), 1, + sym__code_span_start, + STATE(500), 1, + aux_sym_pipe_table_row_repeat1, + STATE(525), 1, sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1916), 34, + STATE(613), 1, + sym__whitespace, + STATE(749), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44188,23 +47735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [22703] = 7, - ACTIONS(1696), 1, + [5097] = 7, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1799), 1, + ACTIONS(1815), 1, anon_sym_PIPE, - ACTIONS(1922), 1, + ACTIONS(1978), 1, anon_sym_BSLASH, - ACTIONS(1924), 1, + ACTIONS(1980), 1, sym__code_span_start, - STATE(562), 1, + STATE(593), 1, sym__last_token_punctuation, - STATE(547), 3, + STATE(591), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1920), 34, + ACTIONS(1976), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -44239,21 +47785,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [22760] = 6, - ACTIONS(1929), 1, + [5154] = 6, + ACTIONS(1985), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1932), 1, + ACTIONS(1988), 1, anon_sym_BSLASH, - ACTIONS(1935), 1, + ACTIONS(1991), 1, sym__code_span_start, - ACTIONS(1832), 2, + ACTIONS(1904), 2, sym__line_ending, anon_sym_PIPE, - STATE(534), 3, + STATE(560), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1926), 34, + ACTIONS(1982), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -44288,24 +47834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [22815] = 8, - ACTIONS(1716), 1, - sym__line_ending, - ACTIONS(1938), 1, + [5209] = 6, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(1915), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1942), 1, - sym__eof, - STATE(406), 1, - sym__newline, - STATE(546), 1, + ACTIONS(1996), 1, + anon_sym_BSLASH, + ACTIONS(1873), 2, + sym__line_ending, + anon_sym_PIPE, + STATE(569), 3, sym__whitespace, - STATE(583), 1, - aux_sym__code_line_repeat1, - STATE(825), 1, - sym__table_caption_line, - ACTIONS(1940), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1994), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44331,29 +47877,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22874] = 6, - ACTIONS(1809), 1, + [5264] = 6, + ACTIONS(1867), 1, sym__code_span_start, - ACTIONS(1869), 1, + ACTIONS(1915), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1946), 1, + ACTIONS(2000), 1, anon_sym_BSLASH, - ACTIONS(1817), 2, + ACTIONS(1873), 2, sym__line_ending, anon_sym_PIPE, - STATE(538), 3, + STATE(560), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1944), 34, + ACTIONS(1998), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -44388,22 +47932,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [22929] = 8, - ACTIONS(1714), 1, + [5319] = 8, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(1938), 1, + ACTIONS(2002), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1948), 1, + ACTIONS(2006), 1, sym__eof, - STATE(318), 1, + STATE(335), 1, sym__newline, - STATE(568), 1, + STATE(595), 1, sym__whitespace, - STATE(583), 1, + STATE(616), 1, aux_sym__code_line_repeat1, - STATE(790), 1, + STATE(850), 1, sym__table_caption_line, - ACTIONS(1940), 35, + ACTIONS(2004), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44439,24 +47983,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22988] = 6, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1869), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1918), 1, - anon_sym_BSLASH, - ACTIONS(1837), 2, + [5378] = 8, + ACTIONS(1774), 1, sym__line_ending, - anon_sym_PIPE, - STATE(534), 3, + ACTIONS(2002), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2008), 1, + sym__eof, + STATE(257), 1, + sym__newline, + STATE(572), 1, sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1916), 34, + STATE(616), 1, + aux_sym__code_line_repeat1, + STATE(845), 1, + sym__table_caption_line, + ACTIONS(2004), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44482,83 +48026,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23043] = 10, - ACTIONS(1696), 1, + [5437] = 6, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(1915), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1700), 1, + ACTIONS(1935), 1, anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - STATE(488), 1, - aux_sym_pipe_table_row_repeat1, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(574), 1, - sym__whitespace, - STATE(727), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1694), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1698), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [23106] = 8, - ACTIONS(1718), 1, + ACTIONS(1815), 2, sym__line_ending, - ACTIONS(1938), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1950), 1, - sym__eof, - STATE(241), 1, - sym__newline, - STATE(573), 1, + anon_sym_PIPE, + STATE(562), 3, sym__whitespace, - STATE(583), 1, - aux_sym__code_line_repeat1, - STATE(809), 1, - sym__table_caption_line, - ACTIONS(1940), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1933), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44584,34 +48077,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23165] = 8, - ACTIONS(1952), 1, + [5492] = 8, + ACTIONS(2010), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1963), 1, + ACTIONS(2021), 1, sym__soft_line_ending, - STATE(541), 1, + STATE(566), 1, aux_sym_paragraph_repeat1, - STATE(555), 1, + STATE(596), 1, sym__whitespace, - ACTIONS(1961), 2, + ACTIONS(2019), 2, sym__line_ending, sym__eof, - STATE(616), 2, + STATE(651), 2, sym__soft_line_break, sym__line, - ACTIONS(1958), 3, + ACTIONS(2016), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__word, - ACTIONS(1955), 31, + ACTIONS(2013), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44643,29 +48134,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [23224] = 10, - ACTIONS(1696), 1, + [5551] = 10, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1805), 1, + ACTIONS(1863), 1, anon_sym_BSLASH, - ACTIONS(1809), 1, + ACTIONS(1867), 1, sym__code_span_start, - STATE(512), 1, + STATE(535), 1, aux_sym_pipe_table_row_repeat1, - STATE(544), 1, + STATE(565), 1, sym__pipe_table_code_span, - STATE(589), 1, + STATE(602), 1, sym__whitespace, - STATE(771), 1, + STATE(813), 1, sym_pipe_table_cell, - STATE(800), 1, + STATE(840), 1, sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1803), 30, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44696,19 +48187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [23287] = 5, - ACTIONS(5), 1, + [5614] = 8, + ACTIONS(1770), 1, + sym__line_ending, + ACTIONS(2002), 1, aux_sym__commonmark_whitespace_token1, - STATE(549), 1, - sym__last_token_punctuation, - STATE(566), 2, + ACTIONS(2024), 1, + sym__eof, + STATE(380), 1, + sym__newline, + STATE(580), 1, sym__whitespace, + STATE(616), 1, aux_sym__code_line_repeat1, - ACTIONS(1968), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(1966), 35, + STATE(829), 1, + sym__table_caption_line, + ACTIONS(2004), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44744,21 +48238,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23340] = 6, - ACTIONS(1809), 1, + [5673] = 6, + ACTIONS(1867), 1, sym__code_span_start, - ACTIONS(1869), 1, + ACTIONS(1915), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1886), 1, + ACTIONS(2000), 1, anon_sym_BSLASH, - ACTIONS(1799), 2, + ACTIONS(1913), 2, sym__line_ending, anon_sym_PIPE, - STATE(532), 3, + STATE(560), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1884), 34, + ACTIONS(1998), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -44793,12 +48287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [23395] = 3, - ACTIONS(1972), 1, + [5728] = 3, + ACTIONS(2028), 1, anon_sym_BSLASH, - ACTIONS(1974), 1, + ACTIONS(2030), 1, sym_block_continuation, - ACTIONS(1970), 40, + ACTIONS(2026), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -44839,18 +48333,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23444] = 5, - ACTIONS(1938), 1, + [5777] = 4, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(576), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2034), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(2032), 35, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [5827] = 5, + ACTIONS(2002), 1, aux_sym__commonmark_whitespace_token1, - STATE(826), 1, + STATE(847), 1, sym__table_caption_line, - ACTIONS(1680), 2, + ACTIONS(1736), 2, sym__line_ending, sym__eof, - STATE(583), 2, + STATE(616), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1940), 35, + ACTIONS(2004), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44886,23 +48426,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23496] = 6, - ACTIONS(1696), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1817), 1, - anon_sym_PIPE, - ACTIONS(1924), 1, - sym__code_span_start, - ACTIONS(1978), 1, + [5879] = 9, + ACTIONS(1863), 1, anon_sym_BSLASH, - STATE(557), 3, - sym__whitespace, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(1945), 1, + sym__line_ending, + ACTIONS(2036), 1, + anon_sym_PIPE, + STATE(565), 1, sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1976), 34, + STATE(806), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1861), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + [5939] = 4, + ACTIONS(1821), 1, + aux_sym__commonmark_whitespace_token1, + STATE(588), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2040), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2038), 35, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44928,16 +48515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23550] = 2, - ACTIONS(1982), 1, + [5989] = 2, + ACTIONS(2044), 1, anon_sym_BSLASH, - ACTIONS(1980), 40, + ACTIONS(2042), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -44978,17 +48567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23596] = 4, - ACTIONS(5), 1, + [6035] = 4, + ACTIONS(2046), 1, aux_sym__commonmark_whitespace_token1, - STATE(552), 2, + STATE(576), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1986), 3, + ACTIONS(2052), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - ACTIONS(1984), 35, + ACTIONS(2049), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45024,19 +48613,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23646] = 4, - ACTIONS(1720), 1, + [6085] = 8, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(559), 2, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(450), 1, + sym_paragraph, + STATE(536), 1, + aux_sym_paragraph_repeat1, + STATE(596), 1, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1990), 3, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(1988), 35, + STATE(651), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45055,7 +48650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -45069,28 +48663,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [23696] = 9, - ACTIONS(1766), 1, - sym__line_ending, - ACTIONS(1805), 1, + [6143] = 2, + ACTIONS(2056), 1, anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1992), 1, - anon_sym_PIPE, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(789), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + ACTIONS(2054), 40, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1803), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45120,18 +48704,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [23756] = 4, + sym__word, + [6189] = 4, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(572), 2, + STATE(598), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1996), 3, + ACTIONS(2034), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - ACTIONS(1994), 35, + ACTIONS(2058), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45167,18 +48753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23806] = 2, - ACTIONS(1998), 1, - anon_sym_BSLASH, - ACTIONS(1832), 40, + [6239] = 5, + ACTIONS(2002), 1, + aux_sym__commonmark_whitespace_token1, + STATE(843), 1, + sym__table_caption_line, + ACTIONS(1736), 2, sym__line_ending, sym__eof, - sym__pipe_table_line_ending, + STATE(616), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2004), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45204,6 +48792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45211,10 +48800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23852] = 2, - ACTIONS(2002), 1, + [6291] = 2, + ACTIONS(2060), 1, anon_sym_BSLASH, - ACTIONS(2000), 40, + ACTIONS(1904), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -45255,19 +48844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23898] = 4, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - STATE(566), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1968), 3, + [6337] = 2, + ACTIONS(2064), 1, + anon_sym_BSLASH, + ACTIONS(2062), 40, sym__line_ending, - sym__soft_line_ending, sym__eof, - ACTIONS(1966), 35, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45293,7 +48881,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45301,19 +48888,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23948] = 4, - ACTIONS(1738), 1, - aux_sym__commonmark_whitespace_token1, - STATE(560), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1990), 3, + [6383] = 9, + ACTIONS(1788), 1, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(2004), 35, + ACTIONS(1863), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(2036), 1, + anon_sym_PIPE, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(799), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45339,28 +48934,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [23998] = 6, - ACTIONS(1832), 1, + [6443] = 6, + ACTIONS(1904), 1, anon_sym_PIPE, - ACTIONS(2009), 1, + ACTIONS(2069), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2012), 1, + ACTIONS(2072), 1, anon_sym_BSLASH, - ACTIONS(2015), 1, + ACTIONS(2075), 1, sym__code_span_start, - STATE(557), 3, + STATE(584), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2006), 34, + ACTIONS(2066), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -45395,23 +48987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [24052] = 6, - ACTIONS(1696), 1, + [6497] = 4, + ACTIONS(1776), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1837), 1, - anon_sym_PIPE, - ACTIONS(1924), 1, - sym__code_span_start, - ACTIONS(1978), 1, - anon_sym_BSLASH, - STATE(557), 3, + STATE(587), 2, sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1976), 34, + aux_sym__code_line_repeat1, + ACTIONS(2040), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2078), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45437,25 +49025,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24106] = 4, - ACTIONS(2018), 1, + [6547] = 6, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - STATE(559), 2, + ACTIONS(1815), 1, + anon_sym_PIPE, + ACTIONS(1978), 1, + anon_sym_BSLASH, + ACTIONS(1980), 1, + sym__code_span_start, + STATE(591), 3, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2024), 3, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(2021), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1976), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45481,25 +49075,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24156] = 4, - ACTIONS(2026), 1, + [6601] = 4, + ACTIONS(2080), 1, aux_sym__commonmark_whitespace_token1, - STATE(560), 2, + STATE(587), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2024), 3, + ACTIONS(2052), 3, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(2029), 35, + sym__fenced_code_block_end_backtick, + ACTIONS(2083), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45535,18 +49127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24206] = 2, - ACTIONS(2034), 1, - anon_sym_BSLASH, - ACTIONS(2032), 40, + [6651] = 4, + ACTIONS(2086), 1, + aux_sym__commonmark_whitespace_token1, + STATE(588), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2052), 3, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2089), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45572,6 +49165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45579,23 +49173,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24252] = 6, - ACTIONS(1696), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1817), 1, - anon_sym_PIPE, - ACTIONS(1924), 1, - sym__code_span_start, - ACTIONS(2038), 1, + [6701] = 2, + ACTIONS(2094), 1, anon_sym_BSLASH, - STATE(558), 3, - sym__whitespace, - sym__pipe_table_code_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2036), 34, + ACTIONS(2092), 40, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45625,20 +49214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24306] = 8, + [6747] = 8, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - STATE(435), 1, + STATE(449), 1, sym_paragraph, - STATE(525), 1, + STATE(554), 1, aux_sym_paragraph_repeat1, - STATE(555), 1, + STATE(596), 1, sym__whitespace, - STATE(616), 2, + STATE(651), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -45677,27 +49267,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [24364] = 9, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1896), 1, - sym__line_ending, - ACTIONS(1992), 1, + [6805] = 6, + ACTIONS(1752), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1873), 1, anon_sym_PIPE, - STATE(544), 1, + ACTIONS(1980), 1, + sym__code_span_start, + ACTIONS(2098), 1, + anon_sym_BSLASH, + STATE(584), 3, + sym__whitespace, sym__pipe_table_code_span, - STATE(782), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2096), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1803), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45728,18 +49314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [24424] = 8, + sym__word, + [6859] = 8, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - STATE(366), 1, + STATE(299), 1, sym_paragraph, - STATE(527), 1, + STATE(556), 1, aux_sym_paragraph_repeat1, - STATE(555), 1, + STATE(596), 1, sym__whitespace, - STATE(616), 2, + STATE(651), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -45778,19 +49365,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [24482] = 4, - ACTIONS(5), 1, + [6917] = 6, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - STATE(572), 2, + ACTIONS(1873), 1, + anon_sym_PIPE, + ACTIONS(1980), 1, + sym__code_span_start, + ACTIONS(2102), 1, + anon_sym_BSLASH, + STATE(597), 3, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1986), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(1994), 35, + sym__pipe_table_code_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2100), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45816,26 +49407,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24532] = 2, - ACTIONS(2042), 1, - anon_sym_BSLASH, - ACTIONS(2040), 40, + [6971] = 9, + ACTIONS(1855), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1863), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(2036), 1, + anon_sym_PIPE, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(789), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45865,21 +49463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24578] = 5, - ACTIONS(1938), 1, + [7031] = 5, + ACTIONS(2002), 1, aux_sym__commonmark_whitespace_token1, - STATE(827), 1, + STATE(855), 1, sym__table_caption_line, - ACTIONS(1680), 2, + ACTIONS(1736), 2, sym__line_ending, sym__eof, - STATE(583), 2, + STATE(616), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1940), 35, + ACTIONS(2004), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45915,25 +49511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24630] = 8, + [7083] = 4, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - STATE(294), 1, - sym_paragraph, - STATE(529), 1, - aux_sym_paragraph_repeat1, - STATE(555), 1, + STATE(571), 2, sym__whitespace, - STATE(616), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + aux_sym__code_line_repeat1, + ACTIONS(1974), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(1972), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45952,6 +49542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -45965,71 +49556,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [24688] = 9, - ACTIONS(1758), 1, - sym__line_ending, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1992), 1, - anon_sym_PIPE, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(761), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, sym__word, - ACTIONS(1803), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [24748] = 6, - ACTIONS(1696), 1, + [7133] = 6, + ACTIONS(1752), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1799), 1, + ACTIONS(1913), 1, anon_sym_PIPE, - ACTIONS(1922), 1, - anon_sym_BSLASH, - ACTIONS(1924), 1, + ACTIONS(1980), 1, sym__code_span_start, - STATE(547), 3, + ACTIONS(2098), 1, + anon_sym_BSLASH, + STATE(584), 3, sym__whitespace, sym__pipe_table_code_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1920), 34, + ACTIONS(2096), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -46064,17 +49605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [24802] = 4, - ACTIONS(2044), 1, + [7187] = 4, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(572), 2, + STATE(576), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2024), 3, + ACTIONS(2104), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - ACTIONS(2047), 35, + ACTIONS(2032), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46110,20 +49651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24852] = 5, - ACTIONS(1938), 1, - aux_sym__commonmark_whitespace_token1, - STATE(835), 1, - sym__table_caption_line, - ACTIONS(1680), 2, - sym__line_ending, - sym__eof, - STATE(583), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1940), 35, + [7237] = 8, + ACTIONS(1756), 1, + anon_sym_BSLASH, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(1937), 1, + anon_sym_PIPE, + STATE(525), 1, + sym__pipe_table_code_span, + STATE(758), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46149,33 +49695,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24904] = 8, - ACTIONS(1700), 1, + [7294] = 2, + ACTIONS(2108), 1, anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1859), 1, - anon_sym_PIPE, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(736), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1694), 4, + ACTIONS(2106), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1698), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46206,16 +49742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [24961] = 4, - ACTIONS(1861), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1990), 2, + sym__word, + [7339] = 5, + ACTIONS(1736), 1, sym__line_ending, - sym__block_close, - STATE(577), 2, + ACTIONS(1764), 1, + aux_sym__commonmark_whitespace_token1, + STATE(941), 1, + sym__atx_heading_line, + STATE(631), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2050), 35, + ACTIONS(1768), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46251,18 +49789,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25010] = 2, - ACTIONS(2052), 1, + [7390] = 8, + ACTIONS(1863), 1, anon_sym_BSLASH, - ACTIONS(1793), 39, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(2036), 1, + anon_sym_PIPE, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(799), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46293,19 +49838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [25055] = 4, - ACTIONS(2054), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2024), 2, - sym__line_ending, - sym__block_close, - STATE(577), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2057), 35, + [7447] = 8, + ACTIONS(1863), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, + sym__code_span_start, + ACTIONS(2110), 1, + anon_sym_PIPE, + STATE(565), 1, + sym__pipe_table_code_span, + STATE(796), 1, + sym_pipe_table_cell, + STATE(840), 1, + sym__pipe_table_cell_contents, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46331,18 +49882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [25104] = 2, - ACTIONS(2060), 1, + [7504] = 2, + ACTIONS(2112), 1, sym_block_continuation, - ACTIONS(1321), 39, + ACTIONS(1356), 39, sym__line_ending, sym__block_close, sym__fenced_code_block_end_backtick, @@ -46382,10 +49930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25149] = 2, - ACTIONS(2064), 1, + [7549] = 2, + ACTIONS(2116), 1, anon_sym_BSLASH, - ACTIONS(2062), 39, + ACTIONS(2114), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -46425,25 +49973,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [25194] = 8, - ACTIONS(1700), 1, - anon_sym_BSLASH, - ACTIONS(1706), 1, - sym__code_span_start, - ACTIONS(1859), 1, - anon_sym_PIPE, - STATE(501), 1, - sym__pipe_table_code_span, - STATE(714), 1, - sym_pipe_table_cell, - STATE(741), 1, - sym__pipe_table_cell_contents, - ACTIONS(1694), 4, + [7594] = 2, + ACTIONS(2118), 1, + sym_block_continuation, + ACTIONS(1356), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1698), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46469,23 +50008,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [25251] = 2, - ACTIONS(2068), 1, + sym__word, + [7639] = 8, + ACTIONS(1756), 1, anon_sym_BSLASH, - ACTIONS(2066), 39, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1762), 1, + sym__code_span_start, + ACTIONS(2120), 1, + anon_sym_PIPE, + STATE(525), 1, + sym__pipe_table_code_span, + STATE(751), 1, + sym_pipe_table_cell, + STATE(775), 1, + sym__pipe_table_cell_contents, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46516,17 +50065,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [25296] = 4, - ACTIONS(2070), 1, + [7696] = 4, + ACTIONS(1923), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2024), 2, + ACTIONS(2040), 2, sym__line_ending, - sym__eof, - STATE(582), 2, + sym__block_close, + STATE(611), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2073), 35, + ACTIONS(2122), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46562,16 +50110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25345] = 4, - ACTIONS(1938), 1, + [7745] = 4, + ACTIONS(2124), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2078), 2, + ACTIONS(2052), 2, sym__line_ending, sym__eof, - STATE(582), 2, + STATE(609), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2076), 35, + ACTIONS(2127), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46607,25 +50155,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25394] = 8, - ACTIONS(1859), 1, + [7794] = 8, + ACTIONS(1937), 1, anon_sym_PIPE, - ACTIONS(1924), 1, + ACTIONS(1980), 1, sym__code_span_start, - ACTIONS(2084), 1, + ACTIONS(2134), 1, anon_sym_BSLASH, - STATE(571), 1, + STATE(586), 1, sym__pipe_table_code_span, - STATE(816), 1, + STATE(834), 1, sym_pipe_table_cell, - STATE(944), 1, + STATE(910), 1, sym__pipe_table_cell_contents, - ACTIONS(2080), 4, + ACTIONS(2130), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2082), 30, + ACTIONS(2132), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46656,16 +50204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [25451] = 2, - ACTIONS(2086), 1, - sym_block_continuation, - ACTIONS(1321), 39, + [7851] = 4, + ACTIONS(2136), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2052), 2, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_tilde, + STATE(611), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2139), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46699,59 +50249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25496] = 8, - ACTIONS(1805), 1, - anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1992), 1, - anon_sym_PIPE, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(761), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1803), 30, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [25553] = 2, - ACTIONS(2088), 1, + [7900] = 2, + ACTIONS(2142), 1, anon_sym_BSLASH, - ACTIONS(1780), 39, + ACTIONS(1849), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -46791,25 +50292,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [25598] = 8, - ACTIONS(1805), 1, + [7945] = 8, + ACTIONS(1756), 1, anon_sym_BSLASH, - ACTIONS(1809), 1, + ACTIONS(1762), 1, sym__code_span_start, - ACTIONS(2090), 1, + ACTIONS(1937), 1, anon_sym_PIPE, - STATE(544), 1, + STATE(525), 1, sym__pipe_table_code_span, - STATE(787), 1, + STATE(759), 1, sym_pipe_table_cell, - STATE(800), 1, + STATE(775), 1, sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + ACTIONS(1750), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1803), 30, + ACTIONS(1754), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46840,25 +50341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [25655] = 8, - ACTIONS(1805), 1, + [8002] = 2, + ACTIONS(2144), 1, anon_sym_BSLASH, - ACTIONS(1809), 1, - sym__code_span_start, - ACTIONS(1992), 1, - anon_sym_PIPE, - STATE(544), 1, - sym__pipe_table_code_span, - STATE(789), 1, - sym_pipe_table_cell, - STATE(800), 1, - sym__pipe_table_cell_contents, - ACTIONS(1801), 4, + ACTIONS(1806), 39, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__backslash_escape, - sym__word, - ACTIONS(1803), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46889,25 +50383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [25712] = 8, - ACTIONS(1924), 1, + sym__word, + [8047] = 8, + ACTIONS(1863), 1, + anon_sym_BSLASH, + ACTIONS(1867), 1, sym__code_span_start, - ACTIONS(1992), 1, + ACTIONS(2036), 1, anon_sym_PIPE, - ACTIONS(2084), 1, - anon_sym_BSLASH, - STATE(571), 1, + STATE(565), 1, sym__pipe_table_code_span, - STATE(799), 1, + STATE(789), 1, sym_pipe_table_cell, - STATE(944), 1, + STATE(840), 1, sym__pipe_table_cell_contents, - ACTIONS(2080), 4, + ACTIONS(1859), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2082), 30, + ACTIONS(1861), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46938,17 +50433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [25769] = 5, - ACTIONS(1680), 1, - sym__line_ending, - ACTIONS(1708), 1, + [8104] = 4, + ACTIONS(2002), 1, aux_sym__commonmark_whitespace_token1, - STATE(886), 1, - sym__atx_heading_line, - STATE(613), 2, + ACTIONS(2148), 2, + sym__line_ending, + sym__eof, + STATE(609), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1712), 35, + ACTIONS(2146), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46984,25 +50478,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25820] = 8, - ACTIONS(1700), 1, - anon_sym_BSLASH, - ACTIONS(1706), 1, + [8153] = 8, + ACTIONS(1980), 1, sym__code_span_start, - ACTIONS(2092), 1, + ACTIONS(2036), 1, anon_sym_PIPE, - STATE(501), 1, + ACTIONS(2134), 1, + anon_sym_BSLASH, + STATE(586), 1, sym__pipe_table_code_span, - STATE(730), 1, + STATE(816), 1, sym_pipe_table_cell, - STATE(741), 1, + STATE(910), 1, sym__pipe_table_cell_contents, - ACTIONS(1694), 4, + ACTIONS(2130), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1698), 30, + ACTIONS(2132), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47033,20 +50527,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [25877] = 1, - ACTIONS(1394), 39, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [8210] = 5, + ACTIONS(2153), 1, + anon_sym_DQUOTE, + ACTIONS(2155), 1, + anon_sym_BSLASH, + ACTIONS(2158), 1, + sym__soft_line_ending, + STATE(618), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(2150), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -47066,19 +50564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [25919] = 1, - ACTIONS(2032), 39, + [8260] = 2, + ACTIONS(2161), 1, + sym_block_continuation, + ACTIONS(1356), 38, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -47115,8 +50614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25961] = 1, - ACTIONS(2032), 39, + [8304] = 1, + ACTIONS(2092), 39, sym__line_ending, sym__block_close, sym__fenced_code_block_end_tilde, @@ -47156,10 +50655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26003] = 2, - ACTIONS(2034), 1, + [8346] = 2, + ACTIONS(2094), 1, anon_sym_BSLASH, - ACTIONS(2032), 38, + ACTIONS(2092), 38, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -47198,18 +50697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26047] = 5, - ACTIONS(2096), 1, + [8390] = 5, + ACTIONS(2165), 1, anon_sym_SQUOTE, - ACTIONS(2098), 1, + ACTIONS(2167), 1, anon_sym_BSLASH, - ACTIONS(2100), 1, + ACTIONS(2169), 1, sym__soft_line_ending, - STATE(606), 3, + STATE(633), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(2094), 33, + ACTIONS(2163), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47243,24 +50742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26097] = 5, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_BSLASH, - ACTIONS(2108), 1, - sym__soft_line_ending, - STATE(604), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2102), 33, + [8440] = 1, + ACTIONS(1436), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -47280,23 +50775,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [26147] = 2, - ACTIONS(2110), 1, - sym_block_continuation, - ACTIONS(1321), 38, + [8482] = 4, + ACTIONS(2052), 1, sym__line_ending, - sym__block_close, + ACTIONS(2171), 1, + aux_sym__commonmark_whitespace_token1, + STATE(624), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2174), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47330,15 +50827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26191] = 2, - ACTIONS(1998), 1, - anon_sym_BSLASH, - ACTIONS(1832), 38, + [8530] = 2, + ACTIONS(2179), 1, + sym_block_continuation, + ACTIONS(2177), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47358,13 +50855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47372,15 +50869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26235] = 2, - ACTIONS(2002), 1, - anon_sym_BSLASH, - ACTIONS(2000), 38, + [8574] = 1, + ACTIONS(2052), 39, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47407,6 +50902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47414,17 +50910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26279] = 4, - ACTIONS(2024), 1, + [8616] = 1, + ACTIONS(1436), 39, sym__line_ending, - ACTIONS(2112), 1, - aux_sym__commonmark_whitespace_token1, - STATE(602), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2115), 35, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47458,8 +50951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26327] = 1, - ACTIONS(2024), 39, + [8658] = 1, + ACTIONS(2052), 39, sym__line_ending, sym__block_close, sym__fenced_code_block_end_backtick, @@ -47499,18 +50992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26369] = 5, - ACTIONS(2096), 1, + [8700] = 5, + ACTIONS(2165), 1, anon_sym_DQUOTE, - ACTIONS(2108), 1, - sym__soft_line_ending, - ACTIONS(2120), 1, + ACTIONS(2183), 1, anon_sym_BSLASH, - STATE(611), 3, + ACTIONS(2185), 1, + sym__soft_line_ending, + STATE(618), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(2118), 33, + ACTIONS(2181), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47544,10 +51037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [26419] = 2, - ACTIONS(1982), 1, + [8750] = 2, + ACTIONS(2060), 1, anon_sym_BSLASH, - ACTIONS(1980), 38, + ACTIONS(1904), 38, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -47586,23 +51079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26463] = 5, - ACTIONS(2125), 1, - anon_sym_SQUOTE, - ACTIONS(2127), 1, - anon_sym_BSLASH, - ACTIONS(2130), 1, - sym__soft_line_ending, - STATE(606), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2122), 33, + [8794] = 4, + ACTIONS(1764), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2189), 1, + sym__line_ending, + STATE(624), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2187), 35, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_BSLASH_SQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -47624,6 +51115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47631,13 +51123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26513] = 1, - ACTIONS(2024), 39, + [8842] = 2, + ACTIONS(2064), 1, + anon_sym_BSLASH, + ACTIONS(2062), 38, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47664,7 +51158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47672,18 +51165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26555] = 5, - ACTIONS(2100), 1, - sym__soft_line_ending, - ACTIONS(2104), 1, + [8886] = 5, + ACTIONS(2194), 1, anon_sym_SQUOTE, - ACTIONS(2135), 1, + ACTIONS(2196), 1, anon_sym_BSLASH, - STATE(597), 3, + ACTIONS(2199), 1, + sym__soft_line_ending, + STATE(633), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(2133), 33, + ACTIONS(2191), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47717,13 +51210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26605] = 2, - ACTIONS(2139), 1, - sym_block_continuation, - ACTIONS(2137), 38, + [8936] = 1, + ACTIONS(2052), 39, sym__line_ending, - sym__soft_line_ending, - sym__eof, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -47745,6 +51236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -47759,8 +51251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26649] = 1, - ACTIONS(2024), 39, + [8978] = 1, + ACTIONS(2092), 39, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -47800,24 +51292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26691] = 5, - ACTIONS(2144), 1, - anon_sym_DQUOTE, - ACTIONS(2146), 1, + [9020] = 2, + ACTIONS(2056), 1, anon_sym_BSLASH, - ACTIONS(2149), 1, - sym__soft_line_ending, - STATE(611), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2141), 33, + ACTIONS(2054), 38, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -47843,20 +51333,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [26741] = 1, - ACTIONS(2032), 39, - sym__line_ending, + [9064] = 5, + ACTIONS(2169), 1, sym__soft_line_ending, - sym__eof, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(2204), 1, + anon_sym_SQUOTE, + ACTIONS(2206), 1, + anon_sym_BSLASH, + STATE(622), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2202), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -47878,7 +51372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47886,23 +51379,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26783] = 4, - ACTIONS(1708), 1, + [9114] = 5, + ACTIONS(2185), 1, + sym__soft_line_ending, + ACTIONS(2204), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, + anon_sym_BSLASH, + STATE(629), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(2208), 33, aux_sym__commonmark_whitespace_token1, - ACTIONS(2154), 1, - sym__line_ending, - STATE(602), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2152), 35, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -47922,19 +51416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [26831] = 1, - ACTIONS(1394), 39, + [9164] = 1, + ACTIONS(2092), 39, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_tilde, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -47971,8 +51465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26873] = 1, - ACTIONS(2024), 38, + [9206] = 1, + ACTIONS(1436), 38, sym__line_ending, sym__block_close, sym__display_math_state_track_marker, @@ -48011,13 +51505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26914] = 1, - ACTIONS(2156), 38, - sym__line_ending, - sym__soft_line_ending, - sym__eof, + [9247] = 2, + ACTIONS(2094), 1, + anon_sym_BSLASH, + ACTIONS(2092), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48037,13 +51532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48051,15 +51546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26955] = 2, - ACTIONS(2088), 1, - anon_sym_BSLASH, - ACTIONS(1780), 37, + [9290] = 1, + ACTIONS(2052), 38, sym__line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48086,16 +51578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26998] = 2, - ACTIONS(1998), 1, + [9331] = 2, + ACTIONS(2108), 1, anon_sym_BSLASH, - ACTIONS(1832), 37, + ACTIONS(2106), 37, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -48130,13 +51625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27041] = 1, - ACTIONS(1394), 38, + [9374] = 1, + ACTIONS(2092), 38, sym__line_ending, - sym__block_close, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48173,15 +51667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27082] = 2, - ACTIONS(2064), 1, - anon_sym_BSLASH, - ACTIONS(2062), 37, + [9415] = 1, + ACTIONS(2092), 38, sym__line_ending, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48208,20 +51699,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27125] = 2, - ACTIONS(2034), 1, - anon_sym_BSLASH, - ACTIONS(2032), 37, + [9456] = 1, + ACTIONS(2212), 38, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48241,13 +51733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48255,11 +51747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27168] = 2, - ACTIONS(2052), 1, + [9497] = 2, + ACTIONS(2056), 1, anon_sym_BSLASH, - ACTIONS(1793), 37, - sym__line_ending, + ACTIONS(2054), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -48294,14 +51785,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27211] = 1, - ACTIONS(2032), 38, + [9540] = 2, + ACTIONS(2144), 1, + anon_sym_BSLASH, + ACTIONS(1806), 37, sym__line_ending, - sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48328,18 +51823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27252] = 2, - ACTIONS(2002), 1, + [9583] = 2, + ACTIONS(2142), 1, anon_sym_BSLASH, - ACTIONS(2000), 37, + ACTIONS(1849), 37, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -48374,13 +51868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27295] = 2, - ACTIONS(1982), 1, + [9626] = 2, + ACTIONS(2116), 1, anon_sym_BSLASH, - ACTIONS(1980), 37, + ACTIONS(2114), 37, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -48415,18 +51909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27338] = 2, - ACTIONS(2068), 1, - anon_sym_BSLASH, - ACTIONS(2066), 37, + [9669] = 1, + ACTIONS(2214), 38, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48446,26 +51937,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27381] = 1, - ACTIONS(2158), 38, - sym__line_ending, - sym__soft_line_ending, - sym__eof, + [9710] = 2, + ACTIONS(2064), 1, + anon_sym_BSLASH, + ACTIONS(2062), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48485,13 +51978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48499,12 +51992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27422] = 1, - ACTIONS(2032), 38, - sym__line_ending, - sym__block_close, + [9753] = 2, + ACTIONS(2060), 1, + anon_sym_BSLASH, + ACTIONS(1904), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48531,7 +52026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48539,10 +52033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27463] = 1, - ACTIONS(2024), 38, + [9796] = 1, + ACTIONS(2052), 38, sym__line_ending, - sym__eof, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48579,15 +52073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27504] = 4, - ACTIONS(2160), 1, + [9837] = 3, + ACTIONS(2216), 1, + anon_sym_BSLASH, + ACTIONS(2218), 1, + sym_block_continuation, + ACTIONS(2177), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2166), 1, - sym__code_span_close, - STATE(630), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2163), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48613,23 +52106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [27550] = 4, - ACTIONS(2168), 1, + [9881] = 1, + ACTIONS(2052), 37, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, - ACTIONS(2172), 1, - sym__code_span_close, - STATE(634), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2170), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48663,19 +52153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27596] = 3, - ACTIONS(2174), 1, - anon_sym_BSLASH, - ACTIONS(2176), 1, - sym_block_continuation, - ACTIONS(2137), 35, - sym__soft_line_ending, + [9921] = 4, + ACTIONS(2220), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2224), 1, + sym__code_span_close, + STATE(659), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2222), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, - anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -48697,6 +52187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48704,14 +52195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27640] = 3, - ACTIONS(2174), 1, - anon_sym_BSLASH, - ACTIONS(2178), 1, - sym_block_continuation, - ACTIONS(2137), 35, - sym__soft_line_ending, + [9967] = 4, + ACTIONS(2220), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2228), 1, + sym__code_span_close, + STATE(663), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2226), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48737,23 +52229,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [27684] = 4, - ACTIONS(2168), 1, + [10013] = 4, + ACTIONS(2220), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2182), 1, + ACTIONS(2230), 1, sym__code_span_close, - STATE(630), 2, + STATE(663), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2180), 33, + ACTIONS(2226), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48787,15 +52279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27730] = 4, - ACTIONS(2168), 1, + [10059] = 1, + ACTIONS(2092), 37, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, - ACTIONS(2186), 1, - sym__code_span_close, - STATE(639), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2184), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48829,15 +52318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27776] = 4, - ACTIONS(2168), 1, + [10099] = 4, + ACTIONS(2220), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2190), 1, + ACTIONS(2234), 1, sym__code_span_close, - STATE(638), 2, + STATE(664), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2188), 33, + ACTIONS(2232), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48871,16 +52360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27822] = 1, - ACTIONS(2024), 37, - sym__line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10145] = 3, + ACTIONS(2216), 1, + anon_sym_BSLASH, + ACTIONS(2236), 1, + sym_block_continuation, + ACTIONS(2177), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -48902,7 +52394,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48910,15 +52401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27862] = 4, - ACTIONS(2168), 1, + [10189] = 4, + ACTIONS(2238), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2192), 1, + ACTIONS(2244), 1, sym__code_span_close, - STATE(630), 2, + STATE(663), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2180), 33, + ACTIONS(2241), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48952,15 +52443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27908] = 4, - ACTIONS(2168), 1, + [10235] = 4, + ACTIONS(2220), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2194), 1, + ACTIONS(2246), 1, sym__code_span_close, - STATE(630), 2, + STATE(663), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2180), 33, + ACTIONS(2226), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48994,12 +52485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27954] = 1, - ACTIONS(2032), 37, - sym__line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10281] = 4, + ACTIONS(2220), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2250), 1, + sym__code_span_close, + STATE(658), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2248), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49033,16 +52527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27994] = 2, - ACTIONS(2196), 1, + [10327] = 2, + ACTIONS(2252), 1, anon_sym_BSLASH, - ACTIONS(2158), 35, + ACTIONS(2194), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -49070,12 +52565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [28035] = 2, - ACTIONS(2196), 1, + [10368] = 2, + ACTIONS(2254), 1, anon_sym_BSLASH, - ACTIONS(2158), 35, + ACTIONS(2212), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -49111,17 +52605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28076] = 2, - ACTIONS(2198), 1, - anon_sym_BSLASH, - ACTIONS(2125), 35, + [10409] = 1, + ACTIONS(2092), 36, sym__soft_line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, - anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -49136,13 +52629,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -49150,10 +52643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28117] = 2, - ACTIONS(2200), 1, + [10448] = 2, + ACTIONS(2254), 1, anon_sym_BSLASH, - ACTIONS(2144), 35, + ACTIONS(2212), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -49189,11 +52682,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [28158] = 1, - ACTIONS(2032), 36, + [10489] = 2, + ACTIONS(2256), 1, + anon_sym_BSLASH, + ACTIONS(2153), 35, sym__soft_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49213,22 +52706,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [28197] = 1, - ACTIONS(2032), 35, + [10530] = 1, + ACTIONS(2092), 35, sym__code_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -49264,8 +52758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28235] = 1, - ACTIONS(2166), 35, + [10568] = 1, + ACTIONS(2244), 35, sym__code_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -49301,7 +52795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28273] = 15, + [10606] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -49314,68 +52808,68 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2202), 1, + ACTIONS(2258), 1, ts_builtin_sym_end, - STATE(66), 1, + STATE(75), 1, sym__atx_heading1, - STATE(77), 1, + STATE(81), 1, sym__atx_heading2, - STATE(86), 1, + STATE(92), 1, sym__atx_heading3, - STATE(97), 1, + STATE(100), 1, sym__atx_heading4, - STATE(105), 1, + STATE(109), 1, sym__atx_heading5, - STATE(114), 1, + STATE(116), 1, sym__atx_heading6, - STATE(649), 2, + STATE(676), 2, sym_section, aux_sym_document_repeat2, - STATE(706), 6, + STATE(711), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [28325] = 15, - ACTIONS(2204), 1, - ts_builtin_sym_end, - ACTIONS(2206), 1, + [10658] = 15, + ACTIONS(17), 1, sym_atx_h1_marker, - ACTIONS(2209), 1, + ACTIONS(19), 1, sym_atx_h2_marker, - ACTIONS(2212), 1, + ACTIONS(21), 1, sym_atx_h3_marker, - ACTIONS(2215), 1, + ACTIONS(23), 1, sym_atx_h4_marker, - ACTIONS(2218), 1, + ACTIONS(25), 1, sym_atx_h5_marker, - ACTIONS(2221), 1, + ACTIONS(27), 1, sym_atx_h6_marker, - STATE(66), 1, + ACTIONS(2260), 1, + ts_builtin_sym_end, + STATE(75), 1, sym__atx_heading1, - STATE(77), 1, + STATE(81), 1, sym__atx_heading2, - STATE(86), 1, + STATE(92), 1, sym__atx_heading3, - STATE(97), 1, + STATE(100), 1, sym__atx_heading4, - STATE(105), 1, + STATE(109), 1, sym__atx_heading5, - STATE(114), 1, + STATE(116), 1, sym__atx_heading6, - STATE(649), 2, + STATE(676), 2, sym_section, aux_sym_document_repeat2, - STATE(706), 6, + STATE(711), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [28377] = 15, + [10710] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -49388,68 +52882,68 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2224), 1, + ACTIONS(2262), 1, ts_builtin_sym_end, - STATE(66), 1, + STATE(75), 1, sym__atx_heading1, - STATE(77), 1, + STATE(81), 1, sym__atx_heading2, - STATE(86), 1, + STATE(92), 1, sym__atx_heading3, - STATE(97), 1, + STATE(100), 1, sym__atx_heading4, - STATE(105), 1, + STATE(109), 1, sym__atx_heading5, - STATE(114), 1, + STATE(116), 1, sym__atx_heading6, - STATE(649), 2, + STATE(676), 2, sym_section, aux_sym_document_repeat2, - STATE(706), 6, + STATE(711), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [28429] = 15, - ACTIONS(17), 1, + [10762] = 15, + ACTIONS(2264), 1, + ts_builtin_sym_end, + ACTIONS(2266), 1, sym_atx_h1_marker, - ACTIONS(19), 1, + ACTIONS(2269), 1, sym_atx_h2_marker, - ACTIONS(21), 1, + ACTIONS(2272), 1, sym_atx_h3_marker, - ACTIONS(23), 1, + ACTIONS(2275), 1, sym_atx_h4_marker, - ACTIONS(25), 1, + ACTIONS(2278), 1, sym_atx_h5_marker, - ACTIONS(27), 1, + ACTIONS(2281), 1, sym_atx_h6_marker, - ACTIONS(358), 1, - ts_builtin_sym_end, - STATE(66), 1, + STATE(75), 1, sym__atx_heading1, - STATE(77), 1, + STATE(81), 1, sym__atx_heading2, - STATE(86), 1, + STATE(92), 1, sym__atx_heading3, - STATE(97), 1, + STATE(100), 1, sym__atx_heading4, - STATE(105), 1, + STATE(109), 1, sym__atx_heading5, - STATE(114), 1, + STATE(116), 1, sym__atx_heading6, - STATE(649), 2, + STATE(676), 2, sym_section, aux_sym_document_repeat2, - STATE(706), 6, + STATE(711), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [28481] = 15, + [10814] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -49462,4905 +52956,4694 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2226), 1, + ACTIONS(391), 1, ts_builtin_sym_end, - STATE(66), 1, + STATE(75), 1, sym__atx_heading1, - STATE(77), 1, + STATE(81), 1, sym__atx_heading2, - STATE(86), 1, + STATE(92), 1, sym__atx_heading3, - STATE(97), 1, + STATE(100), 1, sym__atx_heading4, - STATE(105), 1, + STATE(109), 1, sym__atx_heading5, - STATE(114), 1, + STATE(116), 1, sym__atx_heading6, - STATE(649), 2, + STATE(676), 2, sym_section, aux_sym_document_repeat2, - STATE(706), 6, + STATE(711), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [28533] = 12, - ACTIONS(1676), 1, + [10866] = 12, + ACTIONS(1732), 1, sym_raw_specifier, - ACTIONS(1678), 1, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1682), 1, + ACTIONS(1738), 1, anon_sym_RBRACE, - ACTIONS(1684), 1, + ACTIONS(1740), 1, sym_commonmark_name, - ACTIONS(1686), 1, + ACTIONS(1742), 1, sym_id_specifier, - ACTIONS(1688), 1, + ACTIONS(1744), 1, sym_class_specifier, - ACTIONS(1692), 1, + ACTIONS(1748), 1, sym_key_value_key, - STATE(663), 1, + STATE(689), 1, sym__commonmark_whitespace, - STATE(669), 1, + STATE(693), 1, aux_sym_commonmark_attribute_repeat1, - STATE(705), 1, + STATE(733), 1, aux_sym_commonmark_attribute_repeat2, - STATE(743), 1, - sym__attribute, - STATE(744), 1, + STATE(773), 1, aux_sym_commonmark_attribute_repeat3, - [28570] = 8, - ACTIONS(1742), 1, + STATE(777), 1, + sym__attribute, + [10903] = 8, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(2228), 1, + ACTIONS(2284), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(477), 1, + STATE(499), 1, sym__newline, - STATE(672), 1, + STATE(694), 1, sym__whitespace, - STATE(902), 2, + STATE(886), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28598] = 8, - ACTIONS(1724), 1, + [10931] = 8, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(2228), 1, + ACTIONS(2284), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(476), 1, + STATE(508), 1, sym__newline, - STATE(670), 1, + STATE(695), 1, sym__whitespace, - STATE(901), 2, + STATE(943), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28626] = 8, - ACTIONS(1724), 1, + [10959] = 8, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(2228), 1, + ACTIONS(2284), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(485), 1, + STATE(509), 1, sym__newline, - STATE(675), 1, + STATE(696), 1, sym__whitespace, - STATE(904), 2, + STATE(944), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28654] = 8, - ACTIONS(1742), 1, + [10987] = 8, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(2228), 1, + ACTIONS(2284), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(490), 1, + STATE(505), 1, sym__newline, - STATE(673), 1, + STATE(698), 1, sym__whitespace, - STATE(925), 2, + STATE(926), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28682] = 8, - ACTIONS(1724), 1, + [11015] = 8, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(2228), 1, + ACTIONS(2284), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(474), 1, + STATE(521), 1, sym__newline, - STATE(671), 1, + STATE(701), 1, sym__whitespace, - STATE(923), 2, + STATE(916), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28710] = 8, - ACTIONS(1742), 1, + [11043] = 8, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(2228), 1, + ACTIONS(2284), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(486), 1, + STATE(504), 1, sym__newline, - STATE(667), 1, + STATE(699), 1, sym__whitespace, - STATE(920), 2, + STATE(924), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28738] = 8, - ACTIONS(2234), 1, + [11071] = 8, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2237), 1, + ACTIONS(2292), 1, anon_sym_DASH, - ACTIONS(2240), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(660), 1, + STATE(688), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(751), 1, + STATE(706), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(783), 1, + STATE(713), 1, sym__whitespace, - STATE(817), 1, + STATE(741), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2243), 3, + ACTIONS(2296), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28765] = 8, - ACTIONS(2245), 1, + [11098] = 8, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2247), 1, + ACTIONS(2292), 1, anon_sym_DASH, - ACTIONS(2249), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(660), 1, + STATE(688), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(681), 1, + STATE(706), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(683), 1, + STATE(729), 1, sym__whitespace, - STATE(723), 1, + STATE(754), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2251), 3, + ACTIONS(2298), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28792] = 8, - ACTIONS(2245), 1, + [11125] = 8, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2247), 1, + ACTIONS(2292), 1, anon_sym_DASH, - ACTIONS(2249), 1, + ACTIONS(2294), 1, anon_sym_COLON, - STATE(660), 1, + STATE(688), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(681), 1, + STATE(706), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(687), 1, + STATE(734), 1, sym__whitespace, - STATE(719), 1, + STATE(760), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2253), 3, + ACTIONS(2300), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28819] = 10, - ACTIONS(1686), 1, - sym_id_specifier, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, - sym_key_value_key, - ACTIONS(2255), 1, - sym_raw_specifier, - ACTIONS(2257), 1, - anon_sym_RBRACE, - ACTIONS(2259), 1, - sym_commonmark_name, - STATE(666), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(684), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(743), 1, - sym__attribute, - STATE(750), 1, - aux_sym_commonmark_attribute_repeat3, - [28850] = 8, - ACTIONS(2245), 1, + [11152] = 8, + ACTIONS(2302), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2247), 1, + ACTIONS(2305), 1, anon_sym_DASH, - ACTIONS(2249), 1, + ACTIONS(2308), 1, anon_sym_COLON, - STATE(660), 1, + STATE(688), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(681), 1, + STATE(763), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(697), 1, + STATE(805), 1, sym__whitespace, - STATE(735), 1, + STATE(838), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2261), 3, + ACTIONS(2311), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [28877] = 9, - ACTIONS(2263), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2265), 1, - anon_sym_DASH, - ACTIONS(2267), 1, - anon_sym_COLON, - ACTIONS(2269), 1, - anon_sym_PIPE, - STATE(662), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(734), 1, - sym_pipe_table_delimiter_row, - STATE(749), 1, - sym__whitespace, - STATE(751), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(817), 1, - sym_pipe_table_delimiter_cell, - [28905] = 9, - ACTIONS(1686), 1, + [11179] = 10, + ACTIONS(1742), 1, sym_id_specifier, - ACTIONS(1688), 1, + ACTIONS(1744), 1, sym_class_specifier, - ACTIONS(1692), 1, + ACTIONS(1748), 1, sym_key_value_key, - ACTIONS(2259), 1, - sym_commonmark_name, - ACTIONS(2271), 1, + ACTIONS(2313), 1, + sym_raw_specifier, + ACTIONS(2315), 1, anon_sym_RBRACE, - STATE(682), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(716), 1, + ACTIONS(2317), 1, + sym_commonmark_name, + STATE(692), 1, aux_sym_commonmark_attribute_repeat1, - STATE(743), 1, + STATE(721), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(777), 1, sym__attribute, - STATE(752), 1, + STATE(779), 1, aux_sym_commonmark_attribute_repeat3, - [28933] = 6, - ACTIONS(1742), 1, - sym__line_ending, - ACTIONS(2230), 1, - anon_sym_LBRACE, - ACTIONS(2232), 1, + [11210] = 6, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(496), 1, - sym__newline, - STATE(942), 2, + ACTIONS(2319), 1, + anon_sym_LBRACE, + ACTIONS(2321), 1, + anon_sym_LBRACE_RBRACE, + ACTIONS(2323), 1, + sym_fenced_div_note_id, + STATE(933), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28955] = 6, - ACTIONS(2232), 1, + [11232] = 6, + ACTIONS(2288), 1, aux_sym_info_string_token1, - ACTIONS(2273), 1, + ACTIONS(2319), 1, anon_sym_LBRACE, - ACTIONS(2275), 1, + ACTIONS(2325), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2277), 1, + ACTIONS(2327), 1, sym_fenced_div_note_id, - STATE(858), 2, + STATE(880), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [28977] = 9, - ACTIONS(1686), 1, + [11254] = 9, + ACTIONS(1742), 1, sym_id_specifier, - ACTIONS(1688), 1, + ACTIONS(1744), 1, + sym_class_specifier, + ACTIONS(1748), 1, + sym_key_value_key, + ACTIONS(2317), 1, + sym_commonmark_name, + ACTIONS(2329), 1, + anon_sym_RBRACE, + STATE(720), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(737), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(776), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(777), 1, + sym__attribute, + [11282] = 9, + ACTIONS(1742), 1, + sym_id_specifier, + ACTIONS(1744), 1, sym_class_specifier, - ACTIONS(1692), 1, + ACTIONS(1748), 1, sym_key_value_key, - ACTIONS(2257), 1, + ACTIONS(2315), 1, anon_sym_RBRACE, - ACTIONS(2259), 1, + ACTIONS(2317), 1, sym_commonmark_name, - STATE(684), 1, + STATE(721), 1, aux_sym_commonmark_attribute_repeat2, - STATE(716), 1, + STATE(737), 1, aux_sym_commonmark_attribute_repeat1, - STATE(743), 1, + STATE(777), 1, sym__attribute, - STATE(750), 1, + STATE(779), 1, aux_sym_commonmark_attribute_repeat3, - [29005] = 6, - ACTIONS(1724), 1, + [11310] = 6, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(479), 1, + STATE(519), 1, sym__newline, - STATE(905), 2, + STATE(947), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29027] = 6, - ACTIONS(1724), 1, + [11332] = 6, + ACTIONS(1780), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(491), 1, + STATE(510), 1, sym__newline, - STATE(930), 2, + STATE(952), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29049] = 6, - ACTIONS(1742), 1, + [11354] = 6, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(480), 1, + STATE(511), 1, sym__newline, - STATE(906), 2, + STATE(953), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29071] = 6, - ACTIONS(1742), 1, + [11376] = 9, + ACTIONS(2331), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2333), 1, + anon_sym_DASH, + ACTIONS(2335), 1, + anon_sym_COLON, + ACTIONS(2337), 1, + anon_sym_PIPE, + STATE(687), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(757), 1, + sym_pipe_table_delimiter_row, + STATE(763), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(767), 1, + sym__whitespace, + STATE(838), 1, + sym_pipe_table_delimiter_cell, + [11404] = 6, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, + anon_sym_LBRACE, + ACTIONS(2288), 1, + aux_sym_info_string_token1, + STATE(507), 1, + sym__newline, + STATE(930), 2, + sym__qmd_attribute, + sym_info_string, + STATE(991), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [11426] = 6, + ACTIONS(1780), 1, + sym__line_ending, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(492), 1, + STATE(506), 1, sym__newline, - STATE(931), 2, + STATE(929), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29093] = 9, - ACTIONS(2263), 1, + [11448] = 9, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2265), 1, + ACTIONS(2333), 1, anon_sym_DASH, - ACTIONS(2267), 1, + ACTIONS(2335), 1, anon_sym_COLON, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_PIPE, - STATE(662), 1, + STATE(687), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(728), 1, + STATE(750), 1, sym_pipe_table_delimiter_row, - STATE(749), 1, - sym__whitespace, - STATE(751), 1, + STATE(763), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(817), 1, + STATE(767), 1, + sym__whitespace, + STATE(838), 1, sym_pipe_table_delimiter_cell, - [29121] = 6, - ACTIONS(1724), 1, + [11476] = 6, + ACTIONS(1825), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - ACTIONS(2232), 1, + ACTIONS(2288), 1, aux_sym_info_string_token1, - STATE(483), 1, + STATE(522), 1, sym__newline, - STATE(929), 2, + STATE(965), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29143] = 9, - ACTIONS(2263), 1, + [11498] = 9, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2265), 1, + ACTIONS(2333), 1, anon_sym_DASH, - ACTIONS(2267), 1, + ACTIONS(2335), 1, anon_sym_COLON, - ACTIONS(2269), 1, + ACTIONS(2337), 1, anon_sym_PIPE, - STATE(662), 1, + STATE(687), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(732), 1, + STATE(738), 1, sym_pipe_table_delimiter_row, - STATE(749), 1, - sym__whitespace, - STATE(751), 1, + STATE(763), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(817), 1, + STATE(767), 1, + sym__whitespace, + STATE(838), 1, sym_pipe_table_delimiter_cell, - [29171] = 6, - ACTIONS(2232), 1, - aux_sym_info_string_token1, - ACTIONS(2273), 1, - anon_sym_LBRACE, - ACTIONS(2279), 1, - anon_sym_LBRACE_RBRACE, - ACTIONS(2281), 1, - sym_fenced_div_note_id, - STATE(909), 2, - sym__qmd_attribute, - sym_info_string, - STATE(993), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [29193] = 6, - ACTIONS(2232), 1, + [11526] = 6, + ACTIONS(2288), 1, aux_sym_info_string_token1, - ACTIONS(2273), 1, + ACTIONS(2319), 1, anon_sym_LBRACE, - ACTIONS(2283), 1, + ACTIONS(2339), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2285), 1, + ACTIONS(2341), 1, sym_fenced_div_note_id, - STATE(934), 2, + STATE(861), 2, sym__qmd_attribute, sym_info_string, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29215] = 3, - ACTIONS(2289), 1, + [11548] = 3, + ACTIONS(2345), 1, anon_sym_DASH, - STATE(679), 1, + STATE(704), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2287), 6, + ACTIONS(2343), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_COLON, anon_sym_PIPE, - [29230] = 4, - ACTIONS(2294), 1, + [11563] = 4, + ACTIONS(2350), 1, anon_sym_DASH, - ACTIONS(2296), 1, + ACTIONS(2352), 1, anon_sym_COLON, - STATE(679), 1, + STATE(704), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2292), 5, + ACTIONS(2348), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [29247] = 4, - ACTIONS(2294), 1, + [11580] = 4, + ACTIONS(2350), 1, anon_sym_DASH, - ACTIONS(2300), 1, + ACTIONS(2356), 1, anon_sym_COLON, - STATE(679), 1, + STATE(704), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2298), 5, + ACTIONS(2354), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [29264] = 7, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, + [11597] = 4, + ACTIONS(2358), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2362), 1, sym_key_value_key, - ACTIONS(2259), 1, - sym_commonmark_name, - ACTIONS(2302), 1, + STATE(778), 1, + sym__commonmark_whitespace, + ACTIONS(2360), 4, anon_sym_RBRACE, - STATE(739), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(743), 1, - sym__attribute, - STATE(747), 1, - aux_sym_commonmark_attribute_repeat3, - [29286] = 5, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2249), 1, - anon_sym_COLON, - STATE(681), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(725), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2304), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29304] = 7, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, - sym_key_value_key, - ACTIONS(2259), 1, sym_commonmark_name, - ACTIONS(2271), 1, - anon_sym_RBRACE, - STATE(739), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(743), 1, - sym__attribute, - STATE(752), 1, - aux_sym_commonmark_attribute_repeat3, - [29326] = 5, - ACTIONS(1714), 1, + sym_id_specifier, + sym_class_specifier, + [11613] = 5, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(431), 1, + STATE(421), 1, sym__newline, - STATE(903), 1, + STATE(960), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29344] = 7, - ACTIONS(2263), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2265), 1, - anon_sym_DASH, - ACTIONS(2267), 1, - anon_sym_COLON, - STATE(661), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(751), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(783), 1, - sym__whitespace, - STATE(817), 1, - sym_pipe_table_delimiter_cell, - [29366] = 5, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2249), 1, - anon_sym_COLON, - STATE(681), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(712), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2261), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29384] = 4, - ACTIONS(2306), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2310), 1, - sym_key_value_key, - STATE(742), 1, - sym__commonmark_whitespace, - ACTIONS(2308), 4, - anon_sym_RBRACE, - sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [29400] = 5, - ACTIONS(1718), 1, + [11631] = 5, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(269), 1, + STATE(423), 1, sym__newline, - STATE(875), 1, + STATE(862), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29418] = 7, - ACTIONS(2263), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2265), 1, - anon_sym_DASH, - ACTIONS(2267), 1, - anon_sym_COLON, - STATE(664), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(751), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(783), 1, - sym__whitespace, - STATE(817), 1, - sym_pipe_table_delimiter_cell, - [29440] = 5, - ACTIONS(1718), 1, + [11649] = 5, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(273), 1, + STATE(425), 1, sym__newline, - STATE(876), 1, + STATE(931), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29458] = 5, - ACTIONS(1718), 1, + [11667] = 1, + ACTIONS(1716), 7, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + ts_builtin_sym_end, + [11677] = 5, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(275), 1, + STATE(427), 1, sym__newline, - STATE(877), 1, + STATE(874), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29476] = 5, - ACTIONS(1718), 1, + [11695] = 5, + ACTIONS(2292), 1, + anon_sym_DASH, + ACTIONS(2294), 1, + anon_sym_COLON, + STATE(706), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(752), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2298), 3, sym__line_ending, - ACTIONS(2230), 1, + sym__eof, + sym__pipe_table_line_ending, + [11713] = 5, + ACTIONS(1772), 1, + sym__line_ending, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(279), 1, + STATE(435), 1, sym__newline, - STATE(878), 1, + STATE(863), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29494] = 5, - ACTIONS(1718), 1, + [11731] = 5, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(282), 1, + STATE(437), 1, sym__newline, - STATE(879), 1, + STATE(864), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29512] = 5, - ACTIONS(1718), 1, + [11749] = 5, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(284), 1, + STATE(439), 1, sym__newline, - STATE(880), 1, + STATE(865), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29530] = 5, - ACTIONS(1714), 1, + [11767] = 5, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(433), 1, + STATE(441), 1, sym__newline, - STATE(916), 1, + STATE(866), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29548] = 5, - ACTIONS(2247), 1, - anon_sym_DASH, - ACTIONS(2249), 1, - anon_sym_COLON, - STATE(681), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(721), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2251), 3, + [11785] = 5, + ACTIONS(1772), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29566] = 5, - ACTIONS(1714), 1, + ACTIONS(2286), 1, + anon_sym_LBRACE, + STATE(444), 1, + sym__newline, + STATE(867), 1, + sym__qmd_attribute, + STATE(991), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [11803] = 5, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(423), 1, + STATE(446), 1, sym__newline, - STATE(883), 1, + STATE(868), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29584] = 5, - ACTIONS(1714), 1, + [11821] = 7, + ACTIONS(1744), 1, + sym_class_specifier, + ACTIONS(1748), 1, + sym_key_value_key, + ACTIONS(2317), 1, + sym_commonmark_name, + ACTIONS(2364), 1, + anon_sym_RBRACE, + STATE(766), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(772), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(777), 1, + sym__attribute, + [11843] = 7, + ACTIONS(1744), 1, + sym_class_specifier, + ACTIONS(1748), 1, + sym_key_value_key, + ACTIONS(2317), 1, + sym_commonmark_name, + ACTIONS(2329), 1, + anon_sym_RBRACE, + STATE(772), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(776), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(777), 1, + sym__attribute, + [11865] = 5, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(429), 1, sym__newline, - STATE(895), 1, + STATE(904), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29602] = 5, - ACTIONS(1716), 1, + [11883] = 5, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(278), 1, sym__newline, - STATE(837), 1, + STATE(898), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29620] = 5, - ACTIONS(1716), 1, + [11901] = 5, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(356), 1, + STATE(280), 1, sym__newline, - STATE(838), 1, + STATE(899), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29638] = 5, - ACTIONS(1714), 1, + [11919] = 5, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(425), 1, + STATE(282), 1, sym__newline, - STATE(890), 1, + STATE(900), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29656] = 5, - ACTIONS(1716), 1, + [11937] = 5, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(358), 1, + STATE(284), 1, sym__newline, - STATE(839), 1, + STATE(901), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29674] = 5, - ACTIONS(1716), 1, + [11955] = 5, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(360), 1, + STATE(289), 1, sym__newline, - STATE(840), 1, + STATE(902), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29692] = 7, - ACTIONS(1688), 1, - sym_class_specifier, - ACTIONS(1692), 1, - sym_key_value_key, - ACTIONS(2257), 1, - anon_sym_RBRACE, - ACTIONS(2259), 1, - sym_commonmark_name, - STATE(739), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(743), 1, - sym__attribute, - STATE(750), 1, - aux_sym_commonmark_attribute_repeat3, - [29714] = 1, - ACTIONS(1586), 7, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - ts_builtin_sym_end, - [29724] = 5, - ACTIONS(1716), 1, + [11973] = 5, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(362), 1, + STATE(294), 1, sym__newline, - STATE(841), 1, + STATE(903), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29742] = 5, - ACTIONS(1716), 1, + [11991] = 5, + ACTIONS(2292), 1, + anon_sym_DASH, + ACTIONS(2294), 1, + anon_sym_COLON, + STATE(706), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(756), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2366), 3, sym__line_ending, - ACTIONS(2230), 1, - anon_sym_LBRACE, - STATE(364), 1, - sym__newline, - STATE(842), 1, - sym__qmd_attribute, - STATE(993), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [29760] = 5, - ACTIONS(1714), 1, + sym__eof, + sym__pipe_table_line_ending, + [12009] = 7, + ACTIONS(2331), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2333), 1, + anon_sym_DASH, + ACTIONS(2335), 1, + anon_sym_COLON, + STATE(685), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(763), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(805), 1, + sym__whitespace, + STATE(838), 1, + sym_pipe_table_delimiter_cell, + [12031] = 5, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2230), 1, + ACTIONS(2286), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(418), 1, sym__newline, - STATE(898), 1, + STATE(919), 1, sym__qmd_attribute, - STATE(993), 3, + STATE(991), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29778] = 6, - ACTIONS(2312), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2314), 1, - aux_sym_key_value_value_token1, - ACTIONS(2316), 1, - anon_sym_SQUOTE, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - STATE(764), 1, - sym__commonmark_whitespace, - STATE(770), 1, - sym_key_value_value, - [29797] = 6, - ACTIONS(2314), 1, - aux_sym_key_value_value_token1, - ACTIONS(2316), 1, - anon_sym_SQUOTE, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - ACTIONS(2320), 1, - aux_sym__commonmark_whitespace_token1, - STATE(772), 1, - sym_key_value_value, - STATE(773), 1, - sym__commonmark_whitespace, - [29816] = 4, - ACTIONS(2245), 1, + [12049] = 7, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2322), 1, - anon_sym_PIPE, - STATE(755), 1, - sym__whitespace, - ACTIONS(2251), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [29831] = 4, - ACTIONS(2245), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2324), 1, - anon_sym_PIPE, - STATE(760), 1, + ACTIONS(2333), 1, + anon_sym_DASH, + ACTIONS(2335), 1, + anon_sym_COLON, + STATE(686), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(763), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(805), 1, sym__whitespace, - ACTIONS(1764), 3, + STATE(838), 1, + sym_pipe_table_delimiter_cell, + [12071] = 7, + ACTIONS(1744), 1, + sym_class_specifier, + ACTIONS(1748), 1, + sym_key_value_key, + ACTIONS(2315), 1, + anon_sym_RBRACE, + ACTIONS(2317), 1, + sym_commonmark_name, + STATE(772), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(777), 1, + sym__attribute, + STATE(779), 1, + aux_sym_commonmark_attribute_repeat3, + [12093] = 5, + ACTIONS(2292), 1, + anon_sym_DASH, + ACTIONS(2294), 1, + anon_sym_COLON, + STATE(706), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(739), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2296), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29846] = 4, - ACTIONS(2245), 1, + [12111] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2326), 1, + ACTIONS(2368), 1, anon_sym_PIPE, - STATE(779), 1, + STATE(794), 1, sym__whitespace, - ACTIONS(1896), 3, + ACTIONS(1855), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29861] = 4, - ACTIONS(2245), 1, + [12126] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2324), 1, + ACTIONS(2368), 1, anon_sym_PIPE, - STATE(788), 1, + STATE(786), 1, sym__whitespace, - ACTIONS(1896), 3, + ACTIONS(1945), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29876] = 4, - ACTIONS(2330), 1, + [12141] = 4, + ACTIONS(2372), 1, sym_id_specifier, - ACTIONS(2333), 1, + ACTIONS(2375), 1, sym_key_value_key, - STATE(716), 1, + STATE(737), 1, aux_sym_commonmark_attribute_repeat1, - ACTIONS(2328), 3, + ACTIONS(2370), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [29891] = 6, - ACTIONS(1714), 1, + [12156] = 6, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2335), 1, + ACTIONS(2377), 1, sym__eof, - ACTIONS(2337), 1, + ACTIONS(2379), 1, sym__pipe_table_line_ending, - STATE(174), 1, + STATE(202), 1, sym__newline, - STATE(455), 1, + STATE(480), 1, sym__pipe_table_newline, - STATE(738), 1, + STATE(740), 1, aux_sym_pipe_table_repeat1, - [29910] = 1, - ACTIONS(2243), 6, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [29919] = 4, - ACTIONS(2245), 1, + [12175] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2339), 1, + ACTIONS(2381), 1, anon_sym_PIPE, - STATE(769), 1, + STATE(798), 1, sym__whitespace, - ACTIONS(2261), 3, + ACTIONS(2298), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29934] = 4, - ACTIONS(2245), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2326), 1, - anon_sym_PIPE, - STATE(765), 1, - sym__whitespace, - ACTIONS(2341), 3, + [12190] = 6, + ACTIONS(1772), 1, sym__line_ending, - sym__eof, + ACTIONS(2379), 1, sym__pipe_table_line_ending, - [29949] = 4, - ACTIONS(2245), 1, + ACTIONS(2383), 1, + sym__eof, + STATE(180), 1, + sym__newline, + STATE(480), 1, + sym__pipe_table_newline, + STATE(764), 1, + aux_sym_pipe_table_repeat1, + [12209] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2322), 1, + ACTIONS(2385), 1, anon_sym_PIPE, - STATE(781), 1, + STATE(814), 1, sym__whitespace, - ACTIONS(2304), 3, + ACTIONS(2298), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29964] = 4, - ACTIONS(2245), 1, + [12224] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2324), 1, + ACTIONS(2387), 1, anon_sym_PIPE, - STATE(756), 1, + STATE(792), 1, sym__whitespace, - ACTIONS(1758), 3, + ACTIONS(2389), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29979] = 4, - ACTIONS(2245), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2339), 1, - anon_sym_PIPE, - STATE(785), 1, - sym__whitespace, - ACTIONS(2304), 3, + [12239] = 1, + ACTIONS(2092), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29994] = 1, - ACTIONS(2343), 6, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [12248] = 1, + ACTIONS(2391), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, - [30003] = 4, - ACTIONS(2245), 1, + [12257] = 6, + ACTIONS(2393), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2395), 1, + aux_sym_key_value_value_token1, + ACTIONS(2397), 1, + anon_sym_SQUOTE, + ACTIONS(2399), 1, + anon_sym_DQUOTE, + STATE(802), 1, + sym__commonmark_whitespace, + STATE(807), 1, + sym_key_value_value, + [12276] = 6, + ACTIONS(2395), 1, + aux_sym_key_value_value_token1, + ACTIONS(2397), 1, + anon_sym_SQUOTE, + ACTIONS(2399), 1, + anon_sym_DQUOTE, + ACTIONS(2401), 1, + aux_sym__commonmark_whitespace_token1, + STATE(785), 1, + sym_key_value_value, + STATE(790), 1, + sym__commonmark_whitespace, + [12295] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2322), 1, + ACTIONS(2368), 1, anon_sym_PIPE, - STATE(759), 1, + STATE(795), 1, sym__whitespace, - ACTIONS(2345), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30018] = 1, - ACTIONS(2347), 6, + ACTIONS(1847), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, + [12310] = 4, + ACTIONS(2403), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [30027] = 4, - ACTIONS(2245), 1, + ACTIONS(2407), 1, + sym_key_value_key, + STATE(784), 1, + sym__commonmark_whitespace, + ACTIONS(2405), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [12325] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2324), 1, + ACTIONS(2368), 1, anon_sym_PIPE, - STATE(786), 1, + STATE(811), 1, sym__whitespace, - ACTIONS(1766), 3, + ACTIONS(1788), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30042] = 6, - ACTIONS(1716), 1, - sym__line_ending, - ACTIONS(2337), 1, - sym__pipe_table_line_ending, - ACTIONS(2349), 1, - sym__eof, - STATE(182), 1, - sym__newline, - STATE(455), 1, - sym__pipe_table_newline, - STATE(729), 1, - aux_sym_pipe_table_repeat1, - [30061] = 6, - ACTIONS(1716), 1, + [12340] = 6, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2337), 1, + ACTIONS(2379), 1, sym__pipe_table_line_ending, - ACTIONS(2351), 1, + ACTIONS(2409), 1, sym__eof, - STATE(175), 1, + STATE(156), 1, sym__newline, - STATE(455), 1, + STATE(480), 1, sym__pipe_table_newline, - STATE(738), 1, + STATE(753), 1, aux_sym_pipe_table_repeat1, - [30080] = 4, - ACTIONS(2245), 1, + [12359] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2326), 1, + ACTIONS(2387), 1, anon_sym_PIPE, STATE(780), 1, sym__whitespace, - ACTIONS(1766), 3, + ACTIONS(1788), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30095] = 4, - ACTIONS(2353), 1, + [12374] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2357), 1, - sym_key_value_key, - STATE(767), 1, - sym__commonmark_whitespace, - ACTIONS(2355), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [30110] = 6, - ACTIONS(1718), 1, + ACTIONS(2381), 1, + anon_sym_PIPE, + STATE(801), 1, + sym__whitespace, + ACTIONS(2366), 3, sym__line_ending, - ACTIONS(2337), 1, + sym__eof, + sym__pipe_table_line_ending, + [12389] = 6, + ACTIONS(1774), 1, + sym__line_ending, + ACTIONS(2379), 1, sym__pipe_table_line_ending, - ACTIONS(2359), 1, + ACTIONS(2411), 1, sym__eof, - STATE(144), 1, + STATE(157), 1, sym__newline, - STATE(455), 1, + STATE(480), 1, sym__pipe_table_newline, - STATE(733), 1, + STATE(764), 1, aux_sym_pipe_table_repeat1, - [30129] = 6, - ACTIONS(1718), 1, + [12408] = 4, + ACTIONS(2290), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2385), 1, + anon_sym_PIPE, + STATE(803), 1, + sym__whitespace, + ACTIONS(2366), 3, sym__line_ending, - ACTIONS(2337), 1, + sym__eof, sym__pipe_table_line_ending, - ACTIONS(2361), 1, + [12423] = 1, + ACTIONS(2413), 6, + sym__line_ending, sym__eof, - STATE(145), 1, - sym__newline, - STATE(455), 1, - sym__pipe_table_newline, - STATE(738), 1, - aux_sym_pipe_table_repeat1, - [30148] = 6, - ACTIONS(1714), 1, + sym__pipe_table_line_ending, + aux_sym__commonmark_whitespace_token1, + anon_sym_DASH, + anon_sym_COLON, + [12432] = 4, + ACTIONS(2290), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2381), 1, + anon_sym_PIPE, + STATE(808), 1, + sym__whitespace, + ACTIONS(2415), 3, sym__line_ending, - ACTIONS(2337), 1, + sym__eof, + sym__pipe_table_line_ending, + [12447] = 6, + ACTIONS(1770), 1, + sym__line_ending, + ACTIONS(2379), 1, sym__pipe_table_line_ending, - ACTIONS(2363), 1, + ACTIONS(2417), 1, sym__eof, - STATE(167), 1, + STATE(175), 1, sym__newline, - STATE(455), 1, + STATE(480), 1, sym__pipe_table_newline, - STATE(717), 1, + STATE(761), 1, aux_sym_pipe_table_repeat1, - [30167] = 4, - ACTIONS(2245), 1, + [12466] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2339), 1, + ACTIONS(2387), 1, anon_sym_PIPE, - STATE(774), 1, + STATE(781), 1, sym__whitespace, - ACTIONS(2251), 3, + ACTIONS(1945), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30182] = 4, - ACTIONS(2245), 1, + [12481] = 4, + ACTIONS(2290), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2326), 1, + ACTIONS(2387), 1, anon_sym_PIPE, - STATE(778), 1, + STATE(797), 1, sym__whitespace, - ACTIONS(1758), 3, + ACTIONS(1855), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30197] = 1, - ACTIONS(2032), 6, + [12496] = 4, + ACTIONS(2290), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2385), 1, + anon_sym_PIPE, + STATE(810), 1, + sym__whitespace, + ACTIONS(2296), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [12511] = 6, + ACTIONS(1770), 1, + sym__line_ending, + ACTIONS(2379), 1, + sym__pipe_table_line_ending, + ACTIONS(2419), 1, + sym__eof, + STATE(186), 1, + sym__newline, + STATE(480), 1, + sym__pipe_table_newline, + STATE(764), 1, + aux_sym_pipe_table_repeat1, + [12530] = 1, + ACTIONS(2311), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, + aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, + [12539] = 4, + ACTIONS(2421), 1, + anon_sym_DASH, + ACTIONS(2423), 1, + anon_sym_COLON, + STATE(771), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2354), 2, + aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [30206] = 4, - ACTIONS(2367), 1, + [12553] = 4, + ACTIONS(2427), 1, sym__pipe_table_line_ending, - STATE(455), 1, + STATE(480), 1, sym__pipe_table_newline, - STATE(738), 1, + STATE(764), 1, aux_sym_pipe_table_repeat1, - ACTIONS(2365), 2, + ACTIONS(2425), 2, sym__line_ending, sym__eof, - [30220] = 4, - ACTIONS(2372), 1, - sym_class_specifier, - ACTIONS(2375), 1, + [12567] = 4, + ACTIONS(2421), 1, + anon_sym_DASH, + ACTIONS(2430), 1, + anon_sym_COLON, + STATE(771), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2348), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [12581] = 5, + ACTIONS(1748), 1, sym_key_value_key, - STATE(739), 1, - aux_sym_commonmark_attribute_repeat2, - ACTIONS(2370), 2, - anon_sym_RBRACE, + ACTIONS(2317), 1, sym_commonmark_name, - [30234] = 1, - ACTIONS(2377), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, + ACTIONS(2432), 1, + anon_sym_RBRACE, + STATE(769), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(777), 1, + sym__attribute, + [12597] = 5, + ACTIONS(2333), 1, + anon_sym_DASH, + ACTIONS(2335), 1, + anon_sym_COLON, + ACTIONS(2434), 1, anon_sym_PIPE, - [30242] = 1, - ACTIONS(2379), 5, + STATE(763), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(844), 1, + sym_pipe_table_delimiter_cell, + [12613] = 1, + ACTIONS(2436), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [30250] = 2, - ACTIONS(2333), 1, - sym_key_value_key, - ACTIONS(2328), 4, - anon_sym_RBRACE, - sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [30260] = 4, - ACTIONS(2381), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2385), 1, - sym_key_value_key, - STATE(823), 1, - sym__commonmark_whitespace, - ACTIONS(2383), 2, + [12621] = 5, + ACTIONS(2438), 1, anon_sym_RBRACE, + ACTIONS(2440), 1, sym_commonmark_name, - [30274] = 5, - ACTIONS(1692), 1, + ACTIONS(2443), 1, sym_key_value_key, - ACTIONS(2257), 1, - anon_sym_RBRACE, - ACTIONS(2259), 1, - sym_commonmark_name, - STATE(743), 1, - sym__attribute, - STATE(745), 1, + STATE(769), 1, aux_sym_commonmark_attribute_repeat3, - [30290] = 5, - ACTIONS(2387), 1, - anon_sym_RBRACE, - ACTIONS(2389), 1, - sym_commonmark_name, - ACTIONS(2392), 1, - sym_key_value_key, - STATE(743), 1, + STATE(777), 1, sym__attribute, - STATE(745), 1, - aux_sym_commonmark_attribute_repeat3, - [30306] = 3, - ACTIONS(2395), 1, + [12637] = 2, + ACTIONS(2446), 1, + sym_block_continuation, + ACTIONS(1356), 4, + aux_sym__commonmark_whitespace_token1, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [12647] = 3, + ACTIONS(2448), 1, anon_sym_DASH, - STATE(746), 1, + STATE(771), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2287), 3, + ACTIONS(2343), 3, aux_sym__commonmark_whitespace_token1, anon_sym_COLON, anon_sym_PIPE, - [30318] = 5, - ACTIONS(1692), 1, + [12659] = 4, + ACTIONS(2453), 1, + sym_class_specifier, + ACTIONS(2456), 1, sym_key_value_key, - ACTIONS(2259), 1, + STATE(772), 1, + aux_sym_commonmark_attribute_repeat2, + ACTIONS(2451), 2, + anon_sym_RBRACE, sym_commonmark_name, - ACTIONS(2398), 1, + [12673] = 5, + ACTIONS(1748), 1, + sym_key_value_key, + ACTIONS(2315), 1, anon_sym_RBRACE, - STATE(743), 1, - sym__attribute, - STATE(745), 1, + ACTIONS(2317), 1, + sym_commonmark_name, + STATE(769), 1, aux_sym_commonmark_attribute_repeat3, - [30334] = 4, - ACTIONS(2400), 1, - anon_sym_DASH, - ACTIONS(2402), 1, - anon_sym_COLON, - STATE(746), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2292), 2, + STATE(777), 1, + sym__attribute, + [12689] = 1, + ACTIONS(2458), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [30348] = 5, - ACTIONS(2265), 1, - anon_sym_DASH, - ACTIONS(2267), 1, - anon_sym_COLON, - ACTIONS(2404), 1, + [12697] = 1, + ACTIONS(2460), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - STATE(751), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(805), 1, - sym_pipe_table_delimiter_cell, - [30364] = 5, - ACTIONS(1692), 1, + [12705] = 5, + ACTIONS(1748), 1, sym_key_value_key, - ACTIONS(2259), 1, + ACTIONS(2317), 1, sym_commonmark_name, - ACTIONS(2271), 1, + ACTIONS(2364), 1, anon_sym_RBRACE, - STATE(743), 1, - sym__attribute, - STATE(745), 1, + STATE(769), 1, aux_sym_commonmark_attribute_repeat3, - [30380] = 4, - ACTIONS(2400), 1, - anon_sym_DASH, - ACTIONS(2406), 1, - anon_sym_COLON, - STATE(746), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2298), 2, + STATE(777), 1, + sym__attribute, + [12721] = 4, + ACTIONS(2462), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [30394] = 5, - ACTIONS(1692), 1, + ACTIONS(2466), 1, sym_key_value_key, - ACTIONS(2259), 1, + STATE(828), 1, + sym__commonmark_whitespace, + ACTIONS(2464), 2, + anon_sym_RBRACE, sym_commonmark_name, - ACTIONS(2302), 1, + [12735] = 2, + ACTIONS(2375), 1, + sym_key_value_key, + ACTIONS(2370), 4, anon_sym_RBRACE, - STATE(743), 1, - sym__attribute, - STATE(745), 1, + sym_commonmark_name, + sym_id_specifier, + sym_class_specifier, + [12745] = 5, + ACTIONS(1748), 1, + sym_key_value_key, + ACTIONS(2317), 1, + sym_commonmark_name, + ACTIONS(2329), 1, + anon_sym_RBRACE, + STATE(769), 1, aux_sym_commonmark_attribute_repeat3, - [30410] = 1, - ACTIONS(2408), 5, + STATE(777), 1, + sym__attribute, + [12761] = 2, + ACTIONS(2468), 1, + anon_sym_PIPE, + ACTIONS(1855), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [30418] = 2, - ACTIONS(2410), 1, - sym_block_continuation, - ACTIONS(1321), 4, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_PIPE, - [30428] = 2, - ACTIONS(2412), 1, + [12770] = 2, + ACTIONS(2468), 1, anon_sym_PIPE, - ACTIONS(2304), 3, + ACTIONS(2389), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30437] = 2, - ACTIONS(2326), 1, + [12779] = 2, + ACTIONS(2472), 1, + sym_key_value_key, + ACTIONS(2470), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [12788] = 4, + ACTIONS(2474), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2476), 1, + anon_sym_RBRACE, + ACTIONS(2478), 1, + anon_sym_EQ, + STATE(1035), 1, + sym__commonmark_whitespace, + [12801] = 2, + ACTIONS(2456), 1, + sym_key_value_key, + ACTIONS(2451), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [12810] = 2, + ACTIONS(2482), 1, + sym_key_value_key, + ACTIONS(2480), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [12819] = 2, + ACTIONS(2387), 1, anon_sym_PIPE, - ACTIONS(1896), 3, + ACTIONS(2389), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30446] = 4, - ACTIONS(1764), 1, + [12828] = 2, + ACTIONS(2486), 1, + sym_key_value_key, + ACTIONS(2484), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [12837] = 2, + ACTIONS(2094), 1, + anon_sym_LBRACE, + ACTIONS(2092), 3, + sym_fenced_div_note_id, + anon_sym_LBRACE_RBRACE, + aux_sym_info_string_token1, + [12846] = 4, + ACTIONS(1945), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2488), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2416), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - STATE(888), 1, + STATE(906), 1, sym__whitespace, - [30459] = 2, - ACTIONS(2420), 1, + [12859] = 4, + ACTIONS(2395), 1, + aux_sym_key_value_value_token1, + ACTIONS(2397), 1, + anon_sym_SQUOTE, + ACTIONS(2399), 1, + anon_sym_DQUOTE, + STATE(791), 1, + sym_key_value_value, + [12872] = 2, + ACTIONS(2494), 1, sym_key_value_key, - ACTIONS(2418), 3, + ACTIONS(2492), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [30468] = 2, - ACTIONS(2412), 1, + [12881] = 2, + ACTIONS(2468), 1, + anon_sym_PIPE, + ACTIONS(2496), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [12890] = 4, + ACTIONS(1945), 1, + sym__line_ending, + ACTIONS(2488), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2498), 1, anon_sym_PIPE, - ACTIONS(2422), 3, + STATE(912), 1, + sym__whitespace, + [12903] = 2, + ACTIONS(2387), 1, + anon_sym_PIPE, + ACTIONS(1945), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30477] = 2, - ACTIONS(2326), 1, + [12912] = 2, + ACTIONS(2387), 1, anon_sym_PIPE, - ACTIONS(1766), 3, + ACTIONS(1788), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30486] = 4, - ACTIONS(1896), 1, + [12921] = 4, + ACTIONS(1788), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2488), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2424), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - STATE(907), 1, + STATE(927), 1, sym__whitespace, - [30499] = 1, - ACTIONS(1394), 4, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, + [12934] = 2, + ACTIONS(2468), 1, anon_sym_PIPE, - [30506] = 4, - ACTIONS(2426), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2428), 1, - anon_sym_RBRACE, - ACTIONS(2430), 1, - anon_sym_EQ, - STATE(963), 1, - sym__commonmark_whitespace, - [30519] = 4, - ACTIONS(2314), 1, - aux_sym_key_value_value_token1, - ACTIONS(2316), 1, - anon_sym_SQUOTE, - ACTIONS(2318), 1, - anon_sym_DQUOTE, - STATE(772), 1, - sym_key_value_value, - [30532] = 2, - ACTIONS(2432), 1, + ACTIONS(1945), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [12943] = 2, + ACTIONS(2500), 1, anon_sym_PIPE, - ACTIONS(2434), 3, + ACTIONS(2366), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30541] = 2, - ACTIONS(2438), 1, - sym_key_value_key, - ACTIONS(2436), 3, + [12952] = 4, + ACTIONS(1855), 1, + sym__line_ending, + ACTIONS(2488), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [30550] = 2, - ACTIONS(2375), 1, - sym_key_value_key, - ACTIONS(2370), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [30559] = 4, - ACTIONS(1896), 1, + ACTIONS(2490), 1, + anon_sym_PIPE, + STATE(963), 1, + sym__whitespace, + [12965] = 4, + ACTIONS(1855), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2488), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2416), 1, + ACTIONS(2498), 1, anon_sym_PIPE, - STATE(918), 1, + STATE(917), 1, sym__whitespace, - [30572] = 2, - ACTIONS(2322), 1, + [12978] = 2, + ACTIONS(2500), 1, anon_sym_PIPE, - ACTIONS(2251), 3, + ACTIONS(2415), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30581] = 2, - ACTIONS(2442), 1, - sym_key_value_key, - ACTIONS(2440), 3, - aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [30590] = 4, - ACTIONS(1766), 1, - sym__line_ending, - ACTIONS(2414), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2416), 1, - anon_sym_PIPE, - STATE(889), 1, - sym__whitespace, - [30603] = 2, - ACTIONS(2446), 1, - sym_key_value_key, - ACTIONS(2444), 3, - aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [30612] = 4, - ACTIONS(2314), 1, + [12987] = 4, + ACTIONS(2395), 1, aux_sym_key_value_value_token1, - ACTIONS(2316), 1, + ACTIONS(2397), 1, anon_sym_SQUOTE, - ACTIONS(2318), 1, + ACTIONS(2399), 1, anon_sym_DQUOTE, - STATE(777), 1, + STATE(785), 1, sym_key_value_value, - [30625] = 2, - ACTIONS(2322), 1, + [13000] = 2, + ACTIONS(2381), 1, anon_sym_PIPE, - ACTIONS(2304), 3, + ACTIONS(2415), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30634] = 2, - ACTIONS(2450), 1, - sym_key_value_key, - ACTIONS(2448), 3, + [13009] = 1, + ACTIONS(1436), 4, aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [30643] = 4, - ACTIONS(1758), 1, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [13016] = 4, + ACTIONS(2333), 1, + anon_sym_DASH, + ACTIONS(2335), 1, + anon_sym_COLON, + STATE(763), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(844), 1, + sym_pipe_table_delimiter_cell, + [13029] = 4, + ACTIONS(2389), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2488), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2416), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - STATE(859), 1, + STATE(892), 1, sym__whitespace, - [30656] = 2, - ACTIONS(2454), 1, + [13042] = 2, + ACTIONS(2504), 1, sym_key_value_key, - ACTIONS(2452), 3, + ACTIONS(2502), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [30665] = 2, - ACTIONS(2432), 1, - anon_sym_PIPE, - ACTIONS(1896), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30674] = 2, - ACTIONS(2432), 1, + [13051] = 2, + ACTIONS(2500), 1, anon_sym_PIPE, - ACTIONS(2341), 3, + ACTIONS(2506), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30683] = 2, - ACTIONS(2432), 1, + [13060] = 2, + ACTIONS(2510), 1, + sym_key_value_key, + ACTIONS(2508), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [13069] = 2, + ACTIONS(2381), 1, anon_sym_PIPE, - ACTIONS(1758), 3, + ACTIONS(2298), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30692] = 2, - ACTIONS(2412), 1, + [13078] = 2, + ACTIONS(2387), 1, anon_sym_PIPE, - ACTIONS(2345), 3, + ACTIONS(1855), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30701] = 4, - ACTIONS(2341), 1, + [13087] = 4, + ACTIONS(1847), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2488), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2424), 1, + ACTIONS(2498), 1, anon_sym_PIPE, - STATE(864), 1, + STATE(876), 1, sym__whitespace, - [30714] = 4, - ACTIONS(2265), 1, - anon_sym_DASH, - ACTIONS(2267), 1, - anon_sym_COLON, - STATE(751), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(805), 1, - sym_pipe_table_delimiter_cell, - [30727] = 2, - ACTIONS(2034), 1, - anon_sym_LBRACE, - ACTIONS(2032), 3, - sym_fenced_div_note_id, - anon_sym_LBRACE_RBRACE, - aux_sym_info_string_token1, - [30736] = 2, - ACTIONS(2322), 1, - anon_sym_PIPE, - ACTIONS(2345), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30745] = 2, - ACTIONS(2326), 1, - anon_sym_PIPE, - ACTIONS(1758), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30754] = 4, - ACTIONS(1766), 1, + [13100] = 4, + ACTIONS(1788), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2488), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2424), 1, + ACTIONS(2498), 1, anon_sym_PIPE, - STATE(899), 1, + STATE(922), 1, sym__whitespace, - [30767] = 2, - ACTIONS(2326), 1, + [13113] = 2, + ACTIONS(2381), 1, anon_sym_PIPE, - ACTIONS(2341), 3, + ACTIONS(2366), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30776] = 4, - ACTIONS(1758), 1, + [13122] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2414), 1, + ACTIONS(2514), 1, + sym__eof, + STATE(987), 1, + sym__newline, + [13132] = 3, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2424), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - STATE(857), 1, + STATE(1082), 1, sym__whitespace, - [30789] = 3, - ACTIONS(1714), 1, - sym__line_ending, - ACTIONS(2456), 1, - sym__eof, - STATE(322), 1, - sym__newline, - [30799] = 3, - ACTIONS(2458), 1, + [13142] = 3, + ACTIONS(2474), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2460), 1, - anon_sym_RBRACE, - STATE(1017), 1, + ACTIONS(2478), 1, + anon_sym_EQ, + STATE(1035), 1, sym__commonmark_whitespace, - [30809] = 3, - ACTIONS(2462), 1, + [13152] = 3, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2464), 1, + ACTIONS(2516), 1, sym__eof, - STATE(970), 1, + STATE(465), 1, sym__newline, - [30819] = 3, - ACTIONS(1714), 1, + [13162] = 3, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2466), 1, + ACTIONS(2518), 1, sym__eof, - STATE(334), 1, + STATE(412), 1, sym__newline, - [30829] = 3, - ACTIONS(2462), 1, + [13172] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2468), 1, + ACTIONS(2520), 1, sym__eof, - STATE(1007), 1, + STATE(1011), 1, sym__newline, - [30839] = 3, - ACTIONS(2426), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2430), 1, - anon_sym_EQ, - STATE(963), 1, - sym__commonmark_whitespace, - [30849] = 3, - ACTIONS(1716), 1, + [13182] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2470), 1, + ACTIONS(2522), 1, sym__eof, - STATE(341), 1, + STATE(1078), 1, sym__newline, - [30859] = 3, - ACTIONS(1716), 1, + [13192] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2472), 1, + ACTIONS(2524), 1, sym__eof, - STATE(342), 1, + STATE(1023), 1, sym__newline, - [30869] = 3, - ACTIONS(2462), 1, + [13202] = 3, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2474), 1, + ACTIONS(2526), 1, sym__eof, - STATE(978), 1, + STATE(207), 1, sym__newline, - [30879] = 3, - ACTIONS(2263), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2424), 1, - anon_sym_PIPE, - STATE(968), 1, - sym__whitespace, - [30889] = 1, - ACTIONS(2379), 3, - sym__line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [30895] = 3, - ACTIONS(1718), 1, + [13212] = 3, + ACTIONS(2528), 1, sym__line_ending, - ACTIONS(2476), 1, + ACTIONS(2530), 1, sym__eof, - STATE(196), 1, + STATE(1072), 1, sym__newline, - [30905] = 3, - ACTIONS(1718), 1, + [13222] = 3, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2478), 1, + ACTIONS(2532), 1, sym__eof, - STATE(197), 1, + STATE(411), 1, sym__newline, - [30915] = 3, - ACTIONS(1714), 1, + [13232] = 1, + ACTIONS(2092), 3, sym__line_ending, - ACTIONS(2480), 1, - sym__eof, - STATE(436), 1, - sym__newline, - [30925] = 3, - ACTIONS(2462), 1, + anon_sym_LBRACE, + aux_sym_info_string_token1, + [13238] = 3, + ACTIONS(2534), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2536), 1, + anon_sym_RBRACE, + STATE(1024), 1, + sym__commonmark_whitespace, + [13248] = 2, + ACTIONS(2538), 1, + sym_key_value_key, + ACTIONS(2438), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [13256] = 3, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2482), 1, + ACTIONS(2540), 1, sym__eof, - STATE(964), 1, + STATE(384), 1, sym__newline, - [30935] = 3, - ACTIONS(2263), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2322), 1, - anon_sym_PIPE, - STATE(1053), 1, - sym__whitespace, - [30945] = 3, - ACTIONS(1716), 1, + [13266] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2484), 1, + ACTIONS(2542), 1, sym__eof, - STATE(370), 1, + STATE(1047), 1, sym__newline, - [30955] = 3, - ACTIONS(1716), 1, + [13276] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2486), 1, + ACTIONS(2544), 1, sym__eof, - STATE(371), 1, + STATE(1048), 1, sym__newline, - [30965] = 3, - ACTIONS(1714), 1, + [13286] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2488), 1, + ACTIONS(2546), 1, sym__eof, - STATE(437), 1, + STATE(1051), 1, sym__newline, - [30975] = 3, - ACTIONS(1718), 1, + [13296] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2490), 1, + ACTIONS(2548), 1, sym__eof, - STATE(297), 1, + STATE(1052), 1, sym__newline, - [30985] = 1, - ACTIONS(2032), 3, - sym__line_ending, - anon_sym_LBRACE, - aux_sym_info_string_token1, - [30991] = 3, - ACTIONS(1718), 1, + [13306] = 3, + ACTIONS(2331), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2387), 1, + anon_sym_PIPE, + STATE(1084), 1, + sym__whitespace, + [13316] = 3, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2492), 1, + ACTIONS(2550), 1, sym__eof, - STATE(249), 1, + STATE(318), 1, sym__newline, - [31001] = 3, - ACTIONS(2494), 1, + [13326] = 3, + ACTIONS(2331), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2368), 1, + anon_sym_PIPE, + STATE(1018), 1, + sym__whitespace, + [13336] = 3, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2496), 1, + ACTIONS(2552), 1, sym__eof, - STATE(1004), 1, + STATE(208), 1, sym__newline, - [31011] = 3, - ACTIONS(2498), 1, + [13346] = 3, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2500), 1, - anon_sym_RBRACE, - STATE(949), 1, - sym__commonmark_whitespace, - [31021] = 3, - ACTIONS(1714), 1, + ACTIONS(2385), 1, + anon_sym_PIPE, + STATE(1010), 1, + sym__whitespace, + [13356] = 3, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2502), 1, + ACTIONS(2554), 1, sym__eof, - STATE(346), 1, + STATE(456), 1, sym__newline, - [31031] = 1, - ACTIONS(2032), 3, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_PIPE, - [31037] = 3, - ACTIONS(2263), 1, + [13366] = 1, + ACTIONS(2460), 3, + sym__line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2326), 1, anon_sym_PIPE, - STATE(1016), 1, - sym__whitespace, - [31047] = 3, - ACTIONS(2263), 1, + [13372] = 3, + ACTIONS(1774), 1, + sym__line_ending, + ACTIONS(2556), 1, + sym__eof, + STATE(209), 1, + sym__newline, + [13382] = 3, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2339), 1, + ACTIONS(2498), 1, anon_sym_PIPE, - STATE(1026), 1, + STATE(1062), 1, sym__whitespace, - [31057] = 3, - ACTIONS(2263), 1, + [13392] = 3, + ACTIONS(1770), 1, + sym__line_ending, + ACTIONS(2558), 1, + sym__eof, + STATE(387), 1, + sym__newline, + [13402] = 3, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2324), 1, + ACTIONS(2381), 1, anon_sym_PIPE, - STATE(966), 1, + STATE(1000), 1, sym__whitespace, - [31067] = 3, - ACTIONS(2462), 1, + [13412] = 3, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2504), 1, + ACTIONS(2560), 1, sym__eof, - STATE(1008), 1, + STATE(261), 1, sym__newline, - [31077] = 3, - ACTIONS(2462), 1, + [13422] = 1, + ACTIONS(2092), 3, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [13428] = 3, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2506), 1, + ACTIONS(2562), 1, sym__eof, - STATE(1009), 1, + STATE(264), 1, sym__newline, - [31087] = 3, - ACTIONS(2462), 1, + [13438] = 3, + ACTIONS(2564), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2566), 1, + anon_sym_RBRACE, + STATE(1029), 1, + sym__commonmark_whitespace, + [13448] = 3, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2508), 1, + ACTIONS(2568), 1, sym__eof, - STATE(1013), 1, + STATE(265), 1, sym__newline, - [31097] = 3, - ACTIONS(2462), 1, + [13458] = 3, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2510), 1, + ACTIONS(2570), 1, sym__eof, - STATE(1014), 1, + STATE(339), 1, sym__newline, - [31107] = 2, + [13468] = 3, ACTIONS(2512), 1, - sym_key_value_key, - ACTIONS(2387), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [31115] = 3, - ACTIONS(2263), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2416), 1, - anon_sym_PIPE, - STATE(1042), 1, - sym__whitespace, - [31125] = 3, - ACTIONS(1716), 1, sym__line_ending, - ACTIONS(2514), 1, + ACTIONS(2572), 1, sym__eof, - STATE(410), 1, + STATE(982), 1, sym__newline, - [31135] = 3, - ACTIONS(1716), 1, + [13478] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2516), 1, + ACTIONS(2574), 1, sym__eof, - STATE(413), 1, + STATE(983), 1, sym__newline, - [31145] = 3, - ACTIONS(1714), 1, + [13488] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2518), 1, + ACTIONS(2576), 1, sym__eof, - STATE(325), 1, + STATE(986), 1, sym__newline, - [31155] = 1, - ACTIONS(2365), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [31161] = 3, - ACTIONS(2462), 1, + [13498] = 3, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2520), 1, + ACTIONS(2578), 1, sym__eof, - STATE(955), 1, + STATE(1053), 1, sym__newline, - [31171] = 3, - ACTIONS(2462), 1, + [13508] = 3, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2522), 1, + ACTIONS(2580), 1, sym__eof, - STATE(956), 1, + STATE(342), 1, sym__newline, - [31181] = 3, - ACTIONS(2462), 1, + [13518] = 3, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2524), 1, + ACTIONS(2582), 1, sym__eof, - STATE(959), 1, + STATE(451), 1, sym__newline, - [31191] = 3, - ACTIONS(2462), 1, + [13528] = 3, + ACTIONS(2584), 1, sym__line_ending, - ACTIONS(2526), 1, + ACTIONS(2586), 1, sym__eof, - STATE(960), 1, + STATE(1086), 1, sym__newline, - [31201] = 3, - ACTIONS(1718), 1, + [13538] = 3, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2528), 1, + ACTIONS(2588), 1, sym__eof, - STATE(198), 1, + STATE(453), 1, sym__newline, - [31211] = 3, - ACTIONS(2530), 1, + [13548] = 3, + ACTIONS(1772), 1, sym__line_ending, - ACTIONS(2532), 1, + ACTIONS(2590), 1, sym__eof, - STATE(1031), 1, + STATE(452), 1, sym__newline, - [31221] = 3, - ACTIONS(1718), 1, + [13558] = 1, + ACTIONS(2425), 3, sym__line_ending, - ACTIONS(2534), 1, sym__eof, - STATE(248), 1, - sym__newline, - [31231] = 2, - ACTIONS(1714), 1, + sym__pipe_table_line_ending, + [13564] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(424), 1, + STATE(21), 1, sym__newline, - [31238] = 2, - ACTIONS(1716), 1, + [13571] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(376), 1, + STATE(347), 1, sym__newline, - [31245] = 2, - ACTIONS(1716), 1, + [13578] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(377), 1, + STATE(458), 1, sym__newline, - [31252] = 2, - ACTIONS(1716), 1, + [13585] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(378), 1, + STATE(459), 1, sym__newline, - [31259] = 2, - ACTIONS(1716), 1, + [13592] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(379), 1, + STATE(460), 1, sym__newline, - [31266] = 2, - ACTIONS(1716), 1, + [13599] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(380), 1, + STATE(461), 1, sym__newline, - [31273] = 2, - ACTIONS(1716), 1, + [13606] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(381), 1, + STATE(462), 1, sym__newline, - [31280] = 2, - ACTIONS(1714), 1, + [13613] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(426), 1, + STATE(463), 1, sym__newline, - [31287] = 2, - ACTIONS(1744), 1, - sym__block_close, - ACTIONS(1746), 1, - sym__fenced_code_block_end_backtick, - [31294] = 2, - ACTIONS(1744), 1, - sym__block_close, - ACTIONS(1746), 1, - sym__fenced_code_block_end_tilde, - [31301] = 2, - ACTIONS(1748), 1, + [13620] = 2, + ACTIONS(1827), 1, sym__block_close, - ACTIONS(1750), 1, + ACTIONS(1829), 1, sym__fenced_code_block_end_backtick, - [31308] = 2, - ACTIONS(1718), 1, + [13627] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(7), 1, + STATE(420), 1, sym__newline, - [31315] = 2, - ACTIONS(1748), 1, + [13634] = 2, + ACTIONS(1827), 1, sym__block_close, - ACTIONS(1750), 1, + ACTIONS(1829), 1, sym__fenced_code_block_end_tilde, - [31322] = 2, - ACTIONS(1714), 1, + [13641] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(421), 1, + STATE(1019), 1, sym__newline, - [31329] = 2, - ACTIONS(2536), 1, + [13648] = 2, + ACTIONS(1843), 1, sym__block_close, - ACTIONS(2538), 1, + ACTIONS(1845), 1, sym__fenced_code_block_end_backtick, - [31336] = 2, - ACTIONS(2536), 1, + [13655] = 2, + ACTIONS(1770), 1, + sym__line_ending, + STATE(349), 1, + sym__newline, + [13662] = 2, + ACTIONS(1843), 1, sym__block_close, - ACTIONS(2538), 1, + ACTIONS(1845), 1, sym__fenced_code_block_end_tilde, - [31343] = 2, - ACTIONS(2540), 1, - aux_sym__commonmark_whitespace_token1, - STATE(563), 1, - sym__whitespace, - [31350] = 2, - ACTIONS(2494), 1, + [13669] = 2, + ACTIONS(1788), 1, sym__line_ending, - STATE(665), 1, - sym__newline, - [31357] = 2, - ACTIONS(2542), 1, + ACTIONS(2490), 1, + anon_sym_PIPE, + [13676] = 2, + ACTIONS(2592), 1, sym__block_close, - ACTIONS(2544), 1, + ACTIONS(2594), 1, sym__fenced_code_block_end_backtick, - [31364] = 2, - ACTIONS(2542), 1, + [13683] = 2, + ACTIONS(2592), 1, sym__block_close, - ACTIONS(2544), 1, + ACTIONS(2594), 1, sym__fenced_code_block_end_tilde, - [31371] = 2, - ACTIONS(2546), 1, - aux_sym__commonmark_whitespace_token1, - STATE(668), 1, - sym__whitespace, - [31378] = 2, - ACTIONS(1896), 1, + [13690] = 2, + ACTIONS(1774), 1, sym__line_ending, - ACTIONS(2548), 1, - anon_sym_PIPE, - [31385] = 2, - ACTIONS(1718), 1, + STATE(9), 1, + sym__newline, + [13697] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(8), 1, + STATE(10), 1, sym__newline, - [31392] = 2, - ACTIONS(1896), 1, + [13704] = 2, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2424), 1, - anon_sym_PIPE, - [31399] = 2, - ACTIONS(1718), 1, + STATE(422), 1, + sym__newline, + [13711] = 2, + ACTIONS(2596), 1, + sym__block_close, + ACTIONS(2598), 1, + sym__fenced_code_block_end_backtick, + [13718] = 2, + ACTIONS(1790), 1, + sym__block_close, + ACTIONS(1792), 1, + sym__fenced_code_block_end_backtick, + [13725] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(266), 1, + STATE(424), 1, sym__newline, - [31406] = 2, - ACTIONS(2462), 1, + [13732] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(1012), 1, + STATE(1061), 1, sym__newline, - [31413] = 2, - ACTIONS(1718), 1, + [13739] = 2, + ACTIONS(1780), 1, sym__line_ending, - STATE(272), 1, + STATE(519), 1, sym__newline, - [31420] = 2, - ACTIONS(1718), 1, + [13746] = 2, + ACTIONS(1790), 1, + sym__block_close, + ACTIONS(1792), 1, + sym__fenced_code_block_end_tilde, + [13753] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(274), 1, + STATE(277), 1, sym__newline, - [31427] = 2, - ACTIONS(2434), 1, + [13760] = 2, + ACTIONS(2512), 1, sym__line_ending, - ACTIONS(2548), 1, - anon_sym_PIPE, - [31434] = 2, - ACTIONS(1718), 1, + STATE(977), 1, + sym__newline, + [13767] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(276), 1, + STATE(279), 1, sym__newline, - [31441] = 2, - ACTIONS(1321), 1, - sym__close_block, - ACTIONS(2550), 1, - sym_block_continuation, - [31448] = 2, - ACTIONS(1718), 1, + [13774] = 2, + ACTIONS(1774), 1, sym__line_ending, STATE(281), 1, sym__newline, - [31455] = 2, - ACTIONS(1718), 1, + [13781] = 2, + ACTIONS(2496), 1, + sym__line_ending, + ACTIONS(2600), 1, + anon_sym_PIPE, + [13788] = 2, + ACTIONS(1774), 1, sym__line_ending, STATE(283), 1, sym__newline, - [31462] = 2, - ACTIONS(2552), 1, - anon_sym_DASH, - STATE(680), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [31469] = 2, - ACTIONS(1714), 1, + [13795] = 1, + ACTIONS(2436), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [13800] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(428), 1, + STATE(285), 1, sym__newline, - [31476] = 2, - ACTIONS(1321), 1, - sym__block_close, - ACTIONS(2554), 1, - sym_block_continuation, - [31483] = 1, - ACTIONS(2032), 2, + [13807] = 2, + ACTIONS(1774), 1, sym__line_ending, - anon_sym_PIPE, - [31488] = 2, - ACTIONS(1730), 1, - sym__block_close, - ACTIONS(1732), 1, - sym__fenced_code_block_end_backtick, - [31495] = 2, - ACTIONS(2462), 1, + STATE(291), 1, + sym__newline, + [13814] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(1027), 1, + STATE(974), 1, sym__newline, - [31502] = 2, - ACTIONS(1718), 1, + [13821] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(206), 1, + STATE(219), 1, sym__newline, - [31509] = 2, - ACTIONS(1718), 1, + [13828] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(207), 1, + STATE(220), 1, sym__newline, - [31516] = 2, - ACTIONS(1718), 1, + [13835] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(208), 1, + STATE(221), 1, sym__newline, - [31523] = 2, - ACTIONS(1718), 1, + [13842] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(209), 1, + STATE(222), 1, sym__newline, - [31530] = 2, - ACTIONS(1718), 1, + [13849] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(210), 1, + STATE(223), 1, sym__newline, - [31537] = 2, - ACTIONS(1718), 1, + [13856] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(211), 1, + STATE(224), 1, sym__newline, - [31544] = 2, - ACTIONS(1714), 1, + [13863] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(430), 1, + STATE(350), 1, sym__newline, - [31551] = 2, - ACTIONS(1785), 1, + [13870] = 2, + ACTIONS(1835), 1, sym__block_close, - ACTIONS(1787), 1, + ACTIONS(1837), 1, sym__fenced_code_block_end_backtick, - [31558] = 2, - ACTIONS(1714), 1, + [13877] = 2, + ACTIONS(2389), 1, sym__line_ending, - STATE(442), 1, - sym__newline, - [31565] = 2, - ACTIONS(1785), 1, + ACTIONS(2600), 1, + anon_sym_PIPE, + [13884] = 2, + ACTIONS(1835), 1, sym__block_close, - ACTIONS(1787), 1, + ACTIONS(1837), 1, sym__fenced_code_block_end_tilde, - [31572] = 2, - ACTIONS(1789), 1, + [13891] = 2, + ACTIONS(1839), 1, sym__block_close, - ACTIONS(1791), 1, + ACTIONS(1841), 1, sym__fenced_code_block_end_backtick, - [31579] = 1, - ACTIONS(2556), 2, - sym__line_ending, - anon_sym_LBRACE, - [31584] = 2, - ACTIONS(1789), 1, + [13898] = 2, + ACTIONS(1839), 1, sym__block_close, - ACTIONS(1791), 1, + ACTIONS(1841), 1, sym__fenced_code_block_end_tilde, - [31591] = 2, - ACTIONS(1766), 1, - sym__line_ending, - ACTIONS(2424), 1, - anon_sym_PIPE, - [31598] = 2, - ACTIONS(1758), 1, - sym__line_ending, - ACTIONS(2424), 1, + [13905] = 1, + ACTIONS(2460), 2, + aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [31605] = 2, - ACTIONS(1714), 1, + [13910] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(443), 1, + STATE(426), 1, sym__newline, - [31612] = 2, - ACTIONS(2558), 1, + [13917] = 2, + ACTIONS(2389), 1, + sym__line_ending, + ACTIONS(2490), 1, + anon_sym_PIPE, + [13924] = 2, + ACTIONS(2602), 1, sym__block_close, - ACTIONS(2560), 1, + ACTIONS(2604), 1, sym__fenced_code_block_end_backtick, - [31619] = 2, - ACTIONS(2546), 1, - aux_sym__commonmark_whitespace_token1, - STATE(678), 1, - sym__whitespace, - [31626] = 1, - ACTIONS(2377), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [31631] = 2, - ACTIONS(1714), 1, + [13931] = 2, + ACTIONS(2602), 1, + sym__block_close, + ACTIONS(2604), 1, + sym__fenced_code_block_end_tilde, + [13938] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(432), 1, + STATE(416), 1, sym__newline, - [31638] = 2, - ACTIONS(1714), 1, + [13945] = 2, + ACTIONS(1825), 1, sym__line_ending, - STATE(444), 1, + STATE(522), 1, sym__newline, - [31645] = 2, - ACTIONS(2462), 1, + [13952] = 2, + ACTIONS(1945), 1, sym__line_ending, - STATE(1054), 1, - sym__newline, - [31652] = 2, - ACTIONS(2540), 1, + ACTIONS(2490), 1, + anon_sym_PIPE, + [13959] = 2, + ACTIONS(2606), 1, aux_sym__commonmark_whitespace_token1, - STATE(565), 1, + STATE(691), 1, sym__whitespace, - [31659] = 2, - ACTIONS(1714), 1, + [13966] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(445), 1, + STATE(345), 1, sym__newline, - [31666] = 2, - ACTIONS(1758), 1, + [13973] = 2, + ACTIONS(2608), 1, + aux_sym__commonmark_whitespace_token1, + STATE(590), 1, + sym__whitespace, + [13980] = 2, + ACTIONS(1356), 1, + sym__close_block, + ACTIONS(2610), 1, + sym_block_continuation, + [13987] = 2, + ACTIONS(1855), 1, sym__line_ending, - ACTIONS(2548), 1, + ACTIONS(2490), 1, anon_sym_PIPE, - [31673] = 2, - ACTIONS(2562), 1, - anon_sym_DASH, - STATE(748), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [31680] = 2, - ACTIONS(1724), 1, - sym__line_ending, - STATE(479), 1, - sym__newline, - [31687] = 2, - ACTIONS(1742), 1, - sym__line_ending, - STATE(480), 1, - sym__newline, - [31694] = 2, - ACTIONS(1714), 1, - sym__line_ending, - STATE(447), 1, - sym__newline, - [31701] = 2, - ACTIONS(1724), 1, + [13994] = 2, + ACTIONS(1356), 1, + sym__block_close, + ACTIONS(2612), 1, + sym_block_continuation, + [14001] = 2, + ACTIONS(1780), 1, sym__line_ending, - STATE(483), 1, + STATE(506), 1, sym__newline, - [31708] = 2, - ACTIONS(1724), 1, + [14008] = 1, + ACTIONS(2092), 2, sym__line_ending, - STATE(481), 1, - sym__newline, - [31715] = 2, - ACTIONS(1742), 1, + anon_sym_PIPE, + [14013] = 2, + ACTIONS(1825), 1, sym__line_ending, - STATE(482), 1, + STATE(507), 1, sym__newline, - [31722] = 2, - ACTIONS(2341), 1, + [14020] = 2, + ACTIONS(1855), 1, sym__line_ending, - ACTIONS(2548), 1, + ACTIONS(2600), 1, anon_sym_PIPE, - [31729] = 2, - ACTIONS(1718), 1, + [14027] = 2, + ACTIONS(2614), 1, + anon_sym_DASH, + STATE(765), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [14034] = 2, + ACTIONS(1780), 1, sym__line_ending, - STATE(13), 1, + STATE(514), 1, sym__newline, - [31736] = 2, - ACTIONS(1718), 1, + [14041] = 2, + ACTIONS(1825), 1, sym__line_ending, - STATE(14), 1, + STATE(516), 1, sym__newline, - [31743] = 2, - ACTIONS(2462), 1, + [14048] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(987), 1, + STATE(348), 1, sym__newline, - [31750] = 2, - ACTIONS(2462), 1, + [14055] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(996), 1, + STATE(2), 1, sym__newline, - [31757] = 2, - ACTIONS(2462), 1, + [14062] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(1006), 1, + STATE(16), 1, sym__newline, - [31764] = 2, - ACTIONS(1730), 1, - sym__block_close, - ACTIONS(1732), 1, - sym__fenced_code_block_end_tilde, - [31771] = 2, - ACTIONS(2462), 1, + [14069] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(1010), 1, + STATE(1013), 1, sym__newline, - [31778] = 2, - ACTIONS(1716), 1, + [14076] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(353), 1, + STATE(1044), 1, sym__newline, - [31785] = 2, - ACTIONS(1714), 1, + [14083] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(448), 1, + STATE(1045), 1, sym__newline, - [31792] = 2, - ACTIONS(1716), 1, + [14090] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(355), 1, + STATE(1049), 1, sym__newline, - [31799] = 2, - ACTIONS(2341), 1, + [14097] = 2, + ACTIONS(1770), 1, sym__line_ending, - ACTIONS(2424), 1, - anon_sym_PIPE, - [31806] = 2, - ACTIONS(2540), 1, + STATE(428), 1, + sym__newline, + [14104] = 2, + ACTIONS(2608), 1, aux_sym__commonmark_whitespace_token1, - STATE(569), 1, + STATE(592), 1, sym__whitespace, - [31813] = 2, - ACTIONS(1742), 1, - sym__line_ending, - STATE(496), 1, - sym__newline, - [31820] = 2, - ACTIONS(1752), 1, + [14111] = 2, + ACTIONS(1851), 1, sym__block_close, - ACTIONS(1754), 1, + ACTIONS(1853), 1, sym__fenced_code_block_end_backtick, - [31827] = 1, - ACTIONS(2564), 2, + [14118] = 1, + ACTIONS(2616), 2, sym__line_ending, anon_sym_LBRACE, - [31832] = 2, - ACTIONS(1724), 1, + [14123] = 2, + ACTIONS(2596), 1, + sym__block_close, + ACTIONS(2598), 1, + sym__fenced_code_block_end_tilde, + [14130] = 2, + ACTIONS(1780), 1, + sym__line_ending, + STATE(510), 1, + sym__newline, + [14137] = 2, + ACTIONS(1825), 1, sym__line_ending, - STATE(491), 1, + STATE(511), 1, sym__newline, - [31839] = 1, - ACTIONS(2408), 2, + [14144] = 2, + ACTIONS(1772), 1, + sym__line_ending, + STATE(434), 1, + sym__newline, + [14151] = 2, + ACTIONS(2608), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [31844] = 2, - ACTIONS(1742), 1, + STATE(577), 1, + sym__whitespace, + [14158] = 2, + ACTIONS(1780), 1, sym__line_ending, - STATE(492), 1, + STATE(501), 1, sym__newline, - [31851] = 2, - ACTIONS(1716), 1, + [14165] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(357), 1, + STATE(436), 1, sym__newline, - [31858] = 2, - ACTIONS(2566), 1, + [14172] = 2, + ACTIONS(2618), 1, sym__block_close, - ACTIONS(2568), 1, + ACTIONS(2620), 1, sym_block_continuation, - [31865] = 2, - ACTIONS(1716), 1, + [14179] = 1, + ACTIONS(2622), 2, sym__line_ending, - STATE(359), 1, - sym__newline, - [31872] = 2, - ACTIONS(1724), 1, + anon_sym_LBRACE, + [14184] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(475), 1, + STATE(438), 1, sym__newline, - [31879] = 2, - ACTIONS(1724), 1, + [14191] = 2, + ACTIONS(1780), 1, sym__line_ending, - STATE(493), 1, + STATE(512), 1, sym__newline, - [31886] = 2, - ACTIONS(1742), 1, + [14198] = 2, + ACTIONS(1825), 1, sym__line_ending, - STATE(494), 1, + STATE(513), 1, sym__newline, - [31893] = 2, - ACTIONS(1752), 1, + [14205] = 2, + ACTIONS(1851), 1, sym__block_close, - ACTIONS(1754), 1, + ACTIONS(1853), 1, sym__fenced_code_block_end_tilde, - [31900] = 2, - ACTIONS(1718), 1, + [14212] = 2, + ACTIONS(1774), 1, sym__line_ending, - STATE(18), 1, + STATE(20), 1, sym__newline, - [31907] = 2, - ACTIONS(1718), 1, + [14219] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(19), 1, + STATE(440), 1, sym__newline, - [31914] = 2, - ACTIONS(2462), 1, + [14226] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(1041), 1, + STATE(1033), 1, sym__newline, - [31921] = 2, - ACTIONS(2462), 1, + [14233] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(952), 1, + STATE(979), 1, sym__newline, - [31928] = 2, - ACTIONS(2462), 1, + [14240] = 2, + ACTIONS(2512), 1, + sym__line_ending, + STATE(980), 1, + sym__newline, + [14247] = 2, + ACTIONS(1770), 1, sym__line_ending, - STATE(953), 1, + STATE(346), 1, sym__newline, - [31935] = 2, - ACTIONS(1716), 1, + [14254] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(361), 1, + STATE(442), 1, sym__newline, - [31942] = 2, - ACTIONS(2462), 1, + [14261] = 2, + ACTIONS(2512), 1, sym__line_ending, - STATE(957), 1, + STATE(984), 1, sym__newline, - [31949] = 2, - ACTIONS(1716), 1, + [14268] = 2, + ACTIONS(1945), 1, + sym__line_ending, + ACTIONS(2600), 1, + anon_sym_PIPE, + [14275] = 2, + ACTIONS(1772), 1, sym__line_ending, - STATE(363), 1, + STATE(445), 1, sym__newline, - [31956] = 2, - ACTIONS(2462), 1, + [14282] = 2, + ACTIONS(1825), 1, sym__line_ending, - STATE(967), 1, + STATE(515), 1, sym__newline, - [31963] = 2, - ACTIONS(1742), 1, + [14289] = 2, + ACTIONS(2584), 1, sym__line_ending, - STATE(478), 1, + STATE(702), 1, sym__newline, - [31970] = 2, - ACTIONS(2494), 1, + [14296] = 2, + ACTIONS(2584), 1, sym__line_ending, - STATE(674), 1, + STATE(697), 1, sym__newline, - [31977] = 1, - ACTIONS(2379), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [31982] = 2, - ACTIONS(2494), 1, + [14303] = 2, + ACTIONS(2584), 1, sym__line_ending, - STATE(676), 1, + STATE(700), 1, sym__newline, - [31989] = 2, - ACTIONS(2546), 1, + [14310] = 2, + ACTIONS(2624), 1, + anon_sym_DASH, + STATE(705), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [14317] = 2, + ACTIONS(2606), 1, aux_sym__commonmark_whitespace_token1, - STATE(677), 1, + STATE(690), 1, sym__whitespace, - [31996] = 2, - ACTIONS(2558), 1, - sym__block_close, - ACTIONS(2560), 1, - sym__fenced_code_block_end_tilde, - [32003] = 1, - ACTIONS(2570), 1, - sym__close_block, - [32007] = 1, - ACTIONS(2572), 1, - anon_sym_RBRACE, - [32011] = 1, - ACTIONS(2574), 1, - sym__line_ending, - [32015] = 1, - ACTIONS(2576), 1, - sym__line_ending, - [32019] = 1, - ACTIONS(2578), 1, - sym__block_close, - [32023] = 1, - ACTIONS(2580), 1, - sym__block_close, - [32027] = 1, - ACTIONS(2582), 1, - sym__line_ending, - [32031] = 1, - ACTIONS(2584), 1, - sym__block_close, - [32035] = 1, - ACTIONS(2586), 1, - sym__block_close, - [32039] = 1, - ACTIONS(2588), 1, - sym__block_close, - [32043] = 1, - ACTIONS(2590), 1, - sym__block_close, - [32047] = 1, - ACTIONS(2592), 1, - sym__block_close, - [32051] = 1, - ACTIONS(2594), 1, - sym__block_close, - [32055] = 1, - ACTIONS(2596), 1, - sym__block_close, - [32059] = 1, - ACTIONS(2598), 1, - sym__close_block, - [32063] = 1, - ACTIONS(2600), 1, - anon_sym_EQ, - [32067] = 1, - ACTIONS(2602), 1, - sym__block_close, - [32071] = 1, - ACTIONS(2604), 1, - sym__block_close, - [32075] = 1, - ACTIONS(2326), 1, - anon_sym_PIPE, - [32079] = 1, + [14324] = 2, ACTIONS(2606), 1, - sym__block_close, - [32083] = 1, - ACTIONS(2548), 1, + aux_sym__commonmark_whitespace_token1, + STATE(703), 1, + sym__whitespace, + [14331] = 1, + ACTIONS(2458), 2, + aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [32087] = 1, - ACTIONS(2608), 1, - sym__line_ending, - [32091] = 1, - ACTIONS(2610), 1, - sym__block_close, - [32095] = 1, - ACTIONS(2612), 1, - sym__block_close, - [32099] = 1, - ACTIONS(2614), 1, - sym__line_ending, - [32103] = 1, - ACTIONS(2616), 1, - sym__block_close, - [32107] = 1, - ACTIONS(2618), 1, - sym__close_block, - [32111] = 1, - ACTIONS(2620), 1, - sym__close_block, - [32115] = 1, - ACTIONS(2622), 1, - sym__line_ending, - [32119] = 1, - ACTIONS(2624), 1, - sym__block_close, - [32123] = 1, + [14336] = 1, ACTIONS(2626), 1, - sym__block_close, - [32127] = 1, + sym__close_block, + [14340] = 1, ACTIONS(2628), 1, - ts_builtin_sym_end, - [32131] = 1, - ACTIONS(2630), 1, sym__block_close, - [32135] = 1, + [14344] = 1, + ACTIONS(2630), 1, + sym__line_ending, + [14348] = 1, ACTIONS(2632), 1, - sym__block_close, - [32139] = 1, + sym__close_block, + [14352] = 1, ACTIONS(2634), 1, sym__block_close, - [32143] = 1, + [14356] = 1, ACTIONS(2636), 1, - sym__close_block, - [32147] = 1, + sym__block_close, + [14360] = 1, ACTIONS(2638), 1, - sym__close_block, - [32151] = 1, - ACTIONS(2640), 1, sym__block_close, - [32155] = 1, - ACTIONS(1394), 1, - sym__close_block, - [32159] = 1, - ACTIONS(2536), 1, + [14364] = 1, + ACTIONS(2640), 1, sym__block_close, - [32163] = 1, + [14368] = 1, ACTIONS(2642), 1, sym__block_close, - [32167] = 1, + [14372] = 1, ACTIONS(2644), 1, sym__block_close, - [32171] = 1, + [14376] = 1, ACTIONS(2646), 1, - sym__close_block, - [32175] = 1, - ACTIONS(1394), 1, sym__block_close, - [32179] = 1, + [14380] = 1, ACTIONS(2648), 1, - anon_sym_COLON, - [32183] = 1, + sym__block_close, + [14384] = 1, ACTIONS(2650), 1, - sym__line_ending, - [32187] = 1, + sym__block_close, + [14388] = 1, ACTIONS(2652), 1, sym__block_close, - [32191] = 1, + [14392] = 1, ACTIONS(2654), 1, sym__block_close, - [32195] = 1, + [14396] = 1, ACTIONS(2656), 1, sym__block_close, - [32199] = 1, + [14400] = 1, ACTIONS(2658), 1, - sym__block_close, - [32203] = 1, + sym__line_ending, + [14404] = 1, ACTIONS(2660), 1, - sym__block_close, - [32207] = 1, + sym__close_block, + [14408] = 1, ACTIONS(2662), 1, - sym__block_close, - [32211] = 1, + sym__line_ending, + [14412] = 1, ACTIONS(2664), 1, sym__block_close, - [32215] = 1, + [14416] = 1, ACTIONS(2666), 1, sym__block_close, - [32219] = 1, + [14420] = 1, ACTIONS(2668), 1, sym__block_close, - [32223] = 1, + [14424] = 1, ACTIONS(2670), 1, - sym__block_close, - [32227] = 1, - ACTIONS(1576), 1, - anon_sym_COLON, - [32231] = 1, - ACTIONS(2672), 1, sym__line_ending, - [32235] = 1, - ACTIONS(2674), 1, + [14428] = 1, + ACTIONS(2672), 1, sym__block_close, - [32239] = 1, + [14432] = 1, + ACTIONS(2674), 1, + sym__line_ending, + [14436] = 1, + ACTIONS(1436), 1, + sym__close_block, + [14440] = 1, ACTIONS(2676), 1, sym__block_close, - [32243] = 1, + [14444] = 1, + ACTIONS(2500), 1, + anon_sym_PIPE, + [14448] = 1, ACTIONS(2678), 1, + sym__close_block, + [14452] = 1, + ACTIONS(1436), 1, sym__block_close, - [32247] = 1, + [14456] = 1, ACTIONS(2680), 1, - sym__block_close, - [32251] = 1, + sym__close_block, + [14460] = 1, ACTIONS(2682), 1, - sym__block_close, - [32255] = 1, - ACTIONS(2684), 1, sym__line_ending, - [32259] = 1, + [14464] = 1, + ACTIONS(2684), 1, + sym__block_close, + [14468] = 1, ACTIONS(2686), 1, sym__block_close, - [32263] = 1, + [14472] = 1, ACTIONS(2688), 1, sym__block_close, - [32267] = 1, + [14476] = 1, ACTIONS(2690), 1, - sym__block_close, - [32271] = 1, + anon_sym_COLON, + [14480] = 1, ACTIONS(2692), 1, sym__block_close, - [32275] = 1, - ACTIONS(2432), 1, + [14484] = 1, + ACTIONS(2381), 1, anon_sym_PIPE, - [32279] = 1, - ACTIONS(2500), 1, - anon_sym_RBRACE, - [32283] = 1, + [14488] = 1, ACTIONS(2694), 1, - sym__line_ending, - [32287] = 1, + sym__block_close, + [14492] = 1, ACTIONS(2696), 1, + sym__close_block, + [14496] = 1, + ACTIONS(2592), 1, sym__block_close, - [32291] = 1, + [14500] = 1, ACTIONS(2698), 1, sym__block_close, - [32295] = 1, + [14504] = 1, ACTIONS(2700), 1, sym__block_close, - [32299] = 1, + [14508] = 1, ACTIONS(2702), 1, - sym__block_close, - [32303] = 1, + sym__close_block, + [14512] = 1, ACTIONS(2704), 1, - sym__block_close, - [32307] = 1, + ts_builtin_sym_end, + [14516] = 1, + ACTIONS(2387), 1, + anon_sym_PIPE, + [14520] = 1, ACTIONS(2706), 1, - anon_sym_COLON, - [32311] = 1, - ACTIONS(2708), 1, sym__block_close, - [32315] = 1, - ACTIONS(2322), 1, - anon_sym_PIPE, - [32319] = 1, - ACTIONS(2542), 1, + [14524] = 1, + ACTIONS(2708), 1, sym__block_close, - [32323] = 1, + [14528] = 1, ACTIONS(2710), 1, - sym__block_close, - [32327] = 1, + anon_sym_COLON, + [14532] = 1, ACTIONS(2712), 1, - sym__close_block, - [32331] = 1, + sym__block_close, + [14536] = 1, ACTIONS(2714), 1, sym__block_close, - [32335] = 1, - ACTIONS(1576), 1, - sym__close_block, - [32339] = 1, + [14540] = 1, ACTIONS(2716), 1, - sym__block_close, - [32343] = 1, + anon_sym_RBRACE, + [14544] = 1, ACTIONS(2718), 1, - sym__close_block, - [32347] = 1, + sym__block_close, + [14548] = 1, ACTIONS(2720), 1, sym__close_block, - [32351] = 1, + [14552] = 1, ACTIONS(2722), 1, - sym__close_block, - [32355] = 1, + sym__block_close, + [14556] = 1, ACTIONS(2724), 1, - sym__close_block, - [32359] = 1, + sym__line_ending, + [14560] = 1, + ACTIONS(2536), 1, + anon_sym_RBRACE, + [14564] = 1, ACTIONS(2726), 1, - sym__close_block, - [32363] = 1, + sym__block_close, + [14568] = 1, ACTIONS(2728), 1, - sym__close_block, - [32367] = 1, + sym__line_ending, + [14572] = 1, ACTIONS(2730), 1, sym__close_block, - [32371] = 1, + [14576] = 1, + ACTIONS(2602), 1, + sym__block_close, + [14580] = 1, ACTIONS(2732), 1, - sym__close_block, - [32375] = 1, - ACTIONS(2558), 1, sym__block_close, - [32379] = 1, - ACTIONS(2424), 1, - anon_sym_PIPE, - [32383] = 1, + [14584] = 1, ACTIONS(2734), 1, - sym__close_block, - [32387] = 1, + anon_sym_EQ, + [14588] = 1, ACTIONS(2736), 1, - sym__close_block, - [32391] = 1, + sym__block_close, + [14592] = 1, ACTIONS(2738), 1, - sym__close_block, - [32395] = 1, + sym__block_close, + [14596] = 1, ACTIONS(2740), 1, - anon_sym_COLON, - [32399] = 1, + sym__block_close, + [14600] = 1, ACTIONS(2742), 1, - sym__close_block, - [32403] = 1, + sym__block_close, + [14604] = 1, ACTIONS(2744), 1, - sym__close_block, - [32407] = 1, + sym__block_close, + [14608] = 1, ACTIONS(2746), 1, - sym__close_block, - [32411] = 1, + sym__block_close, + [14612] = 1, ACTIONS(2748), 1, - sym__close_block, - [32415] = 1, + sym__block_close, + [14616] = 1, ACTIONS(2750), 1, - sym__close_block, - [32419] = 1, + sym__block_close, + [14620] = 1, ACTIONS(2752), 1, - sym__line_ending, - [32423] = 1, - ACTIONS(2412), 1, - anon_sym_PIPE, - [32427] = 1, + sym__block_close, + [14624] = 1, ACTIONS(2754), 1, sym__block_close, - [32431] = 1, + [14628] = 1, ACTIONS(2756), 1, + sym__block_close, + [14632] = 1, + ACTIONS(2758), 1, + sym__block_close, + [14636] = 1, + ACTIONS(2760), 1, + sym__block_close, + [14640] = 1, + ACTIONS(2762), 1, + sym__block_close, + [14644] = 1, + ACTIONS(2764), 1, + sym__close_block, + [14648] = 1, + ACTIONS(2766), 1, + sym__block_close, + [14652] = 1, + ACTIONS(2768), 1, + sym__block_close, + [14656] = 1, + ACTIONS(2770), 1, + sym__block_close, + [14660] = 1, + ACTIONS(2772), 1, + sym__block_close, + [14664] = 1, + ACTIONS(2774), 1, + anon_sym_COLON, + [14668] = 1, + ACTIONS(2776), 1, + sym__block_close, + [14672] = 1, + ACTIONS(2778), 1, + sym__block_close, + [14676] = 1, + ACTIONS(2780), 1, + sym__block_close, + [14680] = 1, + ACTIONS(2782), 1, + sym__block_close, + [14684] = 1, + ACTIONS(2784), 1, + sym__block_close, + [14688] = 1, + ACTIONS(2596), 1, + sym__block_close, + [14692] = 1, + ACTIONS(2490), 1, + anon_sym_PIPE, + [14696] = 1, + ACTIONS(2786), 1, + sym__block_close, + [14700] = 1, + ACTIONS(2788), 1, + sym__close_block, + [14704] = 1, + ACTIONS(2790), 1, + sym__close_block, + [14708] = 1, + ACTIONS(2792), 1, + sym__close_block, + [14712] = 1, + ACTIONS(2794), 1, + sym__close_block, + [14716] = 1, + ACTIONS(2796), 1, + sym__close_block, + [14720] = 1, + ACTIONS(2798), 1, + sym__close_block, + [14724] = 1, + ACTIONS(2800), 1, sym__close_block, + [14728] = 1, + ACTIONS(2802), 1, + sym__close_block, + [14732] = 1, + ACTIONS(1622), 1, + sym__close_block, + [14736] = 1, + ACTIONS(2804), 1, + sym__line_ending, + [14740] = 1, + ACTIONS(2806), 1, + sym__close_block, + [14744] = 1, + ACTIONS(2808), 1, + sym__close_block, + [14748] = 1, + ACTIONS(2810), 1, + sym__close_block, + [14752] = 1, + ACTIONS(2812), 1, + sym__close_block, + [14756] = 1, + ACTIONS(2814), 1, + sym__block_close, + [14760] = 1, + ACTIONS(2816), 1, + sym__close_block, + [14764] = 1, + ACTIONS(2818), 1, + sym__close_block, + [14768] = 1, + ACTIONS(2820), 1, + sym__close_block, + [14772] = 1, + ACTIONS(2600), 1, + anon_sym_PIPE, + [14776] = 1, + ACTIONS(2822), 1, + sym__line_ending, + [14780] = 1, + ACTIONS(2468), 1, + anon_sym_PIPE, + [14784] = 1, + ACTIONS(2824), 1, + sym__line_ending, + [14788] = 1, + ACTIONS(1622), 1, + anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(189)] = 0, - [SMALL_STATE(190)] = 67, - [SMALL_STATE(191)] = 134, - [SMALL_STATE(192)] = 201, - [SMALL_STATE(193)] = 268, - [SMALL_STATE(194)] = 335, - [SMALL_STATE(195)] = 402, - [SMALL_STATE(196)] = 469, - [SMALL_STATE(197)] = 536, - [SMALL_STATE(198)] = 603, - [SMALL_STATE(199)] = 670, - [SMALL_STATE(200)] = 737, - [SMALL_STATE(201)] = 806, - [SMALL_STATE(202)] = 873, - [SMALL_STATE(203)] = 942, - [SMALL_STATE(204)] = 1009, - [SMALL_STATE(205)] = 1076, - [SMALL_STATE(206)] = 1143, - [SMALL_STATE(207)] = 1210, - [SMALL_STATE(208)] = 1277, - [SMALL_STATE(209)] = 1344, - [SMALL_STATE(210)] = 1411, - [SMALL_STATE(211)] = 1478, - [SMALL_STATE(212)] = 1545, - [SMALL_STATE(213)] = 1612, - [SMALL_STATE(214)] = 1681, - [SMALL_STATE(215)] = 1748, - [SMALL_STATE(216)] = 1815, - [SMALL_STATE(217)] = 1882, - [SMALL_STATE(218)] = 1949, - [SMALL_STATE(219)] = 2018, - [SMALL_STATE(220)] = 2085, - [SMALL_STATE(221)] = 2152, - [SMALL_STATE(222)] = 2219, - [SMALL_STATE(223)] = 2286, - [SMALL_STATE(224)] = 2353, - [SMALL_STATE(225)] = 2420, - [SMALL_STATE(226)] = 2489, - [SMALL_STATE(227)] = 2556, - [SMALL_STATE(228)] = 2623, - [SMALL_STATE(229)] = 2690, - [SMALL_STATE(230)] = 2757, - [SMALL_STATE(231)] = 2824, - [SMALL_STATE(232)] = 2891, - [SMALL_STATE(233)] = 2958, - [SMALL_STATE(234)] = 3025, - [SMALL_STATE(235)] = 3092, - [SMALL_STATE(236)] = 3161, - [SMALL_STATE(237)] = 3228, - [SMALL_STATE(238)] = 3295, - [SMALL_STATE(239)] = 3362, - [SMALL_STATE(240)] = 3429, - [SMALL_STATE(241)] = 3496, - [SMALL_STATE(242)] = 3563, - [SMALL_STATE(243)] = 3630, - [SMALL_STATE(244)] = 3697, - [SMALL_STATE(245)] = 3764, - [SMALL_STATE(246)] = 3833, - [SMALL_STATE(247)] = 3900, - [SMALL_STATE(248)] = 3967, - [SMALL_STATE(249)] = 4034, - [SMALL_STATE(250)] = 4101, - [SMALL_STATE(251)] = 4168, - [SMALL_STATE(252)] = 4237, - [SMALL_STATE(253)] = 4304, - [SMALL_STATE(254)] = 4373, - [SMALL_STATE(255)] = 4440, - [SMALL_STATE(256)] = 4507, - [SMALL_STATE(257)] = 4576, - [SMALL_STATE(258)] = 4645, - [SMALL_STATE(259)] = 4712, - [SMALL_STATE(260)] = 4779, - [SMALL_STATE(261)] = 4848, - [SMALL_STATE(262)] = 4915, - [SMALL_STATE(263)] = 4984, - [SMALL_STATE(264)] = 5053, - [SMALL_STATE(265)] = 5122, - [SMALL_STATE(266)] = 5191, - [SMALL_STATE(267)] = 5258, - [SMALL_STATE(268)] = 5327, - [SMALL_STATE(269)] = 5396, - [SMALL_STATE(270)] = 5463, - [SMALL_STATE(271)] = 5532, - [SMALL_STATE(272)] = 5601, - [SMALL_STATE(273)] = 5668, - [SMALL_STATE(274)] = 5735, - [SMALL_STATE(275)] = 5802, - [SMALL_STATE(276)] = 5869, - [SMALL_STATE(277)] = 5936, - [SMALL_STATE(278)] = 6005, - [SMALL_STATE(279)] = 6074, - [SMALL_STATE(280)] = 6141, - [SMALL_STATE(281)] = 6210, - [SMALL_STATE(282)] = 6277, - [SMALL_STATE(283)] = 6344, - [SMALL_STATE(284)] = 6411, - [SMALL_STATE(285)] = 6478, - [SMALL_STATE(286)] = 6545, - [SMALL_STATE(287)] = 6614, - [SMALL_STATE(288)] = 6683, - [SMALL_STATE(289)] = 6752, - [SMALL_STATE(290)] = 6821, - [SMALL_STATE(291)] = 6892, - [SMALL_STATE(292)] = 6961, - [SMALL_STATE(293)] = 7030, - [SMALL_STATE(294)] = 7099, - [SMALL_STATE(295)] = 7166, - [SMALL_STATE(296)] = 7235, - [SMALL_STATE(297)] = 7304, - [SMALL_STATE(298)] = 7371, - [SMALL_STATE(299)] = 7437, - [SMALL_STATE(300)] = 7503, - [SMALL_STATE(301)] = 7569, - [SMALL_STATE(302)] = 7635, - [SMALL_STATE(303)] = 7701, - [SMALL_STATE(304)] = 7767, - [SMALL_STATE(305)] = 7833, - [SMALL_STATE(306)] = 7899, - [SMALL_STATE(307)] = 7965, - [SMALL_STATE(308)] = 8031, - [SMALL_STATE(309)] = 8097, - [SMALL_STATE(310)] = 8163, - [SMALL_STATE(311)] = 8229, - [SMALL_STATE(312)] = 8295, - [SMALL_STATE(313)] = 8361, - [SMALL_STATE(314)] = 8427, - [SMALL_STATE(315)] = 8493, - [SMALL_STATE(316)] = 8559, - [SMALL_STATE(317)] = 8625, - [SMALL_STATE(318)] = 8691, - [SMALL_STATE(319)] = 8757, - [SMALL_STATE(320)] = 8823, - [SMALL_STATE(321)] = 8889, - [SMALL_STATE(322)] = 8955, - [SMALL_STATE(323)] = 9021, - [SMALL_STATE(324)] = 9087, - [SMALL_STATE(325)] = 9153, - [SMALL_STATE(326)] = 9219, - [SMALL_STATE(327)] = 9285, - [SMALL_STATE(328)] = 9351, - [SMALL_STATE(329)] = 9417, - [SMALL_STATE(330)] = 9483, - [SMALL_STATE(331)] = 9549, - [SMALL_STATE(332)] = 9615, - [SMALL_STATE(333)] = 9681, - [SMALL_STATE(334)] = 9747, - [SMALL_STATE(335)] = 9813, - [SMALL_STATE(336)] = 9879, - [SMALL_STATE(337)] = 9945, - [SMALL_STATE(338)] = 10011, - [SMALL_STATE(339)] = 10077, - [SMALL_STATE(340)] = 10143, - [SMALL_STATE(341)] = 10209, - [SMALL_STATE(342)] = 10275, - [SMALL_STATE(343)] = 10341, - [SMALL_STATE(344)] = 10407, - [SMALL_STATE(345)] = 10473, - [SMALL_STATE(346)] = 10539, - [SMALL_STATE(347)] = 10605, - [SMALL_STATE(348)] = 10671, - [SMALL_STATE(349)] = 10737, - [SMALL_STATE(350)] = 10803, - [SMALL_STATE(351)] = 10869, - [SMALL_STATE(352)] = 10935, - [SMALL_STATE(353)] = 11001, - [SMALL_STATE(354)] = 11067, - [SMALL_STATE(355)] = 11133, - [SMALL_STATE(356)] = 11199, - [SMALL_STATE(357)] = 11265, - [SMALL_STATE(358)] = 11331, - [SMALL_STATE(359)] = 11397, - [SMALL_STATE(360)] = 11463, - [SMALL_STATE(361)] = 11529, - [SMALL_STATE(362)] = 11595, - [SMALL_STATE(363)] = 11661, - [SMALL_STATE(364)] = 11727, - [SMALL_STATE(365)] = 11793, - [SMALL_STATE(366)] = 11859, - [SMALL_STATE(367)] = 11925, - [SMALL_STATE(368)] = 11991, - [SMALL_STATE(369)] = 12057, - [SMALL_STATE(370)] = 12123, - [SMALL_STATE(371)] = 12189, - [SMALL_STATE(372)] = 12255, - [SMALL_STATE(373)] = 12321, - [SMALL_STATE(374)] = 12387, - [SMALL_STATE(375)] = 12453, - [SMALL_STATE(376)] = 12519, - [SMALL_STATE(377)] = 12585, - [SMALL_STATE(378)] = 12651, - [SMALL_STATE(379)] = 12717, - [SMALL_STATE(380)] = 12783, - [SMALL_STATE(381)] = 12849, - [SMALL_STATE(382)] = 12915, - [SMALL_STATE(383)] = 12981, - [SMALL_STATE(384)] = 13047, - [SMALL_STATE(385)] = 13113, - [SMALL_STATE(386)] = 13179, - [SMALL_STATE(387)] = 13245, - [SMALL_STATE(388)] = 13311, - [SMALL_STATE(389)] = 13377, - [SMALL_STATE(390)] = 13443, - [SMALL_STATE(391)] = 13509, - [SMALL_STATE(392)] = 13575, - [SMALL_STATE(393)] = 13641, - [SMALL_STATE(394)] = 13707, - [SMALL_STATE(395)] = 13773, - [SMALL_STATE(396)] = 13839, - [SMALL_STATE(397)] = 13905, - [SMALL_STATE(398)] = 13971, - [SMALL_STATE(399)] = 14037, - [SMALL_STATE(400)] = 14103, - [SMALL_STATE(401)] = 14169, - [SMALL_STATE(402)] = 14235, - [SMALL_STATE(403)] = 14301, - [SMALL_STATE(404)] = 14367, - [SMALL_STATE(405)] = 14433, - [SMALL_STATE(406)] = 14499, - [SMALL_STATE(407)] = 14565, - [SMALL_STATE(408)] = 14631, - [SMALL_STATE(409)] = 14697, - [SMALL_STATE(410)] = 14763, - [SMALL_STATE(411)] = 14829, - [SMALL_STATE(412)] = 14895, - [SMALL_STATE(413)] = 14961, - [SMALL_STATE(414)] = 15027, - [SMALL_STATE(415)] = 15093, - [SMALL_STATE(416)] = 15159, - [SMALL_STATE(417)] = 15225, - [SMALL_STATE(418)] = 15291, - [SMALL_STATE(419)] = 15357, - [SMALL_STATE(420)] = 15423, - [SMALL_STATE(421)] = 15489, - [SMALL_STATE(422)] = 15555, - [SMALL_STATE(423)] = 15621, - [SMALL_STATE(424)] = 15687, - [SMALL_STATE(425)] = 15753, - [SMALL_STATE(426)] = 15819, - [SMALL_STATE(427)] = 15885, - [SMALL_STATE(428)] = 15951, - [SMALL_STATE(429)] = 16017, - [SMALL_STATE(430)] = 16083, - [SMALL_STATE(431)] = 16149, - [SMALL_STATE(432)] = 16215, - [SMALL_STATE(433)] = 16281, - [SMALL_STATE(434)] = 16347, - [SMALL_STATE(435)] = 16413, - [SMALL_STATE(436)] = 16479, - [SMALL_STATE(437)] = 16545, - [SMALL_STATE(438)] = 16611, - [SMALL_STATE(439)] = 16677, - [SMALL_STATE(440)] = 16743, - [SMALL_STATE(441)] = 16809, - [SMALL_STATE(442)] = 16875, - [SMALL_STATE(443)] = 16941, - [SMALL_STATE(444)] = 17007, - [SMALL_STATE(445)] = 17073, - [SMALL_STATE(446)] = 17139, - [SMALL_STATE(447)] = 17205, - [SMALL_STATE(448)] = 17271, - [SMALL_STATE(449)] = 17337, - [SMALL_STATE(450)] = 17403, - [SMALL_STATE(451)] = 17469, - [SMALL_STATE(452)] = 17535, - [SMALL_STATE(453)] = 17601, - [SMALL_STATE(454)] = 17667, - [SMALL_STATE(455)] = 17746, - [SMALL_STATE(456)] = 17820, - [SMALL_STATE(457)] = 17889, - [SMALL_STATE(458)] = 17958, - [SMALL_STATE(459)] = 18027, - [SMALL_STATE(460)] = 18096, - [SMALL_STATE(461)] = 18165, - [SMALL_STATE(462)] = 18234, - [SMALL_STATE(463)] = 18303, - [SMALL_STATE(464)] = 18372, - [SMALL_STATE(465)] = 18441, - [SMALL_STATE(466)] = 18510, - [SMALL_STATE(467)] = 18579, - [SMALL_STATE(468)] = 18648, - [SMALL_STATE(469)] = 18717, - [SMALL_STATE(470)] = 18786, - [SMALL_STATE(471)] = 18855, - [SMALL_STATE(472)] = 18924, - [SMALL_STATE(473)] = 18993, - [SMALL_STATE(474)] = 19062, - [SMALL_STATE(475)] = 19124, - [SMALL_STATE(476)] = 19186, - [SMALL_STATE(477)] = 19248, - [SMALL_STATE(478)] = 19310, - [SMALL_STATE(479)] = 19372, - [SMALL_STATE(480)] = 19434, - [SMALL_STATE(481)] = 19496, - [SMALL_STATE(482)] = 19558, - [SMALL_STATE(483)] = 19620, - [SMALL_STATE(484)] = 19682, - [SMALL_STATE(485)] = 19750, - [SMALL_STATE(486)] = 19812, - [SMALL_STATE(487)] = 19874, - [SMALL_STATE(488)] = 19942, - [SMALL_STATE(489)] = 20010, - [SMALL_STATE(490)] = 20078, - [SMALL_STATE(491)] = 20140, - [SMALL_STATE(492)] = 20202, - [SMALL_STATE(493)] = 20264, - [SMALL_STATE(494)] = 20326, - [SMALL_STATE(495)] = 20388, - [SMALL_STATE(496)] = 20456, - [SMALL_STATE(497)] = 20518, - [SMALL_STATE(498)] = 20578, - [SMALL_STATE(499)] = 20647, - [SMALL_STATE(500)] = 20704, - [SMALL_STATE(501)] = 20773, - [SMALL_STATE(502)] = 20830, - [SMALL_STATE(503)] = 20887, - [SMALL_STATE(504)] = 20944, - [SMALL_STATE(505)] = 21001, - [SMALL_STATE(506)] = 21058, - [SMALL_STATE(507)] = 21115, - [SMALL_STATE(508)] = 21172, - [SMALL_STATE(509)] = 21229, - [SMALL_STATE(510)] = 21298, - [SMALL_STATE(511)] = 21360, - [SMALL_STATE(512)] = 21416, - [SMALL_STATE(513)] = 21482, - [SMALL_STATE(514)] = 21548, - [SMALL_STATE(515)] = 21614, - [SMALL_STATE(516)] = 21670, - [SMALL_STATE(517)] = 21726, - [SMALL_STATE(518)] = 21788, - [SMALL_STATE(519)] = 21846, - [SMALL_STATE(520)] = 21902, - [SMALL_STATE(521)] = 21968, - [SMALL_STATE(522)] = 22032, - [SMALL_STATE(523)] = 22088, - [SMALL_STATE(524)] = 22150, - [SMALL_STATE(525)] = 22206, - [SMALL_STATE(526)] = 22270, - [SMALL_STATE(527)] = 22326, - [SMALL_STATE(528)] = 22390, - [SMALL_STATE(529)] = 22454, - [SMALL_STATE(530)] = 22518, - [SMALL_STATE(531)] = 22584, - [SMALL_STATE(532)] = 22648, - [SMALL_STATE(533)] = 22703, - [SMALL_STATE(534)] = 22760, - [SMALL_STATE(535)] = 22815, - [SMALL_STATE(536)] = 22874, - [SMALL_STATE(537)] = 22929, - [SMALL_STATE(538)] = 22988, - [SMALL_STATE(539)] = 23043, - [SMALL_STATE(540)] = 23106, - [SMALL_STATE(541)] = 23165, - [SMALL_STATE(542)] = 23224, - [SMALL_STATE(543)] = 23287, - [SMALL_STATE(544)] = 23340, - [SMALL_STATE(545)] = 23395, - [SMALL_STATE(546)] = 23444, - [SMALL_STATE(547)] = 23496, - [SMALL_STATE(548)] = 23550, - [SMALL_STATE(549)] = 23596, - [SMALL_STATE(550)] = 23646, - [SMALL_STATE(551)] = 23696, - [SMALL_STATE(552)] = 23756, - [SMALL_STATE(553)] = 23806, - [SMALL_STATE(554)] = 23852, - [SMALL_STATE(555)] = 23898, - [SMALL_STATE(556)] = 23948, - [SMALL_STATE(557)] = 23998, - [SMALL_STATE(558)] = 24052, - [SMALL_STATE(559)] = 24106, - [SMALL_STATE(560)] = 24156, - [SMALL_STATE(561)] = 24206, - [SMALL_STATE(562)] = 24252, - [SMALL_STATE(563)] = 24306, - [SMALL_STATE(564)] = 24364, - [SMALL_STATE(565)] = 24424, - [SMALL_STATE(566)] = 24482, - [SMALL_STATE(567)] = 24532, - [SMALL_STATE(568)] = 24578, - [SMALL_STATE(569)] = 24630, - [SMALL_STATE(570)] = 24688, - [SMALL_STATE(571)] = 24748, - [SMALL_STATE(572)] = 24802, - [SMALL_STATE(573)] = 24852, - [SMALL_STATE(574)] = 24904, - [SMALL_STATE(575)] = 24961, - [SMALL_STATE(576)] = 25010, - [SMALL_STATE(577)] = 25055, - [SMALL_STATE(578)] = 25104, - [SMALL_STATE(579)] = 25149, - [SMALL_STATE(580)] = 25194, - [SMALL_STATE(581)] = 25251, - [SMALL_STATE(582)] = 25296, - [SMALL_STATE(583)] = 25345, - [SMALL_STATE(584)] = 25394, - [SMALL_STATE(585)] = 25451, - [SMALL_STATE(586)] = 25496, - [SMALL_STATE(587)] = 25553, - [SMALL_STATE(588)] = 25598, - [SMALL_STATE(589)] = 25655, - [SMALL_STATE(590)] = 25712, - [SMALL_STATE(591)] = 25769, - [SMALL_STATE(592)] = 25820, - [SMALL_STATE(593)] = 25877, - [SMALL_STATE(594)] = 25919, - [SMALL_STATE(595)] = 25961, - [SMALL_STATE(596)] = 26003, - [SMALL_STATE(597)] = 26047, - [SMALL_STATE(598)] = 26097, - [SMALL_STATE(599)] = 26147, - [SMALL_STATE(600)] = 26191, - [SMALL_STATE(601)] = 26235, - [SMALL_STATE(602)] = 26279, - [SMALL_STATE(603)] = 26327, - [SMALL_STATE(604)] = 26369, - [SMALL_STATE(605)] = 26419, - [SMALL_STATE(606)] = 26463, - [SMALL_STATE(607)] = 26513, - [SMALL_STATE(608)] = 26555, - [SMALL_STATE(609)] = 26605, - [SMALL_STATE(610)] = 26649, - [SMALL_STATE(611)] = 26691, - [SMALL_STATE(612)] = 26741, - [SMALL_STATE(613)] = 26783, - [SMALL_STATE(614)] = 26831, - [SMALL_STATE(615)] = 26873, - [SMALL_STATE(616)] = 26914, - [SMALL_STATE(617)] = 26955, - [SMALL_STATE(618)] = 26998, - [SMALL_STATE(619)] = 27041, - [SMALL_STATE(620)] = 27082, - [SMALL_STATE(621)] = 27125, - [SMALL_STATE(622)] = 27168, - [SMALL_STATE(623)] = 27211, - [SMALL_STATE(624)] = 27252, - [SMALL_STATE(625)] = 27295, - [SMALL_STATE(626)] = 27338, - [SMALL_STATE(627)] = 27381, - [SMALL_STATE(628)] = 27422, - [SMALL_STATE(629)] = 27463, - [SMALL_STATE(630)] = 27504, - [SMALL_STATE(631)] = 27550, - [SMALL_STATE(632)] = 27596, - [SMALL_STATE(633)] = 27640, - [SMALL_STATE(634)] = 27684, - [SMALL_STATE(635)] = 27730, - [SMALL_STATE(636)] = 27776, - [SMALL_STATE(637)] = 27822, - [SMALL_STATE(638)] = 27862, - [SMALL_STATE(639)] = 27908, - [SMALL_STATE(640)] = 27954, - [SMALL_STATE(641)] = 27994, - [SMALL_STATE(642)] = 28035, - [SMALL_STATE(643)] = 28076, - [SMALL_STATE(644)] = 28117, - [SMALL_STATE(645)] = 28158, - [SMALL_STATE(646)] = 28197, - [SMALL_STATE(647)] = 28235, - [SMALL_STATE(648)] = 28273, - [SMALL_STATE(649)] = 28325, - [SMALL_STATE(650)] = 28377, - [SMALL_STATE(651)] = 28429, - [SMALL_STATE(652)] = 28481, - [SMALL_STATE(653)] = 28533, - [SMALL_STATE(654)] = 28570, - [SMALL_STATE(655)] = 28598, - [SMALL_STATE(656)] = 28626, - [SMALL_STATE(657)] = 28654, - [SMALL_STATE(658)] = 28682, - [SMALL_STATE(659)] = 28710, - [SMALL_STATE(660)] = 28738, - [SMALL_STATE(661)] = 28765, - [SMALL_STATE(662)] = 28792, - [SMALL_STATE(663)] = 28819, - [SMALL_STATE(664)] = 28850, - [SMALL_STATE(665)] = 28877, - [SMALL_STATE(666)] = 28905, - [SMALL_STATE(667)] = 28933, - [SMALL_STATE(668)] = 28955, - [SMALL_STATE(669)] = 28977, - [SMALL_STATE(670)] = 29005, - [SMALL_STATE(671)] = 29027, - [SMALL_STATE(672)] = 29049, - [SMALL_STATE(673)] = 29071, - [SMALL_STATE(674)] = 29093, - [SMALL_STATE(675)] = 29121, - [SMALL_STATE(676)] = 29143, - [SMALL_STATE(677)] = 29171, - [SMALL_STATE(678)] = 29193, - [SMALL_STATE(679)] = 29215, - [SMALL_STATE(680)] = 29230, - [SMALL_STATE(681)] = 29247, - [SMALL_STATE(682)] = 29264, - [SMALL_STATE(683)] = 29286, - [SMALL_STATE(684)] = 29304, - [SMALL_STATE(685)] = 29326, - [SMALL_STATE(686)] = 29344, - [SMALL_STATE(687)] = 29366, - [SMALL_STATE(688)] = 29384, - [SMALL_STATE(689)] = 29400, - [SMALL_STATE(690)] = 29418, - [SMALL_STATE(691)] = 29440, - [SMALL_STATE(692)] = 29458, - [SMALL_STATE(693)] = 29476, - [SMALL_STATE(694)] = 29494, - [SMALL_STATE(695)] = 29512, - [SMALL_STATE(696)] = 29530, - [SMALL_STATE(697)] = 29548, - [SMALL_STATE(698)] = 29566, - [SMALL_STATE(699)] = 29584, - [SMALL_STATE(700)] = 29602, - [SMALL_STATE(701)] = 29620, - [SMALL_STATE(702)] = 29638, - [SMALL_STATE(703)] = 29656, - [SMALL_STATE(704)] = 29674, - [SMALL_STATE(705)] = 29692, - [SMALL_STATE(706)] = 29714, - [SMALL_STATE(707)] = 29724, - [SMALL_STATE(708)] = 29742, - [SMALL_STATE(709)] = 29760, - [SMALL_STATE(710)] = 29778, - [SMALL_STATE(711)] = 29797, - [SMALL_STATE(712)] = 29816, - [SMALL_STATE(713)] = 29831, - [SMALL_STATE(714)] = 29846, - [SMALL_STATE(715)] = 29861, - [SMALL_STATE(716)] = 29876, - [SMALL_STATE(717)] = 29891, - [SMALL_STATE(718)] = 29910, - [SMALL_STATE(719)] = 29919, - [SMALL_STATE(720)] = 29934, - [SMALL_STATE(721)] = 29949, - [SMALL_STATE(722)] = 29964, - [SMALL_STATE(723)] = 29979, - [SMALL_STATE(724)] = 29994, - [SMALL_STATE(725)] = 30003, - [SMALL_STATE(726)] = 30018, - [SMALL_STATE(727)] = 30027, - [SMALL_STATE(728)] = 30042, - [SMALL_STATE(729)] = 30061, - [SMALL_STATE(730)] = 30080, - [SMALL_STATE(731)] = 30095, - [SMALL_STATE(732)] = 30110, - [SMALL_STATE(733)] = 30129, - [SMALL_STATE(734)] = 30148, - [SMALL_STATE(735)] = 30167, - [SMALL_STATE(736)] = 30182, - [SMALL_STATE(737)] = 30197, - [SMALL_STATE(738)] = 30206, - [SMALL_STATE(739)] = 30220, - [SMALL_STATE(740)] = 30234, - [SMALL_STATE(741)] = 30242, - [SMALL_STATE(742)] = 30250, - [SMALL_STATE(743)] = 30260, - [SMALL_STATE(744)] = 30274, - [SMALL_STATE(745)] = 30290, - [SMALL_STATE(746)] = 30306, - [SMALL_STATE(747)] = 30318, - [SMALL_STATE(748)] = 30334, - [SMALL_STATE(749)] = 30348, - [SMALL_STATE(750)] = 30364, - [SMALL_STATE(751)] = 30380, - [SMALL_STATE(752)] = 30394, - [SMALL_STATE(753)] = 30410, - [SMALL_STATE(754)] = 30418, - [SMALL_STATE(755)] = 30428, - [SMALL_STATE(756)] = 30437, - [SMALL_STATE(757)] = 30446, - [SMALL_STATE(758)] = 30459, - [SMALL_STATE(759)] = 30468, - [SMALL_STATE(760)] = 30477, - [SMALL_STATE(761)] = 30486, - [SMALL_STATE(762)] = 30499, - [SMALL_STATE(763)] = 30506, - [SMALL_STATE(764)] = 30519, - [SMALL_STATE(765)] = 30532, - [SMALL_STATE(766)] = 30541, - [SMALL_STATE(767)] = 30550, - [SMALL_STATE(768)] = 30559, - [SMALL_STATE(769)] = 30572, - [SMALL_STATE(770)] = 30581, - [SMALL_STATE(771)] = 30590, - [SMALL_STATE(772)] = 30603, - [SMALL_STATE(773)] = 30612, - [SMALL_STATE(774)] = 30625, - [SMALL_STATE(775)] = 30634, - [SMALL_STATE(776)] = 30643, - [SMALL_STATE(777)] = 30656, - [SMALL_STATE(778)] = 30665, - [SMALL_STATE(779)] = 30674, - [SMALL_STATE(780)] = 30683, - [SMALL_STATE(781)] = 30692, - [SMALL_STATE(782)] = 30701, - [SMALL_STATE(783)] = 30714, - [SMALL_STATE(784)] = 30727, - [SMALL_STATE(785)] = 30736, - [SMALL_STATE(786)] = 30745, - [SMALL_STATE(787)] = 30754, - [SMALL_STATE(788)] = 30767, - [SMALL_STATE(789)] = 30776, - [SMALL_STATE(790)] = 30789, - [SMALL_STATE(791)] = 30799, - [SMALL_STATE(792)] = 30809, - [SMALL_STATE(793)] = 30819, - [SMALL_STATE(794)] = 30829, - [SMALL_STATE(795)] = 30839, - [SMALL_STATE(796)] = 30849, - [SMALL_STATE(797)] = 30859, - [SMALL_STATE(798)] = 30869, - [SMALL_STATE(799)] = 30879, - [SMALL_STATE(800)] = 30889, - [SMALL_STATE(801)] = 30895, - [SMALL_STATE(802)] = 30905, - [SMALL_STATE(803)] = 30915, - [SMALL_STATE(804)] = 30925, - [SMALL_STATE(805)] = 30935, - [SMALL_STATE(806)] = 30945, - [SMALL_STATE(807)] = 30955, - [SMALL_STATE(808)] = 30965, - [SMALL_STATE(809)] = 30975, - [SMALL_STATE(810)] = 30985, - [SMALL_STATE(811)] = 30991, - [SMALL_STATE(812)] = 31001, - [SMALL_STATE(813)] = 31011, - [SMALL_STATE(814)] = 31021, - [SMALL_STATE(815)] = 31031, - [SMALL_STATE(816)] = 31037, - [SMALL_STATE(817)] = 31047, - [SMALL_STATE(818)] = 31057, - [SMALL_STATE(819)] = 31067, - [SMALL_STATE(820)] = 31077, - [SMALL_STATE(821)] = 31087, - [SMALL_STATE(822)] = 31097, - [SMALL_STATE(823)] = 31107, - [SMALL_STATE(824)] = 31115, - [SMALL_STATE(825)] = 31125, - [SMALL_STATE(826)] = 31135, - [SMALL_STATE(827)] = 31145, - [SMALL_STATE(828)] = 31155, - [SMALL_STATE(829)] = 31161, - [SMALL_STATE(830)] = 31171, - [SMALL_STATE(831)] = 31181, - [SMALL_STATE(832)] = 31191, - [SMALL_STATE(833)] = 31201, - [SMALL_STATE(834)] = 31211, - [SMALL_STATE(835)] = 31221, - [SMALL_STATE(836)] = 31231, - [SMALL_STATE(837)] = 31238, - [SMALL_STATE(838)] = 31245, - [SMALL_STATE(839)] = 31252, - [SMALL_STATE(840)] = 31259, - [SMALL_STATE(841)] = 31266, - [SMALL_STATE(842)] = 31273, - [SMALL_STATE(843)] = 31280, - [SMALL_STATE(844)] = 31287, - [SMALL_STATE(845)] = 31294, - [SMALL_STATE(846)] = 31301, - [SMALL_STATE(847)] = 31308, - [SMALL_STATE(848)] = 31315, - [SMALL_STATE(849)] = 31322, - [SMALL_STATE(850)] = 31329, - [SMALL_STATE(851)] = 31336, - [SMALL_STATE(852)] = 31343, - [SMALL_STATE(853)] = 31350, - [SMALL_STATE(854)] = 31357, - [SMALL_STATE(855)] = 31364, - [SMALL_STATE(856)] = 31371, - [SMALL_STATE(857)] = 31378, - [SMALL_STATE(858)] = 31385, - [SMALL_STATE(859)] = 31392, - [SMALL_STATE(860)] = 31399, - [SMALL_STATE(861)] = 31406, - [SMALL_STATE(862)] = 31413, - [SMALL_STATE(863)] = 31420, - [SMALL_STATE(864)] = 31427, - [SMALL_STATE(865)] = 31434, - [SMALL_STATE(866)] = 31441, - [SMALL_STATE(867)] = 31448, - [SMALL_STATE(868)] = 31455, - [SMALL_STATE(869)] = 31462, - [SMALL_STATE(870)] = 31469, - [SMALL_STATE(871)] = 31476, - [SMALL_STATE(872)] = 31483, - [SMALL_STATE(873)] = 31488, - [SMALL_STATE(874)] = 31495, - [SMALL_STATE(875)] = 31502, - [SMALL_STATE(876)] = 31509, - [SMALL_STATE(877)] = 31516, - [SMALL_STATE(878)] = 31523, - [SMALL_STATE(879)] = 31530, - [SMALL_STATE(880)] = 31537, - [SMALL_STATE(881)] = 31544, - [SMALL_STATE(882)] = 31551, - [SMALL_STATE(883)] = 31558, - [SMALL_STATE(884)] = 31565, - [SMALL_STATE(885)] = 31572, - [SMALL_STATE(886)] = 31579, - [SMALL_STATE(887)] = 31584, - [SMALL_STATE(888)] = 31591, - [SMALL_STATE(889)] = 31598, - [SMALL_STATE(890)] = 31605, - [SMALL_STATE(891)] = 31612, - [SMALL_STATE(892)] = 31619, - [SMALL_STATE(893)] = 31626, - [SMALL_STATE(894)] = 31631, - [SMALL_STATE(895)] = 31638, - [SMALL_STATE(896)] = 31645, - [SMALL_STATE(897)] = 31652, - [SMALL_STATE(898)] = 31659, - [SMALL_STATE(899)] = 31666, - [SMALL_STATE(900)] = 31673, - [SMALL_STATE(901)] = 31680, - [SMALL_STATE(902)] = 31687, - [SMALL_STATE(903)] = 31694, - [SMALL_STATE(904)] = 31701, - [SMALL_STATE(905)] = 31708, - [SMALL_STATE(906)] = 31715, - [SMALL_STATE(907)] = 31722, - [SMALL_STATE(908)] = 31729, - [SMALL_STATE(909)] = 31736, - [SMALL_STATE(910)] = 31743, - [SMALL_STATE(911)] = 31750, - [SMALL_STATE(912)] = 31757, - [SMALL_STATE(913)] = 31764, - [SMALL_STATE(914)] = 31771, - [SMALL_STATE(915)] = 31778, - [SMALL_STATE(916)] = 31785, - [SMALL_STATE(917)] = 31792, - [SMALL_STATE(918)] = 31799, - [SMALL_STATE(919)] = 31806, - [SMALL_STATE(920)] = 31813, - [SMALL_STATE(921)] = 31820, - [SMALL_STATE(922)] = 31827, - [SMALL_STATE(923)] = 31832, - [SMALL_STATE(924)] = 31839, - [SMALL_STATE(925)] = 31844, - [SMALL_STATE(926)] = 31851, - [SMALL_STATE(927)] = 31858, - [SMALL_STATE(928)] = 31865, - [SMALL_STATE(929)] = 31872, - [SMALL_STATE(930)] = 31879, - [SMALL_STATE(931)] = 31886, - [SMALL_STATE(932)] = 31893, - [SMALL_STATE(933)] = 31900, - [SMALL_STATE(934)] = 31907, - [SMALL_STATE(935)] = 31914, - [SMALL_STATE(936)] = 31921, - [SMALL_STATE(937)] = 31928, - [SMALL_STATE(938)] = 31935, - [SMALL_STATE(939)] = 31942, - [SMALL_STATE(940)] = 31949, - [SMALL_STATE(941)] = 31956, - [SMALL_STATE(942)] = 31963, - [SMALL_STATE(943)] = 31970, - [SMALL_STATE(944)] = 31977, - [SMALL_STATE(945)] = 31982, - [SMALL_STATE(946)] = 31989, - [SMALL_STATE(947)] = 31996, - [SMALL_STATE(948)] = 32003, - [SMALL_STATE(949)] = 32007, - [SMALL_STATE(950)] = 32011, - [SMALL_STATE(951)] = 32015, - [SMALL_STATE(952)] = 32019, - [SMALL_STATE(953)] = 32023, - [SMALL_STATE(954)] = 32027, - [SMALL_STATE(955)] = 32031, - [SMALL_STATE(956)] = 32035, - [SMALL_STATE(957)] = 32039, - [SMALL_STATE(958)] = 32043, - [SMALL_STATE(959)] = 32047, - [SMALL_STATE(960)] = 32051, - [SMALL_STATE(961)] = 32055, - [SMALL_STATE(962)] = 32059, - [SMALL_STATE(963)] = 32063, - [SMALL_STATE(964)] = 32067, - [SMALL_STATE(965)] = 32071, - [SMALL_STATE(966)] = 32075, - [SMALL_STATE(967)] = 32079, - [SMALL_STATE(968)] = 32083, - [SMALL_STATE(969)] = 32087, - [SMALL_STATE(970)] = 32091, - [SMALL_STATE(971)] = 32095, - [SMALL_STATE(972)] = 32099, - [SMALL_STATE(973)] = 32103, - [SMALL_STATE(974)] = 32107, - [SMALL_STATE(975)] = 32111, - [SMALL_STATE(976)] = 32115, - [SMALL_STATE(977)] = 32119, - [SMALL_STATE(978)] = 32123, - [SMALL_STATE(979)] = 32127, - [SMALL_STATE(980)] = 32131, - [SMALL_STATE(981)] = 32135, - [SMALL_STATE(982)] = 32139, - [SMALL_STATE(983)] = 32143, - [SMALL_STATE(984)] = 32147, - [SMALL_STATE(985)] = 32151, - [SMALL_STATE(986)] = 32155, - [SMALL_STATE(987)] = 32159, - [SMALL_STATE(988)] = 32163, - [SMALL_STATE(989)] = 32167, - [SMALL_STATE(990)] = 32171, - [SMALL_STATE(991)] = 32175, - [SMALL_STATE(992)] = 32179, - [SMALL_STATE(993)] = 32183, - [SMALL_STATE(994)] = 32187, - [SMALL_STATE(995)] = 32191, - [SMALL_STATE(996)] = 32195, - [SMALL_STATE(997)] = 32199, - [SMALL_STATE(998)] = 32203, - [SMALL_STATE(999)] = 32207, - [SMALL_STATE(1000)] = 32211, - [SMALL_STATE(1001)] = 32215, - [SMALL_STATE(1002)] = 32219, - [SMALL_STATE(1003)] = 32223, - [SMALL_STATE(1004)] = 32227, - [SMALL_STATE(1005)] = 32231, - [SMALL_STATE(1006)] = 32235, - [SMALL_STATE(1007)] = 32239, - [SMALL_STATE(1008)] = 32243, - [SMALL_STATE(1009)] = 32247, - [SMALL_STATE(1010)] = 32251, - [SMALL_STATE(1011)] = 32255, - [SMALL_STATE(1012)] = 32259, - [SMALL_STATE(1013)] = 32263, - [SMALL_STATE(1014)] = 32267, - [SMALL_STATE(1015)] = 32271, - [SMALL_STATE(1016)] = 32275, - [SMALL_STATE(1017)] = 32279, - [SMALL_STATE(1018)] = 32283, - [SMALL_STATE(1019)] = 32287, - [SMALL_STATE(1020)] = 32291, - [SMALL_STATE(1021)] = 32295, - [SMALL_STATE(1022)] = 32299, - [SMALL_STATE(1023)] = 32303, - [SMALL_STATE(1024)] = 32307, - [SMALL_STATE(1025)] = 32311, - [SMALL_STATE(1026)] = 32315, - [SMALL_STATE(1027)] = 32319, - [SMALL_STATE(1028)] = 32323, - [SMALL_STATE(1029)] = 32327, - [SMALL_STATE(1030)] = 32331, - [SMALL_STATE(1031)] = 32335, - [SMALL_STATE(1032)] = 32339, - [SMALL_STATE(1033)] = 32343, - [SMALL_STATE(1034)] = 32347, - [SMALL_STATE(1035)] = 32351, - [SMALL_STATE(1036)] = 32355, - [SMALL_STATE(1037)] = 32359, - [SMALL_STATE(1038)] = 32363, - [SMALL_STATE(1039)] = 32367, - [SMALL_STATE(1040)] = 32371, - [SMALL_STATE(1041)] = 32375, - [SMALL_STATE(1042)] = 32379, - [SMALL_STATE(1043)] = 32383, - [SMALL_STATE(1044)] = 32387, - [SMALL_STATE(1045)] = 32391, - [SMALL_STATE(1046)] = 32395, - [SMALL_STATE(1047)] = 32399, - [SMALL_STATE(1048)] = 32403, - [SMALL_STATE(1049)] = 32407, - [SMALL_STATE(1050)] = 32411, - [SMALL_STATE(1051)] = 32415, - [SMALL_STATE(1052)] = 32419, - [SMALL_STATE(1053)] = 32423, - [SMALL_STATE(1054)] = 32427, - [SMALL_STATE(1055)] = 32431, + [SMALL_STATE(479)] = 0, + [SMALL_STATE(480)] = 79, + [SMALL_STATE(481)] = 153, + [SMALL_STATE(482)] = 222, + [SMALL_STATE(483)] = 291, + [SMALL_STATE(484)] = 360, + [SMALL_STATE(485)] = 429, + [SMALL_STATE(486)] = 498, + [SMALL_STATE(487)] = 567, + [SMALL_STATE(488)] = 636, + [SMALL_STATE(489)] = 705, + [SMALL_STATE(490)] = 774, + [SMALL_STATE(491)] = 843, + [SMALL_STATE(492)] = 912, + [SMALL_STATE(493)] = 981, + [SMALL_STATE(494)] = 1050, + [SMALL_STATE(495)] = 1119, + [SMALL_STATE(496)] = 1188, + [SMALL_STATE(497)] = 1257, + [SMALL_STATE(498)] = 1326, + [SMALL_STATE(499)] = 1395, + [SMALL_STATE(500)] = 1457, + [SMALL_STATE(501)] = 1525, + [SMALL_STATE(502)] = 1587, + [SMALL_STATE(503)] = 1655, + [SMALL_STATE(504)] = 1715, + [SMALL_STATE(505)] = 1777, + [SMALL_STATE(506)] = 1839, + [SMALL_STATE(507)] = 1901, + [SMALL_STATE(508)] = 1963, + [SMALL_STATE(509)] = 2025, + [SMALL_STATE(510)] = 2087, + [SMALL_STATE(511)] = 2149, + [SMALL_STATE(512)] = 2211, + [SMALL_STATE(513)] = 2273, + [SMALL_STATE(514)] = 2335, + [SMALL_STATE(515)] = 2397, + [SMALL_STATE(516)] = 2459, + [SMALL_STATE(517)] = 2521, + [SMALL_STATE(518)] = 2589, + [SMALL_STATE(519)] = 2657, + [SMALL_STATE(520)] = 2719, + [SMALL_STATE(521)] = 2787, + [SMALL_STATE(522)] = 2849, + [SMALL_STATE(523)] = 2911, + [SMALL_STATE(524)] = 2968, + [SMALL_STATE(525)] = 3037, + [SMALL_STATE(526)] = 3094, + [SMALL_STATE(527)] = 3151, + [SMALL_STATE(528)] = 3220, + [SMALL_STATE(529)] = 3277, + [SMALL_STATE(530)] = 3334, + [SMALL_STATE(531)] = 3391, + [SMALL_STATE(532)] = 3448, + [SMALL_STATE(533)] = 3505, + [SMALL_STATE(534)] = 3562, + [SMALL_STATE(535)] = 3631, + [SMALL_STATE(536)] = 3697, + [SMALL_STATE(537)] = 3761, + [SMALL_STATE(538)] = 3825, + [SMALL_STATE(539)] = 3881, + [SMALL_STATE(540)] = 3937, + [SMALL_STATE(541)] = 4003, + [SMALL_STATE(542)] = 4061, + [SMALL_STATE(543)] = 4123, + [SMALL_STATE(544)] = 4189, + [SMALL_STATE(545)] = 4245, + [SMALL_STATE(546)] = 4311, + [SMALL_STATE(547)] = 4373, + [SMALL_STATE(548)] = 4439, + [SMALL_STATE(549)] = 4503, + [SMALL_STATE(550)] = 4565, + [SMALL_STATE(551)] = 4621, + [SMALL_STATE(552)] = 4677, + [SMALL_STATE(553)] = 4733, + [SMALL_STATE(554)] = 4789, + [SMALL_STATE(555)] = 4853, + [SMALL_STATE(556)] = 4917, + [SMALL_STATE(557)] = 4981, + [SMALL_STATE(558)] = 5034, + [SMALL_STATE(559)] = 5097, + [SMALL_STATE(560)] = 5154, + [SMALL_STATE(561)] = 5209, + [SMALL_STATE(562)] = 5264, + [SMALL_STATE(563)] = 5319, + [SMALL_STATE(564)] = 5378, + [SMALL_STATE(565)] = 5437, + [SMALL_STATE(566)] = 5492, + [SMALL_STATE(567)] = 5551, + [SMALL_STATE(568)] = 5614, + [SMALL_STATE(569)] = 5673, + [SMALL_STATE(570)] = 5728, + [SMALL_STATE(571)] = 5777, + [SMALL_STATE(572)] = 5827, + [SMALL_STATE(573)] = 5879, + [SMALL_STATE(574)] = 5939, + [SMALL_STATE(575)] = 5989, + [SMALL_STATE(576)] = 6035, + [SMALL_STATE(577)] = 6085, + [SMALL_STATE(578)] = 6143, + [SMALL_STATE(579)] = 6189, + [SMALL_STATE(580)] = 6239, + [SMALL_STATE(581)] = 6291, + [SMALL_STATE(582)] = 6337, + [SMALL_STATE(583)] = 6383, + [SMALL_STATE(584)] = 6443, + [SMALL_STATE(585)] = 6497, + [SMALL_STATE(586)] = 6547, + [SMALL_STATE(587)] = 6601, + [SMALL_STATE(588)] = 6651, + [SMALL_STATE(589)] = 6701, + [SMALL_STATE(590)] = 6747, + [SMALL_STATE(591)] = 6805, + [SMALL_STATE(592)] = 6859, + [SMALL_STATE(593)] = 6917, + [SMALL_STATE(594)] = 6971, + [SMALL_STATE(595)] = 7031, + [SMALL_STATE(596)] = 7083, + [SMALL_STATE(597)] = 7133, + [SMALL_STATE(598)] = 7187, + [SMALL_STATE(599)] = 7237, + [SMALL_STATE(600)] = 7294, + [SMALL_STATE(601)] = 7339, + [SMALL_STATE(602)] = 7390, + [SMALL_STATE(603)] = 7447, + [SMALL_STATE(604)] = 7504, + [SMALL_STATE(605)] = 7549, + [SMALL_STATE(606)] = 7594, + [SMALL_STATE(607)] = 7639, + [SMALL_STATE(608)] = 7696, + [SMALL_STATE(609)] = 7745, + [SMALL_STATE(610)] = 7794, + [SMALL_STATE(611)] = 7851, + [SMALL_STATE(612)] = 7900, + [SMALL_STATE(613)] = 7945, + [SMALL_STATE(614)] = 8002, + [SMALL_STATE(615)] = 8047, + [SMALL_STATE(616)] = 8104, + [SMALL_STATE(617)] = 8153, + [SMALL_STATE(618)] = 8210, + [SMALL_STATE(619)] = 8260, + [SMALL_STATE(620)] = 8304, + [SMALL_STATE(621)] = 8346, + [SMALL_STATE(622)] = 8390, + [SMALL_STATE(623)] = 8440, + [SMALL_STATE(624)] = 8482, + [SMALL_STATE(625)] = 8530, + [SMALL_STATE(626)] = 8574, + [SMALL_STATE(627)] = 8616, + [SMALL_STATE(628)] = 8658, + [SMALL_STATE(629)] = 8700, + [SMALL_STATE(630)] = 8750, + [SMALL_STATE(631)] = 8794, + [SMALL_STATE(632)] = 8842, + [SMALL_STATE(633)] = 8886, + [SMALL_STATE(634)] = 8936, + [SMALL_STATE(635)] = 8978, + [SMALL_STATE(636)] = 9020, + [SMALL_STATE(637)] = 9064, + [SMALL_STATE(638)] = 9114, + [SMALL_STATE(639)] = 9164, + [SMALL_STATE(640)] = 9206, + [SMALL_STATE(641)] = 9247, + [SMALL_STATE(642)] = 9290, + [SMALL_STATE(643)] = 9331, + [SMALL_STATE(644)] = 9374, + [SMALL_STATE(645)] = 9415, + [SMALL_STATE(646)] = 9456, + [SMALL_STATE(647)] = 9497, + [SMALL_STATE(648)] = 9540, + [SMALL_STATE(649)] = 9583, + [SMALL_STATE(650)] = 9626, + [SMALL_STATE(651)] = 9669, + [SMALL_STATE(652)] = 9710, + [SMALL_STATE(653)] = 9753, + [SMALL_STATE(654)] = 9796, + [SMALL_STATE(655)] = 9837, + [SMALL_STATE(656)] = 9881, + [SMALL_STATE(657)] = 9921, + [SMALL_STATE(658)] = 9967, + [SMALL_STATE(659)] = 10013, + [SMALL_STATE(660)] = 10059, + [SMALL_STATE(661)] = 10099, + [SMALL_STATE(662)] = 10145, + [SMALL_STATE(663)] = 10189, + [SMALL_STATE(664)] = 10235, + [SMALL_STATE(665)] = 10281, + [SMALL_STATE(666)] = 10327, + [SMALL_STATE(667)] = 10368, + [SMALL_STATE(668)] = 10409, + [SMALL_STATE(669)] = 10448, + [SMALL_STATE(670)] = 10489, + [SMALL_STATE(671)] = 10530, + [SMALL_STATE(672)] = 10568, + [SMALL_STATE(673)] = 10606, + [SMALL_STATE(674)] = 10658, + [SMALL_STATE(675)] = 10710, + [SMALL_STATE(676)] = 10762, + [SMALL_STATE(677)] = 10814, + [SMALL_STATE(678)] = 10866, + [SMALL_STATE(679)] = 10903, + [SMALL_STATE(680)] = 10931, + [SMALL_STATE(681)] = 10959, + [SMALL_STATE(682)] = 10987, + [SMALL_STATE(683)] = 11015, + [SMALL_STATE(684)] = 11043, + [SMALL_STATE(685)] = 11071, + [SMALL_STATE(686)] = 11098, + [SMALL_STATE(687)] = 11125, + [SMALL_STATE(688)] = 11152, + [SMALL_STATE(689)] = 11179, + [SMALL_STATE(690)] = 11210, + [SMALL_STATE(691)] = 11232, + [SMALL_STATE(692)] = 11254, + [SMALL_STATE(693)] = 11282, + [SMALL_STATE(694)] = 11310, + [SMALL_STATE(695)] = 11332, + [SMALL_STATE(696)] = 11354, + [SMALL_STATE(697)] = 11376, + [SMALL_STATE(698)] = 11404, + [SMALL_STATE(699)] = 11426, + [SMALL_STATE(700)] = 11448, + [SMALL_STATE(701)] = 11476, + [SMALL_STATE(702)] = 11498, + [SMALL_STATE(703)] = 11526, + [SMALL_STATE(704)] = 11548, + [SMALL_STATE(705)] = 11563, + [SMALL_STATE(706)] = 11580, + [SMALL_STATE(707)] = 11597, + [SMALL_STATE(708)] = 11613, + [SMALL_STATE(709)] = 11631, + [SMALL_STATE(710)] = 11649, + [SMALL_STATE(711)] = 11667, + [SMALL_STATE(712)] = 11677, + [SMALL_STATE(713)] = 11695, + [SMALL_STATE(714)] = 11713, + [SMALL_STATE(715)] = 11731, + [SMALL_STATE(716)] = 11749, + [SMALL_STATE(717)] = 11767, + [SMALL_STATE(718)] = 11785, + [SMALL_STATE(719)] = 11803, + [SMALL_STATE(720)] = 11821, + [SMALL_STATE(721)] = 11843, + [SMALL_STATE(722)] = 11865, + [SMALL_STATE(723)] = 11883, + [SMALL_STATE(724)] = 11901, + [SMALL_STATE(725)] = 11919, + [SMALL_STATE(726)] = 11937, + [SMALL_STATE(727)] = 11955, + [SMALL_STATE(728)] = 11973, + [SMALL_STATE(729)] = 11991, + [SMALL_STATE(730)] = 12009, + [SMALL_STATE(731)] = 12031, + [SMALL_STATE(732)] = 12049, + [SMALL_STATE(733)] = 12071, + [SMALL_STATE(734)] = 12093, + [SMALL_STATE(735)] = 12111, + [SMALL_STATE(736)] = 12126, + [SMALL_STATE(737)] = 12141, + [SMALL_STATE(738)] = 12156, + [SMALL_STATE(739)] = 12175, + [SMALL_STATE(740)] = 12190, + [SMALL_STATE(741)] = 12209, + [SMALL_STATE(742)] = 12224, + [SMALL_STATE(743)] = 12239, + [SMALL_STATE(744)] = 12248, + [SMALL_STATE(745)] = 12257, + [SMALL_STATE(746)] = 12276, + [SMALL_STATE(747)] = 12295, + [SMALL_STATE(748)] = 12310, + [SMALL_STATE(749)] = 12325, + [SMALL_STATE(750)] = 12340, + [SMALL_STATE(751)] = 12359, + [SMALL_STATE(752)] = 12374, + [SMALL_STATE(753)] = 12389, + [SMALL_STATE(754)] = 12408, + [SMALL_STATE(755)] = 12423, + [SMALL_STATE(756)] = 12432, + [SMALL_STATE(757)] = 12447, + [SMALL_STATE(758)] = 12466, + [SMALL_STATE(759)] = 12481, + [SMALL_STATE(760)] = 12496, + [SMALL_STATE(761)] = 12511, + [SMALL_STATE(762)] = 12530, + [SMALL_STATE(763)] = 12539, + [SMALL_STATE(764)] = 12553, + [SMALL_STATE(765)] = 12567, + [SMALL_STATE(766)] = 12581, + [SMALL_STATE(767)] = 12597, + [SMALL_STATE(768)] = 12613, + [SMALL_STATE(769)] = 12621, + [SMALL_STATE(770)] = 12637, + [SMALL_STATE(771)] = 12647, + [SMALL_STATE(772)] = 12659, + [SMALL_STATE(773)] = 12673, + [SMALL_STATE(774)] = 12689, + [SMALL_STATE(775)] = 12697, + [SMALL_STATE(776)] = 12705, + [SMALL_STATE(777)] = 12721, + [SMALL_STATE(778)] = 12735, + [SMALL_STATE(779)] = 12745, + [SMALL_STATE(780)] = 12761, + [SMALL_STATE(781)] = 12770, + [SMALL_STATE(782)] = 12779, + [SMALL_STATE(783)] = 12788, + [SMALL_STATE(784)] = 12801, + [SMALL_STATE(785)] = 12810, + [SMALL_STATE(786)] = 12819, + [SMALL_STATE(787)] = 12828, + [SMALL_STATE(788)] = 12837, + [SMALL_STATE(789)] = 12846, + [SMALL_STATE(790)] = 12859, + [SMALL_STATE(791)] = 12872, + [SMALL_STATE(792)] = 12881, + [SMALL_STATE(793)] = 12890, + [SMALL_STATE(794)] = 12903, + [SMALL_STATE(795)] = 12912, + [SMALL_STATE(796)] = 12921, + [SMALL_STATE(797)] = 12934, + [SMALL_STATE(798)] = 12943, + [SMALL_STATE(799)] = 12952, + [SMALL_STATE(800)] = 12965, + [SMALL_STATE(801)] = 12978, + [SMALL_STATE(802)] = 12987, + [SMALL_STATE(803)] = 13000, + [SMALL_STATE(804)] = 13009, + [SMALL_STATE(805)] = 13016, + [SMALL_STATE(806)] = 13029, + [SMALL_STATE(807)] = 13042, + [SMALL_STATE(808)] = 13051, + [SMALL_STATE(809)] = 13060, + [SMALL_STATE(810)] = 13069, + [SMALL_STATE(811)] = 13078, + [SMALL_STATE(812)] = 13087, + [SMALL_STATE(813)] = 13100, + [SMALL_STATE(814)] = 13113, + [SMALL_STATE(815)] = 13122, + [SMALL_STATE(816)] = 13132, + [SMALL_STATE(817)] = 13142, + [SMALL_STATE(818)] = 13152, + [SMALL_STATE(819)] = 13162, + [SMALL_STATE(820)] = 13172, + [SMALL_STATE(821)] = 13182, + [SMALL_STATE(822)] = 13192, + [SMALL_STATE(823)] = 13202, + [SMALL_STATE(824)] = 13212, + [SMALL_STATE(825)] = 13222, + [SMALL_STATE(826)] = 13232, + [SMALL_STATE(827)] = 13238, + [SMALL_STATE(828)] = 13248, + [SMALL_STATE(829)] = 13256, + [SMALL_STATE(830)] = 13266, + [SMALL_STATE(831)] = 13276, + [SMALL_STATE(832)] = 13286, + [SMALL_STATE(833)] = 13296, + [SMALL_STATE(834)] = 13306, + [SMALL_STATE(835)] = 13316, + [SMALL_STATE(836)] = 13326, + [SMALL_STATE(837)] = 13336, + [SMALL_STATE(838)] = 13346, + [SMALL_STATE(839)] = 13356, + [SMALL_STATE(840)] = 13366, + [SMALL_STATE(841)] = 13372, + [SMALL_STATE(842)] = 13382, + [SMALL_STATE(843)] = 13392, + [SMALL_STATE(844)] = 13402, + [SMALL_STATE(845)] = 13412, + [SMALL_STATE(846)] = 13422, + [SMALL_STATE(847)] = 13428, + [SMALL_STATE(848)] = 13438, + [SMALL_STATE(849)] = 13448, + [SMALL_STATE(850)] = 13458, + [SMALL_STATE(851)] = 13468, + [SMALL_STATE(852)] = 13478, + [SMALL_STATE(853)] = 13488, + [SMALL_STATE(854)] = 13498, + [SMALL_STATE(855)] = 13508, + [SMALL_STATE(856)] = 13518, + [SMALL_STATE(857)] = 13528, + [SMALL_STATE(858)] = 13538, + [SMALL_STATE(859)] = 13548, + [SMALL_STATE(860)] = 13558, + [SMALL_STATE(861)] = 13564, + [SMALL_STATE(862)] = 13571, + [SMALL_STATE(863)] = 13578, + [SMALL_STATE(864)] = 13585, + [SMALL_STATE(865)] = 13592, + [SMALL_STATE(866)] = 13599, + [SMALL_STATE(867)] = 13606, + [SMALL_STATE(868)] = 13613, + [SMALL_STATE(869)] = 13620, + [SMALL_STATE(870)] = 13627, + [SMALL_STATE(871)] = 13634, + [SMALL_STATE(872)] = 13641, + [SMALL_STATE(873)] = 13648, + [SMALL_STATE(874)] = 13655, + [SMALL_STATE(875)] = 13662, + [SMALL_STATE(876)] = 13669, + [SMALL_STATE(877)] = 13676, + [SMALL_STATE(878)] = 13683, + [SMALL_STATE(879)] = 13690, + [SMALL_STATE(880)] = 13697, + [SMALL_STATE(881)] = 13704, + [SMALL_STATE(882)] = 13711, + [SMALL_STATE(883)] = 13718, + [SMALL_STATE(884)] = 13725, + [SMALL_STATE(885)] = 13732, + [SMALL_STATE(886)] = 13739, + [SMALL_STATE(887)] = 13746, + [SMALL_STATE(888)] = 13753, + [SMALL_STATE(889)] = 13760, + [SMALL_STATE(890)] = 13767, + [SMALL_STATE(891)] = 13774, + [SMALL_STATE(892)] = 13781, + [SMALL_STATE(893)] = 13788, + [SMALL_STATE(894)] = 13795, + [SMALL_STATE(895)] = 13800, + [SMALL_STATE(896)] = 13807, + [SMALL_STATE(897)] = 13814, + [SMALL_STATE(898)] = 13821, + [SMALL_STATE(899)] = 13828, + [SMALL_STATE(900)] = 13835, + [SMALL_STATE(901)] = 13842, + [SMALL_STATE(902)] = 13849, + [SMALL_STATE(903)] = 13856, + [SMALL_STATE(904)] = 13863, + [SMALL_STATE(905)] = 13870, + [SMALL_STATE(906)] = 13877, + [SMALL_STATE(907)] = 13884, + [SMALL_STATE(908)] = 13891, + [SMALL_STATE(909)] = 13898, + [SMALL_STATE(910)] = 13905, + [SMALL_STATE(911)] = 13910, + [SMALL_STATE(912)] = 13917, + [SMALL_STATE(913)] = 13924, + [SMALL_STATE(914)] = 13931, + [SMALL_STATE(915)] = 13938, + [SMALL_STATE(916)] = 13945, + [SMALL_STATE(917)] = 13952, + [SMALL_STATE(918)] = 13959, + [SMALL_STATE(919)] = 13966, + [SMALL_STATE(920)] = 13973, + [SMALL_STATE(921)] = 13980, + [SMALL_STATE(922)] = 13987, + [SMALL_STATE(923)] = 13994, + [SMALL_STATE(924)] = 14001, + [SMALL_STATE(925)] = 14008, + [SMALL_STATE(926)] = 14013, + [SMALL_STATE(927)] = 14020, + [SMALL_STATE(928)] = 14027, + [SMALL_STATE(929)] = 14034, + [SMALL_STATE(930)] = 14041, + [SMALL_STATE(931)] = 14048, + [SMALL_STATE(932)] = 14055, + [SMALL_STATE(933)] = 14062, + [SMALL_STATE(934)] = 14069, + [SMALL_STATE(935)] = 14076, + [SMALL_STATE(936)] = 14083, + [SMALL_STATE(937)] = 14090, + [SMALL_STATE(938)] = 14097, + [SMALL_STATE(939)] = 14104, + [SMALL_STATE(940)] = 14111, + [SMALL_STATE(941)] = 14118, + [SMALL_STATE(942)] = 14123, + [SMALL_STATE(943)] = 14130, + [SMALL_STATE(944)] = 14137, + [SMALL_STATE(945)] = 14144, + [SMALL_STATE(946)] = 14151, + [SMALL_STATE(947)] = 14158, + [SMALL_STATE(948)] = 14165, + [SMALL_STATE(949)] = 14172, + [SMALL_STATE(950)] = 14179, + [SMALL_STATE(951)] = 14184, + [SMALL_STATE(952)] = 14191, + [SMALL_STATE(953)] = 14198, + [SMALL_STATE(954)] = 14205, + [SMALL_STATE(955)] = 14212, + [SMALL_STATE(956)] = 14219, + [SMALL_STATE(957)] = 14226, + [SMALL_STATE(958)] = 14233, + [SMALL_STATE(959)] = 14240, + [SMALL_STATE(960)] = 14247, + [SMALL_STATE(961)] = 14254, + [SMALL_STATE(962)] = 14261, + [SMALL_STATE(963)] = 14268, + [SMALL_STATE(964)] = 14275, + [SMALL_STATE(965)] = 14282, + [SMALL_STATE(966)] = 14289, + [SMALL_STATE(967)] = 14296, + [SMALL_STATE(968)] = 14303, + [SMALL_STATE(969)] = 14310, + [SMALL_STATE(970)] = 14317, + [SMALL_STATE(971)] = 14324, + [SMALL_STATE(972)] = 14331, + [SMALL_STATE(973)] = 14336, + [SMALL_STATE(974)] = 14340, + [SMALL_STATE(975)] = 14344, + [SMALL_STATE(976)] = 14348, + [SMALL_STATE(977)] = 14352, + [SMALL_STATE(978)] = 14356, + [SMALL_STATE(979)] = 14360, + [SMALL_STATE(980)] = 14364, + [SMALL_STATE(981)] = 14368, + [SMALL_STATE(982)] = 14372, + [SMALL_STATE(983)] = 14376, + [SMALL_STATE(984)] = 14380, + [SMALL_STATE(985)] = 14384, + [SMALL_STATE(986)] = 14388, + [SMALL_STATE(987)] = 14392, + [SMALL_STATE(988)] = 14396, + [SMALL_STATE(989)] = 14400, + [SMALL_STATE(990)] = 14404, + [SMALL_STATE(991)] = 14408, + [SMALL_STATE(992)] = 14412, + [SMALL_STATE(993)] = 14416, + [SMALL_STATE(994)] = 14420, + [SMALL_STATE(995)] = 14424, + [SMALL_STATE(996)] = 14428, + [SMALL_STATE(997)] = 14432, + [SMALL_STATE(998)] = 14436, + [SMALL_STATE(999)] = 14440, + [SMALL_STATE(1000)] = 14444, + [SMALL_STATE(1001)] = 14448, + [SMALL_STATE(1002)] = 14452, + [SMALL_STATE(1003)] = 14456, + [SMALL_STATE(1004)] = 14460, + [SMALL_STATE(1005)] = 14464, + [SMALL_STATE(1006)] = 14468, + [SMALL_STATE(1007)] = 14472, + [SMALL_STATE(1008)] = 14476, + [SMALL_STATE(1009)] = 14480, + [SMALL_STATE(1010)] = 14484, + [SMALL_STATE(1011)] = 14488, + [SMALL_STATE(1012)] = 14492, + [SMALL_STATE(1013)] = 14496, + [SMALL_STATE(1014)] = 14500, + [SMALL_STATE(1015)] = 14504, + [SMALL_STATE(1016)] = 14508, + [SMALL_STATE(1017)] = 14512, + [SMALL_STATE(1018)] = 14516, + [SMALL_STATE(1019)] = 14520, + [SMALL_STATE(1020)] = 14524, + [SMALL_STATE(1021)] = 14528, + [SMALL_STATE(1022)] = 14532, + [SMALL_STATE(1023)] = 14536, + [SMALL_STATE(1024)] = 14540, + [SMALL_STATE(1025)] = 14544, + [SMALL_STATE(1026)] = 14548, + [SMALL_STATE(1027)] = 14552, + [SMALL_STATE(1028)] = 14556, + [SMALL_STATE(1029)] = 14560, + [SMALL_STATE(1030)] = 14564, + [SMALL_STATE(1031)] = 14568, + [SMALL_STATE(1032)] = 14572, + [SMALL_STATE(1033)] = 14576, + [SMALL_STATE(1034)] = 14580, + [SMALL_STATE(1035)] = 14584, + [SMALL_STATE(1036)] = 14588, + [SMALL_STATE(1037)] = 14592, + [SMALL_STATE(1038)] = 14596, + [SMALL_STATE(1039)] = 14600, + [SMALL_STATE(1040)] = 14604, + [SMALL_STATE(1041)] = 14608, + [SMALL_STATE(1042)] = 14612, + [SMALL_STATE(1043)] = 14616, + [SMALL_STATE(1044)] = 14620, + [SMALL_STATE(1045)] = 14624, + [SMALL_STATE(1046)] = 14628, + [SMALL_STATE(1047)] = 14632, + [SMALL_STATE(1048)] = 14636, + [SMALL_STATE(1049)] = 14640, + [SMALL_STATE(1050)] = 14644, + [SMALL_STATE(1051)] = 14648, + [SMALL_STATE(1052)] = 14652, + [SMALL_STATE(1053)] = 14656, + [SMALL_STATE(1054)] = 14660, + [SMALL_STATE(1055)] = 14664, + [SMALL_STATE(1056)] = 14668, + [SMALL_STATE(1057)] = 14672, + [SMALL_STATE(1058)] = 14676, + [SMALL_STATE(1059)] = 14680, + [SMALL_STATE(1060)] = 14684, + [SMALL_STATE(1061)] = 14688, + [SMALL_STATE(1062)] = 14692, + [SMALL_STATE(1063)] = 14696, + [SMALL_STATE(1064)] = 14700, + [SMALL_STATE(1065)] = 14704, + [SMALL_STATE(1066)] = 14708, + [SMALL_STATE(1067)] = 14712, + [SMALL_STATE(1068)] = 14716, + [SMALL_STATE(1069)] = 14720, + [SMALL_STATE(1070)] = 14724, + [SMALL_STATE(1071)] = 14728, + [SMALL_STATE(1072)] = 14732, + [SMALL_STATE(1073)] = 14736, + [SMALL_STATE(1074)] = 14740, + [SMALL_STATE(1075)] = 14744, + [SMALL_STATE(1076)] = 14748, + [SMALL_STATE(1077)] = 14752, + [SMALL_STATE(1078)] = 14756, + [SMALL_STATE(1079)] = 14760, + [SMALL_STATE(1080)] = 14764, + [SMALL_STATE(1081)] = 14768, + [SMALL_STATE(1082)] = 14772, + [SMALL_STATE(1083)] = 14776, + [SMALL_STATE(1084)] = 14780, + [SMALL_STATE(1085)] = 14784, + [SMALL_STATE(1086)] = 14788, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 0, 0, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 2), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 4), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 1), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 1), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(469), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 1), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 1), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 1), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 1), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 1), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 1), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(471), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 1), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 1), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 1), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 1), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(833), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(657), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 4), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(483), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 2), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 1), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 1), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 1), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 1), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 1), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 1), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 1), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 1), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 1), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 1), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(946), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 1), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 1), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(681), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(918), [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1, 0, 0), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(519), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(511), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, 0, 3), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 4, 0, 11), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 4, 0, 11), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 4, 0, 11), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 13), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 9, 0, 0), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 5, 0, 0), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 4, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(571), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(621), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(631), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(595), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(556), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(594), - [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(578), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(599), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(596), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(543), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(609), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(557), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(621), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(557), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(594), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(559), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(595), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [2057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(623), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_caption_line, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(611), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(611), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(633), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(460), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(473), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(457), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(458), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(459), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(456), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(900), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(688), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(731), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(795), - [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(795), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(746), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2628] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(472), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1, 0, 0), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(551), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(552), + [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, 0, 3), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 4, 0, 11), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 4, 0, 11), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 4, 0, 11), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 13), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 4, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 5, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 9, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), + [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [1892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(621), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(557), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(587), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(611), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_caption_line, 1, 0, 0), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(618), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(618), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(655), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(663), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(497), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(498), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(482), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(481), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(489), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(496), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [2305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(928), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(707), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(817), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(817), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(748), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2704] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 10), [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 10), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -54389,28 +57672,30 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__list_marker_star_dont_interrupt = 22, ts_external_token__list_marker_parenthesis_dont_interrupt = 23, ts_external_token__list_marker_dot_dont_interrupt = 24, - ts_external_token__fenced_code_block_start_backtick = 25, - ts_external_token__fenced_code_block_start_tilde = 26, - ts_external_token__blank_line_start = 27, - ts_external_token__fenced_code_block_end_backtick = 28, - ts_external_token__fenced_code_block_end_tilde = 29, - ts_external_token__close_block = 30, - ts_external_token__no_indented_chunk = 31, - ts_external_token__error = 32, - ts_external_token__trigger_error = 33, - ts_external_token__eof = 34, - ts_external_token_minus_metadata = 35, - ts_external_token_plus_metadata = 36, - ts_external_token__pipe_table_start = 37, - ts_external_token__pipe_table_line_ending = 38, - ts_external_token__fenced_div_start = 39, - ts_external_token__fenced_div_end = 40, - ts_external_token_ref_id_specifier = 41, - ts_external_token_fenced_div_note_id = 42, - ts_external_token__display_math_state_track_marker = 43, - ts_external_token__inline_math_state_track_marker = 44, - ts_external_token__code_span_start = 45, - ts_external_token__code_span_close = 46, + ts_external_token__list_marker_example = 25, + ts_external_token__list_marker_example_dont_interrupt = 26, + ts_external_token__fenced_code_block_start_backtick = 27, + ts_external_token__fenced_code_block_start_tilde = 28, + ts_external_token__blank_line_start = 29, + ts_external_token__fenced_code_block_end_backtick = 30, + ts_external_token__fenced_code_block_end_tilde = 31, + ts_external_token__close_block = 32, + ts_external_token__no_indented_chunk = 33, + ts_external_token__error = 34, + ts_external_token__trigger_error = 35, + ts_external_token__eof = 36, + ts_external_token_minus_metadata = 37, + ts_external_token_plus_metadata = 38, + ts_external_token__pipe_table_start = 39, + ts_external_token__pipe_table_line_ending = 40, + ts_external_token__fenced_div_start = 41, + ts_external_token__fenced_div_end = 42, + ts_external_token_ref_id_specifier = 43, + ts_external_token_fenced_div_note_id = 44, + ts_external_token__display_math_state_track_marker = 45, + ts_external_token__inline_math_state_track_marker = 46, + ts_external_token__code_span_start = 47, + ts_external_token__code_span_close = 48, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -54439,6 +57724,8 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = sym__list_marker_star_dont_interrupt, [ts_external_token__list_marker_parenthesis_dont_interrupt] = sym__list_marker_parenthesis_dont_interrupt, [ts_external_token__list_marker_dot_dont_interrupt] = sym__list_marker_dot_dont_interrupt, + [ts_external_token__list_marker_example] = sym__list_marker_example, + [ts_external_token__list_marker_example_dont_interrupt] = sym__list_marker_example_dont_interrupt, [ts_external_token__fenced_code_block_start_backtick] = sym__fenced_code_block_start_backtick, [ts_external_token__fenced_code_block_start_tilde] = sym__fenced_code_block_start_tilde, [ts_external_token__blank_line_start] = sym__blank_line_start, @@ -54490,6 +57777,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54534,6 +57823,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54566,6 +57857,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54599,6 +57892,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54632,6 +57927,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54664,6 +57961,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54699,6 +57998,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54734,6 +58035,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54769,6 +58072,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54804,6 +58109,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54837,6 +58144,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54872,6 +58181,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54905,6 +58216,8 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -54949,20 +58262,20 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { }, [19] = { [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, + [ts_external_token__code_span_start] = true, }, [20] = { [ts_external_token__line_ending] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token__eof] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, - [ts_external_token__code_span_start] = true, }, [21] = { [ts_external_token__line_ending] = true, - [ts_external_token__soft_line_ending] = true, - [ts_external_token__eof] = true, + [ts_external_token__block_close] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, @@ -55021,12 +58334,12 @@ static const bool ts_external_scanner_states[44][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_math_state_track_marker] = true, }, [30] = { - [ts_external_token__code_span_close] = true, - }, - [31] = { [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, }, + [31] = { + [ts_external_token__code_span_close] = true, + }, [32] = { [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c index 6d4be12..43c8f83 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c @@ -32,6 +32,8 @@ typedef enum { LIST_MARKER_STAR_DONT_INTERRUPT, LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, LIST_MARKER_DOT_DONT_INTERRUPT, + LIST_MARKER_EXAMPLE, + LIST_MARKER_EXAMPLE_DONT_INTERRUPT, FENCED_CODE_BLOCK_START_BACKTICK, FENCED_CODE_BLOCK_START_TILDE, BLANK_LINE_START, @@ -130,6 +132,8 @@ static const bool display_math_paragraph_interrupt_symbols[] = { false, // LIST_MARKER_STAR_DONT_INTERRUPT, false, // LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, false, // LIST_MARKER_DOT_DONT_INTERRUPT, + false, // LIST_MARKER_EXAMPLE, + false, // LIST_MARKER_EXAMPLE_DONT_INTERRUPT, true, // FENCED_CODE_BLOCK_START_BACKTICK, true, // FENCED_CODE_BLOCK_START_TILDE, true, // BLANK_LINE_START, @@ -176,6 +180,8 @@ static const bool paragraph_interrupt_symbols[] = { false, // LIST_MARKER_STAR_DONT_INTERRUPT, false, // LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, false, // LIST_MARKER_DOT_DONT_INTERRUPT, + true, // LIST_MARKER_EXAMPLE, + false, // LIST_MARKER_EXAMPLE_DONT_INTERRUPT, true, // FENCED_CODE_BLOCK_START_BACKTICK, true, // FENCED_CODE_BLOCK_START_TILDE, true, // BLANK_LINE_START, @@ -928,6 +934,64 @@ static bool parse_ordered_list_marker(Scanner *s, TSLexer *lexer, return false; } +static bool parse_example_list_marker(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (s->indentation <= 3 && + (valid_symbols[LIST_MARKER_EXAMPLE] || + valid_symbols[LIST_MARKER_EXAMPLE_DONT_INTERRUPT])) { + // Must be (@) + if (lexer->lookahead != '(') { + return false; + } + advance(s, lexer); + if (lexer->lookahead != '@') { + return false; + } + advance(s, lexer); + if (lexer->lookahead != ')') { + return false; + } + advance(s, lexer); + + uint8_t extra_indentation = 0; + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + extra_indentation += advance(s, lexer); + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r'; + bool dont_interrupt = false; + if (line_end) { + extra_indentation = 1; + dont_interrupt = true; + } + dont_interrupt = dont_interrupt && s->matched == s->open_blocks.size; + if (extra_indentation >= 1 && + (dont_interrupt ? valid_symbols[LIST_MARKER_EXAMPLE_DONT_INTERRUPT] + : valid_symbols[LIST_MARKER_EXAMPLE])) { + lexer->result_symbol = dont_interrupt + ? LIST_MARKER_EXAMPLE_DONT_INTERRUPT + : LIST_MARKER_EXAMPLE; + extra_indentation--; + if (extra_indentation <= 3) { + extra_indentation += s->indentation; + s->indentation = 0; + } else { + uint8_t temp = s->indentation; + s->indentation = extra_indentation; + extra_indentation = temp; + } + if (!s->simulate) { + if (!can_push_block(s)) { + return error(lexer); + } + // Use 3 as the indentation offset (length of "(@)") + push_block(s, (Block)(LIST_ITEM + extra_indentation + 3)); + } + return true; + } + } + return false; +} + static bool parse_minus(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { if (s->indentation <= 3 && (valid_symbols[LIST_MARKER_MINUS] || @@ -1461,6 +1525,9 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_fenced_div_note_id(s, lexer, valid_symbols); } break; + case '(': + // A '(' could be an example list marker (@) + return parse_example_list_marker(s, lexer, valid_symbols); } if (lexer->lookahead != '\r' && lexer->lookahead != '\n' && valid_symbols[PIPE_TABLE_START]) { diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt index f410d4b..15109cc 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt @@ -260,4 +260,68 @@ Another paragraph in the note. (block_continuation) (paragraph (inline) - (block_continuation))))) \ No newline at end of file + (block_continuation))))) +================================================================================ +Example list with (@) syntax +================================================================================ +(@) First item + +(@) Second item + +(@) Third item +-------------------------------------------------------------------------------- +(document + (section + (list + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline)))))) +================================================================================ +Multiple example lists separated by text +================================================================================ +(@) First item + +(@) Second item + +Some text in between. + +(@) Third item + +(@) Fourth item +-------------------------------------------------------------------------------- +(document + (section + (list + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation)))) + (paragraph + (inline)) + (list + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline))))))