diff --git a/crates/quarto-markdown-pandoc/snapshots/native/030.snap b/crates/quarto-markdown-pandoc/snapshots/native/030.snap new file mode 100644 index 00000000..03a168cf --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/native/030.snap @@ -0,0 +1,5 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test.rs +expression: output +--- +[ Para [Span ( "" , ["quarto-shortcode__"] , [("data-is-shortcode", "1")] ) [Span ( "" , ["quarto-shortcode__-param"] , [("data-value", "include"), ("data-is-shortcode", "1"), ("data-raw", "include")] ) [], Span ( "" , ["quarto-shortcode__-param"] , [("data-is-shortcode", "1"), ("data-value", "/docs/prerelease/1.5/_pre-release-feature.qmd"), ("data-raw", "/docs/prerelease/1.5/_pre-release-feature.qmd")] ) []]] ] diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/native/030.qmd b/crates/quarto-markdown-pandoc/tests/snapshots/native/030.qmd new file mode 100644 index 00000000..addf0991 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/native/030.qmd @@ -0,0 +1 @@ +{{< include /docs/prerelease/1.5/_pre-release-feature.qmd >}} diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index e529a0db..1443d818 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -397,7 +397,7 @@ module.exports = grammar({ optional($.block_continuation) ), // Some symbols get parsed as single tokens so that html blocks get detected properly - _code_line: $ => prec.right(repeat1(choice($._word, '<', '>', $._display_math_state_track_marker, $._inline_math_state_track_marker, $._whitespace, $._html_comment, common.punctuation_without($, [])))), + _code_line: $ => prec.right(repeat1(choice($._word, '<', '>', '{{<', '}}>', $._display_math_state_track_marker, $._inline_math_state_track_marker, $._whitespace, $._html_comment, common.punctuation_without($, [])))), // the gymnastics around `:` in _line exist to make the parser reject paragraphs that start with a colon. // Those are technically valid in Markdown, but disallowing them here makes it possible to detect an @@ -414,6 +414,7 @@ module.exports = grammar({ $._autolink, $._escaped_characters, $._pipe_table_code_span, + '{{<', '>}}', // shortcodes '[>>', // this needs to be accepted for highlights in editorial comments ), 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 e4b13799..81129126 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -3032,6 +3032,14 @@ "type": "STRING", "value": ">" }, + { + "type": "STRING", + "value": "{{<" + }, + { + "type": "STRING", + "value": "}}>" + }, { "type": "SYMBOL", "name": "_display_math_state_track_marker" @@ -3233,6 +3241,14 @@ "type": "SYMBOL", "name": "_pipe_table_code_span" }, + { + "type": "STRING", + "value": "{{<" + }, + { + "type": "STRING", + "value": ">}}" + }, { "type": "STRING", "value": "[>>" 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 dcc4802c..8081c9db 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 @@ -1034,6 +1034,10 @@ "type": ">", "named": false }, + { + "type": ">}}", + "named": false + }, { "type": "?", "named": false @@ -1166,6 +1170,10 @@ "type": "{", "named": false }, + { + "type": "{{<", + "named": false + }, { "type": "{}", "named": false @@ -1178,6 +1186,10 @@ "type": "}", "named": false }, + { + "type": "}}>", + "named": false + }, { "type": "~", "named": false 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 4bba4cb8..f8641f06 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -9,9 +9,9 @@ #define LANGUAGE_VERSION 15 #define STATE_COUNT 1108 #define LARGE_STATE_COUNT 473 -#define SYMBOL_COUNT 210 +#define SYMBOL_COUNT 213 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 101 +#define TOKEN_COUNT 104 #define EXTERNAL_TOKEN_COUNT 54 #define FIELD_COUNT 1 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -63,176 +63,179 @@ enum ts_symbol_identifiers { aux_sym_info_string_token1 = 41, anon_sym_LT = 42, anon_sym_GT = 43, - anon_sym_LBRACK_GT_GT = 44, - sym__escaped_characters = 45, - sym__word = 46, - sym__line_ending = 47, - sym__soft_line_ending = 48, - sym__block_close = 49, - sym_block_continuation = 50, - sym__block_quote_start = 51, - sym__indented_chunk_start = 52, - sym_atx_h1_marker = 53, - sym_atx_h2_marker = 54, - sym_atx_h3_marker = 55, - sym_atx_h4_marker = 56, - sym_atx_h5_marker = 57, - sym_atx_h6_marker = 58, - sym_setext_h1_underline = 59, - sym_setext_h2_underline = 60, - sym__thematic_break = 61, - sym__list_marker_minus = 62, - sym__list_marker_plus = 63, - sym__list_marker_star = 64, - sym__list_marker_parenthesis = 65, - sym__list_marker_dot = 66, - sym__list_marker_minus_dont_interrupt = 67, - sym__list_marker_plus_dont_interrupt = 68, - sym__list_marker_star_dont_interrupt = 69, - sym__list_marker_parenthesis_dont_interrupt = 70, - sym__list_marker_dot_dont_interrupt = 71, - sym__list_marker_example = 72, - sym__list_marker_example_dont_interrupt = 73, - sym__fenced_code_block_start_backtick = 74, - sym__fenced_code_block_start_tilde = 75, - sym__blank_line_start = 76, - sym__fenced_code_block_end_backtick = 77, - sym__fenced_code_block_end_tilde = 78, - sym__close_block = 79, - sym__no_indented_chunk = 80, - sym__error = 81, - sym__trigger_error = 82, - sym__eof = 83, - sym_minus_metadata = 84, - sym_plus_metadata = 85, - sym__pipe_table_start = 86, - sym__pipe_table_line_ending = 87, - sym__fenced_div_start = 88, - sym__fenced_div_end = 89, - sym_ref_id_specifier = 90, - sym_fenced_div_note_id = 91, - sym__display_math_state_track_marker = 92, - sym__inline_math_state_track_marker = 93, - sym__code_span_start = 94, - sym__code_span_close = 95, - sym__latex_span_start = 96, - sym__latex_span_close = 97, - sym__html_comment = 98, - sym_raw_specifier = 99, - sym__autolink = 100, - sym_document = 101, - sym__last_token_punctuation = 102, - sym__qmd_attribute = 103, - sym_language_attribute = 104, - sym_raw_attribute = 105, - sym_commonmark_attribute = 106, - sym__commonmark_whitespace = 107, - sym__attribute = 108, - sym_key_value_value = 109, - sym__block = 110, - sym__block_not_section = 111, - sym_section = 112, - sym__section1 = 113, - sym__section2 = 114, - sym__section3 = 115, - sym__section4 = 116, - sym__section5 = 117, - sym__section6 = 118, - sym_thematic_break = 119, - sym__atx_heading1 = 120, - sym__atx_heading2 = 121, - sym__atx_heading3 = 122, - sym__atx_heading4 = 123, - sym__atx_heading5 = 124, - sym__atx_heading6 = 125, - sym__atx_heading_content = 126, - sym__setext_heading1 = 127, - sym__setext_heading2 = 128, - sym_indented_code_block = 129, - sym__indented_chunk = 130, - sym_fenced_div_block = 131, - sym_fenced_code_block = 132, - sym_code_fence_content = 133, - sym_info_string = 134, - sym_paragraph = 135, - sym_inline_ref_def = 136, - sym_note_definition_fenced_block = 137, - sym__blank_line = 138, - sym_caption = 139, - sym__caption_line = 140, - sym_block_quote = 141, - sym_list = 142, - sym__list_plus = 143, - sym__list_minus = 144, - sym__list_star = 145, - sym__list_dot = 146, - sym__list_parenthesis = 147, - sym__list_example = 148, - sym_list_marker_plus = 149, - sym_list_marker_minus = 150, - sym_list_marker_star = 151, - sym_list_marker_dot = 152, - sym_list_marker_parenthesis = 153, - sym_list_marker_example = 154, - sym__list_item_plus = 155, - sym__list_item_minus = 156, - sym__list_item_star = 157, - sym__list_item_dot = 158, - sym__list_item_parenthesis = 159, - sym__list_item_example = 160, - sym__list_item_content = 161, - sym__newline = 162, - sym__soft_line_break = 163, - sym__code_line = 164, - sym__regular_block_content = 165, - sym__line = 166, - sym__atx_heading_line = 167, - sym__whitespace = 168, - sym_pipe_table = 169, - sym__pipe_table_newline = 170, - sym_pipe_table_delimiter_row = 171, - sym_pipe_table_delimiter_cell = 172, - sym_pipe_table_row = 173, - sym__pipe_table_code_span = 174, - sym__pipe_table_latex_span = 175, - sym__pipe_table_cell_contents = 176, - sym_pipe_table_cell = 177, - aux_sym_document_repeat1 = 178, - aux_sym_document_repeat2 = 179, - aux_sym_commonmark_attribute_repeat1 = 180, - aux_sym_commonmark_attribute_repeat2 = 181, - aux_sym_commonmark_attribute_repeat3 = 182, - aux_sym_key_value_value_repeat1 = 183, - aux_sym_key_value_value_repeat2 = 184, - aux_sym__section1_repeat1 = 185, - aux_sym__section2_repeat1 = 186, - aux_sym__section3_repeat1 = 187, - aux_sym__section4_repeat1 = 188, - aux_sym__section5_repeat1 = 189, - aux_sym_indented_code_block_repeat1 = 190, - aux_sym__indented_chunk_repeat1 = 191, - aux_sym_fenced_div_block_repeat1 = 192, - aux_sym_code_fence_content_repeat1 = 193, - aux_sym_paragraph_repeat1 = 194, - aux_sym__caption_line_repeat1 = 195, - aux_sym__list_plus_repeat1 = 196, - aux_sym__list_minus_repeat1 = 197, - aux_sym__list_star_repeat1 = 198, - aux_sym__list_dot_repeat1 = 199, - aux_sym__list_parenthesis_repeat1 = 200, - aux_sym__list_example_repeat1 = 201, - aux_sym__code_line_repeat1 = 202, - aux_sym__line_repeat1 = 203, - aux_sym_pipe_table_repeat1 = 204, - aux_sym_pipe_table_delimiter_row_repeat1 = 205, - aux_sym_pipe_table_delimiter_cell_repeat1 = 206, - aux_sym_pipe_table_row_repeat1 = 207, - aux_sym__pipe_table_code_span_repeat1 = 208, - aux_sym__pipe_table_cell_contents_repeat1 = 209, - alias_sym_attribute = 210, - alias_sym_pipe_table_align_left = 211, - alias_sym_pipe_table_align_right = 212, - alias_sym_pipe_table_header = 213, + anon_sym_LBRACE_LBRACE_LT = 44, + anon_sym_RBRACE_RBRACE_GT = 45, + anon_sym_GT_RBRACE_RBRACE = 46, + anon_sym_LBRACK_GT_GT = 47, + sym__escaped_characters = 48, + sym__word = 49, + sym__line_ending = 50, + sym__soft_line_ending = 51, + sym__block_close = 52, + sym_block_continuation = 53, + sym__block_quote_start = 54, + sym__indented_chunk_start = 55, + sym_atx_h1_marker = 56, + sym_atx_h2_marker = 57, + sym_atx_h3_marker = 58, + sym_atx_h4_marker = 59, + sym_atx_h5_marker = 60, + sym_atx_h6_marker = 61, + sym_setext_h1_underline = 62, + sym_setext_h2_underline = 63, + sym__thematic_break = 64, + sym__list_marker_minus = 65, + sym__list_marker_plus = 66, + sym__list_marker_star = 67, + sym__list_marker_parenthesis = 68, + sym__list_marker_dot = 69, + sym__list_marker_minus_dont_interrupt = 70, + sym__list_marker_plus_dont_interrupt = 71, + sym__list_marker_star_dont_interrupt = 72, + sym__list_marker_parenthesis_dont_interrupt = 73, + sym__list_marker_dot_dont_interrupt = 74, + sym__list_marker_example = 75, + sym__list_marker_example_dont_interrupt = 76, + sym__fenced_code_block_start_backtick = 77, + sym__fenced_code_block_start_tilde = 78, + sym__blank_line_start = 79, + sym__fenced_code_block_end_backtick = 80, + sym__fenced_code_block_end_tilde = 81, + sym__close_block = 82, + sym__no_indented_chunk = 83, + sym__error = 84, + sym__trigger_error = 85, + sym__eof = 86, + sym_minus_metadata = 87, + sym_plus_metadata = 88, + sym__pipe_table_start = 89, + sym__pipe_table_line_ending = 90, + sym__fenced_div_start = 91, + sym__fenced_div_end = 92, + sym_ref_id_specifier = 93, + sym_fenced_div_note_id = 94, + sym__display_math_state_track_marker = 95, + sym__inline_math_state_track_marker = 96, + sym__code_span_start = 97, + sym__code_span_close = 98, + sym__latex_span_start = 99, + sym__latex_span_close = 100, + sym__html_comment = 101, + sym_raw_specifier = 102, + sym__autolink = 103, + sym_document = 104, + sym__last_token_punctuation = 105, + sym__qmd_attribute = 106, + sym_language_attribute = 107, + sym_raw_attribute = 108, + sym_commonmark_attribute = 109, + sym__commonmark_whitespace = 110, + sym__attribute = 111, + sym_key_value_value = 112, + sym__block = 113, + sym__block_not_section = 114, + sym_section = 115, + sym__section1 = 116, + sym__section2 = 117, + sym__section3 = 118, + sym__section4 = 119, + sym__section5 = 120, + sym__section6 = 121, + sym_thematic_break = 122, + sym__atx_heading1 = 123, + sym__atx_heading2 = 124, + sym__atx_heading3 = 125, + sym__atx_heading4 = 126, + sym__atx_heading5 = 127, + sym__atx_heading6 = 128, + sym__atx_heading_content = 129, + sym__setext_heading1 = 130, + sym__setext_heading2 = 131, + sym_indented_code_block = 132, + sym__indented_chunk = 133, + sym_fenced_div_block = 134, + sym_fenced_code_block = 135, + sym_code_fence_content = 136, + sym_info_string = 137, + sym_paragraph = 138, + sym_inline_ref_def = 139, + sym_note_definition_fenced_block = 140, + sym__blank_line = 141, + sym_caption = 142, + sym__caption_line = 143, + sym_block_quote = 144, + sym_list = 145, + sym__list_plus = 146, + sym__list_minus = 147, + sym__list_star = 148, + sym__list_dot = 149, + sym__list_parenthesis = 150, + sym__list_example = 151, + sym_list_marker_plus = 152, + sym_list_marker_minus = 153, + sym_list_marker_star = 154, + sym_list_marker_dot = 155, + sym_list_marker_parenthesis = 156, + sym_list_marker_example = 157, + sym__list_item_plus = 158, + sym__list_item_minus = 159, + sym__list_item_star = 160, + sym__list_item_dot = 161, + sym__list_item_parenthesis = 162, + sym__list_item_example = 163, + sym__list_item_content = 164, + sym__newline = 165, + sym__soft_line_break = 166, + sym__code_line = 167, + sym__regular_block_content = 168, + sym__line = 169, + sym__atx_heading_line = 170, + sym__whitespace = 171, + sym_pipe_table = 172, + sym__pipe_table_newline = 173, + sym_pipe_table_delimiter_row = 174, + sym_pipe_table_delimiter_cell = 175, + sym_pipe_table_row = 176, + sym__pipe_table_code_span = 177, + sym__pipe_table_latex_span = 178, + sym__pipe_table_cell_contents = 179, + sym_pipe_table_cell = 180, + aux_sym_document_repeat1 = 181, + aux_sym_document_repeat2 = 182, + aux_sym_commonmark_attribute_repeat1 = 183, + aux_sym_commonmark_attribute_repeat2 = 184, + aux_sym_commonmark_attribute_repeat3 = 185, + aux_sym_key_value_value_repeat1 = 186, + aux_sym_key_value_value_repeat2 = 187, + aux_sym__section1_repeat1 = 188, + aux_sym__section2_repeat1 = 189, + aux_sym__section3_repeat1 = 190, + aux_sym__section4_repeat1 = 191, + aux_sym__section5_repeat1 = 192, + aux_sym_indented_code_block_repeat1 = 193, + aux_sym__indented_chunk_repeat1 = 194, + aux_sym_fenced_div_block_repeat1 = 195, + aux_sym_code_fence_content_repeat1 = 196, + aux_sym_paragraph_repeat1 = 197, + aux_sym__caption_line_repeat1 = 198, + aux_sym__list_plus_repeat1 = 199, + aux_sym__list_minus_repeat1 = 200, + aux_sym__list_star_repeat1 = 201, + aux_sym__list_dot_repeat1 = 202, + aux_sym__list_parenthesis_repeat1 = 203, + aux_sym__list_example_repeat1 = 204, + aux_sym__code_line_repeat1 = 205, + aux_sym__line_repeat1 = 206, + aux_sym_pipe_table_repeat1 = 207, + aux_sym_pipe_table_delimiter_row_repeat1 = 208, + aux_sym_pipe_table_delimiter_cell_repeat1 = 209, + aux_sym_pipe_table_row_repeat1 = 210, + aux_sym__pipe_table_code_span_repeat1 = 211, + aux_sym__pipe_table_cell_contents_repeat1 = 212, + alias_sym_attribute = 213, + alias_sym_pipe_table_align_left = 214, + alias_sym_pipe_table_align_right = 215, + alias_sym_pipe_table_header = 216, }; static const char * const ts_symbol_names[] = { @@ -280,6 +283,9 @@ static const char * const ts_symbol_names[] = { [aux_sym_info_string_token1] = "language", [anon_sym_LT] = "<", [anon_sym_GT] = ">", + [anon_sym_LBRACE_LBRACE_LT] = "{{<", + [anon_sym_RBRACE_RBRACE_GT] = "}}>", + [anon_sym_GT_RBRACE_RBRACE] = ">}}", [anon_sym_LBRACK_GT_GT] = "[>>", [sym__escaped_characters] = "_escaped_characters", [sym__word] = "_word", @@ -497,6 +503,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_info_string_token1] = aux_sym_info_string_token1, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, + [anon_sym_LBRACE_LBRACE_LT] = anon_sym_LBRACE_LBRACE_LT, + [anon_sym_RBRACE_RBRACE_GT] = anon_sym_RBRACE_RBRACE_GT, + [anon_sym_GT_RBRACE_RBRACE] = anon_sym_GT_RBRACE_RBRACE, [anon_sym_LBRACK_GT_GT] = anon_sym_LBRACK_GT_GT, [sym__escaped_characters] = sym__escaped_characters, [sym__word] = sym__word, @@ -846,6 +855,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LBRACE_LBRACE_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE_RBRACE_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_RBRACE_RBRACE] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACK_GT_GT] = { .visible = true, .named = false, @@ -2103,24 +2124,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [471] = 228, [472] = 230, [473] = 473, - [474] = 473, + [474] = 474, [475] = 475, - [476] = 476, + [476] = 473, [477] = 477, [478] = 478, [479] = 479, - [480] = 480, - [481] = 478, - [482] = 479, - [483] = 476, - [484] = 475, - [485] = 473, - [486] = 477, - [487] = 478, - [488] = 477, - [489] = 476, - [490] = 479, - [491] = 475, + [480] = 474, + [481] = 475, + [482] = 477, + [483] = 478, + [484] = 474, + [485] = 485, + [486] = 473, + [487] = 485, + [488] = 475, + [489] = 477, + [490] = 478, + [491] = 485, [492] = 492, [493] = 492, [494] = 492, @@ -2132,195 +2153,195 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [500] = 500, [501] = 501, [502] = 502, - [503] = 503, - [504] = 500, + [503] = 501, + [504] = 504, [505] = 505, [506] = 506, - [507] = 507, - [508] = 500, + [507] = 501, + [508] = 508, [509] = 509, [510] = 510, [511] = 511, [512] = 512, - [513] = 512, - [514] = 514, - [515] = 515, - [516] = 510, - [517] = 515, - [518] = 511, - [519] = 514, - [520] = 511, - [521] = 512, + [513] = 513, + [514] = 508, + [515] = 509, + [516] = 508, + [517] = 511, + [518] = 513, + [519] = 513, + [520] = 510, + [521] = 511, [522] = 510, - [523] = 509, + [523] = 512, [524] = 509, - [525] = 515, - [526] = 514, + [525] = 512, + [526] = 526, [527] = 527, [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 529, + [529] = 527, + [530] = 500, + [531] = 528, + [532] = 532, [533] = 533, [534] = 534, - [535] = 535, - [536] = 507, - [537] = 533, + [535] = 534, + [536] = 534, + [537] = 537, [538] = 538, - [539] = 539, - [540] = 540, + [539] = 537, + [540] = 537, [541] = 541, [542] = 542, [543] = 543, [544] = 544, [545] = 545, - [546] = 545, - [547] = 541, - [548] = 541, + [546] = 546, + [547] = 547, + [548] = 548, [549] = 549, - [550] = 542, - [551] = 542, + [550] = 550, + [551] = 551, [552] = 552, [553] = 553, - [554] = 545, + [554] = 552, [555] = 555, - [556] = 534, - [557] = 538, - [558] = 528, + [556] = 555, + [557] = 557, + [558] = 558, [559] = 559, - [560] = 530, + [560] = 560, [561] = 561, [562] = 562, [563] = 563, - [564] = 535, - [565] = 565, - [566] = 566, - [567] = 531, + [564] = 563, + [565] = 552, + [566] = 563, + [567] = 543, [568] = 568, - [569] = 535, + [569] = 542, [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 553, - [575] = 570, - [576] = 543, - [577] = 573, - [578] = 544, - [579] = 579, - [580] = 549, - [581] = 540, - [582] = 579, - [583] = 559, - [584] = 540, - [585] = 555, - [586] = 549, - [587] = 133, - [588] = 553, - [589] = 579, - [590] = 563, - [591] = 543, - [592] = 544, - [593] = 561, - [594] = 570, + [571] = 550, + [572] = 544, + [573] = 547, + [574] = 545, + [575] = 546, + [576] = 551, + [577] = 133, + [578] = 549, + [579] = 555, + [580] = 541, + [581] = 581, + [582] = 133, + [583] = 542, + [584] = 542, + [585] = 585, + [586] = 585, + [587] = 557, + [588] = 558, + [589] = 542, + [590] = 150, + [591] = 559, + [592] = 560, + [593] = 544, + [594] = 594, [595] = 133, - [596] = 565, - [597] = 597, - [598] = 568, - [599] = 562, - [600] = 600, - [601] = 601, + [596] = 594, + [597] = 553, + [598] = 150, + [599] = 568, + [600] = 570, + [601] = 559, [602] = 602, - [603] = 603, - [604] = 150, - [605] = 133, - [606] = 606, - [607] = 601, - [608] = 606, - [609] = 150, - [610] = 562, - [611] = 555, - [612] = 603, - [613] = 561, - [614] = 561, - [615] = 561, - [616] = 561, + [603] = 542, + [604] = 560, + [605] = 557, + [606] = 558, + [607] = 553, + [608] = 594, + [609] = 581, + [610] = 150, + [611] = 611, + [612] = 543, + [613] = 613, + [614] = 542, + [615] = 550, + [616] = 611, [617] = 617, [618] = 618, [619] = 619, [620] = 620, - [621] = 621, - [622] = 620, - [623] = 618, - [624] = 624, + [621] = 618, + [622] = 622, + [623] = 613, + [624] = 620, [625] = 625, [626] = 626, - [627] = 150, + [627] = 627, [628] = 628, - [629] = 601, + [629] = 629, [630] = 630, [631] = 631, [632] = 632, [633] = 633, [634] = 634, - [635] = 561, - [636] = 602, - [637] = 561, - [638] = 555, - [639] = 619, - [640] = 562, - [641] = 600, + [635] = 635, + [636] = 622, + [637] = 542, + [638] = 550, + [639] = 626, + [640] = 543, + [641] = 619, [642] = 642, [643] = 643, - [644] = 630, + [644] = 629, [645] = 642, [646] = 646, [647] = 647, [648] = 647, [649] = 649, [650] = 650, - [651] = 600, + [651] = 619, [652] = 649, [653] = 653, - [654] = 619, + [654] = 626, [655] = 643, - [656] = 561, + [656] = 542, [657] = 647, [658] = 642, [659] = 659, [660] = 650, [661] = 661, [662] = 643, - [663] = 562, + [663] = 543, [664] = 664, [665] = 643, - [666] = 555, + [666] = 550, [667] = 647, [668] = 643, - [669] = 561, + [669] = 542, [670] = 647, - [671] = 633, - [672] = 624, - [673] = 625, + [671] = 635, + [672] = 632, + [673] = 627, [674] = 650, [675] = 675, [676] = 676, - [677] = 602, + [677] = 622, [678] = 678, - [679] = 566, + [679] = 548, [680] = 680, - [681] = 566, + [681] = 548, [682] = 680, [683] = 678, - [684] = 561, - [685] = 561, + [684] = 542, + [685] = 542, [686] = 678, [687] = 687, [688] = 688, - [689] = 572, - [690] = 572, - [691] = 561, + [689] = 562, + [690] = 562, + [691] = 542, [692] = 692, [693] = 693, [694] = 694, @@ -2390,7 +2411,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [758] = 758, [759] = 759, [760] = 760, - [761] = 561, + [761] = 542, [762] = 762, [763] = 763, [764] = 764, @@ -2441,7 +2462,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [809] = 809, [810] = 810, [811] = 811, - [812] = 561, + [812] = 542, [813] = 770, [814] = 814, [815] = 815, @@ -2495,7 +2516,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [863] = 863, [864] = 847, [865] = 850, - [866] = 561, + [866] = 542, [867] = 867, [868] = 863, [869] = 869, @@ -2508,7 +2529,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [876] = 846, [877] = 859, [878] = 863, - [879] = 561, + [879] = 542, [880] = 880, [881] = 881, [882] = 882, @@ -2566,7 +2587,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [934] = 133, [935] = 890, [936] = 919, - [937] = 561, + [937] = 542, [938] = 938, [939] = 939, [940] = 910, @@ -2749,584 +2770,662 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(14); + if (eof) ADVANCE(19); ADVANCE_MAP( - '!', 27, - '"', 28, - '#', 30, - '$', 31, - '%', 32, - '&', 33, - '\'', 25, - '(', 34, - ')', 35, - '*', 36, - '+', 37, - ',', 38, - '-', 39, - '.', 41, - '/', 42, - ':', 43, - ';', 44, - '<', 65, - '=', 23, - '>', 66, - '?', 45, - '@', 46, - '[', 48, - '\\', 51, - ']', 55, - '^', 56, - '_', 19, - '`', 58, - '{', 16, - '|', 59, - '}', 17, - '~', 60, - '\t', 20, - ' ', 20, + '!', 35, + '"', 36, + '#', 38, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 49, + '/', 50, + ':', 51, + ';', 52, + '<', 73, + '=', 31, + '>', 74, + '?', 53, + '@', 54, + '[', 56, + '\\', 59, + ']', 63, + '^', 64, + '_', 27, + '`', 66, + '{', 22, + '|', 67, + '}', 25, + '~', 68, + '\t', 28, + ' ', 28, ); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(18); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(26); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != '\r') ADVANCE(69); + lookahead != '\r') ADVANCE(80); END_STATE(); case 1: ADVANCE_MAP( - '!', 27, - '"', 28, - '#', 30, - '$', 31, - '%', 32, - '&', 33, - '\'', 25, - '(', 34, - ')', 35, - '*', 36, - '+', 37, - ',', 38, - '-', 39, - '.', 41, - '/', 42, - ':', 43, - ';', 44, - '=', 23, - '?', 45, - '@', 46, - '[', 48, - '\\', 54, - ']', 55, - '^', 56, - '_', 19, - '`', 58, - '{', 15, - '|', 59, - '}', 17, - '~', 60, - '\t', 20, - ' ', 20, + '!', 35, + '"', 36, + '#', 38, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 49, + '/', 50, + ':', 51, + ';', 52, + '=', 31, + '>', 15, + '?', 53, + '@', 54, + '[', 56, + '\\', 62, + ']', 63, + '^', 64, + '_', 27, + '`', 66, + '{', 21, + '|', 67, + '}', 24, + '~', 68, + '\t', 28, + ' ', 28, ); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(18); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(26); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - (lookahead < ':' || '~' < lookahead)) ADVANCE(69); + (lookahead < ':' || '~' < lookahead)) ADVANCE(80); END_STATE(); case 2: ADVANCE_MAP( - '!', 27, - '"', 28, - '#', 29, - '$', 31, - '%', 32, - '&', 33, - '\'', 25, - '(', 34, - ')', 35, - '*', 36, - '+', 37, - ',', 38, - '-', 39, - '.', 40, - '/', 42, - ':', 43, - ';', 44, - '<', 65, - '=', 23, - '>', 66, - '?', 45, - '@', 46, - '[', 47, - '\\', 49, - ']', 55, - '^', 56, - '_', 57, - '`', 58, - '{', 15, - '|', 59, - '}', 17, - '~', 60, - '\t', 20, - ' ', 20, + '!', 35, + '"', 36, + '#', 37, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 48, + '/', 50, + ':', 51, + ';', 52, + '<', 73, + '=', 31, + '>', 74, + '?', 53, + '@', 54, + '[', 55, + '\\', 57, + ']', 63, + '^', 64, + '_', 65, + '`', 66, + '{', 21, + '|', 67, + '}', 25, + '~', 68, + '\t', 28, + ' ', 28, ); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != '\r') ADVANCE(69); + lookahead != '\r') ADVANCE(80); END_STATE(); case 3: ADVANCE_MAP( - '!', 27, - '"', 28, - '#', 29, - '$', 31, - '%', 32, - '&', 33, - '\'', 25, - '(', 34, - ')', 35, - '*', 36, - '+', 37, - ',', 38, - '-', 39, - '.', 40, - '/', 42, - ':', 43, - ';', 44, - '=', 23, - '?', 45, - '@', 46, - '[', 47, - '\\', 53, - ']', 55, - '^', 56, - '_', 57, - '`', 58, - '{', 15, - '|', 59, - '}', 17, - '~', 60, - '\t', 20, - ' ', 20, + '!', 35, + '"', 36, + '#', 37, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 48, + '/', 50, + ':', 51, + ';', 52, + '<', 73, + '=', 31, + '>', 74, + '?', 53, + '@', 54, + '[', 55, + '\\', 57, + ']', 63, + '^', 64, + '_', 65, + '`', 66, + '{', 20, + '|', 67, + '}', 24, + '~', 68, + '\t', 28, + ' ', 28, ); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != '\r' && - (lookahead < ':' || '@' < lookahead)) ADVANCE(69); + lookahead != '\r') ADVANCE(80); END_STATE(); case 4: ADVANCE_MAP( - '!', 27, - '"', 28, - '#', 29, - '$', 31, - '%', 32, - '&', 33, - '\'', 25, - '(', 34, - ')', 35, - '*', 36, - '+', 37, - ',', 38, - '-', 39, - '.', 40, - '/', 42, - ':', 43, - ';', 44, - '=', 23, - '?', 45, - '@', 46, - '[', 47, - '\\', 52, - ']', 55, - '^', 56, - '_', 57, - '`', 58, - '{', 15, - '|', 59, - '}', 17, - '~', 60, - '\t', 20, - ' ', 20, + '!', 35, + '"', 36, + '#', 37, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 48, + '/', 50, + ':', 51, + ';', 52, + '=', 31, + '?', 53, + '@', 54, + '[', 55, + '\\', 61, + ']', 63, + '^', 64, + '_', 65, + '`', 66, + '{', 20, + '|', 67, + '}', 24, + '~', 68, + '\t', 28, + ' ', 28, ); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - (lookahead < ':' || '@' < lookahead)) ADVANCE(69); + (lookahead < ':' || '@' < lookahead)) ADVANCE(80); END_STATE(); case 5: ADVANCE_MAP( - '!', 27, - '"', 28, - '#', 29, - '$', 31, - '%', 32, - '&', 33, - '\'', 25, - '(', 34, - ')', 35, - '*', 36, - '+', 37, - ',', 38, - '-', 39, - '.', 40, - '/', 42, - ':', 43, - ';', 44, - '=', 23, - '?', 45, - '@', 46, - '[', 47, - '\\', 50, - ']', 55, - '^', 56, - '_', 57, - '`', 58, - '{', 15, - '|', 59, - '}', 17, - '~', 60, - '\t', 20, - ' ', 20, + '!', 35, + '"', 36, + '#', 37, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 48, + '/', 50, + ':', 51, + ';', 52, + '=', 31, + '?', 53, + '@', 54, + '[', 55, + '\\', 60, + ']', 63, + '^', 64, + '_', 65, + '`', 66, + '{', 20, + '|', 67, + '}', 24, + '~', 68, + '\t', 28, + ' ', 28, ); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - (lookahead < ':' || '@' < lookahead)) ADVANCE(69); + (lookahead < ':' || '@' < lookahead)) ADVANCE(80); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(28); - if (lookahead == '\'') ADVANCE(25); + ADVANCE_MAP( + '!', 35, + '"', 36, + '#', 37, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 48, + '/', 50, + ':', 51, + ';', 52, + '=', 31, + '?', 53, + '@', 54, + '[', 55, + '\\', 58, + ']', 63, + '^', 64, + '_', 65, + '`', 66, + '{', 20, + '|', 67, + '}', 24, + '~', 68, + '\t', 28, + ' ', 28, + ); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + (lookahead < ':' || '@' < lookahead)) ADVANCE(80); + END_STATE(); + case 7: + if (lookahead == '"') ADVANCE(36); + if (lookahead == '\'') ADVANCE(33); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(20); + lookahead == ' ') ADVANCE(28); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && (lookahead < '<' || '>' < lookahead) && lookahead != '`' && - lookahead != '}') ADVANCE(24); + lookahead != '}') ADVANCE(32); END_STATE(); - case 7: - if (lookahead == '#') ADVANCE(12); - if (lookahead == '.') ADVANCE(11); - if (lookahead == '{') ADVANCE(15); - if (lookahead == '}') ADVANCE(17); + case 8: + if (lookahead == '#') ADVANCE(17); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '{') ADVANCE(20); + if (lookahead == '}') ADVANCE(24); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(20); + lookahead == ' ') ADVANCE(28); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(19); - END_STATE(); - case 8: - if (lookahead == '>') ADVANCE(67); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); END_STATE(); case 9: - if (lookahead == '{') ADVANCE(16); + if (lookahead == '<') ADVANCE(75); + END_STATE(); + case 10: + if (lookahead == '>') ADVANCE(78); + END_STATE(); + case 11: + if (lookahead == '>') ADVANCE(76); + END_STATE(); + case 12: + if (lookahead == '{') ADVANCE(20); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(28); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && lookahead != '^' && - lookahead != '}') ADVANCE(64); + lookahead != '}') ADVANCE(72); END_STATE(); - case 10: - if (lookahead == '{') ADVANCE(15); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(20); + case 13: + if (lookahead == '{') ADVANCE(23); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && lookahead != '^' && - lookahead != '}') ADVANCE(64); + lookahead != '}') ADVANCE(72); END_STATE(); - case 11: + case 14: + if (lookahead == '}') ADVANCE(77); + END_STATE(); + case 15: + if (lookahead == '}') ADVANCE(14); + END_STATE(); + case 16: if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(30); END_STATE(); - case 12: + case 17: if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(29); END_STATE(); - case 13: - if (eof) ADVANCE(14); + case 18: + if (eof) ADVANCE(19); ADVANCE_MAP( - '!', 27, - '"', 28, - '#', 29, - '$', 31, - '%', 32, - '&', 33, - '\'', 25, - '(', 34, - ')', 35, - '*', 36, - '+', 37, - ',', 38, - '-', 39, - '.', 40, - '/', 42, - ':', 43, - ';', 44, - '=', 23, - '?', 45, - '@', 46, - '[', 48, - '\\', 54, - ']', 55, - '^', 56, - '_', 57, - '`', 58, - '{', 15, - '|', 59, - '}', 17, - '~', 60, - '\t', 20, - ' ', 20, + '!', 35, + '"', 36, + '#', 37, + '$', 39, + '%', 40, + '&', 41, + '\'', 33, + '(', 42, + ')', 43, + '*', 44, + '+', 45, + ',', 46, + '-', 47, + '.', 48, + '/', 50, + ':', 51, + ';', 52, + '=', 31, + '>', 15, + '?', 53, + '@', 54, + '[', 56, + '\\', 62, + ']', 63, + '^', 64, + '_', 65, + '`', 66, + '{', 21, + '|', 67, + '}', 24, + '~', 68, + '\t', 28, + ' ', 28, ); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - (lookahead < ':' || '@' < lookahead)) ADVANCE(69); + (lookahead < ':' || '@' < lookahead)) ADVANCE(80); END_STATE(); - case 14: + case 19: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 15: + case 20: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 16: + case 21: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '}') ADVANCE(63); + if (lookahead == '{') ADVANCE(9); END_STATE(); - case 17: + case 22: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '{') ADVANCE(9); + if (lookahead == '}') ADVANCE(71); + END_STATE(); + case 23: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '}') ADVANCE(71); + END_STATE(); + case 24: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 18: + case 25: + ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == '}') ADVANCE(11); + END_STATE(); + case 26: ACCEPT_TOKEN(sym_commonmark_name); if (lookahead == '-' || lookahead == '.' || - lookahead == '_') ADVANCE(19); + lookahead == '_') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); END_STATE(); - case 19: + case 27: ACCEPT_TOKEN(sym_commonmark_name); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(19); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); END_STATE(); - case 20: + case 28: ACCEPT_TOKEN(aux_sym__commonmark_whitespace_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(20); + lookahead == ' ') ADVANCE(28); END_STATE(); - case 21: + case 29: ACCEPT_TOKEN(sym_id_specifier); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(29); END_STATE(); - case 22: + case 30: ACCEPT_TOKEN(sym_class_specifier); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(30); END_STATE(); - case 23: + case 31: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 24: + case 32: ACCEPT_TOKEN(aux_sym_key_value_value_token1); - if ((!eof && set_contains(aux_sym_key_value_value_token1_character_set_1, 9, lookahead))) ADVANCE(24); + if ((!eof && set_contains(aux_sym_key_value_value_token1_character_set_1, 9, lookahead))) ADVANCE(32); END_STATE(); - case 25: + case 33: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 26: + case 34: ACCEPT_TOKEN(anon_sym_BSLASH_SQUOTE); END_STATE(); - case 27: + case 35: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 28: + case 36: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 29: + case 37: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 30: + case 38: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(29); END_STATE(); - case 31: + case 39: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 32: + case 40: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 33: + case 41: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 34: + case 42: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 35: + case 43: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 36: + case 44: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 37: + case 45: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 38: + case 46: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 39: + case 47: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 40: + case 48: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 41: + case 49: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(22); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(30); END_STATE(); - case 42: + case 50: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 43: + case 51: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 44: + case 52: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 45: + case 53: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 46: + case 54: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 47: + case 55: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 48: + case 56: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '>') ADVANCE(8); + if (lookahead == '>') ADVANCE(10); END_STATE(); - case 49: + case 57: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 50: + case 58: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"') ADVANCE(61); + if (lookahead == '"') ADVANCE(69); END_STATE(); - case 51: + case 59: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '"') ADVANCE(61); - if (lookahead == '\'') ADVANCE(26); + if (lookahead == '"') ADVANCE(69); + if (lookahead == '\'') ADVANCE(34); if (('!' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || ('[' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(62); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(70); if (lookahead != 0 && - lookahead != '\n') ADVANCE(68); + lookahead != '\n') ADVANCE(79); END_STATE(); - case 52: + case 60: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\'') ADVANCE(26); + if (lookahead == '\'') ADVANCE(34); END_STATE(); - case 53: + case 61: ACCEPT_TOKEN(anon_sym_BSLASH); if (('!' <= lookahead && lookahead <= '/') || (':' <= lookahead && lookahead <= '@') || ('[' <= lookahead && lookahead <= '`') || - ('{' <= lookahead && lookahead <= '~')) ADVANCE(62); + ('{' <= lookahead && lookahead <= '~')) ADVANCE(70); END_STATE(); - case 54: + case 62: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(68); + lookahead != '\n') ADVANCE(79); END_STATE(); - case 55: + case 63: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 56: + case 64: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 57: + case 65: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 58: + case 66: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 59: + case 67: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 60: + case 68: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 61: + case 69: ACCEPT_TOKEN(anon_sym_BSLASH_DQUOTE); END_STATE(); - case 62: + case 70: ACCEPT_TOKEN(sym__backslash_escape); END_STATE(); - case 63: + case 71: ACCEPT_TOKEN(anon_sym_LBRACE_RBRACE); END_STATE(); - case 64: + case 72: ACCEPT_TOKEN(aux_sym_info_string_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '{' && - lookahead != '}') ADVANCE(64); + lookahead != '}') ADVANCE(72); END_STATE(); - case 65: + case 73: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 66: + case 74: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 67: + case 75: + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE_LT); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE_GT); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_GT_RBRACE_RBRACE); + END_STATE(); + case 78: ACCEPT_TOKEN(anon_sym_LBRACK_GT_GT); END_STATE(); - case 68: + case 79: ACCEPT_TOKEN(sym__escaped_characters); END_STATE(); - case 69: + case 80: ACCEPT_TOKEN(sym__word); if (lookahead != 0 && lookahead != '\t' && @@ -3335,7 +3434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ' ' || '/' < lookahead) && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '`' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(69); + (lookahead < '{' || '~' < lookahead)) ADVANCE(80); END_STATE(); default: return false; @@ -3344,765 +3443,765 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 13, .external_lex_state = 2}, - [2] = {.lex_state = 13, .external_lex_state = 3}, - [3] = {.lex_state = 13, .external_lex_state = 4}, - [4] = {.lex_state = 13, .external_lex_state = 4}, - [5] = {.lex_state = 13, .external_lex_state = 4}, - [6] = {.lex_state = 13, .external_lex_state = 4}, - [7] = {.lex_state = 13, .external_lex_state = 3}, - [8] = {.lex_state = 13, .external_lex_state = 3}, - [9] = {.lex_state = 13, .external_lex_state = 3}, - [10] = {.lex_state = 13, .external_lex_state = 3}, - [11] = {.lex_state = 13, .external_lex_state = 3}, - [12] = {.lex_state = 13, .external_lex_state = 5}, - [13] = {.lex_state = 13, .external_lex_state = 3}, - [14] = {.lex_state = 13, .external_lex_state = 3}, - [15] = {.lex_state = 13, .external_lex_state = 5}, - [16] = {.lex_state = 13, .external_lex_state = 3}, - [17] = {.lex_state = 13, .external_lex_state = 5}, - [18] = {.lex_state = 13, .external_lex_state = 4}, - [19] = {.lex_state = 13, .external_lex_state = 3}, - [20] = {.lex_state = 13, .external_lex_state = 3}, - [21] = {.lex_state = 13, .external_lex_state = 3}, - [22] = {.lex_state = 13, .external_lex_state = 3}, - [23] = {.lex_state = 13, .external_lex_state = 4}, - [24] = {.lex_state = 13, .external_lex_state = 4}, - [25] = {.lex_state = 13, .external_lex_state = 4}, - [26] = {.lex_state = 13, .external_lex_state = 4}, - [27] = {.lex_state = 13, .external_lex_state = 4}, - [28] = {.lex_state = 13, .external_lex_state = 4}, - [29] = {.lex_state = 13, .external_lex_state = 4}, - [30] = {.lex_state = 13, .external_lex_state = 4}, - [31] = {.lex_state = 13, .external_lex_state = 4}, - [32] = {.lex_state = 13, .external_lex_state = 4}, - [33] = {.lex_state = 13, .external_lex_state = 4}, - [34] = {.lex_state = 13, .external_lex_state = 4}, - [35] = {.lex_state = 13, .external_lex_state = 4}, - [36] = {.lex_state = 13, .external_lex_state = 6}, - [37] = {.lex_state = 13, .external_lex_state = 2}, - [38] = {.lex_state = 13, .external_lex_state = 6}, - [39] = {.lex_state = 13, .external_lex_state = 2}, - [40] = {.lex_state = 13, .external_lex_state = 2}, - [41] = {.lex_state = 13, .external_lex_state = 2}, - [42] = {.lex_state = 13, .external_lex_state = 2}, - [43] = {.lex_state = 13, .external_lex_state = 2}, - [44] = {.lex_state = 13, .external_lex_state = 6}, - [45] = {.lex_state = 13, .external_lex_state = 6}, - [46] = {.lex_state = 13, .external_lex_state = 2}, - [47] = {.lex_state = 13, .external_lex_state = 6}, - [48] = {.lex_state = 13, .external_lex_state = 6}, - [49] = {.lex_state = 13, .external_lex_state = 6}, - [50] = {.lex_state = 13, .external_lex_state = 2}, - [51] = {.lex_state = 13, .external_lex_state = 6}, - [52] = {.lex_state = 13, .external_lex_state = 6}, - [53] = {.lex_state = 13, .external_lex_state = 6}, - [54] = {.lex_state = 13, .external_lex_state = 6}, - [55] = {.lex_state = 13, .external_lex_state = 2}, - [56] = {.lex_state = 13, .external_lex_state = 2}, - [57] = {.lex_state = 13, .external_lex_state = 2}, - [58] = {.lex_state = 13, .external_lex_state = 2}, - [59] = {.lex_state = 13, .external_lex_state = 2}, - [60] = {.lex_state = 13, .external_lex_state = 2}, - [61] = {.lex_state = 13, .external_lex_state = 2}, - [62] = {.lex_state = 13, .external_lex_state = 2}, - [63] = {.lex_state = 13, .external_lex_state = 2}, - [64] = {.lex_state = 13, .external_lex_state = 2}, - [65] = {.lex_state = 13, .external_lex_state = 2}, - [66] = {.lex_state = 13, .external_lex_state = 2}, - [67] = {.lex_state = 13, .external_lex_state = 2}, - [68] = {.lex_state = 13, .external_lex_state = 3}, - [69] = {.lex_state = 13, .external_lex_state = 3}, - [70] = {.lex_state = 13, .external_lex_state = 3}, - [71] = {.lex_state = 13, .external_lex_state = 2}, - [72] = {.lex_state = 13, .external_lex_state = 6}, - [73] = {.lex_state = 13, .external_lex_state = 2}, - [74] = {.lex_state = 13, .external_lex_state = 6}, - [75] = {.lex_state = 13, .external_lex_state = 2}, - [76] = {.lex_state = 13, .external_lex_state = 6}, - [77] = {.lex_state = 13, .external_lex_state = 3}, - [78] = {.lex_state = 13, .external_lex_state = 3}, - [79] = {.lex_state = 13, .external_lex_state = 3}, - [80] = {.lex_state = 13, .external_lex_state = 2}, - [81] = {.lex_state = 13, .external_lex_state = 6}, - [82] = {.lex_state = 13, .external_lex_state = 6}, - [83] = {.lex_state = 13, .external_lex_state = 2}, - [84] = {.lex_state = 13, .external_lex_state = 6}, - [85] = {.lex_state = 13, .external_lex_state = 2}, - [86] = {.lex_state = 13, .external_lex_state = 3}, - [87] = {.lex_state = 13, .external_lex_state = 3}, - [88] = {.lex_state = 13, .external_lex_state = 3}, - [89] = {.lex_state = 13, .external_lex_state = 2}, - [90] = {.lex_state = 13, .external_lex_state = 6}, - [91] = {.lex_state = 13, .external_lex_state = 6}, - [92] = {.lex_state = 13, .external_lex_state = 6}, - [93] = {.lex_state = 13, .external_lex_state = 2}, - [94] = {.lex_state = 13, .external_lex_state = 2}, - [95] = {.lex_state = 13, .external_lex_state = 3}, - [96] = {.lex_state = 13, .external_lex_state = 3}, - [97] = {.lex_state = 13, .external_lex_state = 3}, - [98] = {.lex_state = 13, .external_lex_state = 6}, - [99] = {.lex_state = 13, .external_lex_state = 2}, - [100] = {.lex_state = 13, .external_lex_state = 6}, - [101] = {.lex_state = 13, .external_lex_state = 2}, - [102] = {.lex_state = 13, .external_lex_state = 6}, - [103] = {.lex_state = 13, .external_lex_state = 2}, - [104] = {.lex_state = 13, .external_lex_state = 3}, - [105] = {.lex_state = 13, .external_lex_state = 3}, - [106] = {.lex_state = 13, .external_lex_state = 3}, - [107] = {.lex_state = 13, .external_lex_state = 6}, - [108] = {.lex_state = 13, .external_lex_state = 2}, - [109] = {.lex_state = 13, .external_lex_state = 6}, - [110] = {.lex_state = 13, .external_lex_state = 6}, - [111] = {.lex_state = 13, .external_lex_state = 2}, - [112] = {.lex_state = 13, .external_lex_state = 2}, - [113] = {.lex_state = 13, .external_lex_state = 3}, - [114] = {.lex_state = 13, .external_lex_state = 3}, - [115] = {.lex_state = 13, .external_lex_state = 3}, - [116] = {.lex_state = 13, .external_lex_state = 6}, - [117] = {.lex_state = 13, .external_lex_state = 2}, - [118] = {.lex_state = 13, .external_lex_state = 2}, - [119] = {.lex_state = 13, .external_lex_state = 6}, - [120] = {.lex_state = 13, .external_lex_state = 6}, - [121] = {.lex_state = 13, .external_lex_state = 2}, - [122] = {.lex_state = 13, .external_lex_state = 3}, - [123] = {.lex_state = 13, .external_lex_state = 3}, - [124] = {.lex_state = 13, .external_lex_state = 3}, - [125] = {.lex_state = 13, .external_lex_state = 3}, - [126] = {.lex_state = 13, .external_lex_state = 3}, - [127] = {.lex_state = 13, .external_lex_state = 3}, - [128] = {.lex_state = 13, .external_lex_state = 3}, - [129] = {.lex_state = 13, .external_lex_state = 3}, - [130] = {.lex_state = 13, .external_lex_state = 3}, - [131] = {.lex_state = 13, .external_lex_state = 3}, - [132] = {.lex_state = 13, .external_lex_state = 3}, - [133] = {.lex_state = 13, .external_lex_state = 7}, - [134] = {.lex_state = 13, .external_lex_state = 3}, - [135] = {.lex_state = 13, .external_lex_state = 3}, - [136] = {.lex_state = 13, .external_lex_state = 3}, - [137] = {.lex_state = 13, .external_lex_state = 3}, - [138] = {.lex_state = 13, .external_lex_state = 6}, - [139] = {.lex_state = 13, .external_lex_state = 2}, - [140] = {.lex_state = 13, .external_lex_state = 6}, - [141] = {.lex_state = 13, .external_lex_state = 2}, - [142] = {.lex_state = 13, .external_lex_state = 2}, - [143] = {.lex_state = 13, .external_lex_state = 6}, - [144] = {.lex_state = 13, .external_lex_state = 2}, - [145] = {.lex_state = 13, .external_lex_state = 8}, - [146] = {.lex_state = 13, .external_lex_state = 9}, - [147] = {.lex_state = 13, .external_lex_state = 10}, - [148] = {.lex_state = 13, .external_lex_state = 11}, - [149] = {.lex_state = 13, .external_lex_state = 6}, - [150] = {.lex_state = 13, .external_lex_state = 9}, - [151] = {.lex_state = 13, .external_lex_state = 2}, - [152] = {.lex_state = 13, .external_lex_state = 2}, - [153] = {.lex_state = 13, .external_lex_state = 6}, - [154] = {.lex_state = 13, .external_lex_state = 6}, - [155] = {.lex_state = 13, .external_lex_state = 6}, - [156] = {.lex_state = 13, .external_lex_state = 2}, - [157] = {.lex_state = 13, .external_lex_state = 2}, - [158] = {.lex_state = 13, .external_lex_state = 2}, - [159] = {.lex_state = 13, .external_lex_state = 2}, - [160] = {.lex_state = 13, .external_lex_state = 2}, - [161] = {.lex_state = 13, .external_lex_state = 2}, - [162] = {.lex_state = 13, .external_lex_state = 6}, - [163] = {.lex_state = 13, .external_lex_state = 6}, - [164] = {.lex_state = 13, .external_lex_state = 9}, - [165] = {.lex_state = 13, .external_lex_state = 6}, - [166] = {.lex_state = 13, .external_lex_state = 6}, - [167] = {.lex_state = 13, .external_lex_state = 6}, - [168] = {.lex_state = 13, .external_lex_state = 6}, - [169] = {.lex_state = 13, .external_lex_state = 6}, - [170] = {.lex_state = 13, .external_lex_state = 6}, - [171] = {.lex_state = 13, .external_lex_state = 2}, - [172] = {.lex_state = 13, .external_lex_state = 2}, - [173] = {.lex_state = 13, .external_lex_state = 2}, - [174] = {.lex_state = 13, .external_lex_state = 11}, - [175] = {.lex_state = 13, .external_lex_state = 12}, - [176] = {.lex_state = 13, .external_lex_state = 11}, - [177] = {.lex_state = 13, .external_lex_state = 11}, - [178] = {.lex_state = 13, .external_lex_state = 11}, - [179] = {.lex_state = 13, .external_lex_state = 11}, - [180] = {.lex_state = 13, .external_lex_state = 11}, - [181] = {.lex_state = 13, .external_lex_state = 11}, - [182] = {.lex_state = 13, .external_lex_state = 11}, - [183] = {.lex_state = 13, .external_lex_state = 11}, - [184] = {.lex_state = 13, .external_lex_state = 11}, - [185] = {.lex_state = 13, .external_lex_state = 11}, - [186] = {.lex_state = 13, .external_lex_state = 11}, - [187] = {.lex_state = 13, .external_lex_state = 11}, - [188] = {.lex_state = 13, .external_lex_state = 11}, - [189] = {.lex_state = 13, .external_lex_state = 11}, - [190] = {.lex_state = 13, .external_lex_state = 3}, - [191] = {.lex_state = 13, .external_lex_state = 12}, - [192] = {.lex_state = 13, .external_lex_state = 5}, - [193] = {.lex_state = 13, .external_lex_state = 13}, - [194] = {.lex_state = 13, .external_lex_state = 13}, - [195] = {.lex_state = 13, .external_lex_state = 3}, - [196] = {.lex_state = 13, .external_lex_state = 3}, - [197] = {.lex_state = 13, .external_lex_state = 12}, - [198] = {.lex_state = 13, .external_lex_state = 11}, - [199] = {.lex_state = 13, .external_lex_state = 11}, - [200] = {.lex_state = 13, .external_lex_state = 13}, - [201] = {.lex_state = 13, .external_lex_state = 4}, - [202] = {.lex_state = 13, .external_lex_state = 6}, - [203] = {.lex_state = 13, .external_lex_state = 3}, - [204] = {.lex_state = 13, .external_lex_state = 4}, - [205] = {.lex_state = 13, .external_lex_state = 4}, - [206] = {.lex_state = 13, .external_lex_state = 4}, - [207] = {.lex_state = 13, .external_lex_state = 4}, - [208] = {.lex_state = 13, .external_lex_state = 4}, - [209] = {.lex_state = 13, .external_lex_state = 2}, - [210] = {.lex_state = 13, .external_lex_state = 3}, - [211] = {.lex_state = 13, .external_lex_state = 3}, - [212] = {.lex_state = 13, .external_lex_state = 3}, - [213] = {.lex_state = 13, .external_lex_state = 5}, - [214] = {.lex_state = 13, .external_lex_state = 5}, - [215] = {.lex_state = 13, .external_lex_state = 5}, - [216] = {.lex_state = 13, .external_lex_state = 5}, - [217] = {.lex_state = 13, .external_lex_state = 3}, - [218] = {.lex_state = 13, .external_lex_state = 3}, - [219] = {.lex_state = 13, .external_lex_state = 3}, - [220] = {.lex_state = 13, .external_lex_state = 4}, - [221] = {.lex_state = 13, .external_lex_state = 3}, - [222] = {.lex_state = 13, .external_lex_state = 3}, - [223] = {.lex_state = 13, .external_lex_state = 3}, - [224] = {.lex_state = 13, .external_lex_state = 3}, - [225] = {.lex_state = 13, .external_lex_state = 3}, - [226] = {.lex_state = 13, .external_lex_state = 3}, - [227] = {.lex_state = 13, .external_lex_state = 3}, - [228] = {.lex_state = 13, .external_lex_state = 3}, - [229] = {.lex_state = 13, .external_lex_state = 5}, - [230] = {.lex_state = 13, .external_lex_state = 3}, - [231] = {.lex_state = 13, .external_lex_state = 4}, - [232] = {.lex_state = 13, .external_lex_state = 3}, - [233] = {.lex_state = 13, .external_lex_state = 3}, - [234] = {.lex_state = 13, .external_lex_state = 3}, - [235] = {.lex_state = 13, .external_lex_state = 5}, - [236] = {.lex_state = 13, .external_lex_state = 3}, - [237] = {.lex_state = 13, .external_lex_state = 3}, - [238] = {.lex_state = 13, .external_lex_state = 3}, - [239] = {.lex_state = 13, .external_lex_state = 5}, - [240] = {.lex_state = 13, .external_lex_state = 3}, - [241] = {.lex_state = 13, .external_lex_state = 3}, - [242] = {.lex_state = 13, .external_lex_state = 3}, - [243] = {.lex_state = 13, .external_lex_state = 3}, - [244] = {.lex_state = 13, .external_lex_state = 3}, - [245] = {.lex_state = 13, .external_lex_state = 3}, - [246] = {.lex_state = 13, .external_lex_state = 3}, - [247] = {.lex_state = 13, .external_lex_state = 3}, - [248] = {.lex_state = 13, .external_lex_state = 3}, - [249] = {.lex_state = 13, .external_lex_state = 3}, - [250] = {.lex_state = 13, .external_lex_state = 5}, - [251] = {.lex_state = 13, .external_lex_state = 3}, - [252] = {.lex_state = 13, .external_lex_state = 3}, - [253] = {.lex_state = 13, .external_lex_state = 3}, - [254] = {.lex_state = 13, .external_lex_state = 3}, - [255] = {.lex_state = 13, .external_lex_state = 3}, - [256] = {.lex_state = 13, .external_lex_state = 3}, - [257] = {.lex_state = 13, .external_lex_state = 3}, - [258] = {.lex_state = 13, .external_lex_state = 3}, - [259] = {.lex_state = 13, .external_lex_state = 3}, - [260] = {.lex_state = 13, .external_lex_state = 3}, - [261] = {.lex_state = 13, .external_lex_state = 3}, - [262] = {.lex_state = 13, .external_lex_state = 3}, - [263] = {.lex_state = 13, .external_lex_state = 3}, - [264] = {.lex_state = 13, .external_lex_state = 3}, - [265] = {.lex_state = 13, .external_lex_state = 3}, - [266] = {.lex_state = 13, .external_lex_state = 3}, - [267] = {.lex_state = 13, .external_lex_state = 3}, - [268] = {.lex_state = 13, .external_lex_state = 3}, - [269] = {.lex_state = 13, .external_lex_state = 3}, - [270] = {.lex_state = 13, .external_lex_state = 6}, - [271] = {.lex_state = 13, .external_lex_state = 5}, - [272] = {.lex_state = 13, .external_lex_state = 3}, - [273] = {.lex_state = 13, .external_lex_state = 3}, - [274] = {.lex_state = 13, .external_lex_state = 3}, - [275] = {.lex_state = 13, .external_lex_state = 3}, - [276] = {.lex_state = 13, .external_lex_state = 3}, - [277] = {.lex_state = 13, .external_lex_state = 4}, - [278] = {.lex_state = 13, .external_lex_state = 4}, - [279] = {.lex_state = 13, .external_lex_state = 4}, - [280] = {.lex_state = 13, .external_lex_state = 3}, - [281] = {.lex_state = 13, .external_lex_state = 2}, - [282] = {.lex_state = 13, .external_lex_state = 5}, - [283] = {.lex_state = 13, .external_lex_state = 5}, - [284] = {.lex_state = 13, .external_lex_state = 5}, - [285] = {.lex_state = 13, .external_lex_state = 5}, - [286] = {.lex_state = 13, .external_lex_state = 4}, - [287] = {.lex_state = 13, .external_lex_state = 5}, - [288] = {.lex_state = 13, .external_lex_state = 5}, - [289] = {.lex_state = 13, .external_lex_state = 3}, - [290] = {.lex_state = 13, .external_lex_state = 3}, - [291] = {.lex_state = 13, .external_lex_state = 3}, - [292] = {.lex_state = 13, .external_lex_state = 3}, - [293] = {.lex_state = 13, .external_lex_state = 3}, - [294] = {.lex_state = 13, .external_lex_state = 4}, - [295] = {.lex_state = 13, .external_lex_state = 3}, - [296] = {.lex_state = 13, .external_lex_state = 3}, - [297] = {.lex_state = 13, .external_lex_state = 4}, - [298] = {.lex_state = 13, .external_lex_state = 2}, - [299] = {.lex_state = 13, .external_lex_state = 3}, - [300] = {.lex_state = 13, .external_lex_state = 6}, - [301] = {.lex_state = 13, .external_lex_state = 3}, - [302] = {.lex_state = 13, .external_lex_state = 3}, - [303] = {.lex_state = 13, .external_lex_state = 3}, - [304] = {.lex_state = 13, .external_lex_state = 4}, - [305] = {.lex_state = 13, .external_lex_state = 3}, - [306] = {.lex_state = 13, .external_lex_state = 4}, - [307] = {.lex_state = 13, .external_lex_state = 5}, - [308] = {.lex_state = 13, .external_lex_state = 3}, - [309] = {.lex_state = 13, .external_lex_state = 5}, - [310] = {.lex_state = 13, .external_lex_state = 3}, - [311] = {.lex_state = 13, .external_lex_state = 6}, - [312] = {.lex_state = 13, .external_lex_state = 3}, - [313] = {.lex_state = 13, .external_lex_state = 4}, - [314] = {.lex_state = 13, .external_lex_state = 4}, - [315] = {.lex_state = 13, .external_lex_state = 3}, - [316] = {.lex_state = 13, .external_lex_state = 3}, - [317] = {.lex_state = 13, .external_lex_state = 3}, - [318] = {.lex_state = 13, .external_lex_state = 4}, - [319] = {.lex_state = 13, .external_lex_state = 2}, - [320] = {.lex_state = 13, .external_lex_state = 2}, - [321] = {.lex_state = 13, .external_lex_state = 2}, - [322] = {.lex_state = 13, .external_lex_state = 2}, - [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 13, .external_lex_state = 2}, - [325] = {.lex_state = 13, .external_lex_state = 2}, - [326] = {.lex_state = 13, .external_lex_state = 2}, - [327] = {.lex_state = 13, .external_lex_state = 2}, - [328] = {.lex_state = 13, .external_lex_state = 2}, - [329] = {.lex_state = 13, .external_lex_state = 2}, - [330] = {.lex_state = 13, .external_lex_state = 2}, - [331] = {.lex_state = 13, .external_lex_state = 2}, - [332] = {.lex_state = 13, .external_lex_state = 2}, - [333] = {.lex_state = 13, .external_lex_state = 2}, - [334] = {.lex_state = 13, .external_lex_state = 2}, - [335] = {.lex_state = 13, .external_lex_state = 2}, - [336] = {.lex_state = 13, .external_lex_state = 2}, - [337] = {.lex_state = 13, .external_lex_state = 2}, - [338] = {.lex_state = 13, .external_lex_state = 2}, - [339] = {.lex_state = 13, .external_lex_state = 2}, - [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 13, .external_lex_state = 2}, - [342] = {.lex_state = 13, .external_lex_state = 2}, - [343] = {.lex_state = 13, .external_lex_state = 2}, - [344] = {.lex_state = 13, .external_lex_state = 2}, - [345] = {.lex_state = 13, .external_lex_state = 2}, - [346] = {.lex_state = 13, .external_lex_state = 2}, - [347] = {.lex_state = 13, .external_lex_state = 2}, - [348] = {.lex_state = 13, .external_lex_state = 2}, - [349] = {.lex_state = 13, .external_lex_state = 6}, - [350] = {.lex_state = 13, .external_lex_state = 6}, - [351] = {.lex_state = 13, .external_lex_state = 2}, - [352] = {.lex_state = 13, .external_lex_state = 2}, - [353] = {.lex_state = 13, .external_lex_state = 6}, - [354] = {.lex_state = 13, .external_lex_state = 6}, - [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 13, .external_lex_state = 2}, - [357] = {.lex_state = 13, .external_lex_state = 6}, - [358] = {.lex_state = 13, .external_lex_state = 6}, - [359] = {.lex_state = 13, .external_lex_state = 6}, - [360] = {.lex_state = 13, .external_lex_state = 6}, - [361] = {.lex_state = 13, .external_lex_state = 6}, - [362] = {.lex_state = 13, .external_lex_state = 6}, - [363] = {.lex_state = 13, .external_lex_state = 6}, - [364] = {.lex_state = 13, .external_lex_state = 6}, - [365] = {.lex_state = 13, .external_lex_state = 6}, - [366] = {.lex_state = 13, .external_lex_state = 6}, - [367] = {.lex_state = 13, .external_lex_state = 6}, - [368] = {.lex_state = 13, .external_lex_state = 6}, - [369] = {.lex_state = 13, .external_lex_state = 6}, - [370] = {.lex_state = 13, .external_lex_state = 6}, - [371] = {.lex_state = 13, .external_lex_state = 2}, - [372] = {.lex_state = 13, .external_lex_state = 6}, - [373] = {.lex_state = 13, .external_lex_state = 2}, - [374] = {.lex_state = 13, .external_lex_state = 6}, - [375] = {.lex_state = 13, .external_lex_state = 6}, - [376] = {.lex_state = 13, .external_lex_state = 6}, - [377] = {.lex_state = 13, .external_lex_state = 6}, - [378] = {.lex_state = 13, .external_lex_state = 6}, - [379] = {.lex_state = 13, .external_lex_state = 6}, - [380] = {.lex_state = 13, .external_lex_state = 6}, - [381] = {.lex_state = 13, .external_lex_state = 6}, - [382] = {.lex_state = 13, .external_lex_state = 6}, - [383] = {.lex_state = 13, .external_lex_state = 6}, - [384] = {.lex_state = 13, .external_lex_state = 6}, - [385] = {.lex_state = 13, .external_lex_state = 6}, - [386] = {.lex_state = 13, .external_lex_state = 6}, - [387] = {.lex_state = 13, .external_lex_state = 6}, - [388] = {.lex_state = 13, .external_lex_state = 2}, - [389] = {.lex_state = 13, .external_lex_state = 2}, - [390] = {.lex_state = 13, .external_lex_state = 2}, - [391] = {.lex_state = 13, .external_lex_state = 6}, - [392] = {.lex_state = 13, .external_lex_state = 6}, - [393] = {.lex_state = 13, .external_lex_state = 6}, - [394] = {.lex_state = 13, .external_lex_state = 2}, - [395] = {.lex_state = 13, .external_lex_state = 2}, - [396] = {.lex_state = 13, .external_lex_state = 6}, - [397] = {.lex_state = 13, .external_lex_state = 4}, - [398] = {.lex_state = 13, .external_lex_state = 6}, - [399] = {.lex_state = 13, .external_lex_state = 6}, - [400] = {.lex_state = 13, .external_lex_state = 6}, - [401] = {.lex_state = 13, .external_lex_state = 6}, - [402] = {.lex_state = 13, .external_lex_state = 6}, - [403] = {.lex_state = 13, .external_lex_state = 6}, - [404] = {.lex_state = 13, .external_lex_state = 6}, - [405] = {.lex_state = 13, .external_lex_state = 6}, - [406] = {.lex_state = 13, .external_lex_state = 4}, - [407] = {.lex_state = 13, .external_lex_state = 6}, - [408] = {.lex_state = 13, .external_lex_state = 6}, - [409] = {.lex_state = 13, .external_lex_state = 2}, - [410] = {.lex_state = 13, .external_lex_state = 6}, - [411] = {.lex_state = 13, .external_lex_state = 6}, - [412] = {.lex_state = 13, .external_lex_state = 6}, - [413] = {.lex_state = 13, .external_lex_state = 4}, - [414] = {.lex_state = 13, .external_lex_state = 6}, - [415] = {.lex_state = 13, .external_lex_state = 6}, - [416] = {.lex_state = 13, .external_lex_state = 6}, - [417] = {.lex_state = 13, .external_lex_state = 6}, - [418] = {.lex_state = 13, .external_lex_state = 6}, - [419] = {.lex_state = 13, .external_lex_state = 6}, - [420] = {.lex_state = 13, .external_lex_state = 6}, - [421] = {.lex_state = 13, .external_lex_state = 6}, - [422] = {.lex_state = 13, .external_lex_state = 6}, - [423] = {.lex_state = 13, .external_lex_state = 6}, - [424] = {.lex_state = 13, .external_lex_state = 6}, - [425] = {.lex_state = 13, .external_lex_state = 6}, - [426] = {.lex_state = 13, .external_lex_state = 6}, - [427] = {.lex_state = 13, .external_lex_state = 6}, - [428] = {.lex_state = 13, .external_lex_state = 6}, - [429] = {.lex_state = 13, .external_lex_state = 6}, - [430] = {.lex_state = 13, .external_lex_state = 6}, - [431] = {.lex_state = 13, .external_lex_state = 6}, - [432] = {.lex_state = 13, .external_lex_state = 6}, - [433] = {.lex_state = 13, .external_lex_state = 6}, - [434] = {.lex_state = 13, .external_lex_state = 6}, - [435] = {.lex_state = 13, .external_lex_state = 6}, - [436] = {.lex_state = 13, .external_lex_state = 6}, - [437] = {.lex_state = 13, .external_lex_state = 6}, - [438] = {.lex_state = 13, .external_lex_state = 4}, - [439] = {.lex_state = 13, .external_lex_state = 4}, - [440] = {.lex_state = 13, .external_lex_state = 2}, - [441] = {.lex_state = 13, .external_lex_state = 2}, - [442] = {.lex_state = 13, .external_lex_state = 2}, - [443] = {.lex_state = 13, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 13, .external_lex_state = 2}, - [446] = {.lex_state = 13, .external_lex_state = 2}, - [447] = {.lex_state = 13, .external_lex_state = 2}, - [448] = {.lex_state = 13, .external_lex_state = 2}, - [449] = {.lex_state = 13, .external_lex_state = 2}, - [450] = {.lex_state = 13, .external_lex_state = 2}, - [451] = {.lex_state = 13, .external_lex_state = 2}, - [452] = {.lex_state = 13, .external_lex_state = 2}, - [453] = {.lex_state = 13, .external_lex_state = 2}, - [454] = {.lex_state = 13, .external_lex_state = 2}, - [455] = {.lex_state = 13, .external_lex_state = 2}, - [456] = {.lex_state = 13, .external_lex_state = 2}, - [457] = {.lex_state = 13, .external_lex_state = 2}, - [458] = {.lex_state = 13, .external_lex_state = 2}, - [459] = {.lex_state = 13, .external_lex_state = 2}, - [460] = {.lex_state = 13, .external_lex_state = 2}, - [461] = {.lex_state = 13, .external_lex_state = 2}, - [462] = {.lex_state = 13, .external_lex_state = 2}, - [463] = {.lex_state = 13, .external_lex_state = 2}, - [464] = {.lex_state = 13, .external_lex_state = 6}, - [465] = {.lex_state = 13, .external_lex_state = 2}, - [466] = {.lex_state = 13, .external_lex_state = 2}, - [467] = {.lex_state = 13, .external_lex_state = 2}, - [468] = {.lex_state = 13, .external_lex_state = 2}, - [469] = {.lex_state = 13, .external_lex_state = 2}, - [470] = {.lex_state = 13, .external_lex_state = 2}, - [471] = {.lex_state = 13, .external_lex_state = 2}, - [472] = {.lex_state = 13, .external_lex_state = 2}, - [473] = {.lex_state = 13, .external_lex_state = 14}, - [474] = {.lex_state = 13, .external_lex_state = 14}, - [475] = {.lex_state = 13, .external_lex_state = 14}, - [476] = {.lex_state = 13, .external_lex_state = 14}, - [477] = {.lex_state = 13, .external_lex_state = 14}, - [478] = {.lex_state = 13, .external_lex_state = 14}, - [479] = {.lex_state = 13, .external_lex_state = 14}, - [480] = {.lex_state = 1, .external_lex_state = 14}, - [481] = {.lex_state = 13, .external_lex_state = 14}, - [482] = {.lex_state = 13, .external_lex_state = 14}, - [483] = {.lex_state = 13, .external_lex_state = 14}, - [484] = {.lex_state = 13, .external_lex_state = 14}, - [485] = {.lex_state = 13, .external_lex_state = 14}, - [486] = {.lex_state = 13, .external_lex_state = 14}, - [487] = {.lex_state = 13, .external_lex_state = 14}, - [488] = {.lex_state = 13, .external_lex_state = 14}, - [489] = {.lex_state = 13, .external_lex_state = 14}, - [490] = {.lex_state = 13, .external_lex_state = 14}, - [491] = {.lex_state = 13, .external_lex_state = 14}, - [492] = {.lex_state = 13, .external_lex_state = 15}, - [493] = {.lex_state = 13, .external_lex_state = 15}, - [494] = {.lex_state = 13, .external_lex_state = 15}, - [495] = {.lex_state = 13, .external_lex_state = 15}, - [496] = {.lex_state = 13, .external_lex_state = 15}, - [497] = {.lex_state = 13, .external_lex_state = 15}, - [498] = {.lex_state = 13, .external_lex_state = 15}, - [499] = {.lex_state = 13, .external_lex_state = 15}, - [500] = {.lex_state = 13, .external_lex_state = 16}, - [501] = {.lex_state = 13, .external_lex_state = 15}, - [502] = {.lex_state = 13, .external_lex_state = 15}, - [503] = {.lex_state = 13, .external_lex_state = 15}, - [504] = {.lex_state = 13, .external_lex_state = 16}, - [505] = {.lex_state = 13, .external_lex_state = 15}, - [506] = {.lex_state = 3, .external_lex_state = 17}, - [507] = {.lex_state = 13, .external_lex_state = 15}, - [508] = {.lex_state = 13, .external_lex_state = 16}, + [1] = {.lex_state = 18, .external_lex_state = 2}, + [2] = {.lex_state = 18, .external_lex_state = 3}, + [3] = {.lex_state = 18, .external_lex_state = 4}, + [4] = {.lex_state = 18, .external_lex_state = 4}, + [5] = {.lex_state = 18, .external_lex_state = 4}, + [6] = {.lex_state = 18, .external_lex_state = 4}, + [7] = {.lex_state = 18, .external_lex_state = 3}, + [8] = {.lex_state = 18, .external_lex_state = 3}, + [9] = {.lex_state = 18, .external_lex_state = 3}, + [10] = {.lex_state = 18, .external_lex_state = 3}, + [11] = {.lex_state = 18, .external_lex_state = 3}, + [12] = {.lex_state = 18, .external_lex_state = 5}, + [13] = {.lex_state = 18, .external_lex_state = 3}, + [14] = {.lex_state = 18, .external_lex_state = 3}, + [15] = {.lex_state = 18, .external_lex_state = 5}, + [16] = {.lex_state = 18, .external_lex_state = 3}, + [17] = {.lex_state = 18, .external_lex_state = 5}, + [18] = {.lex_state = 18, .external_lex_state = 4}, + [19] = {.lex_state = 18, .external_lex_state = 3}, + [20] = {.lex_state = 18, .external_lex_state = 3}, + [21] = {.lex_state = 18, .external_lex_state = 3}, + [22] = {.lex_state = 18, .external_lex_state = 3}, + [23] = {.lex_state = 18, .external_lex_state = 4}, + [24] = {.lex_state = 18, .external_lex_state = 4}, + [25] = {.lex_state = 18, .external_lex_state = 4}, + [26] = {.lex_state = 18, .external_lex_state = 4}, + [27] = {.lex_state = 18, .external_lex_state = 4}, + [28] = {.lex_state = 18, .external_lex_state = 4}, + [29] = {.lex_state = 18, .external_lex_state = 4}, + [30] = {.lex_state = 18, .external_lex_state = 4}, + [31] = {.lex_state = 18, .external_lex_state = 4}, + [32] = {.lex_state = 18, .external_lex_state = 4}, + [33] = {.lex_state = 18, .external_lex_state = 4}, + [34] = {.lex_state = 18, .external_lex_state = 4}, + [35] = {.lex_state = 18, .external_lex_state = 4}, + [36] = {.lex_state = 18, .external_lex_state = 6}, + [37] = {.lex_state = 18, .external_lex_state = 2}, + [38] = {.lex_state = 18, .external_lex_state = 6}, + [39] = {.lex_state = 18, .external_lex_state = 2}, + [40] = {.lex_state = 18, .external_lex_state = 2}, + [41] = {.lex_state = 18, .external_lex_state = 2}, + [42] = {.lex_state = 18, .external_lex_state = 2}, + [43] = {.lex_state = 18, .external_lex_state = 2}, + [44] = {.lex_state = 18, .external_lex_state = 6}, + [45] = {.lex_state = 18, .external_lex_state = 6}, + [46] = {.lex_state = 18, .external_lex_state = 2}, + [47] = {.lex_state = 18, .external_lex_state = 6}, + [48] = {.lex_state = 18, .external_lex_state = 6}, + [49] = {.lex_state = 18, .external_lex_state = 6}, + [50] = {.lex_state = 18, .external_lex_state = 2}, + [51] = {.lex_state = 18, .external_lex_state = 6}, + [52] = {.lex_state = 18, .external_lex_state = 6}, + [53] = {.lex_state = 18, .external_lex_state = 6}, + [54] = {.lex_state = 18, .external_lex_state = 6}, + [55] = {.lex_state = 18, .external_lex_state = 2}, + [56] = {.lex_state = 18, .external_lex_state = 2}, + [57] = {.lex_state = 18, .external_lex_state = 2}, + [58] = {.lex_state = 18, .external_lex_state = 2}, + [59] = {.lex_state = 18, .external_lex_state = 2}, + [60] = {.lex_state = 18, .external_lex_state = 2}, + [61] = {.lex_state = 18, .external_lex_state = 2}, + [62] = {.lex_state = 18, .external_lex_state = 2}, + [63] = {.lex_state = 18, .external_lex_state = 2}, + [64] = {.lex_state = 18, .external_lex_state = 2}, + [65] = {.lex_state = 18, .external_lex_state = 2}, + [66] = {.lex_state = 18, .external_lex_state = 2}, + [67] = {.lex_state = 18, .external_lex_state = 2}, + [68] = {.lex_state = 18, .external_lex_state = 3}, + [69] = {.lex_state = 18, .external_lex_state = 3}, + [70] = {.lex_state = 18, .external_lex_state = 3}, + [71] = {.lex_state = 18, .external_lex_state = 2}, + [72] = {.lex_state = 18, .external_lex_state = 6}, + [73] = {.lex_state = 18, .external_lex_state = 2}, + [74] = {.lex_state = 18, .external_lex_state = 6}, + [75] = {.lex_state = 18, .external_lex_state = 2}, + [76] = {.lex_state = 18, .external_lex_state = 6}, + [77] = {.lex_state = 18, .external_lex_state = 3}, + [78] = {.lex_state = 18, .external_lex_state = 3}, + [79] = {.lex_state = 18, .external_lex_state = 3}, + [80] = {.lex_state = 18, .external_lex_state = 2}, + [81] = {.lex_state = 18, .external_lex_state = 6}, + [82] = {.lex_state = 18, .external_lex_state = 6}, + [83] = {.lex_state = 18, .external_lex_state = 2}, + [84] = {.lex_state = 18, .external_lex_state = 6}, + [85] = {.lex_state = 18, .external_lex_state = 2}, + [86] = {.lex_state = 18, .external_lex_state = 3}, + [87] = {.lex_state = 18, .external_lex_state = 3}, + [88] = {.lex_state = 18, .external_lex_state = 3}, + [89] = {.lex_state = 18, .external_lex_state = 2}, + [90] = {.lex_state = 18, .external_lex_state = 6}, + [91] = {.lex_state = 18, .external_lex_state = 6}, + [92] = {.lex_state = 18, .external_lex_state = 6}, + [93] = {.lex_state = 18, .external_lex_state = 2}, + [94] = {.lex_state = 18, .external_lex_state = 2}, + [95] = {.lex_state = 18, .external_lex_state = 3}, + [96] = {.lex_state = 18, .external_lex_state = 3}, + [97] = {.lex_state = 18, .external_lex_state = 3}, + [98] = {.lex_state = 18, .external_lex_state = 6}, + [99] = {.lex_state = 18, .external_lex_state = 2}, + [100] = {.lex_state = 18, .external_lex_state = 6}, + [101] = {.lex_state = 18, .external_lex_state = 2}, + [102] = {.lex_state = 18, .external_lex_state = 6}, + [103] = {.lex_state = 18, .external_lex_state = 2}, + [104] = {.lex_state = 18, .external_lex_state = 3}, + [105] = {.lex_state = 18, .external_lex_state = 3}, + [106] = {.lex_state = 18, .external_lex_state = 3}, + [107] = {.lex_state = 18, .external_lex_state = 6}, + [108] = {.lex_state = 18, .external_lex_state = 2}, + [109] = {.lex_state = 18, .external_lex_state = 6}, + [110] = {.lex_state = 18, .external_lex_state = 6}, + [111] = {.lex_state = 18, .external_lex_state = 2}, + [112] = {.lex_state = 18, .external_lex_state = 2}, + [113] = {.lex_state = 18, .external_lex_state = 3}, + [114] = {.lex_state = 18, .external_lex_state = 3}, + [115] = {.lex_state = 18, .external_lex_state = 3}, + [116] = {.lex_state = 18, .external_lex_state = 6}, + [117] = {.lex_state = 18, .external_lex_state = 2}, + [118] = {.lex_state = 18, .external_lex_state = 2}, + [119] = {.lex_state = 18, .external_lex_state = 6}, + [120] = {.lex_state = 18, .external_lex_state = 6}, + [121] = {.lex_state = 18, .external_lex_state = 2}, + [122] = {.lex_state = 18, .external_lex_state = 3}, + [123] = {.lex_state = 18, .external_lex_state = 3}, + [124] = {.lex_state = 18, .external_lex_state = 3}, + [125] = {.lex_state = 18, .external_lex_state = 3}, + [126] = {.lex_state = 18, .external_lex_state = 3}, + [127] = {.lex_state = 18, .external_lex_state = 3}, + [128] = {.lex_state = 18, .external_lex_state = 3}, + [129] = {.lex_state = 18, .external_lex_state = 3}, + [130] = {.lex_state = 18, .external_lex_state = 3}, + [131] = {.lex_state = 18, .external_lex_state = 3}, + [132] = {.lex_state = 18, .external_lex_state = 3}, + [133] = {.lex_state = 18, .external_lex_state = 7}, + [134] = {.lex_state = 18, .external_lex_state = 3}, + [135] = {.lex_state = 18, .external_lex_state = 3}, + [136] = {.lex_state = 18, .external_lex_state = 3}, + [137] = {.lex_state = 18, .external_lex_state = 3}, + [138] = {.lex_state = 18, .external_lex_state = 6}, + [139] = {.lex_state = 18, .external_lex_state = 2}, + [140] = {.lex_state = 18, .external_lex_state = 6}, + [141] = {.lex_state = 18, .external_lex_state = 2}, + [142] = {.lex_state = 18, .external_lex_state = 2}, + [143] = {.lex_state = 18, .external_lex_state = 6}, + [144] = {.lex_state = 18, .external_lex_state = 2}, + [145] = {.lex_state = 18, .external_lex_state = 8}, + [146] = {.lex_state = 18, .external_lex_state = 9}, + [147] = {.lex_state = 18, .external_lex_state = 10}, + [148] = {.lex_state = 18, .external_lex_state = 11}, + [149] = {.lex_state = 18, .external_lex_state = 6}, + [150] = {.lex_state = 18, .external_lex_state = 9}, + [151] = {.lex_state = 18, .external_lex_state = 2}, + [152] = {.lex_state = 18, .external_lex_state = 2}, + [153] = {.lex_state = 18, .external_lex_state = 6}, + [154] = {.lex_state = 18, .external_lex_state = 6}, + [155] = {.lex_state = 18, .external_lex_state = 6}, + [156] = {.lex_state = 18, .external_lex_state = 2}, + [157] = {.lex_state = 18, .external_lex_state = 2}, + [158] = {.lex_state = 18, .external_lex_state = 2}, + [159] = {.lex_state = 18, .external_lex_state = 2}, + [160] = {.lex_state = 18, .external_lex_state = 2}, + [161] = {.lex_state = 18, .external_lex_state = 2}, + [162] = {.lex_state = 18, .external_lex_state = 6}, + [163] = {.lex_state = 18, .external_lex_state = 6}, + [164] = {.lex_state = 18, .external_lex_state = 9}, + [165] = {.lex_state = 18, .external_lex_state = 6}, + [166] = {.lex_state = 18, .external_lex_state = 6}, + [167] = {.lex_state = 18, .external_lex_state = 6}, + [168] = {.lex_state = 18, .external_lex_state = 6}, + [169] = {.lex_state = 18, .external_lex_state = 6}, + [170] = {.lex_state = 18, .external_lex_state = 6}, + [171] = {.lex_state = 18, .external_lex_state = 2}, + [172] = {.lex_state = 18, .external_lex_state = 2}, + [173] = {.lex_state = 18, .external_lex_state = 2}, + [174] = {.lex_state = 18, .external_lex_state = 11}, + [175] = {.lex_state = 18, .external_lex_state = 12}, + [176] = {.lex_state = 18, .external_lex_state = 11}, + [177] = {.lex_state = 18, .external_lex_state = 11}, + [178] = {.lex_state = 18, .external_lex_state = 11}, + [179] = {.lex_state = 18, .external_lex_state = 11}, + [180] = {.lex_state = 18, .external_lex_state = 11}, + [181] = {.lex_state = 18, .external_lex_state = 11}, + [182] = {.lex_state = 18, .external_lex_state = 11}, + [183] = {.lex_state = 18, .external_lex_state = 11}, + [184] = {.lex_state = 18, .external_lex_state = 11}, + [185] = {.lex_state = 18, .external_lex_state = 11}, + [186] = {.lex_state = 18, .external_lex_state = 11}, + [187] = {.lex_state = 18, .external_lex_state = 11}, + [188] = {.lex_state = 18, .external_lex_state = 11}, + [189] = {.lex_state = 18, .external_lex_state = 11}, + [190] = {.lex_state = 18, .external_lex_state = 3}, + [191] = {.lex_state = 18, .external_lex_state = 12}, + [192] = {.lex_state = 18, .external_lex_state = 5}, + [193] = {.lex_state = 18, .external_lex_state = 13}, + [194] = {.lex_state = 18, .external_lex_state = 13}, + [195] = {.lex_state = 18, .external_lex_state = 3}, + [196] = {.lex_state = 18, .external_lex_state = 3}, + [197] = {.lex_state = 18, .external_lex_state = 12}, + [198] = {.lex_state = 18, .external_lex_state = 11}, + [199] = {.lex_state = 18, .external_lex_state = 11}, + [200] = {.lex_state = 18, .external_lex_state = 13}, + [201] = {.lex_state = 18, .external_lex_state = 4}, + [202] = {.lex_state = 18, .external_lex_state = 6}, + [203] = {.lex_state = 18, .external_lex_state = 3}, + [204] = {.lex_state = 18, .external_lex_state = 4}, + [205] = {.lex_state = 18, .external_lex_state = 4}, + [206] = {.lex_state = 18, .external_lex_state = 4}, + [207] = {.lex_state = 18, .external_lex_state = 4}, + [208] = {.lex_state = 18, .external_lex_state = 4}, + [209] = {.lex_state = 18, .external_lex_state = 2}, + [210] = {.lex_state = 18, .external_lex_state = 3}, + [211] = {.lex_state = 18, .external_lex_state = 3}, + [212] = {.lex_state = 18, .external_lex_state = 3}, + [213] = {.lex_state = 18, .external_lex_state = 5}, + [214] = {.lex_state = 18, .external_lex_state = 5}, + [215] = {.lex_state = 18, .external_lex_state = 5}, + [216] = {.lex_state = 18, .external_lex_state = 5}, + [217] = {.lex_state = 18, .external_lex_state = 3}, + [218] = {.lex_state = 18, .external_lex_state = 3}, + [219] = {.lex_state = 18, .external_lex_state = 3}, + [220] = {.lex_state = 18, .external_lex_state = 4}, + [221] = {.lex_state = 18, .external_lex_state = 3}, + [222] = {.lex_state = 18, .external_lex_state = 3}, + [223] = {.lex_state = 18, .external_lex_state = 3}, + [224] = {.lex_state = 18, .external_lex_state = 3}, + [225] = {.lex_state = 18, .external_lex_state = 3}, + [226] = {.lex_state = 18, .external_lex_state = 3}, + [227] = {.lex_state = 18, .external_lex_state = 3}, + [228] = {.lex_state = 18, .external_lex_state = 3}, + [229] = {.lex_state = 18, .external_lex_state = 5}, + [230] = {.lex_state = 18, .external_lex_state = 3}, + [231] = {.lex_state = 18, .external_lex_state = 4}, + [232] = {.lex_state = 18, .external_lex_state = 3}, + [233] = {.lex_state = 18, .external_lex_state = 3}, + [234] = {.lex_state = 18, .external_lex_state = 3}, + [235] = {.lex_state = 18, .external_lex_state = 5}, + [236] = {.lex_state = 18, .external_lex_state = 3}, + [237] = {.lex_state = 18, .external_lex_state = 3}, + [238] = {.lex_state = 18, .external_lex_state = 3}, + [239] = {.lex_state = 18, .external_lex_state = 5}, + [240] = {.lex_state = 18, .external_lex_state = 3}, + [241] = {.lex_state = 18, .external_lex_state = 3}, + [242] = {.lex_state = 18, .external_lex_state = 3}, + [243] = {.lex_state = 18, .external_lex_state = 3}, + [244] = {.lex_state = 18, .external_lex_state = 3}, + [245] = {.lex_state = 18, .external_lex_state = 3}, + [246] = {.lex_state = 18, .external_lex_state = 3}, + [247] = {.lex_state = 18, .external_lex_state = 3}, + [248] = {.lex_state = 18, .external_lex_state = 3}, + [249] = {.lex_state = 18, .external_lex_state = 3}, + [250] = {.lex_state = 18, .external_lex_state = 5}, + [251] = {.lex_state = 18, .external_lex_state = 3}, + [252] = {.lex_state = 18, .external_lex_state = 3}, + [253] = {.lex_state = 18, .external_lex_state = 3}, + [254] = {.lex_state = 18, .external_lex_state = 3}, + [255] = {.lex_state = 18, .external_lex_state = 3}, + [256] = {.lex_state = 18, .external_lex_state = 3}, + [257] = {.lex_state = 18, .external_lex_state = 3}, + [258] = {.lex_state = 18, .external_lex_state = 3}, + [259] = {.lex_state = 18, .external_lex_state = 3}, + [260] = {.lex_state = 18, .external_lex_state = 3}, + [261] = {.lex_state = 18, .external_lex_state = 3}, + [262] = {.lex_state = 18, .external_lex_state = 3}, + [263] = {.lex_state = 18, .external_lex_state = 3}, + [264] = {.lex_state = 18, .external_lex_state = 3}, + [265] = {.lex_state = 18, .external_lex_state = 3}, + [266] = {.lex_state = 18, .external_lex_state = 3}, + [267] = {.lex_state = 18, .external_lex_state = 3}, + [268] = {.lex_state = 18, .external_lex_state = 3}, + [269] = {.lex_state = 18, .external_lex_state = 3}, + [270] = {.lex_state = 18, .external_lex_state = 6}, + [271] = {.lex_state = 18, .external_lex_state = 5}, + [272] = {.lex_state = 18, .external_lex_state = 3}, + [273] = {.lex_state = 18, .external_lex_state = 3}, + [274] = {.lex_state = 18, .external_lex_state = 3}, + [275] = {.lex_state = 18, .external_lex_state = 3}, + [276] = {.lex_state = 18, .external_lex_state = 3}, + [277] = {.lex_state = 18, .external_lex_state = 4}, + [278] = {.lex_state = 18, .external_lex_state = 4}, + [279] = {.lex_state = 18, .external_lex_state = 4}, + [280] = {.lex_state = 18, .external_lex_state = 3}, + [281] = {.lex_state = 18, .external_lex_state = 2}, + [282] = {.lex_state = 18, .external_lex_state = 5}, + [283] = {.lex_state = 18, .external_lex_state = 5}, + [284] = {.lex_state = 18, .external_lex_state = 5}, + [285] = {.lex_state = 18, .external_lex_state = 5}, + [286] = {.lex_state = 18, .external_lex_state = 4}, + [287] = {.lex_state = 18, .external_lex_state = 5}, + [288] = {.lex_state = 18, .external_lex_state = 5}, + [289] = {.lex_state = 18, .external_lex_state = 3}, + [290] = {.lex_state = 18, .external_lex_state = 3}, + [291] = {.lex_state = 18, .external_lex_state = 3}, + [292] = {.lex_state = 18, .external_lex_state = 3}, + [293] = {.lex_state = 18, .external_lex_state = 3}, + [294] = {.lex_state = 18, .external_lex_state = 4}, + [295] = {.lex_state = 18, .external_lex_state = 3}, + [296] = {.lex_state = 18, .external_lex_state = 3}, + [297] = {.lex_state = 18, .external_lex_state = 4}, + [298] = {.lex_state = 18, .external_lex_state = 2}, + [299] = {.lex_state = 18, .external_lex_state = 3}, + [300] = {.lex_state = 18, .external_lex_state = 6}, + [301] = {.lex_state = 18, .external_lex_state = 3}, + [302] = {.lex_state = 18, .external_lex_state = 3}, + [303] = {.lex_state = 18, .external_lex_state = 3}, + [304] = {.lex_state = 18, .external_lex_state = 4}, + [305] = {.lex_state = 18, .external_lex_state = 3}, + [306] = {.lex_state = 18, .external_lex_state = 4}, + [307] = {.lex_state = 18, .external_lex_state = 5}, + [308] = {.lex_state = 18, .external_lex_state = 3}, + [309] = {.lex_state = 18, .external_lex_state = 5}, + [310] = {.lex_state = 18, .external_lex_state = 3}, + [311] = {.lex_state = 18, .external_lex_state = 6}, + [312] = {.lex_state = 18, .external_lex_state = 3}, + [313] = {.lex_state = 18, .external_lex_state = 4}, + [314] = {.lex_state = 18, .external_lex_state = 4}, + [315] = {.lex_state = 18, .external_lex_state = 3}, + [316] = {.lex_state = 18, .external_lex_state = 3}, + [317] = {.lex_state = 18, .external_lex_state = 3}, + [318] = {.lex_state = 18, .external_lex_state = 4}, + [319] = {.lex_state = 18, .external_lex_state = 2}, + [320] = {.lex_state = 18, .external_lex_state = 2}, + [321] = {.lex_state = 18, .external_lex_state = 2}, + [322] = {.lex_state = 18, .external_lex_state = 2}, + [323] = {.lex_state = 18, .external_lex_state = 2}, + [324] = {.lex_state = 18, .external_lex_state = 2}, + [325] = {.lex_state = 18, .external_lex_state = 2}, + [326] = {.lex_state = 18, .external_lex_state = 2}, + [327] = {.lex_state = 18, .external_lex_state = 2}, + [328] = {.lex_state = 18, .external_lex_state = 2}, + [329] = {.lex_state = 18, .external_lex_state = 2}, + [330] = {.lex_state = 18, .external_lex_state = 2}, + [331] = {.lex_state = 18, .external_lex_state = 2}, + [332] = {.lex_state = 18, .external_lex_state = 2}, + [333] = {.lex_state = 18, .external_lex_state = 2}, + [334] = {.lex_state = 18, .external_lex_state = 2}, + [335] = {.lex_state = 18, .external_lex_state = 2}, + [336] = {.lex_state = 18, .external_lex_state = 2}, + [337] = {.lex_state = 18, .external_lex_state = 2}, + [338] = {.lex_state = 18, .external_lex_state = 2}, + [339] = {.lex_state = 18, .external_lex_state = 2}, + [340] = {.lex_state = 18, .external_lex_state = 2}, + [341] = {.lex_state = 18, .external_lex_state = 2}, + [342] = {.lex_state = 18, .external_lex_state = 2}, + [343] = {.lex_state = 18, .external_lex_state = 2}, + [344] = {.lex_state = 18, .external_lex_state = 2}, + [345] = {.lex_state = 18, .external_lex_state = 2}, + [346] = {.lex_state = 18, .external_lex_state = 2}, + [347] = {.lex_state = 18, .external_lex_state = 2}, + [348] = {.lex_state = 18, .external_lex_state = 2}, + [349] = {.lex_state = 18, .external_lex_state = 6}, + [350] = {.lex_state = 18, .external_lex_state = 6}, + [351] = {.lex_state = 18, .external_lex_state = 2}, + [352] = {.lex_state = 18, .external_lex_state = 2}, + [353] = {.lex_state = 18, .external_lex_state = 6}, + [354] = {.lex_state = 18, .external_lex_state = 6}, + [355] = {.lex_state = 18, .external_lex_state = 2}, + [356] = {.lex_state = 18, .external_lex_state = 2}, + [357] = {.lex_state = 18, .external_lex_state = 6}, + [358] = {.lex_state = 18, .external_lex_state = 6}, + [359] = {.lex_state = 18, .external_lex_state = 6}, + [360] = {.lex_state = 18, .external_lex_state = 6}, + [361] = {.lex_state = 18, .external_lex_state = 6}, + [362] = {.lex_state = 18, .external_lex_state = 6}, + [363] = {.lex_state = 18, .external_lex_state = 6}, + [364] = {.lex_state = 18, .external_lex_state = 6}, + [365] = {.lex_state = 18, .external_lex_state = 6}, + [366] = {.lex_state = 18, .external_lex_state = 6}, + [367] = {.lex_state = 18, .external_lex_state = 6}, + [368] = {.lex_state = 18, .external_lex_state = 6}, + [369] = {.lex_state = 18, .external_lex_state = 6}, + [370] = {.lex_state = 18, .external_lex_state = 6}, + [371] = {.lex_state = 18, .external_lex_state = 2}, + [372] = {.lex_state = 18, .external_lex_state = 6}, + [373] = {.lex_state = 18, .external_lex_state = 2}, + [374] = {.lex_state = 18, .external_lex_state = 6}, + [375] = {.lex_state = 18, .external_lex_state = 6}, + [376] = {.lex_state = 18, .external_lex_state = 6}, + [377] = {.lex_state = 18, .external_lex_state = 6}, + [378] = {.lex_state = 18, .external_lex_state = 6}, + [379] = {.lex_state = 18, .external_lex_state = 6}, + [380] = {.lex_state = 18, .external_lex_state = 6}, + [381] = {.lex_state = 18, .external_lex_state = 6}, + [382] = {.lex_state = 18, .external_lex_state = 6}, + [383] = {.lex_state = 18, .external_lex_state = 6}, + [384] = {.lex_state = 18, .external_lex_state = 6}, + [385] = {.lex_state = 18, .external_lex_state = 6}, + [386] = {.lex_state = 18, .external_lex_state = 6}, + [387] = {.lex_state = 18, .external_lex_state = 6}, + [388] = {.lex_state = 18, .external_lex_state = 2}, + [389] = {.lex_state = 18, .external_lex_state = 2}, + [390] = {.lex_state = 18, .external_lex_state = 2}, + [391] = {.lex_state = 18, .external_lex_state = 6}, + [392] = {.lex_state = 18, .external_lex_state = 6}, + [393] = {.lex_state = 18, .external_lex_state = 6}, + [394] = {.lex_state = 18, .external_lex_state = 2}, + [395] = {.lex_state = 18, .external_lex_state = 2}, + [396] = {.lex_state = 18, .external_lex_state = 6}, + [397] = {.lex_state = 18, .external_lex_state = 4}, + [398] = {.lex_state = 18, .external_lex_state = 6}, + [399] = {.lex_state = 18, .external_lex_state = 6}, + [400] = {.lex_state = 18, .external_lex_state = 6}, + [401] = {.lex_state = 18, .external_lex_state = 6}, + [402] = {.lex_state = 18, .external_lex_state = 6}, + [403] = {.lex_state = 18, .external_lex_state = 6}, + [404] = {.lex_state = 18, .external_lex_state = 6}, + [405] = {.lex_state = 18, .external_lex_state = 6}, + [406] = {.lex_state = 18, .external_lex_state = 4}, + [407] = {.lex_state = 18, .external_lex_state = 6}, + [408] = {.lex_state = 18, .external_lex_state = 6}, + [409] = {.lex_state = 18, .external_lex_state = 2}, + [410] = {.lex_state = 18, .external_lex_state = 6}, + [411] = {.lex_state = 18, .external_lex_state = 6}, + [412] = {.lex_state = 18, .external_lex_state = 6}, + [413] = {.lex_state = 18, .external_lex_state = 4}, + [414] = {.lex_state = 18, .external_lex_state = 6}, + [415] = {.lex_state = 18, .external_lex_state = 6}, + [416] = {.lex_state = 18, .external_lex_state = 6}, + [417] = {.lex_state = 18, .external_lex_state = 6}, + [418] = {.lex_state = 18, .external_lex_state = 6}, + [419] = {.lex_state = 18, .external_lex_state = 6}, + [420] = {.lex_state = 18, .external_lex_state = 6}, + [421] = {.lex_state = 18, .external_lex_state = 6}, + [422] = {.lex_state = 18, .external_lex_state = 6}, + [423] = {.lex_state = 18, .external_lex_state = 6}, + [424] = {.lex_state = 18, .external_lex_state = 6}, + [425] = {.lex_state = 18, .external_lex_state = 6}, + [426] = {.lex_state = 18, .external_lex_state = 6}, + [427] = {.lex_state = 18, .external_lex_state = 6}, + [428] = {.lex_state = 18, .external_lex_state = 6}, + [429] = {.lex_state = 18, .external_lex_state = 6}, + [430] = {.lex_state = 18, .external_lex_state = 6}, + [431] = {.lex_state = 18, .external_lex_state = 6}, + [432] = {.lex_state = 18, .external_lex_state = 6}, + [433] = {.lex_state = 18, .external_lex_state = 6}, + [434] = {.lex_state = 18, .external_lex_state = 6}, + [435] = {.lex_state = 18, .external_lex_state = 6}, + [436] = {.lex_state = 18, .external_lex_state = 6}, + [437] = {.lex_state = 18, .external_lex_state = 6}, + [438] = {.lex_state = 18, .external_lex_state = 4}, + [439] = {.lex_state = 18, .external_lex_state = 4}, + [440] = {.lex_state = 18, .external_lex_state = 2}, + [441] = {.lex_state = 18, .external_lex_state = 2}, + [442] = {.lex_state = 18, .external_lex_state = 2}, + [443] = {.lex_state = 18, .external_lex_state = 2}, + [444] = {.lex_state = 18, .external_lex_state = 2}, + [445] = {.lex_state = 18, .external_lex_state = 2}, + [446] = {.lex_state = 18, .external_lex_state = 2}, + [447] = {.lex_state = 18, .external_lex_state = 2}, + [448] = {.lex_state = 18, .external_lex_state = 2}, + [449] = {.lex_state = 18, .external_lex_state = 2}, + [450] = {.lex_state = 18, .external_lex_state = 2}, + [451] = {.lex_state = 18, .external_lex_state = 2}, + [452] = {.lex_state = 18, .external_lex_state = 2}, + [453] = {.lex_state = 18, .external_lex_state = 2}, + [454] = {.lex_state = 18, .external_lex_state = 2}, + [455] = {.lex_state = 18, .external_lex_state = 2}, + [456] = {.lex_state = 18, .external_lex_state = 2}, + [457] = {.lex_state = 18, .external_lex_state = 2}, + [458] = {.lex_state = 18, .external_lex_state = 2}, + [459] = {.lex_state = 18, .external_lex_state = 2}, + [460] = {.lex_state = 18, .external_lex_state = 2}, + [461] = {.lex_state = 18, .external_lex_state = 2}, + [462] = {.lex_state = 18, .external_lex_state = 2}, + [463] = {.lex_state = 18, .external_lex_state = 2}, + [464] = {.lex_state = 18, .external_lex_state = 6}, + [465] = {.lex_state = 18, .external_lex_state = 2}, + [466] = {.lex_state = 18, .external_lex_state = 2}, + [467] = {.lex_state = 18, .external_lex_state = 2}, + [468] = {.lex_state = 18, .external_lex_state = 2}, + [469] = {.lex_state = 18, .external_lex_state = 2}, + [470] = {.lex_state = 18, .external_lex_state = 2}, + [471] = {.lex_state = 18, .external_lex_state = 2}, + [472] = {.lex_state = 18, .external_lex_state = 2}, + [473] = {.lex_state = 18, .external_lex_state = 14}, + [474] = {.lex_state = 18, .external_lex_state = 14}, + [475] = {.lex_state = 18, .external_lex_state = 14}, + [476] = {.lex_state = 18, .external_lex_state = 14}, + [477] = {.lex_state = 18, .external_lex_state = 14}, + [478] = {.lex_state = 18, .external_lex_state = 14}, + [479] = {.lex_state = 1, .external_lex_state = 14}, + [480] = {.lex_state = 18, .external_lex_state = 14}, + [481] = {.lex_state = 18, .external_lex_state = 14}, + [482] = {.lex_state = 18, .external_lex_state = 14}, + [483] = {.lex_state = 18, .external_lex_state = 14}, + [484] = {.lex_state = 18, .external_lex_state = 14}, + [485] = {.lex_state = 18, .external_lex_state = 14}, + [486] = {.lex_state = 18, .external_lex_state = 14}, + [487] = {.lex_state = 18, .external_lex_state = 14}, + [488] = {.lex_state = 18, .external_lex_state = 14}, + [489] = {.lex_state = 18, .external_lex_state = 14}, + [490] = {.lex_state = 18, .external_lex_state = 14}, + [491] = {.lex_state = 18, .external_lex_state = 14}, + [492] = {.lex_state = 18, .external_lex_state = 15}, + [493] = {.lex_state = 18, .external_lex_state = 15}, + [494] = {.lex_state = 18, .external_lex_state = 15}, + [495] = {.lex_state = 18, .external_lex_state = 15}, + [496] = {.lex_state = 18, .external_lex_state = 15}, + [497] = {.lex_state = 18, .external_lex_state = 15}, + [498] = {.lex_state = 18, .external_lex_state = 15}, + [499] = {.lex_state = 18, .external_lex_state = 15}, + [500] = {.lex_state = 18, .external_lex_state = 15}, + [501] = {.lex_state = 18, .external_lex_state = 16}, + [502] = {.lex_state = 18, .external_lex_state = 15}, + [503] = {.lex_state = 18, .external_lex_state = 16}, + [504] = {.lex_state = 18, .external_lex_state = 15}, + [505] = {.lex_state = 18, .external_lex_state = 15}, + [506] = {.lex_state = 18, .external_lex_state = 15}, + [507] = {.lex_state = 18, .external_lex_state = 16}, + [508] = {.lex_state = 2, .external_lex_state = 17}, [509] = {.lex_state = 2, .external_lex_state = 18}, - [510] = {.lex_state = 2, .external_lex_state = 19}, - [511] = {.lex_state = 2, .external_lex_state = 19}, - [512] = {.lex_state = 2, .external_lex_state = 18}, + [510] = {.lex_state = 2, .external_lex_state = 18}, + [511] = {.lex_state = 2, .external_lex_state = 17}, + [512] = {.lex_state = 2, .external_lex_state = 17}, [513] = {.lex_state = 2, .external_lex_state = 18}, - [514] = {.lex_state = 2, .external_lex_state = 19}, + [514] = {.lex_state = 2, .external_lex_state = 17}, [515] = {.lex_state = 2, .external_lex_state = 18}, - [516] = {.lex_state = 2, .external_lex_state = 19}, - [517] = {.lex_state = 2, .external_lex_state = 18}, - [518] = {.lex_state = 2, .external_lex_state = 19}, - [519] = {.lex_state = 2, .external_lex_state = 19}, - [520] = {.lex_state = 2, .external_lex_state = 19}, - [521] = {.lex_state = 2, .external_lex_state = 18}, - [522] = {.lex_state = 2, .external_lex_state = 19}, - [523] = {.lex_state = 2, .external_lex_state = 18}, + [516] = {.lex_state = 2, .external_lex_state = 17}, + [517] = {.lex_state = 2, .external_lex_state = 17}, + [518] = {.lex_state = 2, .external_lex_state = 18}, + [519] = {.lex_state = 2, .external_lex_state = 18}, + [520] = {.lex_state = 2, .external_lex_state = 18}, + [521] = {.lex_state = 2, .external_lex_state = 17}, + [522] = {.lex_state = 2, .external_lex_state = 18}, + [523] = {.lex_state = 2, .external_lex_state = 17}, [524] = {.lex_state = 2, .external_lex_state = 18}, - [525] = {.lex_state = 2, .external_lex_state = 18}, - [526] = {.lex_state = 2, .external_lex_state = 19}, - [527] = {.lex_state = 13, .external_lex_state = 14}, - [528] = {.lex_state = 3, .external_lex_state = 17}, + [525] = {.lex_state = 2, .external_lex_state = 17}, + [526] = {.lex_state = 18, .external_lex_state = 14}, + [527] = {.lex_state = 2, .external_lex_state = 17}, + [528] = {.lex_state = 2, .external_lex_state = 17}, [529] = {.lex_state = 2, .external_lex_state = 18}, - [530] = {.lex_state = 3, .external_lex_state = 17}, - [531] = {.lex_state = 3, .external_lex_state = 17}, - [532] = {.lex_state = 2, .external_lex_state = 19}, - [533] = {.lex_state = 2, .external_lex_state = 19}, - [534] = {.lex_state = 3, .external_lex_state = 17}, - [535] = {.lex_state = 3, .external_lex_state = 17}, - [536] = {.lex_state = 13, .external_lex_state = 14}, - [537] = {.lex_state = 2, .external_lex_state = 18}, - [538] = {.lex_state = 3, .external_lex_state = 17}, - [539] = {.lex_state = 13, .external_lex_state = 14}, - [540] = {.lex_state = 3, .external_lex_state = 17}, - [541] = {.lex_state = 3, .external_lex_state = 20}, - [542] = {.lex_state = 2, .external_lex_state = 21}, - [543] = {.lex_state = 3, .external_lex_state = 17}, - [544] = {.lex_state = 3, .external_lex_state = 17}, - [545] = {.lex_state = 2, .external_lex_state = 21}, - [546] = {.lex_state = 2, .external_lex_state = 21}, - [547] = {.lex_state = 3, .external_lex_state = 20}, - [548] = {.lex_state = 3, .external_lex_state = 20}, - [549] = {.lex_state = 3, .external_lex_state = 17}, - [550] = {.lex_state = 2, .external_lex_state = 21}, - [551] = {.lex_state = 2, .external_lex_state = 21}, - [552] = {.lex_state = 2, .external_lex_state = 21}, - [553] = {.lex_state = 3, .external_lex_state = 17}, - [554] = {.lex_state = 2, .external_lex_state = 21}, - [555] = {.lex_state = 13, .external_lex_state = 15}, - [556] = {.lex_state = 3, .external_lex_state = 22}, - [557] = {.lex_state = 3, .external_lex_state = 22}, - [558] = {.lex_state = 3, .external_lex_state = 22}, - [559] = {.lex_state = 3, .external_lex_state = 17}, - [560] = {.lex_state = 3, .external_lex_state = 22}, - [561] = {.lex_state = 13, .external_lex_state = 15}, - [562] = {.lex_state = 13, .external_lex_state = 15}, - [563] = {.lex_state = 13, .external_lex_state = 15}, - [564] = {.lex_state = 3, .external_lex_state = 22}, - [565] = {.lex_state = 3, .external_lex_state = 17}, - [566] = {.lex_state = 13, .external_lex_state = 23}, - [567] = {.lex_state = 3, .external_lex_state = 22}, - [568] = {.lex_state = 3, .external_lex_state = 17}, - [569] = {.lex_state = 3, .external_lex_state = 20}, - [570] = {.lex_state = 2, .external_lex_state = 18}, - [571] = {.lex_state = 13, .external_lex_state = 15}, - [572] = {.lex_state = 13, .external_lex_state = 15}, - [573] = {.lex_state = 3, .external_lex_state = 20}, - [574] = {.lex_state = 3, .external_lex_state = 22}, - [575] = {.lex_state = 2, .external_lex_state = 19}, - [576] = {.lex_state = 3, .external_lex_state = 22}, - [577] = {.lex_state = 3, .external_lex_state = 20}, - [578] = {.lex_state = 3, .external_lex_state = 22}, - [579] = {.lex_state = 2, .external_lex_state = 19}, - [580] = {.lex_state = 3, .external_lex_state = 22}, - [581] = {.lex_state = 3, .external_lex_state = 22}, - [582] = {.lex_state = 2, .external_lex_state = 18}, - [583] = {.lex_state = 3, .external_lex_state = 22}, - [584] = {.lex_state = 3, .external_lex_state = 20}, - [585] = {.lex_state = 13, .external_lex_state = 14}, - [586] = {.lex_state = 3, .external_lex_state = 20}, - [587] = {.lex_state = 2, .external_lex_state = 24}, - [588] = {.lex_state = 3, .external_lex_state = 20}, - [589] = {.lex_state = 2, .external_lex_state = 21}, - [590] = {.lex_state = 13, .external_lex_state = 14}, - [591] = {.lex_state = 3, .external_lex_state = 20}, - [592] = {.lex_state = 3, .external_lex_state = 20}, - [593] = {.lex_state = 13, .external_lex_state = 14}, - [594] = {.lex_state = 2, .external_lex_state = 21}, - [595] = {.lex_state = 2, .external_lex_state = 25}, - [596] = {.lex_state = 3, .external_lex_state = 22}, - [597] = {.lex_state = 3, .external_lex_state = 26}, - [598] = {.lex_state = 3, .external_lex_state = 22}, - [599] = {.lex_state = 13, .external_lex_state = 14}, - [600] = {.lex_state = 3, .external_lex_state = 17}, - [601] = {.lex_state = 2, .external_lex_state = 19}, - [602] = {.lex_state = 3, .external_lex_state = 17}, - [603] = {.lex_state = 3, .external_lex_state = 20}, - [604] = {.lex_state = 2, .external_lex_state = 19}, - [605] = {.lex_state = 2, .external_lex_state = 27}, - [606] = {.lex_state = 3, .external_lex_state = 20}, - [607] = {.lex_state = 2, .external_lex_state = 18}, - [608] = {.lex_state = 3, .external_lex_state = 20}, - [609] = {.lex_state = 2, .external_lex_state = 18}, - [610] = {.lex_state = 3, .external_lex_state = 17}, - [611] = {.lex_state = 3, .external_lex_state = 17}, - [612] = {.lex_state = 3, .external_lex_state = 20}, - [613] = {.lex_state = 13, .external_lex_state = 16}, - [614] = {.lex_state = 2, .external_lex_state = 19}, - [615] = {.lex_state = 2, .external_lex_state = 18}, - [616] = {.lex_state = 3, .external_lex_state = 17}, - [617] = {.lex_state = 3, .external_lex_state = 17}, - [618] = {.lex_state = 3, .external_lex_state = 20}, - [619] = {.lex_state = 3, .external_lex_state = 17}, - [620] = {.lex_state = 3, .external_lex_state = 20}, - [621] = {.lex_state = 2, .external_lex_state = 28}, - [622] = {.lex_state = 3, .external_lex_state = 20}, - [623] = {.lex_state = 3, .external_lex_state = 20}, - [624] = {.lex_state = 3, .external_lex_state = 17}, - [625] = {.lex_state = 3, .external_lex_state = 17}, - [626] = {.lex_state = 2, .external_lex_state = 28}, - [627] = {.lex_state = 2, .external_lex_state = 21}, - [628] = {.lex_state = 2, .external_lex_state = 28}, - [629] = {.lex_state = 2, .external_lex_state = 21}, - [630] = {.lex_state = 3, .external_lex_state = 17}, - [631] = {.lex_state = 2, .external_lex_state = 28}, - [632] = {.lex_state = 2, .external_lex_state = 28}, - [633] = {.lex_state = 3, .external_lex_state = 17}, - [634] = {.lex_state = 2, .external_lex_state = 28}, - [635] = {.lex_state = 2, .external_lex_state = 21}, - [636] = {.lex_state = 3, .external_lex_state = 22}, - [637] = {.lex_state = 3, .external_lex_state = 22}, - [638] = {.lex_state = 3, .external_lex_state = 22}, - [639] = {.lex_state = 3, .external_lex_state = 22}, - [640] = {.lex_state = 3, .external_lex_state = 22}, - [641] = {.lex_state = 3, .external_lex_state = 22}, - [642] = {.lex_state = 2, .external_lex_state = 29}, - [643] = {.lex_state = 2, .external_lex_state = 30}, - [644] = {.lex_state = 3, .external_lex_state = 22}, - [645] = {.lex_state = 2, .external_lex_state = 29}, - [646] = {.lex_state = 2, .external_lex_state = 28}, - [647] = {.lex_state = 2, .external_lex_state = 30}, - [648] = {.lex_state = 2, .external_lex_state = 30}, - [649] = {.lex_state = 2, .external_lex_state = 29}, - [650] = {.lex_state = 2, .external_lex_state = 29}, - [651] = {.lex_state = 3, .external_lex_state = 20}, - [652] = {.lex_state = 2, .external_lex_state = 30}, - [653] = {.lex_state = 4, .external_lex_state = 31}, - [654] = {.lex_state = 3, .external_lex_state = 20}, - [655] = {.lex_state = 2, .external_lex_state = 30}, - [656] = {.lex_state = 2, .external_lex_state = 28}, - [657] = {.lex_state = 2, .external_lex_state = 30}, - [658] = {.lex_state = 2, .external_lex_state = 29}, - [659] = {.lex_state = 4, .external_lex_state = 31}, - [660] = {.lex_state = 2, .external_lex_state = 29}, - [661] = {.lex_state = 4, .external_lex_state = 31}, - [662] = {.lex_state = 2, .external_lex_state = 30}, - [663] = {.lex_state = 3, .external_lex_state = 20}, - [664] = {.lex_state = 5, .external_lex_state = 31}, - [665] = {.lex_state = 2, .external_lex_state = 30}, - [666] = {.lex_state = 3, .external_lex_state = 20}, - [667] = {.lex_state = 2, .external_lex_state = 30}, - [668] = {.lex_state = 2, .external_lex_state = 30}, - [669] = {.lex_state = 3, .external_lex_state = 20}, - [670] = {.lex_state = 2, .external_lex_state = 30}, - [671] = {.lex_state = 3, .external_lex_state = 22}, - [672] = {.lex_state = 3, .external_lex_state = 22}, - [673] = {.lex_state = 3, .external_lex_state = 22}, - [674] = {.lex_state = 2, .external_lex_state = 29}, - [675] = {.lex_state = 5, .external_lex_state = 31}, - [676] = {.lex_state = 5, .external_lex_state = 31}, - [677] = {.lex_state = 3, .external_lex_state = 20}, - [678] = {.lex_state = 2, .external_lex_state = 32}, - [679] = {.lex_state = 4, .external_lex_state = 33}, - [680] = {.lex_state = 2, .external_lex_state = 30}, - [681] = {.lex_state = 5, .external_lex_state = 33}, - [682] = {.lex_state = 2, .external_lex_state = 29}, - [683] = {.lex_state = 2, .external_lex_state = 32}, - [684] = {.lex_state = 2, .external_lex_state = 29}, - [685] = {.lex_state = 2, .external_lex_state = 30}, - [686] = {.lex_state = 2, .external_lex_state = 32}, - [687] = {.lex_state = 4, .external_lex_state = 31}, - [688] = {.lex_state = 5, .external_lex_state = 31}, - [689] = {.lex_state = 5, .external_lex_state = 31}, - [690] = {.lex_state = 4, .external_lex_state = 31}, - [691] = {.lex_state = 2, .external_lex_state = 32}, + [530] = {.lex_state = 18, .external_lex_state = 14}, + [531] = {.lex_state = 2, .external_lex_state = 18}, + [532] = {.lex_state = 4, .external_lex_state = 19}, + [533] = {.lex_state = 18, .external_lex_state = 14}, + [534] = {.lex_state = 2, .external_lex_state = 20}, + [535] = {.lex_state = 2, .external_lex_state = 20}, + [536] = {.lex_state = 2, .external_lex_state = 20}, + [537] = {.lex_state = 2, .external_lex_state = 20}, + [538] = {.lex_state = 2, .external_lex_state = 20}, + [539] = {.lex_state = 2, .external_lex_state = 20}, + [540] = {.lex_state = 2, .external_lex_state = 20}, + [541] = {.lex_state = 4, .external_lex_state = 19}, + [542] = {.lex_state = 18, .external_lex_state = 15}, + [543] = {.lex_state = 18, .external_lex_state = 15}, + [544] = {.lex_state = 4, .external_lex_state = 19}, + [545] = {.lex_state = 4, .external_lex_state = 19}, + [546] = {.lex_state = 4, .external_lex_state = 19}, + [547] = {.lex_state = 18, .external_lex_state = 15}, + [548] = {.lex_state = 18, .external_lex_state = 21}, + [549] = {.lex_state = 4, .external_lex_state = 19}, + [550] = {.lex_state = 18, .external_lex_state = 15}, + [551] = {.lex_state = 4, .external_lex_state = 19}, + [552] = {.lex_state = 4, .external_lex_state = 22}, + [553] = {.lex_state = 4, .external_lex_state = 19}, + [554] = {.lex_state = 4, .external_lex_state = 22}, + [555] = {.lex_state = 2, .external_lex_state = 18}, + [556] = {.lex_state = 2, .external_lex_state = 17}, + [557] = {.lex_state = 4, .external_lex_state = 19}, + [558] = {.lex_state = 4, .external_lex_state = 19}, + [559] = {.lex_state = 4, .external_lex_state = 19}, + [560] = {.lex_state = 4, .external_lex_state = 19}, + [561] = {.lex_state = 18, .external_lex_state = 15}, + [562] = {.lex_state = 18, .external_lex_state = 15}, + [563] = {.lex_state = 2, .external_lex_state = 17}, + [564] = {.lex_state = 2, .external_lex_state = 18}, + [565] = {.lex_state = 4, .external_lex_state = 22}, + [566] = {.lex_state = 2, .external_lex_state = 20}, + [567] = {.lex_state = 18, .external_lex_state = 14}, + [568] = {.lex_state = 4, .external_lex_state = 19}, + [569] = {.lex_state = 18, .external_lex_state = 14}, + [570] = {.lex_state = 4, .external_lex_state = 19}, + [571] = {.lex_state = 18, .external_lex_state = 14}, + [572] = {.lex_state = 4, .external_lex_state = 23}, + [573] = {.lex_state = 18, .external_lex_state = 14}, + [574] = {.lex_state = 4, .external_lex_state = 23}, + [575] = {.lex_state = 4, .external_lex_state = 23}, + [576] = {.lex_state = 4, .external_lex_state = 23}, + [577] = {.lex_state = 2, .external_lex_state = 24}, + [578] = {.lex_state = 4, .external_lex_state = 23}, + [579] = {.lex_state = 2, .external_lex_state = 20}, + [580] = {.lex_state = 4, .external_lex_state = 23}, + [581] = {.lex_state = 4, .external_lex_state = 19}, + [582] = {.lex_state = 2, .external_lex_state = 25}, + [583] = {.lex_state = 2, .external_lex_state = 18}, + [584] = {.lex_state = 18, .external_lex_state = 16}, + [585] = {.lex_state = 4, .external_lex_state = 22}, + [586] = {.lex_state = 4, .external_lex_state = 22}, + [587] = {.lex_state = 4, .external_lex_state = 23}, + [588] = {.lex_state = 4, .external_lex_state = 23}, + [589] = {.lex_state = 2, .external_lex_state = 17}, + [590] = {.lex_state = 2, .external_lex_state = 18}, + [591] = {.lex_state = 4, .external_lex_state = 23}, + [592] = {.lex_state = 4, .external_lex_state = 23}, + [593] = {.lex_state = 4, .external_lex_state = 22}, + [594] = {.lex_state = 2, .external_lex_state = 18}, + [595] = {.lex_state = 2, .external_lex_state = 26}, + [596] = {.lex_state = 2, .external_lex_state = 17}, + [597] = {.lex_state = 4, .external_lex_state = 23}, + [598] = {.lex_state = 2, .external_lex_state = 17}, + [599] = {.lex_state = 4, .external_lex_state = 23}, + [600] = {.lex_state = 4, .external_lex_state = 23}, + [601] = {.lex_state = 4, .external_lex_state = 22}, + [602] = {.lex_state = 4, .external_lex_state = 27}, + [603] = {.lex_state = 2, .external_lex_state = 20}, + [604] = {.lex_state = 4, .external_lex_state = 22}, + [605] = {.lex_state = 4, .external_lex_state = 22}, + [606] = {.lex_state = 4, .external_lex_state = 22}, + [607] = {.lex_state = 4, .external_lex_state = 22}, + [608] = {.lex_state = 2, .external_lex_state = 20}, + [609] = {.lex_state = 4, .external_lex_state = 23}, + [610] = {.lex_state = 2, .external_lex_state = 20}, + [611] = {.lex_state = 4, .external_lex_state = 22}, + [612] = {.lex_state = 4, .external_lex_state = 19}, + [613] = {.lex_state = 4, .external_lex_state = 22}, + [614] = {.lex_state = 4, .external_lex_state = 19}, + [615] = {.lex_state = 4, .external_lex_state = 19}, + [616] = {.lex_state = 4, .external_lex_state = 22}, + [617] = {.lex_state = 4, .external_lex_state = 19}, + [618] = {.lex_state = 4, .external_lex_state = 22}, + [619] = {.lex_state = 4, .external_lex_state = 19}, + [620] = {.lex_state = 4, .external_lex_state = 22}, + [621] = {.lex_state = 4, .external_lex_state = 22}, + [622] = {.lex_state = 4, .external_lex_state = 19}, + [623] = {.lex_state = 4, .external_lex_state = 22}, + [624] = {.lex_state = 4, .external_lex_state = 22}, + [625] = {.lex_state = 3, .external_lex_state = 28}, + [626] = {.lex_state = 4, .external_lex_state = 19}, + [627] = {.lex_state = 4, .external_lex_state = 19}, + [628] = {.lex_state = 3, .external_lex_state = 28}, + [629] = {.lex_state = 4, .external_lex_state = 19}, + [630] = {.lex_state = 3, .external_lex_state = 28}, + [631] = {.lex_state = 3, .external_lex_state = 28}, + [632] = {.lex_state = 4, .external_lex_state = 19}, + [633] = {.lex_state = 3, .external_lex_state = 28}, + [634] = {.lex_state = 3, .external_lex_state = 28}, + [635] = {.lex_state = 4, .external_lex_state = 19}, + [636] = {.lex_state = 4, .external_lex_state = 23}, + [637] = {.lex_state = 4, .external_lex_state = 23}, + [638] = {.lex_state = 4, .external_lex_state = 23}, + [639] = {.lex_state = 4, .external_lex_state = 23}, + [640] = {.lex_state = 4, .external_lex_state = 23}, + [641] = {.lex_state = 4, .external_lex_state = 23}, + [642] = {.lex_state = 3, .external_lex_state = 29}, + [643] = {.lex_state = 3, .external_lex_state = 30}, + [644] = {.lex_state = 4, .external_lex_state = 23}, + [645] = {.lex_state = 3, .external_lex_state = 29}, + [646] = {.lex_state = 3, .external_lex_state = 28}, + [647] = {.lex_state = 3, .external_lex_state = 30}, + [648] = {.lex_state = 3, .external_lex_state = 30}, + [649] = {.lex_state = 3, .external_lex_state = 29}, + [650] = {.lex_state = 3, .external_lex_state = 29}, + [651] = {.lex_state = 4, .external_lex_state = 22}, + [652] = {.lex_state = 3, .external_lex_state = 30}, + [653] = {.lex_state = 5, .external_lex_state = 31}, + [654] = {.lex_state = 4, .external_lex_state = 22}, + [655] = {.lex_state = 3, .external_lex_state = 30}, + [656] = {.lex_state = 3, .external_lex_state = 28}, + [657] = {.lex_state = 3, .external_lex_state = 30}, + [658] = {.lex_state = 3, .external_lex_state = 29}, + [659] = {.lex_state = 5, .external_lex_state = 31}, + [660] = {.lex_state = 3, .external_lex_state = 29}, + [661] = {.lex_state = 5, .external_lex_state = 31}, + [662] = {.lex_state = 3, .external_lex_state = 30}, + [663] = {.lex_state = 4, .external_lex_state = 22}, + [664] = {.lex_state = 6, .external_lex_state = 31}, + [665] = {.lex_state = 3, .external_lex_state = 30}, + [666] = {.lex_state = 4, .external_lex_state = 22}, + [667] = {.lex_state = 3, .external_lex_state = 30}, + [668] = {.lex_state = 3, .external_lex_state = 30}, + [669] = {.lex_state = 4, .external_lex_state = 22}, + [670] = {.lex_state = 3, .external_lex_state = 30}, + [671] = {.lex_state = 4, .external_lex_state = 23}, + [672] = {.lex_state = 4, .external_lex_state = 23}, + [673] = {.lex_state = 4, .external_lex_state = 23}, + [674] = {.lex_state = 3, .external_lex_state = 29}, + [675] = {.lex_state = 6, .external_lex_state = 31}, + [676] = {.lex_state = 6, .external_lex_state = 31}, + [677] = {.lex_state = 4, .external_lex_state = 22}, + [678] = {.lex_state = 3, .external_lex_state = 32}, + [679] = {.lex_state = 5, .external_lex_state = 33}, + [680] = {.lex_state = 3, .external_lex_state = 30}, + [681] = {.lex_state = 6, .external_lex_state = 33}, + [682] = {.lex_state = 3, .external_lex_state = 29}, + [683] = {.lex_state = 3, .external_lex_state = 32}, + [684] = {.lex_state = 3, .external_lex_state = 29}, + [685] = {.lex_state = 3, .external_lex_state = 30}, + [686] = {.lex_state = 3, .external_lex_state = 32}, + [687] = {.lex_state = 5, .external_lex_state = 31}, + [688] = {.lex_state = 6, .external_lex_state = 31}, + [689] = {.lex_state = 6, .external_lex_state = 31}, + [690] = {.lex_state = 5, .external_lex_state = 31}, + [691] = {.lex_state = 3, .external_lex_state = 32}, [692] = {.lex_state = 0, .external_lex_state = 34}, [693] = {.lex_state = 0, .external_lex_state = 34}, [694] = {.lex_state = 0, .external_lex_state = 34}, [695] = {.lex_state = 0, .external_lex_state = 34}, [696] = {.lex_state = 0, .external_lex_state = 34}, - [697] = {.lex_state = 7, .external_lex_state = 35}, - [698] = {.lex_state = 10, .external_lex_state = 36}, - [699] = {.lex_state = 10, .external_lex_state = 36}, - [700] = {.lex_state = 10, .external_lex_state = 36}, - [701] = {.lex_state = 10, .external_lex_state = 36}, - [702] = {.lex_state = 10, .external_lex_state = 36}, - [703] = {.lex_state = 10, .external_lex_state = 36}, + [697] = {.lex_state = 8, .external_lex_state = 35}, + [698] = {.lex_state = 12, .external_lex_state = 36}, + [699] = {.lex_state = 12, .external_lex_state = 36}, + [700] = {.lex_state = 12, .external_lex_state = 36}, + [701] = {.lex_state = 12, .external_lex_state = 36}, + [702] = {.lex_state = 12, .external_lex_state = 36}, + [703] = {.lex_state = 12, .external_lex_state = 36}, [704] = {.lex_state = 0, .external_lex_state = 37}, [705] = {.lex_state = 0, .external_lex_state = 37}, - [706] = {.lex_state = 7, .external_lex_state = 35}, + [706] = {.lex_state = 8, .external_lex_state = 35}, [707] = {.lex_state = 0, .external_lex_state = 37}, [708] = {.lex_state = 0, .external_lex_state = 37}, - [709] = {.lex_state = 10, .external_lex_state = 36}, - [710] = {.lex_state = 7}, + [709] = {.lex_state = 12, .external_lex_state = 36}, + [710] = {.lex_state = 8}, [711] = {.lex_state = 0}, - [712] = {.lex_state = 10, .external_lex_state = 36}, - [713] = {.lex_state = 7}, - [714] = {.lex_state = 10, .external_lex_state = 36}, - [715] = {.lex_state = 10, .external_lex_state = 36}, - [716] = {.lex_state = 9, .external_lex_state = 38}, - [717] = {.lex_state = 10, .external_lex_state = 36}, - [718] = {.lex_state = 10, .external_lex_state = 36}, + [712] = {.lex_state = 12, .external_lex_state = 36}, + [713] = {.lex_state = 8}, + [714] = {.lex_state = 12, .external_lex_state = 36}, + [715] = {.lex_state = 12, .external_lex_state = 36}, + [716] = {.lex_state = 13, .external_lex_state = 38}, + [717] = {.lex_state = 12, .external_lex_state = 36}, + [718] = {.lex_state = 12, .external_lex_state = 36}, [719] = {.lex_state = 0}, - [720] = {.lex_state = 9, .external_lex_state = 38}, + [720] = {.lex_state = 13, .external_lex_state = 38}, [721] = {.lex_state = 0}, - [722] = {.lex_state = 9, .external_lex_state = 38}, + [722] = {.lex_state = 13, .external_lex_state = 38}, [723] = {.lex_state = 0, .external_lex_state = 37}, [724] = {.lex_state = 0, .external_lex_state = 37}, [725] = {.lex_state = 0, .external_lex_state = 37}, - [726] = {.lex_state = 13, .external_lex_state = 36}, - [727] = {.lex_state = 13, .external_lex_state = 36}, - [728] = {.lex_state = 7}, - [729] = {.lex_state = 13, .external_lex_state = 36}, - [730] = {.lex_state = 13, .external_lex_state = 36}, + [726] = {.lex_state = 4, .external_lex_state = 36}, + [727] = {.lex_state = 4, .external_lex_state = 36}, + [728] = {.lex_state = 8}, + [729] = {.lex_state = 4, .external_lex_state = 36}, + [730] = {.lex_state = 4, .external_lex_state = 36}, [731] = {.lex_state = 0, .external_lex_state = 34}, - [732] = {.lex_state = 13, .external_lex_state = 36}, + [732] = {.lex_state = 4, .external_lex_state = 36}, [733] = {.lex_state = 0, .external_lex_state = 37}, - [734] = {.lex_state = 7}, - [735] = {.lex_state = 13, .external_lex_state = 36}, - [736] = {.lex_state = 13, .external_lex_state = 36}, - [737] = {.lex_state = 13, .external_lex_state = 36}, - [738] = {.lex_state = 13, .external_lex_state = 36}, - [739] = {.lex_state = 13, .external_lex_state = 36}, - [740] = {.lex_state = 13, .external_lex_state = 36}, + [734] = {.lex_state = 8}, + [735] = {.lex_state = 4, .external_lex_state = 36}, + [736] = {.lex_state = 4, .external_lex_state = 36}, + [737] = {.lex_state = 4, .external_lex_state = 36}, + [738] = {.lex_state = 4, .external_lex_state = 36}, + [739] = {.lex_state = 4, .external_lex_state = 36}, + [740] = {.lex_state = 4, .external_lex_state = 36}, [741] = {.lex_state = 0}, - [742] = {.lex_state = 13, .external_lex_state = 36}, + [742] = {.lex_state = 4, .external_lex_state = 36}, [743] = {.lex_state = 0, .external_lex_state = 37}, - [744] = {.lex_state = 13, .external_lex_state = 36}, - [745] = {.lex_state = 13, .external_lex_state = 36}, - [746] = {.lex_state = 13, .external_lex_state = 36}, - [747] = {.lex_state = 13, .external_lex_state = 36}, - [748] = {.lex_state = 13, .external_lex_state = 36}, - [749] = {.lex_state = 13, .external_lex_state = 36}, + [744] = {.lex_state = 4, .external_lex_state = 36}, + [745] = {.lex_state = 4, .external_lex_state = 36}, + [746] = {.lex_state = 4, .external_lex_state = 36}, + [747] = {.lex_state = 4, .external_lex_state = 36}, + [748] = {.lex_state = 4, .external_lex_state = 36}, + [749] = {.lex_state = 4, .external_lex_state = 36}, [750] = {.lex_state = 0, .external_lex_state = 37}, - [751] = {.lex_state = 7}, + [751] = {.lex_state = 8}, [752] = {.lex_state = 0}, - [753] = {.lex_state = 7}, + [753] = {.lex_state = 8}, [754] = {.lex_state = 0, .external_lex_state = 37}, [755] = {.lex_state = 0, .external_lex_state = 37}, [756] = {.lex_state = 0, .external_lex_state = 37}, [757] = {.lex_state = 0, .external_lex_state = 37}, [758] = {.lex_state = 0, .external_lex_state = 37}, - [759] = {.lex_state = 7}, + [759] = {.lex_state = 8}, [760] = {.lex_state = 0, .external_lex_state = 37}, [761] = {.lex_state = 0, .external_lex_state = 37}, [762] = {.lex_state = 0, .external_lex_state = 37}, @@ -4115,47 +4214,47 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [769] = {.lex_state = 0, .external_lex_state = 37}, [770] = {.lex_state = 0, .external_lex_state = 37}, [771] = {.lex_state = 0, .external_lex_state = 37}, - [772] = {.lex_state = 6}, + [772] = {.lex_state = 7}, [773] = {.lex_state = 0, .external_lex_state = 37}, [774] = {.lex_state = 0, .external_lex_state = 37}, [775] = {.lex_state = 0, .external_lex_state = 37}, [776] = {.lex_state = 0, .external_lex_state = 37}, [777] = {.lex_state = 0, .external_lex_state = 37}, [778] = {.lex_state = 0, .external_lex_state = 37}, - [779] = {.lex_state = 7}, + [779] = {.lex_state = 8}, [780] = {.lex_state = 0, .external_lex_state = 37}, - [781] = {.lex_state = 6}, - [782] = {.lex_state = 7}, + [781] = {.lex_state = 7}, + [782] = {.lex_state = 8}, [783] = {.lex_state = 0}, - [784] = {.lex_state = 7}, + [784] = {.lex_state = 8}, [785] = {.lex_state = 0, .external_lex_state = 39}, [786] = {.lex_state = 0, .external_lex_state = 39}, [787] = {.lex_state = 0, .external_lex_state = 37}, [788] = {.lex_state = 0, .external_lex_state = 40}, - [789] = {.lex_state = 7}, - [790] = {.lex_state = 7}, - [791] = {.lex_state = 7}, + [789] = {.lex_state = 8}, + [790] = {.lex_state = 8}, + [791] = {.lex_state = 8}, [792] = {.lex_state = 0}, [793] = {.lex_state = 0, .external_lex_state = 37}, [794] = {.lex_state = 0, .external_lex_state = 39}, [795] = {.lex_state = 0, .external_lex_state = 37}, - [796] = {.lex_state = 7}, + [796] = {.lex_state = 8}, [797] = {.lex_state = 0, .external_lex_state = 37}, - [798] = {.lex_state = 7}, + [798] = {.lex_state = 8}, [799] = {.lex_state = 0}, - [800] = {.lex_state = 7}, + [800] = {.lex_state = 8}, [801] = {.lex_state = 0}, [802] = {.lex_state = 0, .external_lex_state = 36}, [803] = {.lex_state = 0, .external_lex_state = 37}, [804] = {.lex_state = 0, .external_lex_state = 36}, - [805] = {.lex_state = 7}, - [806] = {.lex_state = 6}, + [805] = {.lex_state = 8}, + [806] = {.lex_state = 7}, [807] = {.lex_state = 0, .external_lex_state = 37}, [808] = {.lex_state = 0, .external_lex_state = 36}, [809] = {.lex_state = 0, .external_lex_state = 37}, [810] = {.lex_state = 0, .external_lex_state = 37}, [811] = {.lex_state = 0, .external_lex_state = 37}, - [812] = {.lex_state = 9, .external_lex_state = 38}, + [812] = {.lex_state = 13, .external_lex_state = 38}, [813] = {.lex_state = 0, .external_lex_state = 36}, [814] = {.lex_state = 0, .external_lex_state = 37}, [815] = {.lex_state = 0, .external_lex_state = 37}, @@ -4163,22 +4262,22 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [817] = {.lex_state = 0, .external_lex_state = 37}, [818] = {.lex_state = 0, .external_lex_state = 36}, [819] = {.lex_state = 0, .external_lex_state = 36}, - [820] = {.lex_state = 0}, - [821] = {.lex_state = 7}, + [820] = {.lex_state = 18}, + [821] = {.lex_state = 8}, [822] = {.lex_state = 0, .external_lex_state = 36}, - [823] = {.lex_state = 7}, + [823] = {.lex_state = 8}, [824] = {.lex_state = 0, .external_lex_state = 37}, - [825] = {.lex_state = 7}, + [825] = {.lex_state = 8}, [826] = {.lex_state = 0}, - [827] = {.lex_state = 7}, + [827] = {.lex_state = 8}, [828] = {.lex_state = 0, .external_lex_state = 37}, [829] = {.lex_state = 0, .external_lex_state = 37}, [830] = {.lex_state = 0, .external_lex_state = 37}, [831] = {.lex_state = 0}, [832] = {.lex_state = 0, .external_lex_state = 37}, - [833] = {.lex_state = 6}, - [834] = {.lex_state = 7}, - [835] = {.lex_state = 7}, + [833] = {.lex_state = 7}, + [834] = {.lex_state = 8}, + [835] = {.lex_state = 8}, [836] = {.lex_state = 0, .external_lex_state = 37}, [837] = {.lex_state = 0}, [838] = {.lex_state = 0, .external_lex_state = 39}, @@ -4187,19 +4286,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [841] = {.lex_state = 0, .external_lex_state = 39}, [842] = {.lex_state = 0}, [843] = {.lex_state = 0, .external_lex_state = 39}, - [844] = {.lex_state = 0}, + [844] = {.lex_state = 18}, [845] = {.lex_state = 0, .external_lex_state = 39}, [846] = {.lex_state = 0, .external_lex_state = 39}, [847] = {.lex_state = 0, .external_lex_state = 39}, - [848] = {.lex_state = 1}, + [848] = {.lex_state = 8}, [849] = {.lex_state = 0, .external_lex_state = 39}, [850] = {.lex_state = 0, .external_lex_state = 39}, [851] = {.lex_state = 0, .external_lex_state = 39}, - [852] = {.lex_state = 7}, + [852] = {.lex_state = 8}, [853] = {.lex_state = 0, .external_lex_state = 39}, [854] = {.lex_state = 0}, [855] = {.lex_state = 0, .external_lex_state = 39}, - [856] = {.lex_state = 0}, + [856] = {.lex_state = 18}, [857] = {.lex_state = 0, .external_lex_state = 39}, [858] = {.lex_state = 0, .external_lex_state = 37}, [859] = {.lex_state = 0, .external_lex_state = 39}, @@ -4222,7 +4321,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [876] = {.lex_state = 0, .external_lex_state = 39}, [877] = {.lex_state = 0, .external_lex_state = 39}, [878] = {.lex_state = 0, .external_lex_state = 39}, - [879] = {.lex_state = 10, .external_lex_state = 36}, + [879] = {.lex_state = 12, .external_lex_state = 36}, [880] = {.lex_state = 0, .external_lex_state = 36}, [881] = {.lex_state = 0, .external_lex_state = 36}, [882] = {.lex_state = 0, .external_lex_state = 36}, @@ -4315,8 +4414,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [969] = {.lex_state = 0, .external_lex_state = 36}, [970] = {.lex_state = 0}, [971] = {.lex_state = 0, .external_lex_state = 36}, - [972] = {.lex_state = 13, .external_lex_state = 36}, - [973] = {.lex_state = 13, .external_lex_state = 36}, + [972] = {.lex_state = 4, .external_lex_state = 36}, + [973] = {.lex_state = 4, .external_lex_state = 36}, [974] = {.lex_state = 0, .external_lex_state = 36}, [975] = {.lex_state = 0, .external_lex_state = 36}, [976] = {.lex_state = 0, .external_lex_state = 36}, @@ -4343,7 +4442,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [997] = {.lex_state = 0, .external_lex_state = 36}, [998] = {.lex_state = 0, .external_lex_state = 46}, [999] = {.lex_state = 0, .external_lex_state = 46}, - [1000] = {.lex_state = 0}, + [1000] = {.lex_state = 18}, [1001] = {.lex_state = 0, .external_lex_state = 36}, [1002] = {.lex_state = 0, .external_lex_state = 46}, [1003] = {.lex_state = 0, .external_lex_state = 46}, @@ -4365,14 +4464,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1019] = {.lex_state = 0, .external_lex_state = 46}, [1020] = {.lex_state = 0, .external_lex_state = 45}, [1021] = {.lex_state = 0, .external_lex_state = 46}, - [1022] = {.lex_state = 0}, + [1022] = {.lex_state = 18}, [1023] = {.lex_state = 0, .external_lex_state = 46}, [1024] = {.lex_state = 0, .external_lex_state = 46}, [1025] = {.lex_state = 0, .external_lex_state = 46}, [1026] = {.lex_state = 0, .external_lex_state = 46}, [1027] = {.lex_state = 0, .external_lex_state = 46}, [1028] = {.lex_state = 0, .external_lex_state = 46}, - [1029] = {.lex_state = 0}, + [1029] = {.lex_state = 18}, [1030] = {.lex_state = 0, .external_lex_state = 46}, [1031] = {.lex_state = 0, .external_lex_state = 46}, [1032] = {.lex_state = 0, .external_lex_state = 46}, @@ -4382,7 +4481,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1036] = {.lex_state = 0, .external_lex_state = 45}, [1037] = {.lex_state = 0, .external_lex_state = 45}, [1038] = {.lex_state = 0, .external_lex_state = 46}, - [1039] = {.lex_state = 0}, + [1039] = {.lex_state = 18}, [1040] = {.lex_state = 0, .external_lex_state = 36}, [1041] = {.lex_state = 0, .external_lex_state = 46}, [1042] = {.lex_state = 0, .external_lex_state = 46}, @@ -4414,15 +4513,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1068] = {.lex_state = 0, .external_lex_state = 45}, [1069] = {.lex_state = 0, .external_lex_state = 46}, [1070] = {.lex_state = 0, .external_lex_state = 46}, - [1071] = {.lex_state = 0}, + [1071] = {.lex_state = 18}, [1072] = {.lex_state = 0, .external_lex_state = 36}, [1073] = {.lex_state = 0, .external_lex_state = 46}, [1074] = {.lex_state = 0, .external_lex_state = 45}, [1075] = {.lex_state = 0, .external_lex_state = 45}, [1076] = {.lex_state = 0, .external_lex_state = 46}, [1077] = {.lex_state = 0, .external_lex_state = 46}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, + [1078] = {.lex_state = 18}, + [1079] = {.lex_state = 18}, [1080] = {.lex_state = 0, .external_lex_state = 46}, [1081] = {.lex_state = 0, .external_lex_state = 46}, [1082] = {.lex_state = 0, .external_lex_state = 36}, @@ -4497,6 +4596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_RBRACE] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1), + [anon_sym_RBRACE_RBRACE_GT] = ACTIONS(1), [anon_sym_LBRACK_GT_GT] = ACTIONS(1), [sym__escaped_characters] = ACTIONS(1), [sym__word] = ACTIONS(1), @@ -4603,15 +4704,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(457), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(50), [aux_sym_document_repeat2] = STATE(694), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -4620,35 +4721,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -4736,12 +4839,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(11), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(11), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -4751,35 +4854,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -4870,12 +4975,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1044), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -4885,35 +4990,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5003,12 +5110,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1028), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -5018,35 +5125,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5136,12 +5245,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1070), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -5151,35 +5260,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5269,12 +5380,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1073), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -5284,35 +5395,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5401,12 +5514,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(9), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(9), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -5416,35 +5529,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5534,12 +5649,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(10), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(10), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -5549,35 +5664,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5667,12 +5784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(11), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(11), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -5682,35 +5799,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5800,12 +5919,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(11), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(11), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -5815,35 +5934,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -5933,12 +6054,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(11), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(11), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -5948,35 +6069,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(160), - [anon_sym_EQ] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_POUND] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_STAR] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_SLASH] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym__] = ACTIONS(157), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(160), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(163), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_SQUOTE] = ACTIONS(160), + [anon_sym_BANG] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(160), + [anon_sym_POUND] = ACTIONS(160), + [anon_sym_DOLLAR] = ACTIONS(160), + [anon_sym_PERCENT] = ACTIONS(160), + [anon_sym_AMP] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_AT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_BSLASH] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(160), + [anon_sym_CARET] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_BQUOTE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(166), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(166), [anon_sym_LBRACK_GT_GT] = ACTIONS(166), [sym__escaped_characters] = ACTIONS(166), [sym__word] = ACTIONS(166), @@ -6066,12 +6189,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(48), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(48), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -6081,35 +6204,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -6199,12 +6324,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(2), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(2), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -6214,35 +6339,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -6332,12 +6459,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(16), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(16), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -6347,35 +6474,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -6465,12 +6594,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(54), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(54), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -6480,35 +6609,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -6598,12 +6729,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(11), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(11), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -6613,35 +6744,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -6731,12 +6864,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(52), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(52), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -6746,35 +6879,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -6865,12 +7000,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1024), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -6880,35 +7015,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -6997,12 +7134,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(21), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(21), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -7012,35 +7149,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -7130,12 +7269,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(22), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(22), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -7145,35 +7284,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -7263,12 +7404,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(11), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(11), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -7278,35 +7419,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -7396,12 +7539,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(11), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(11), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -7411,35 +7554,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -7530,12 +7675,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1041), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -7545,35 +7690,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -7663,12 +7810,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1042), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -7678,35 +7825,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -7796,12 +7945,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1019), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -7811,35 +7960,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -7929,12 +8080,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1026), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -7944,35 +8095,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8062,12 +8215,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1027), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -8077,35 +8230,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8195,12 +8350,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1032), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -8210,35 +8365,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8328,12 +8485,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1053), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -8343,35 +8500,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8461,12 +8620,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1054), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -8476,35 +8635,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8594,12 +8755,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1055), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -8609,35 +8770,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8727,12 +8890,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1056), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -8742,35 +8905,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8860,12 +9025,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1057), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -8875,35 +9040,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -8993,12 +9160,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1058), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9008,35 +9175,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -9126,12 +9295,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(999), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9141,35 +9310,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -9258,12 +9429,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9273,35 +9444,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -9391,12 +9564,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1018), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9406,35 +9579,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -9522,12 +9697,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9537,35 +9712,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -9655,12 +9832,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1023), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9670,35 +9847,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -9787,12 +9966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1093), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9802,35 +9981,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -9919,12 +10100,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1031), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -9934,35 +10115,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -10051,12 +10234,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1045), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -10066,35 +10249,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -10183,12 +10368,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1049), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -10198,35 +10383,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -10314,12 +10501,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -10329,35 +10516,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -10446,12 +10635,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -10461,35 +10650,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_RBRACE] = ACTIONS(157), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(160), - [anon_sym_EQ] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_DQUOTE] = ACTIONS(157), - [anon_sym_POUND] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(157), - [anon_sym_PERCENT] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_STAR] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_COMMA] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(157), - [anon_sym_SLASH] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(157), - [anon_sym_QMARK] = ACTIONS(157), - [anon_sym_AT] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_BSLASH] = ACTIONS(163), - [anon_sym_RBRACK] = ACTIONS(157), - [anon_sym_CARET] = ACTIONS(157), - [anon_sym__] = ACTIONS(157), - [anon_sym_BQUOTE] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(157), - [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_RBRACE] = ACTIONS(160), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(163), + [anon_sym_EQ] = ACTIONS(160), + [anon_sym_SQUOTE] = ACTIONS(160), + [anon_sym_BANG] = ACTIONS(160), + [anon_sym_DQUOTE] = ACTIONS(160), + [anon_sym_POUND] = ACTIONS(160), + [anon_sym_DOLLAR] = ACTIONS(160), + [anon_sym_PERCENT] = ACTIONS(160), + [anon_sym_AMP] = ACTIONS(160), + [anon_sym_LPAREN] = ACTIONS(160), + [anon_sym_RPAREN] = ACTIONS(160), + [anon_sym_STAR] = ACTIONS(160), + [anon_sym_PLUS] = ACTIONS(160), + [anon_sym_COMMA] = ACTIONS(160), + [anon_sym_DASH] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(160), + [anon_sym_SLASH] = ACTIONS(160), + [anon_sym_SEMI] = ACTIONS(160), + [anon_sym_QMARK] = ACTIONS(160), + [anon_sym_AT] = ACTIONS(160), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_BSLASH] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(160), + [anon_sym_CARET] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), + [anon_sym_BQUOTE] = ACTIONS(160), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(166), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(166), [anon_sym_LBRACK_GT_GT] = ACTIONS(166), [sym__escaped_characters] = ACTIONS(166), [sym__word] = ACTIONS(166), @@ -10577,15 +10768,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(457), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(61), [aux_sym_document_repeat2] = STATE(692), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -10594,35 +10785,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -10710,12 +10903,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(49), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(49), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -10725,35 +10918,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -10842,12 +11037,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -10857,35 +11052,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -10974,12 +11171,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -10989,35 +11186,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -11105,15 +11304,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(457), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(121), [aux_sym_document_repeat2] = STATE(695), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -11122,35 +11321,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -11238,12 +11439,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(36), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(36), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -11253,35 +11454,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -11370,12 +11573,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -11385,35 +11588,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -11502,12 +11707,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(44), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(44), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -11517,35 +11722,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -11634,12 +11841,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(45), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(45), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -11649,35 +11856,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -11767,12 +11976,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1050), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -11782,35 +11991,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -11899,12 +12110,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1106), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -11914,35 +12125,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12031,12 +12244,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(998), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -12046,35 +12259,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12163,12 +12378,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1009), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -12178,35 +12393,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12295,12 +12512,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1010), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -12310,35 +12527,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12427,12 +12646,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1012), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -12442,35 +12661,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12557,15 +12778,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(457), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(121), [aux_sym_document_repeat2] = STATE(693), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -12574,35 +12795,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12691,12 +12914,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1076), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -12706,35 +12929,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12823,12 +13048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1077), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -12838,35 +13063,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -12955,12 +13182,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1080), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -12970,35 +13197,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -13087,12 +13316,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1081), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -13102,35 +13331,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -13219,12 +13450,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1083), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -13234,35 +13465,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -13351,12 +13584,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), [sym__list_item_content] = STATE(1025), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(38), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_fenced_div_block_repeat1] = STATE(38), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -13366,35 +13599,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -13478,12 +13713,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(68), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(68), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -13493,35 +13728,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(403), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym__] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(406), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(406), + [anon_sym_SQUOTE] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym__] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(412), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(412), [anon_sym_LBRACK_GT_GT] = ACTIONS(412), [sym__escaped_characters] = ACTIONS(412), [sym__word] = ACTIONS(412), @@ -13607,12 +13844,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(68), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(68), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -13622,35 +13859,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -13736,12 +13975,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(69), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(69), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -13751,35 +13990,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -13865,14 +14106,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(73), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(73), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -13881,35 +14122,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(490), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -13993,12 +14236,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(76), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(76), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -14008,35 +14251,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -14121,14 +14366,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(75), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(75), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -14137,35 +14382,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(486), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -14249,12 +14496,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(72), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(72), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -14264,35 +14511,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -14377,14 +14626,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(75), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(75), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -14393,35 +14642,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(418), [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(403), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym__] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(406), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(406), + [anon_sym_SQUOTE] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym__] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(412), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(412), [anon_sym_LBRACK_GT_GT] = ACTIONS(412), [sym__escaped_characters] = ACTIONS(412), [sym__word] = ACTIONS(412), @@ -14505,12 +14756,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(76), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section1_repeat1] = STATE(76), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -14520,35 +14771,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_DQUOTE] = ACTIONS(403), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_DOLLAR] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RPAREN] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_BSLASH] = ACTIONS(409), - [anon_sym_RBRACK] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym__] = ACTIONS(403), - [anon_sym_BQUOTE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(406), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(406), + [anon_sym_SQUOTE] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_DQUOTE] = ACTIONS(406), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_DOLLAR] = ACTIONS(406), + [anon_sym_PERCENT] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_BSLASH] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(406), + [anon_sym_CARET] = ACTIONS(406), + [anon_sym__] = ACTIONS(406), + [anon_sym_BQUOTE] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_TILDE] = ACTIONS(406), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(412), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(412), [anon_sym_LBRACK_GT_GT] = ACTIONS(412), [sym__escaped_characters] = ACTIONS(412), [sym__word] = ACTIONS(412), @@ -14631,12 +14884,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(77), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(77), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -14646,35 +14899,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RPAREN] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym__] = ACTIONS(592), - [anon_sym_BQUOTE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(595), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_BSLASH] = ACTIONS(592), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym__] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(601), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(601), [anon_sym_LBRACK_GT_GT] = ACTIONS(601), [sym__escaped_characters] = ACTIONS(601), [sym__word] = ACTIONS(601), @@ -14758,12 +15013,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(77), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(77), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -14773,35 +15028,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -14885,12 +15142,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(78), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(78), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -14900,35 +15157,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -15012,14 +15271,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(83), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -15028,35 +15287,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(672), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -15138,12 +15399,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(82), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(82), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -15153,35 +15414,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -15264,12 +15527,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(84), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(84), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -15279,35 +15542,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -15390,14 +15655,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(83), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -15406,35 +15671,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(607), [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RPAREN] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym__] = ACTIONS(592), - [anon_sym_BQUOTE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(595), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_BSLASH] = ACTIONS(592), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym__] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(601), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(601), [anon_sym_LBRACK_GT_GT] = ACTIONS(601), [sym__escaped_characters] = ACTIONS(601), [sym__word] = ACTIONS(601), @@ -15516,12 +15783,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(84), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(84), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -15531,35 +15798,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(592), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(595), - [anon_sym_EQ] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(592), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(592), - [anon_sym_PERCENT] = ACTIONS(592), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(592), - [anon_sym_RPAREN] = ACTIONS(592), - [anon_sym_STAR] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_BSLASH] = ACTIONS(598), - [anon_sym_RBRACK] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(592), - [anon_sym__] = ACTIONS(592), - [anon_sym_BQUOTE] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(595), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(598), + [anon_sym_EQ] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_BSLASH] = ACTIONS(592), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym__] = ACTIONS(595), + [anon_sym_BQUOTE] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(601), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(601), [anon_sym_LBRACK_GT_GT] = ACTIONS(601), [sym__escaped_characters] = ACTIONS(601), [sym__word] = ACTIONS(601), @@ -15642,14 +15911,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(80), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section2_repeat1] = STATE(80), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -15658,35 +15927,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(676), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -15766,12 +16037,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(86), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(86), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -15781,35 +16052,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(772), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_DOT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_BSLASH] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym__] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(775), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(775), + [anon_sym_SQUOTE] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_PERCENT] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_COMMA] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_BSLASH] = ACTIONS(772), + [anon_sym_RBRACK] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), + [anon_sym__] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(781), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(781), [anon_sym_LBRACK_GT_GT] = ACTIONS(781), [sym__escaped_characters] = ACTIONS(781), [sym__word] = ACTIONS(781), @@ -15891,12 +16164,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(86), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(86), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -15906,35 +16179,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -16016,12 +16291,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(87), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(87), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -16031,35 +16306,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -16141,14 +16418,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(94), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(94), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -16157,35 +16434,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(853), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -16265,12 +16544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(91), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(91), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -16280,35 +16559,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -16389,12 +16670,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(92), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(92), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -16404,35 +16685,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -16513,12 +16796,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(92), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(92), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -16528,35 +16811,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(772), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_DOT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_BSLASH] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym__] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(775), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(775), + [anon_sym_SQUOTE] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_PERCENT] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_COMMA] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_BSLASH] = ACTIONS(772), + [anon_sym_RBRACK] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), + [anon_sym__] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(781), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(781), [anon_sym_LBRACK_GT_GT] = ACTIONS(781), [sym__escaped_characters] = ACTIONS(781), [sym__word] = ACTIONS(781), @@ -16637,14 +16922,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(93), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -16653,35 +16938,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(787), [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_DOLLAR] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(772), - [anon_sym_COMMA] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [anon_sym_DOT] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_LBRACK] = ACTIONS(778), - [anon_sym_BSLASH] = ACTIONS(778), - [anon_sym_RBRACK] = ACTIONS(772), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym__] = ACTIONS(772), - [anon_sym_BQUOTE] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(775), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(778), + [anon_sym_EQ] = ACTIONS(775), + [anon_sym_SQUOTE] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_PERCENT] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_COMMA] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_BSLASH] = ACTIONS(772), + [anon_sym_RBRACK] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), + [anon_sym__] = ACTIONS(775), + [anon_sym_BQUOTE] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(775), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(781), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(781), [anon_sym_LBRACK_GT_GT] = ACTIONS(781), [sym__escaped_characters] = ACTIONS(781), [sym__word] = ACTIONS(781), @@ -16761,14 +17048,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(93), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section3_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -16777,35 +17064,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(849), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -16883,12 +17172,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(96), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(96), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -16898,35 +17187,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -17006,12 +17297,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(96), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(96), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -17021,35 +17312,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym__] = ACTIONS(947), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(950), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(956), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(956), [anon_sym_LBRACK_GT_GT] = ACTIONS(956), [sym__escaped_characters] = ACTIONS(956), [sym__word] = ACTIONS(956), @@ -17129,12 +17422,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(95), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(95), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -17144,35 +17437,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -17252,12 +17547,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(100), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(100), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -17267,35 +17562,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -17374,14 +17671,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(101), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(101), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -17390,35 +17687,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1021), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -17496,12 +17795,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(102), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(102), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -17511,35 +17810,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -17618,14 +17919,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(103), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(103), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -17634,35 +17935,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(943), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -17740,12 +18043,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(102), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(102), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -17755,35 +18058,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym__] = ACTIONS(947), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(950), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(956), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(956), [anon_sym_LBRACK_GT_GT] = ACTIONS(956), [sym__escaped_characters] = ACTIONS(956), [sym__word] = ACTIONS(956), @@ -17862,14 +18167,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(103), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section4_repeat1] = STATE(103), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -17878,35 +18183,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(962), [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PERCENT] = ACTIONS(947), - [anon_sym_AMP] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_STAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_DOT] = ACTIONS(947), - [anon_sym_SLASH] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_BSLASH] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_CARET] = ACTIONS(947), - [anon_sym__] = ACTIONS(947), - [anon_sym_BQUOTE] = ACTIONS(947), - [anon_sym_PIPE] = ACTIONS(947), - [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(950), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(950), + [anon_sym_SQUOTE] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_CARET] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), + [anon_sym_BQUOTE] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(956), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(956), [anon_sym_LBRACK_GT_GT] = ACTIONS(956), [sym__escaped_characters] = ACTIONS(956), [sym__word] = ACTIONS(956), @@ -17982,12 +18289,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(105), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(105), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -17997,35 +18304,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -18103,12 +18412,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(105), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(105), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -18118,35 +18427,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_PERCENT] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_COMMA] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_BSLASH] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(1112), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_BSLASH] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym__] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1118), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1118), [anon_sym_LBRACK_GT_GT] = ACTIONS(1118), [sym__escaped_characters] = ACTIONS(1118), [sym__word] = ACTIONS(1118), @@ -18224,12 +18535,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(104), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(104), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -18239,35 +18550,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -18345,12 +18658,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(110), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(110), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -18360,35 +18673,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -18465,14 +18780,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(108), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(108), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -18481,35 +18796,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1124), [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_PERCENT] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_COMMA] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_BSLASH] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(1112), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_BSLASH] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym__] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1118), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1118), [anon_sym_LBRACK_GT_GT] = ACTIONS(1118), [sym__escaped_characters] = ACTIONS(1118), [sym__word] = ACTIONS(1118), @@ -18585,12 +18902,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(107), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(107), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -18600,35 +18917,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -18705,12 +19024,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(110), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(110), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -18720,35 +19039,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1109), - [anon_sym_BANG] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_POUND] = ACTIONS(1109), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_PERCENT] = ACTIONS(1109), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1109), - [anon_sym_COMMA] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1109), - [anon_sym_DOT] = ACTIONS(1109), - [anon_sym_SLASH] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1109), - [anon_sym_AT] = ACTIONS(1109), - [anon_sym_LBRACK] = ACTIONS(1115), - [anon_sym_BSLASH] = ACTIONS(1115), - [anon_sym_RBRACK] = ACTIONS(1109), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym__] = ACTIONS(1109), - [anon_sym_BQUOTE] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_TILDE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(1112), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1112), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_DQUOTE] = ACTIONS(1112), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_PERCENT] = ACTIONS(1112), + [anon_sym_AMP] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_RPAREN] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1112), + [anon_sym_PLUS] = ACTIONS(1112), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_DASH] = ACTIONS(1112), + [anon_sym_DOT] = ACTIONS(1112), + [anon_sym_SLASH] = ACTIONS(1112), + [anon_sym_SEMI] = ACTIONS(1112), + [anon_sym_QMARK] = ACTIONS(1112), + [anon_sym_AT] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_BSLASH] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1112), + [anon_sym_CARET] = ACTIONS(1112), + [anon_sym__] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1112), + [anon_sym_TILDE] = ACTIONS(1112), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1118), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1118), [anon_sym_LBRACK_GT_GT] = ACTIONS(1118), [sym__escaped_characters] = ACTIONS(1118), [sym__word] = ACTIONS(1118), @@ -18825,14 +19146,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(112), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(112), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -18841,35 +19162,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1180), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -18945,14 +19268,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(108), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym__section5_repeat1] = STATE(108), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -18961,35 +19284,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1105), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -19063,12 +19388,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(217), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(115), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -19078,35 +19403,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -19182,12 +19509,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(217), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(113), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -19197,35 +19524,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -19301,12 +19630,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(127), [sym__list_item_parenthesis] = STATE(126), [sym__list_item_example] = STATE(125), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(217), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(115), [aux_sym_paragraph_repeat1] = STATE(497), [aux_sym__list_plus_repeat1] = STATE(123), @@ -19316,35 +19645,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(126), [aux_sym__list_example_repeat1] = STATE(125), [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1264), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_BSLASH] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym__] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1267), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1270), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_BSLASH] = ACTIONS(1264), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym__] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1273), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1273), [anon_sym_LBRACK_GT_GT] = ACTIONS(1273), [sym__escaped_characters] = ACTIONS(1273), [sym__word] = ACTIONS(1273), @@ -19420,12 +19751,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(349), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(116), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -19435,35 +19766,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1264), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_BSLASH] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym__] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1267), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1270), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_BSLASH] = ACTIONS(1264), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym__] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1273), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1273), [anon_sym_LBRACK_GT_GT] = ACTIONS(1273), [sym__escaped_characters] = ACTIONS(1273), [sym__word] = ACTIONS(1273), @@ -19538,14 +19871,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(457), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(118), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -19554,35 +19887,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1262), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -19656,14 +19991,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(457), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(121), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -19672,35 +20007,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1258), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -19774,12 +20111,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(349), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(116), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -19789,35 +20126,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -19892,12 +20231,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(167), [sym__list_item_parenthesis] = STATE(168), [sym__list_item_example] = STATE(169), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(349), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(119), [aux_sym_paragraph_repeat1] = STATE(494), [aux_sym__list_plus_repeat1] = STATE(138), @@ -19907,35 +20246,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_parenthesis_repeat1] = STATE(168), [aux_sym__list_example_repeat1] = STATE(169), [anon_sym_LBRACE] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(5), - [anon_sym_SQUOTE] = ACTIONS(5), - [anon_sym_BANG] = ACTIONS(5), - [anon_sym_DQUOTE] = ACTIONS(5), - [anon_sym_POUND] = ACTIONS(5), - [anon_sym_DOLLAR] = ACTIONS(5), - [anon_sym_PERCENT] = ACTIONS(5), - [anon_sym_AMP] = ACTIONS(5), - [anon_sym_LPAREN] = ACTIONS(5), - [anon_sym_RPAREN] = ACTIONS(5), - [anon_sym_STAR] = ACTIONS(5), - [anon_sym_PLUS] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5), - [anon_sym_DASH] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(5), - [anon_sym_SLASH] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(5), - [anon_sym_QMARK] = ACTIONS(5), - [anon_sym_AT] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(9), - [anon_sym_BSLASH] = ACTIONS(9), - [anon_sym_RBRACK] = ACTIONS(5), - [anon_sym_CARET] = ACTIONS(5), - [anon_sym__] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(5), - [anon_sym_PIPE] = ACTIONS(5), - [anon_sym_TILDE] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(7), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(9), + [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_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(5), + [anon_sym_BSLASH] = ACTIONS(5), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(11), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(11), [anon_sym_LBRACK_GT_GT] = ACTIONS(11), [sym__escaped_characters] = ACTIONS(11), [sym__word] = ACTIONS(11), @@ -20010,14 +20351,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_dot] = STATE(159), [sym__list_item_parenthesis] = STATE(160), [sym__list_item_example] = STATE(161), - [sym__soft_line_break] = STATE(571), - [sym__regular_block_content] = STATE(501), - [sym__line] = STATE(571), - [sym__whitespace] = STATE(501), + [sym__soft_line_break] = STATE(561), + [sym__regular_block_content] = STATE(502), + [sym__line] = STATE(561), + [sym__whitespace] = STATE(502), [sym_pipe_table] = STATE(457), - [sym__pipe_table_code_span] = STATE(501), + [sym__pipe_table_code_span] = STATE(502), [aux_sym_document_repeat1] = STATE(121), - [aux_sym_paragraph_repeat1] = STATE(492), + [aux_sym_paragraph_repeat1] = STATE(495), [aux_sym__list_plus_repeat1] = STATE(156), [aux_sym__list_minus_repeat1] = STATE(157), [aux_sym__list_star_repeat1] = STATE(158), @@ -20026,35 +20367,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1279), [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1264), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_BSLASH] = ACTIONS(1270), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym__] = ACTIONS(1264), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1267), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1270), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_BSLASH] = ACTIONS(1264), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym__] = ACTIONS(1267), + [anon_sym_BQUOTE] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1267), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1273), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1273), [anon_sym_LBRACK_GT_GT] = ACTIONS(1273), [sym__escaped_characters] = ACTIONS(1273), [sym__word] = ACTIONS(1273), @@ -20099,25266 +20442,25968 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_item_star] = STATE(134), [aux_sym__list_star_repeat1] = STATE(134), [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_BSLASH] = ACTIONS(1396), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1394), - [sym__escaped_characters] = 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), + [anon_sym_RBRACE] = ACTIONS(1396), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_BSLASH] = ACTIONS(1394), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1396), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1396), + [sym__escaped_characters] = ACTIONS(1396), + [sym__word] = ACTIONS(1396), + [sym__soft_line_ending] = ACTIONS(1396), + [sym__block_close] = ACTIONS(1396), + [sym__block_quote_start] = ACTIONS(1396), + [sym__indented_chunk_start] = ACTIONS(1396), + [sym_atx_h1_marker] = ACTIONS(1396), + [sym_atx_h2_marker] = ACTIONS(1396), + [sym_atx_h3_marker] = ACTIONS(1396), + [sym_atx_h4_marker] = ACTIONS(1396), + [sym_atx_h5_marker] = ACTIONS(1396), + [sym_atx_h6_marker] = ACTIONS(1396), + [sym__thematic_break] = ACTIONS(1396), + [sym__list_marker_minus] = ACTIONS(1396), + [sym__list_marker_plus] = ACTIONS(1396), [sym__list_marker_star] = ACTIONS(37), - [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_parenthesis] = ACTIONS(1396), + [sym__list_marker_dot] = ACTIONS(1396), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1396), [sym__list_marker_star_dont_interrupt] = ACTIONS(37), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), - [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__fenced_div_end] = ACTIONS(1394), - [sym_ref_id_specifier] = ACTIONS(1394), - [sym__display_math_state_track_marker] = ACTIONS(1394), - [sym__inline_math_state_track_marker] = ACTIONS(1394), - [sym__code_span_start] = ACTIONS(1394), - [sym__html_comment] = ACTIONS(1394), - [sym_raw_specifier] = ACTIONS(1394), - [sym__autolink] = ACTIONS(1394), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1396), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1396), + [sym__fenced_code_block_start_backtick] = ACTIONS(1396), + [sym__fenced_code_block_start_tilde] = ACTIONS(1396), + [sym__blank_line_start] = ACTIONS(1396), + [sym_minus_metadata] = ACTIONS(1396), + [sym__pipe_table_start] = ACTIONS(1396), + [sym__fenced_div_start] = ACTIONS(1396), + [sym__fenced_div_end] = ACTIONS(1396), + [sym_ref_id_specifier] = ACTIONS(1396), + [sym__display_math_state_track_marker] = ACTIONS(1396), + [sym__inline_math_state_track_marker] = ACTIONS(1396), + [sym__code_span_start] = ACTIONS(1396), + [sym__html_comment] = ACTIONS(1396), + [sym_raw_specifier] = ACTIONS(1396), + [sym__autolink] = ACTIONS(1396), }, [STATE(123)] = { [sym_list_marker_plus] = STATE(29), [sym__list_item_plus] = STATE(137), [aux_sym__list_plus_repeat1] = STATE(137), [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_BSLASH] = ACTIONS(1400), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1398), - [sym__escaped_characters] = ACTIONS(1398), - [sym__word] = ACTIONS(1398), - [sym__soft_line_ending] = ACTIONS(1398), - [sym__block_close] = ACTIONS(1398), - [sym__block_quote_start] = ACTIONS(1398), - [sym__indented_chunk_start] = ACTIONS(1398), - [sym_atx_h1_marker] = ACTIONS(1398), - [sym_atx_h2_marker] = ACTIONS(1398), - [sym_atx_h3_marker] = ACTIONS(1398), - [sym_atx_h4_marker] = ACTIONS(1398), - [sym_atx_h5_marker] = ACTIONS(1398), - [sym_atx_h6_marker] = ACTIONS(1398), - [sym__thematic_break] = ACTIONS(1398), - [sym__list_marker_minus] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1400), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym__] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1400), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1400), + [sym__escaped_characters] = ACTIONS(1400), + [sym__word] = ACTIONS(1400), + [sym__soft_line_ending] = ACTIONS(1400), + [sym__block_close] = ACTIONS(1400), + [sym__block_quote_start] = ACTIONS(1400), + [sym__indented_chunk_start] = ACTIONS(1400), + [sym_atx_h1_marker] = ACTIONS(1400), + [sym_atx_h2_marker] = ACTIONS(1400), + [sym_atx_h3_marker] = ACTIONS(1400), + [sym_atx_h4_marker] = ACTIONS(1400), + [sym_atx_h5_marker] = ACTIONS(1400), + [sym_atx_h6_marker] = ACTIONS(1400), + [sym__thematic_break] = ACTIONS(1400), + [sym__list_marker_minus] = ACTIONS(1400), [sym__list_marker_plus] = ACTIONS(35), - [sym__list_marker_star] = ACTIONS(1398), - [sym__list_marker_parenthesis] = ACTIONS(1398), - [sym__list_marker_dot] = ACTIONS(1398), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1398), + [sym__list_marker_star] = ACTIONS(1400), + [sym__list_marker_parenthesis] = ACTIONS(1400), + [sym__list_marker_dot] = ACTIONS(1400), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1400), [sym__list_marker_plus_dont_interrupt] = ACTIONS(35), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_example] = ACTIONS(1398), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1398), - [sym__fenced_code_block_start_backtick] = ACTIONS(1398), - [sym__fenced_code_block_start_tilde] = ACTIONS(1398), - [sym__blank_line_start] = ACTIONS(1398), - [sym_minus_metadata] = ACTIONS(1398), - [sym__pipe_table_start] = ACTIONS(1398), - [sym__fenced_div_start] = ACTIONS(1398), - [sym__fenced_div_end] = ACTIONS(1398), - [sym_ref_id_specifier] = ACTIONS(1398), - [sym__display_math_state_track_marker] = ACTIONS(1398), - [sym__inline_math_state_track_marker] = ACTIONS(1398), - [sym__code_span_start] = ACTIONS(1398), - [sym__html_comment] = ACTIONS(1398), - [sym_raw_specifier] = ACTIONS(1398), - [sym__autolink] = ACTIONS(1398), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_example] = ACTIONS(1400), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1400), + [sym__fenced_code_block_start_backtick] = ACTIONS(1400), + [sym__fenced_code_block_start_tilde] = ACTIONS(1400), + [sym__blank_line_start] = ACTIONS(1400), + [sym_minus_metadata] = ACTIONS(1400), + [sym__pipe_table_start] = ACTIONS(1400), + [sym__fenced_div_start] = ACTIONS(1400), + [sym__fenced_div_end] = ACTIONS(1400), + [sym_ref_id_specifier] = ACTIONS(1400), + [sym__display_math_state_track_marker] = ACTIONS(1400), + [sym__inline_math_state_track_marker] = ACTIONS(1400), + [sym__code_span_start] = ACTIONS(1400), + [sym__html_comment] = ACTIONS(1400), + [sym_raw_specifier] = ACTIONS(1400), + [sym__autolink] = ACTIONS(1400), }, [STATE(124)] = { [sym__indented_chunk] = STATE(129), [sym__blank_line] = STATE(129), [aux_sym_indented_code_block_repeat1] = STATE(129), [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_BSLASH] = ACTIONS(1404), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1402), - [sym__escaped_characters] = ACTIONS(1402), - [sym__word] = ACTIONS(1402), - [sym__soft_line_ending] = ACTIONS(1402), - [sym__block_close] = ACTIONS(1402), - [sym__block_quote_start] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1404), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1404), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_BSLASH] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym__] = ACTIONS(1404), + [anon_sym_BQUOTE] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1404), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1404), + [sym__escaped_characters] = ACTIONS(1404), + [sym__word] = ACTIONS(1404), + [sym__soft_line_ending] = ACTIONS(1404), + [sym__block_close] = ACTIONS(1404), + [sym__block_quote_start] = ACTIONS(1404), [sym__indented_chunk_start] = ACTIONS(65), - [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__list_marker_example] = ACTIONS(1402), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1402), - [sym__fenced_code_block_start_backtick] = ACTIONS(1402), - [sym__fenced_code_block_start_tilde] = ACTIONS(1402), + [sym_atx_h1_marker] = ACTIONS(1404), + [sym_atx_h2_marker] = ACTIONS(1404), + [sym_atx_h3_marker] = ACTIONS(1404), + [sym_atx_h4_marker] = ACTIONS(1404), + [sym_atx_h5_marker] = ACTIONS(1404), + [sym_atx_h6_marker] = ACTIONS(1404), + [sym__thematic_break] = ACTIONS(1404), + [sym__list_marker_minus] = ACTIONS(1404), + [sym__list_marker_plus] = ACTIONS(1404), + [sym__list_marker_star] = ACTIONS(1404), + [sym__list_marker_parenthesis] = ACTIONS(1404), + [sym__list_marker_dot] = ACTIONS(1404), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_example] = ACTIONS(1404), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1404), + [sym__fenced_code_block_start_backtick] = ACTIONS(1404), + [sym__fenced_code_block_start_tilde] = ACTIONS(1404), [sym__blank_line_start] = ACTIONS(85), - [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), - [sym__code_span_start] = ACTIONS(1402), - [sym__html_comment] = ACTIONS(1402), - [sym_raw_specifier] = ACTIONS(1402), - [sym__autolink] = ACTIONS(1402), + [sym_minus_metadata] = ACTIONS(1404), + [sym__pipe_table_start] = ACTIONS(1404), + [sym__fenced_div_start] = ACTIONS(1404), + [sym__fenced_div_end] = ACTIONS(1404), + [sym_ref_id_specifier] = ACTIONS(1404), + [sym__display_math_state_track_marker] = ACTIONS(1404), + [sym__inline_math_state_track_marker] = ACTIONS(1404), + [sym__code_span_start] = ACTIONS(1404), + [sym__html_comment] = ACTIONS(1404), + [sym_raw_specifier] = ACTIONS(1404), + [sym__autolink] = ACTIONS(1404), }, [STATE(125)] = { [sym_list_marker_example] = STATE(34), [sym__list_item_example] = STATE(136), [aux_sym__list_example_repeat1] = STATE(136), [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_BSLASH] = ACTIONS(1408), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1406), - [sym__escaped_characters] = ACTIONS(1406), - [sym__word] = ACTIONS(1406), - [sym__soft_line_ending] = ACTIONS(1406), - [sym__block_close] = ACTIONS(1406), - [sym__block_quote_start] = ACTIONS(1406), - [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), + [anon_sym_RBRACE] = ACTIONS(1408), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1408), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1408), + [sym__escaped_characters] = ACTIONS(1408), + [sym__word] = ACTIONS(1408), + [sym__soft_line_ending] = ACTIONS(1408), + [sym__block_close] = ACTIONS(1408), + [sym__block_quote_start] = ACTIONS(1408), + [sym__indented_chunk_start] = ACTIONS(1408), + [sym_atx_h1_marker] = ACTIONS(1408), + [sym_atx_h2_marker] = ACTIONS(1408), + [sym_atx_h3_marker] = ACTIONS(1408), + [sym_atx_h4_marker] = ACTIONS(1408), + [sym_atx_h5_marker] = ACTIONS(1408), + [sym_atx_h6_marker] = ACTIONS(1408), + [sym__thematic_break] = ACTIONS(1408), + [sym__list_marker_minus] = ACTIONS(1408), + [sym__list_marker_plus] = ACTIONS(1408), + [sym__list_marker_star] = ACTIONS(1408), + [sym__list_marker_parenthesis] = ACTIONS(1408), + [sym__list_marker_dot] = ACTIONS(1408), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1408), [sym__list_marker_example] = ACTIONS(43), [sym__list_marker_example_dont_interrupt] = ACTIONS(43), - [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__code_span_start] = ACTIONS(1406), - [sym__html_comment] = ACTIONS(1406), - [sym_raw_specifier] = ACTIONS(1406), - [sym__autolink] = ACTIONS(1406), + [sym__fenced_code_block_start_backtick] = ACTIONS(1408), + [sym__fenced_code_block_start_tilde] = ACTIONS(1408), + [sym__blank_line_start] = ACTIONS(1408), + [sym_minus_metadata] = ACTIONS(1408), + [sym__pipe_table_start] = ACTIONS(1408), + [sym__fenced_div_start] = ACTIONS(1408), + [sym__fenced_div_end] = ACTIONS(1408), + [sym_ref_id_specifier] = ACTIONS(1408), + [sym__display_math_state_track_marker] = ACTIONS(1408), + [sym__inline_math_state_track_marker] = ACTIONS(1408), + [sym__code_span_start] = ACTIONS(1408), + [sym__html_comment] = ACTIONS(1408), + [sym_raw_specifier] = ACTIONS(1408), + [sym__autolink] = ACTIONS(1408), }, [STATE(126)] = { [sym_list_marker_parenthesis] = STATE(33), [sym__list_item_parenthesis] = STATE(130), [aux_sym__list_parenthesis_repeat1] = STATE(130), [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_BSLASH] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1410), - [sym__escaped_characters] = ACTIONS(1410), - [sym__word] = ACTIONS(1410), - [sym__soft_line_ending] = ACTIONS(1410), - [sym__block_close] = ACTIONS(1410), - [sym__block_quote_start] = ACTIONS(1410), - [sym__indented_chunk_start] = ACTIONS(1410), - [sym_atx_h1_marker] = ACTIONS(1410), - [sym_atx_h2_marker] = ACTIONS(1410), - [sym_atx_h3_marker] = ACTIONS(1410), - [sym_atx_h4_marker] = ACTIONS(1410), - [sym_atx_h5_marker] = ACTIONS(1410), - [sym_atx_h6_marker] = ACTIONS(1410), - [sym__thematic_break] = ACTIONS(1410), - [sym__list_marker_minus] = ACTIONS(1410), - [sym__list_marker_plus] = ACTIONS(1410), - [sym__list_marker_star] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1412), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_BSLASH] = ACTIONS(1410), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1412), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1412), + [sym__escaped_characters] = 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(39), - [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_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(39), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_example] = ACTIONS(1410), - [sym__list_marker_example_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), - [sym__code_span_start] = ACTIONS(1410), - [sym__html_comment] = ACTIONS(1410), - [sym_raw_specifier] = ACTIONS(1410), - [sym__autolink] = ACTIONS(1410), + [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), + [sym__code_span_start] = ACTIONS(1412), + [sym__html_comment] = ACTIONS(1412), + [sym_raw_specifier] = ACTIONS(1412), + [sym__autolink] = ACTIONS(1412), }, [STATE(127)] = { [sym_list_marker_dot] = STATE(32), [sym__list_item_dot] = STATE(131), [aux_sym__list_dot_repeat1] = STATE(131), [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_BSLASH] = ACTIONS(1416), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym__] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1414), - [sym__escaped_characters] = ACTIONS(1414), - [sym__word] = ACTIONS(1414), - [sym__soft_line_ending] = ACTIONS(1414), - [sym__block_close] = ACTIONS(1414), - [sym__block_quote_start] = ACTIONS(1414), - [sym__indented_chunk_start] = ACTIONS(1414), - [sym_atx_h1_marker] = ACTIONS(1414), - [sym_atx_h2_marker] = ACTIONS(1414), - [sym_atx_h3_marker] = ACTIONS(1414), - [sym_atx_h4_marker] = ACTIONS(1414), - [sym_atx_h5_marker] = ACTIONS(1414), - [sym_atx_h6_marker] = ACTIONS(1414), - [sym__thematic_break] = ACTIONS(1414), - [sym__list_marker_minus] = ACTIONS(1414), - [sym__list_marker_plus] = ACTIONS(1414), - [sym__list_marker_star] = ACTIONS(1414), - [sym__list_marker_parenthesis] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1416), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym__] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1416), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1416), + [sym__escaped_characters] = ACTIONS(1416), + [sym__word] = ACTIONS(1416), + [sym__soft_line_ending] = ACTIONS(1416), + [sym__block_close] = ACTIONS(1416), + [sym__block_quote_start] = ACTIONS(1416), + [sym__indented_chunk_start] = ACTIONS(1416), + [sym_atx_h1_marker] = ACTIONS(1416), + [sym_atx_h2_marker] = ACTIONS(1416), + [sym_atx_h3_marker] = ACTIONS(1416), + [sym_atx_h4_marker] = ACTIONS(1416), + [sym_atx_h5_marker] = ACTIONS(1416), + [sym_atx_h6_marker] = ACTIONS(1416), + [sym__thematic_break] = ACTIONS(1416), + [sym__list_marker_minus] = ACTIONS(1416), + [sym__list_marker_plus] = ACTIONS(1416), + [sym__list_marker_star] = ACTIONS(1416), + [sym__list_marker_parenthesis] = ACTIONS(1416), [sym__list_marker_dot] = ACTIONS(41), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1416), [sym__list_marker_dot_dont_interrupt] = ACTIONS(41), - [sym__list_marker_example] = ACTIONS(1414), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), - [sym__fenced_code_block_start_backtick] = ACTIONS(1414), - [sym__fenced_code_block_start_tilde] = ACTIONS(1414), - [sym__blank_line_start] = ACTIONS(1414), - [sym_minus_metadata] = ACTIONS(1414), - [sym__pipe_table_start] = ACTIONS(1414), - [sym__fenced_div_start] = ACTIONS(1414), - [sym__fenced_div_end] = ACTIONS(1414), - [sym_ref_id_specifier] = ACTIONS(1414), - [sym__display_math_state_track_marker] = ACTIONS(1414), - [sym__inline_math_state_track_marker] = ACTIONS(1414), - [sym__code_span_start] = ACTIONS(1414), - [sym__html_comment] = ACTIONS(1414), - [sym_raw_specifier] = ACTIONS(1414), - [sym__autolink] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1416), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1416), + [sym__fenced_code_block_start_backtick] = ACTIONS(1416), + [sym__fenced_code_block_start_tilde] = ACTIONS(1416), + [sym__blank_line_start] = ACTIONS(1416), + [sym_minus_metadata] = ACTIONS(1416), + [sym__pipe_table_start] = ACTIONS(1416), + [sym__fenced_div_start] = ACTIONS(1416), + [sym__fenced_div_end] = ACTIONS(1416), + [sym_ref_id_specifier] = ACTIONS(1416), + [sym__display_math_state_track_marker] = ACTIONS(1416), + [sym__inline_math_state_track_marker] = ACTIONS(1416), + [sym__code_span_start] = ACTIONS(1416), + [sym__html_comment] = ACTIONS(1416), + [sym_raw_specifier] = ACTIONS(1416), + [sym__autolink] = ACTIONS(1416), }, [STATE(128)] = { [sym_list_marker_minus] = STATE(30), [sym__list_item_minus] = STATE(135), [aux_sym__list_minus_repeat1] = STATE(135), [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_BSLASH] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1418), - [anon_sym_BQUOTE] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1418), - [sym__escaped_characters] = ACTIONS(1418), - [sym__word] = ACTIONS(1418), - [sym__soft_line_ending] = ACTIONS(1418), - [sym__block_close] = ACTIONS(1418), - [sym__block_quote_start] = ACTIONS(1418), - [sym__indented_chunk_start] = ACTIONS(1418), - [sym_atx_h1_marker] = ACTIONS(1418), - [sym_atx_h2_marker] = ACTIONS(1418), - [sym_atx_h3_marker] = ACTIONS(1418), - [sym_atx_h4_marker] = ACTIONS(1418), - [sym_atx_h5_marker] = ACTIONS(1418), - [sym_atx_h6_marker] = ACTIONS(1418), - [sym__thematic_break] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1420), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1418), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1420), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1420), + [sym__escaped_characters] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [sym__block_close] = ACTIONS(1420), + [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(33), - [sym__list_marker_plus] = ACTIONS(1418), - [sym__list_marker_star] = ACTIONS(1418), - [sym__list_marker_parenthesis] = ACTIONS(1418), - [sym__list_marker_dot] = ACTIONS(1418), + [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(33), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_example] = ACTIONS(1418), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1418), - [sym__fenced_code_block_start_backtick] = ACTIONS(1418), - [sym__fenced_code_block_start_tilde] = ACTIONS(1418), - [sym__blank_line_start] = ACTIONS(1418), - [sym_minus_metadata] = ACTIONS(1418), - [sym__pipe_table_start] = ACTIONS(1418), - [sym__fenced_div_start] = ACTIONS(1418), - [sym__fenced_div_end] = ACTIONS(1418), - [sym_ref_id_specifier] = ACTIONS(1418), - [sym__display_math_state_track_marker] = ACTIONS(1418), - [sym__inline_math_state_track_marker] = ACTIONS(1418), - [sym__code_span_start] = ACTIONS(1418), - [sym__html_comment] = ACTIONS(1418), - [sym_raw_specifier] = ACTIONS(1418), - [sym__autolink] = ACTIONS(1418), + [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__list_marker_example] = ACTIONS(1420), + [sym__list_marker_example_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), + [sym__code_span_start] = ACTIONS(1420), + [sym__html_comment] = ACTIONS(1420), + [sym_raw_specifier] = ACTIONS(1420), + [sym__autolink] = ACTIONS(1420), }, [STATE(129)] = { [sym__indented_chunk] = STATE(132), [sym__blank_line] = STATE(132), [aux_sym_indented_code_block_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1422), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_BSLASH] = ACTIONS(1424), - [anon_sym_RBRACK] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym__] = ACTIONS(1422), - [anon_sym_BQUOTE] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1422), - [sym__escaped_characters] = ACTIONS(1422), - [sym__word] = ACTIONS(1422), - [sym__soft_line_ending] = ACTIONS(1422), - [sym__block_close] = ACTIONS(1422), - [sym__block_quote_start] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1424), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_BSLASH] = ACTIONS(1422), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1424), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1424), + [sym__escaped_characters] = 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(65), - [sym_atx_h1_marker] = ACTIONS(1422), - [sym_atx_h2_marker] = ACTIONS(1422), - [sym_atx_h3_marker] = ACTIONS(1422), - [sym_atx_h4_marker] = ACTIONS(1422), - [sym_atx_h5_marker] = ACTIONS(1422), - [sym_atx_h6_marker] = ACTIONS(1422), - [sym__thematic_break] = ACTIONS(1422), - [sym__list_marker_minus] = ACTIONS(1422), - [sym__list_marker_plus] = ACTIONS(1422), - [sym__list_marker_star] = ACTIONS(1422), - [sym__list_marker_parenthesis] = ACTIONS(1422), - [sym__list_marker_dot] = ACTIONS(1422), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_example] = ACTIONS(1422), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1422), - [sym__fenced_code_block_start_backtick] = ACTIONS(1422), - [sym__fenced_code_block_start_tilde] = ACTIONS(1422), + [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(85), - [sym_minus_metadata] = ACTIONS(1422), - [sym__pipe_table_start] = ACTIONS(1422), - [sym__fenced_div_start] = ACTIONS(1422), - [sym__fenced_div_end] = ACTIONS(1422), - [sym_ref_id_specifier] = ACTIONS(1422), - [sym__display_math_state_track_marker] = ACTIONS(1422), - [sym__inline_math_state_track_marker] = ACTIONS(1422), - [sym__code_span_start] = ACTIONS(1422), - [sym__html_comment] = ACTIONS(1422), - [sym_raw_specifier] = ACTIONS(1422), - [sym__autolink] = ACTIONS(1422), + [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), + [sym__code_span_start] = ACTIONS(1424), + [sym__html_comment] = ACTIONS(1424), + [sym_raw_specifier] = ACTIONS(1424), + [sym__autolink] = ACTIONS(1424), }, [STATE(130)] = { [sym_list_marker_parenthesis] = STATE(33), [sym__list_item_parenthesis] = STATE(130), [aux_sym__list_parenthesis_repeat1] = STATE(130), [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_BSLASH] = ACTIONS(1428), - [anon_sym_RBRACK] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym__] = ACTIONS(1426), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1426), - [sym__escaped_characters] = ACTIONS(1426), - [sym__word] = ACTIONS(1426), - [sym__soft_line_ending] = ACTIONS(1426), - [sym__block_close] = ACTIONS(1426), - [sym__block_quote_start] = ACTIONS(1426), - [sym__indented_chunk_start] = ACTIONS(1426), - [sym_atx_h1_marker] = ACTIONS(1426), - [sym_atx_h2_marker] = ACTIONS(1426), - [sym_atx_h3_marker] = ACTIONS(1426), - [sym_atx_h4_marker] = ACTIONS(1426), - [sym_atx_h5_marker] = ACTIONS(1426), - [sym_atx_h6_marker] = ACTIONS(1426), - [sym__thematic_break] = ACTIONS(1426), - [sym__list_marker_minus] = ACTIONS(1426), - [sym__list_marker_plus] = ACTIONS(1426), - [sym__list_marker_star] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1428), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1428), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1428), + [sym__escaped_characters] = 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(1430), - [sym__list_marker_dot] = ACTIONS(1426), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [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(1430), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_example] = ACTIONS(1426), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), - [sym__fenced_code_block_start_backtick] = ACTIONS(1426), - [sym__fenced_code_block_start_tilde] = ACTIONS(1426), - [sym__blank_line_start] = ACTIONS(1426), - [sym_minus_metadata] = ACTIONS(1426), - [sym__pipe_table_start] = ACTIONS(1426), - [sym__fenced_div_start] = ACTIONS(1426), - [sym__fenced_div_end] = ACTIONS(1426), - [sym_ref_id_specifier] = ACTIONS(1426), - [sym__display_math_state_track_marker] = ACTIONS(1426), - [sym__inline_math_state_track_marker] = ACTIONS(1426), - [sym__code_span_start] = ACTIONS(1426), - [sym__html_comment] = ACTIONS(1426), - [sym_raw_specifier] = ACTIONS(1426), - [sym__autolink] = ACTIONS(1426), + [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), + [sym__code_span_start] = ACTIONS(1428), + [sym__html_comment] = ACTIONS(1428), + [sym_raw_specifier] = ACTIONS(1428), + [sym__autolink] = ACTIONS(1428), }, [STATE(131)] = { [sym_list_marker_dot] = STATE(32), [sym__list_item_dot] = STATE(131), [aux_sym__list_dot_repeat1] = STATE(131), [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_BSLASH] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym__] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1433), - [sym__escaped_characters] = ACTIONS(1433), - [sym__word] = ACTIONS(1433), - [sym__soft_line_ending] = ACTIONS(1433), - [sym__block_close] = ACTIONS(1433), - [sym__block_quote_start] = ACTIONS(1433), - [sym__indented_chunk_start] = ACTIONS(1433), - [sym_atx_h1_marker] = ACTIONS(1433), - [sym_atx_h2_marker] = ACTIONS(1433), - [sym_atx_h3_marker] = ACTIONS(1433), - [sym_atx_h4_marker] = ACTIONS(1433), - [sym_atx_h5_marker] = ACTIONS(1433), - [sym_atx_h6_marker] = ACTIONS(1433), - [sym__thematic_break] = ACTIONS(1433), - [sym__list_marker_minus] = ACTIONS(1433), - [sym__list_marker_plus] = ACTIONS(1433), - [sym__list_marker_star] = ACTIONS(1433), - [sym__list_marker_parenthesis] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1435), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_BSLASH] = ACTIONS(1433), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym__] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1435), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1435), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1435), + [sym__escaped_characters] = ACTIONS(1435), + [sym__word] = ACTIONS(1435), + [sym__soft_line_ending] = ACTIONS(1435), + [sym__block_close] = ACTIONS(1435), + [sym__block_quote_start] = ACTIONS(1435), + [sym__indented_chunk_start] = ACTIONS(1435), + [sym_atx_h1_marker] = ACTIONS(1435), + [sym_atx_h2_marker] = ACTIONS(1435), + [sym_atx_h3_marker] = ACTIONS(1435), + [sym_atx_h4_marker] = ACTIONS(1435), + [sym_atx_h5_marker] = ACTIONS(1435), + [sym_atx_h6_marker] = ACTIONS(1435), + [sym__thematic_break] = ACTIONS(1435), + [sym__list_marker_minus] = ACTIONS(1435), + [sym__list_marker_plus] = ACTIONS(1435), + [sym__list_marker_star] = ACTIONS(1435), + [sym__list_marker_parenthesis] = ACTIONS(1435), [sym__list_marker_dot] = ACTIONS(1437), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1433), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1435), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1437), - [sym__list_marker_example] = ACTIONS(1433), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1433), - [sym__fenced_code_block_start_backtick] = ACTIONS(1433), - [sym__fenced_code_block_start_tilde] = ACTIONS(1433), - [sym__blank_line_start] = ACTIONS(1433), - [sym_minus_metadata] = ACTIONS(1433), - [sym__pipe_table_start] = ACTIONS(1433), - [sym__fenced_div_start] = ACTIONS(1433), - [sym__fenced_div_end] = ACTIONS(1433), - [sym_ref_id_specifier] = ACTIONS(1433), - [sym__display_math_state_track_marker] = ACTIONS(1433), - [sym__inline_math_state_track_marker] = ACTIONS(1433), - [sym__code_span_start] = ACTIONS(1433), - [sym__html_comment] = ACTIONS(1433), - [sym_raw_specifier] = ACTIONS(1433), - [sym__autolink] = ACTIONS(1433), + [sym__list_marker_example] = ACTIONS(1435), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1435), + [sym__fenced_code_block_start_backtick] = ACTIONS(1435), + [sym__fenced_code_block_start_tilde] = ACTIONS(1435), + [sym__blank_line_start] = ACTIONS(1435), + [sym_minus_metadata] = ACTIONS(1435), + [sym__pipe_table_start] = ACTIONS(1435), + [sym__fenced_div_start] = ACTIONS(1435), + [sym__fenced_div_end] = ACTIONS(1435), + [sym_ref_id_specifier] = ACTIONS(1435), + [sym__display_math_state_track_marker] = ACTIONS(1435), + [sym__inline_math_state_track_marker] = ACTIONS(1435), + [sym__code_span_start] = ACTIONS(1435), + [sym__html_comment] = ACTIONS(1435), + [sym_raw_specifier] = ACTIONS(1435), + [sym__autolink] = ACTIONS(1435), }, [STATE(132)] = { [sym__indented_chunk] = STATE(132), [sym__blank_line] = STATE(132), [aux_sym_indented_code_block_repeat1] = STATE(132), [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_BSLASH] = ACTIONS(1442), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1440), - [sym__escaped_characters] = ACTIONS(1440), - [sym__word] = ACTIONS(1440), - [sym__soft_line_ending] = ACTIONS(1440), - [sym__block_close] = ACTIONS(1440), - [sym__block_quote_start] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1442), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_BSLASH] = ACTIONS(1440), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1442), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1442), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1442), + [sym__escaped_characters] = 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(1444), - [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__list_marker_example] = ACTIONS(1440), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1440), - [sym__fenced_code_block_start_backtick] = ACTIONS(1440), - [sym__fenced_code_block_start_tilde] = ACTIONS(1440), + [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(1447), - [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), - [sym__code_span_start] = ACTIONS(1440), - [sym__html_comment] = ACTIONS(1440), - [sym_raw_specifier] = ACTIONS(1440), - [sym__autolink] = ACTIONS(1440), + [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), + [sym__code_span_start] = ACTIONS(1442), + [sym__html_comment] = ACTIONS(1442), + [sym_raw_specifier] = ACTIONS(1442), + [sym__autolink] = ACTIONS(1442), }, [STATE(133)] = { [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1450), - [sym__escaped_characters] = ACTIONS(1450), - [sym__word] = ACTIONS(1450), - [sym__soft_line_ending] = ACTIONS(1450), - [sym__block_close] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1452), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1452), + [sym__escaped_characters] = 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(1450), - [sym__indented_chunk_start] = ACTIONS(1450), - [sym_atx_h1_marker] = ACTIONS(1450), - [sym_atx_h2_marker] = ACTIONS(1450), - [sym_atx_h3_marker] = ACTIONS(1450), - [sym_atx_h4_marker] = ACTIONS(1450), - [sym_atx_h5_marker] = ACTIONS(1450), - [sym_atx_h6_marker] = ACTIONS(1450), - [sym_setext_h1_underline] = ACTIONS(1450), - [sym_setext_h2_underline] = ACTIONS(1450), - [sym__thematic_break] = ACTIONS(1450), - [sym__list_marker_minus] = ACTIONS(1450), - [sym__list_marker_plus] = ACTIONS(1450), - [sym__list_marker_star] = ACTIONS(1450), - [sym__list_marker_parenthesis] = ACTIONS(1450), - [sym__list_marker_dot] = ACTIONS(1450), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_example] = ACTIONS(1450), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), - [sym__fenced_code_block_start_backtick] = ACTIONS(1450), - [sym__fenced_code_block_start_tilde] = ACTIONS(1450), - [sym__blank_line_start] = ACTIONS(1450), - [sym_minus_metadata] = ACTIONS(1450), - [sym__pipe_table_start] = ACTIONS(1450), - [sym__fenced_div_start] = ACTIONS(1450), - [sym__fenced_div_end] = ACTIONS(1450), - [sym_ref_id_specifier] = ACTIONS(1450), - [sym__display_math_state_track_marker] = ACTIONS(1450), - [sym__inline_math_state_track_marker] = ACTIONS(1450), - [sym__code_span_start] = ACTIONS(1450), - [sym__html_comment] = ACTIONS(1450), - [sym_raw_specifier] = ACTIONS(1450), - [sym__autolink] = ACTIONS(1450), + [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_setext_h1_underline] = ACTIONS(1452), + [sym_setext_h2_underline] = 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__list_marker_example] = ACTIONS(1452), + [sym__list_marker_example_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), + [sym__code_span_start] = ACTIONS(1452), + [sym__html_comment] = ACTIONS(1452), + [sym_raw_specifier] = ACTIONS(1452), + [sym__autolink] = ACTIONS(1452), }, [STATE(134)] = { [sym_list_marker_star] = STATE(31), [sym__list_item_star] = STATE(134), [aux_sym__list_star_repeat1] = STATE(134), [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1456), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_BSLASH] = ACTIONS(1458), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1456), - [sym__escaped_characters] = ACTIONS(1456), - [sym__word] = ACTIONS(1456), - [sym__soft_line_ending] = ACTIONS(1456), - [sym__block_close] = ACTIONS(1456), - [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), + [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1458), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1458), + [sym__escaped_characters] = 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(1460), - [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_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(1460), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_example] = ACTIONS(1456), - [sym__list_marker_example_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), - [sym__code_span_start] = ACTIONS(1456), - [sym__html_comment] = ACTIONS(1456), - [sym_raw_specifier] = ACTIONS(1456), - [sym__autolink] = ACTIONS(1456), + [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), + [sym__code_span_start] = ACTIONS(1458), + [sym__html_comment] = ACTIONS(1458), + [sym_raw_specifier] = ACTIONS(1458), + [sym__autolink] = ACTIONS(1458), }, [STATE(135)] = { [sym_list_marker_minus] = STATE(30), [sym__list_item_minus] = STATE(135), [aux_sym__list_minus_repeat1] = STATE(135), [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1465), - [anon_sym_RBRACK] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym__] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1463), - [sym__escaped_characters] = ACTIONS(1463), - [sym__word] = ACTIONS(1463), - [sym__soft_line_ending] = ACTIONS(1463), - [sym__block_close] = ACTIONS(1463), - [sym__block_quote_start] = ACTIONS(1463), - [sym__indented_chunk_start] = ACTIONS(1463), - [sym_atx_h1_marker] = ACTIONS(1463), - [sym_atx_h2_marker] = ACTIONS(1463), - [sym_atx_h3_marker] = ACTIONS(1463), - [sym_atx_h4_marker] = ACTIONS(1463), - [sym_atx_h5_marker] = ACTIONS(1463), - [sym_atx_h6_marker] = ACTIONS(1463), - [sym__thematic_break] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1465), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_DOLLAR] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_BSLASH] = ACTIONS(1463), + [anon_sym_RBRACK] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym__] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1465), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1465), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1465), + [sym__escaped_characters] = ACTIONS(1465), + [sym__word] = ACTIONS(1465), + [sym__soft_line_ending] = ACTIONS(1465), + [sym__block_close] = ACTIONS(1465), + [sym__block_quote_start] = ACTIONS(1465), + [sym__indented_chunk_start] = ACTIONS(1465), + [sym_atx_h1_marker] = ACTIONS(1465), + [sym_atx_h2_marker] = ACTIONS(1465), + [sym_atx_h3_marker] = ACTIONS(1465), + [sym_atx_h4_marker] = ACTIONS(1465), + [sym_atx_h5_marker] = ACTIONS(1465), + [sym_atx_h6_marker] = ACTIONS(1465), + [sym__thematic_break] = ACTIONS(1465), [sym__list_marker_minus] = ACTIONS(1467), - [sym__list_marker_plus] = ACTIONS(1463), - [sym__list_marker_star] = ACTIONS(1463), - [sym__list_marker_parenthesis] = ACTIONS(1463), - [sym__list_marker_dot] = ACTIONS(1463), + [sym__list_marker_plus] = ACTIONS(1465), + [sym__list_marker_star] = ACTIONS(1465), + [sym__list_marker_parenthesis] = ACTIONS(1465), + [sym__list_marker_dot] = ACTIONS(1465), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1467), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_example] = ACTIONS(1463), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1463), - [sym__fenced_code_block_start_backtick] = ACTIONS(1463), - [sym__fenced_code_block_start_tilde] = ACTIONS(1463), - [sym__blank_line_start] = ACTIONS(1463), - [sym_minus_metadata] = ACTIONS(1463), - [sym__pipe_table_start] = ACTIONS(1463), - [sym__fenced_div_start] = ACTIONS(1463), - [sym__fenced_div_end] = ACTIONS(1463), - [sym_ref_id_specifier] = ACTIONS(1463), - [sym__display_math_state_track_marker] = ACTIONS(1463), - [sym__inline_math_state_track_marker] = ACTIONS(1463), - [sym__code_span_start] = ACTIONS(1463), - [sym__html_comment] = ACTIONS(1463), - [sym_raw_specifier] = ACTIONS(1463), - [sym__autolink] = ACTIONS(1463), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_example] = ACTIONS(1465), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1465), + [sym__fenced_code_block_start_backtick] = ACTIONS(1465), + [sym__fenced_code_block_start_tilde] = ACTIONS(1465), + [sym__blank_line_start] = ACTIONS(1465), + [sym_minus_metadata] = ACTIONS(1465), + [sym__pipe_table_start] = ACTIONS(1465), + [sym__fenced_div_start] = ACTIONS(1465), + [sym__fenced_div_end] = ACTIONS(1465), + [sym_ref_id_specifier] = ACTIONS(1465), + [sym__display_math_state_track_marker] = ACTIONS(1465), + [sym__inline_math_state_track_marker] = ACTIONS(1465), + [sym__code_span_start] = ACTIONS(1465), + [sym__html_comment] = ACTIONS(1465), + [sym_raw_specifier] = ACTIONS(1465), + [sym__autolink] = ACTIONS(1465), }, [STATE(136)] = { [sym_list_marker_example] = STATE(34), [sym__list_item_example] = STATE(136), [aux_sym__list_example_repeat1] = STATE(136), [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_BSLASH] = ACTIONS(1472), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1470), - [sym__escaped_characters] = ACTIONS(1470), - [sym__word] = ACTIONS(1470), - [sym__soft_line_ending] = ACTIONS(1470), - [sym__block_close] = ACTIONS(1470), - [sym__block_quote_start] = ACTIONS(1470), - [sym__indented_chunk_start] = ACTIONS(1470), - [sym_atx_h1_marker] = ACTIONS(1470), - [sym_atx_h2_marker] = ACTIONS(1470), - [sym_atx_h3_marker] = ACTIONS(1470), - [sym_atx_h4_marker] = ACTIONS(1470), - [sym_atx_h5_marker] = ACTIONS(1470), - [sym_atx_h6_marker] = ACTIONS(1470), - [sym__thematic_break] = ACTIONS(1470), - [sym__list_marker_minus] = ACTIONS(1470), - [sym__list_marker_plus] = ACTIONS(1470), - [sym__list_marker_star] = ACTIONS(1470), - [sym__list_marker_parenthesis] = ACTIONS(1470), - [sym__list_marker_dot] = ACTIONS(1470), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1472), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1472), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1472), + [sym__escaped_characters] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [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(1474), [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), - [sym__fenced_code_block_start_backtick] = ACTIONS(1470), - [sym__fenced_code_block_start_tilde] = ACTIONS(1470), - [sym__blank_line_start] = ACTIONS(1470), - [sym_minus_metadata] = ACTIONS(1470), - [sym__pipe_table_start] = ACTIONS(1470), - [sym__fenced_div_start] = ACTIONS(1470), - [sym__fenced_div_end] = ACTIONS(1470), - [sym_ref_id_specifier] = ACTIONS(1470), - [sym__display_math_state_track_marker] = ACTIONS(1470), - [sym__inline_math_state_track_marker] = ACTIONS(1470), - [sym__code_span_start] = ACTIONS(1470), - [sym__html_comment] = ACTIONS(1470), - [sym_raw_specifier] = ACTIONS(1470), - [sym__autolink] = ACTIONS(1470), + [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), + [sym__code_span_start] = ACTIONS(1472), + [sym__html_comment] = ACTIONS(1472), + [sym_raw_specifier] = ACTIONS(1472), + [sym__autolink] = ACTIONS(1472), }, [STATE(137)] = { [sym_list_marker_plus] = STATE(29), [sym__list_item_plus] = STATE(137), [aux_sym__list_plus_repeat1] = STATE(137), [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_RBRACK] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1477), - [sym__escaped_characters] = ACTIONS(1477), - [sym__word] = ACTIONS(1477), - [sym__soft_line_ending] = ACTIONS(1477), - [sym__block_close] = ACTIONS(1477), - [sym__block_quote_start] = ACTIONS(1477), - [sym__indented_chunk_start] = ACTIONS(1477), - [sym_atx_h1_marker] = ACTIONS(1477), - [sym_atx_h2_marker] = ACTIONS(1477), - [sym_atx_h3_marker] = ACTIONS(1477), - [sym_atx_h4_marker] = ACTIONS(1477), - [sym_atx_h5_marker] = ACTIONS(1477), - [sym_atx_h6_marker] = ACTIONS(1477), - [sym__thematic_break] = ACTIONS(1477), - [sym__list_marker_minus] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1479), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_BSLASH] = ACTIONS(1477), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1479), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1479), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1479), + [sym__escaped_characters] = ACTIONS(1479), + [sym__word] = ACTIONS(1479), + [sym__soft_line_ending] = ACTIONS(1479), + [sym__block_close] = ACTIONS(1479), + [sym__block_quote_start] = ACTIONS(1479), + [sym__indented_chunk_start] = ACTIONS(1479), + [sym_atx_h1_marker] = ACTIONS(1479), + [sym_atx_h2_marker] = ACTIONS(1479), + [sym_atx_h3_marker] = ACTIONS(1479), + [sym_atx_h4_marker] = ACTIONS(1479), + [sym_atx_h5_marker] = ACTIONS(1479), + [sym_atx_h6_marker] = ACTIONS(1479), + [sym__thematic_break] = ACTIONS(1479), + [sym__list_marker_minus] = ACTIONS(1479), [sym__list_marker_plus] = ACTIONS(1481), - [sym__list_marker_star] = ACTIONS(1477), - [sym__list_marker_parenthesis] = ACTIONS(1477), - [sym__list_marker_dot] = ACTIONS(1477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1477), + [sym__list_marker_star] = ACTIONS(1479), + [sym__list_marker_parenthesis] = ACTIONS(1479), + [sym__list_marker_dot] = ACTIONS(1479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1479), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1481), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_example] = ACTIONS(1477), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1477), - [sym__fenced_code_block_start_backtick] = ACTIONS(1477), - [sym__fenced_code_block_start_tilde] = ACTIONS(1477), - [sym__blank_line_start] = ACTIONS(1477), - [sym_minus_metadata] = ACTIONS(1477), - [sym__pipe_table_start] = ACTIONS(1477), - [sym__fenced_div_start] = ACTIONS(1477), - [sym__fenced_div_end] = ACTIONS(1477), - [sym_ref_id_specifier] = ACTIONS(1477), - [sym__display_math_state_track_marker] = ACTIONS(1477), - [sym__inline_math_state_track_marker] = ACTIONS(1477), - [sym__code_span_start] = ACTIONS(1477), - [sym__html_comment] = ACTIONS(1477), - [sym_raw_specifier] = ACTIONS(1477), - [sym__autolink] = ACTIONS(1477), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_example] = ACTIONS(1479), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1479), + [sym__fenced_code_block_start_backtick] = ACTIONS(1479), + [sym__fenced_code_block_start_tilde] = ACTIONS(1479), + [sym__blank_line_start] = ACTIONS(1479), + [sym_minus_metadata] = ACTIONS(1479), + [sym__pipe_table_start] = ACTIONS(1479), + [sym__fenced_div_start] = ACTIONS(1479), + [sym__fenced_div_end] = ACTIONS(1479), + [sym_ref_id_specifier] = ACTIONS(1479), + [sym__display_math_state_track_marker] = ACTIONS(1479), + [sym__inline_math_state_track_marker] = ACTIONS(1479), + [sym__code_span_start] = ACTIONS(1479), + [sym__html_comment] = ACTIONS(1479), + [sym_raw_specifier] = ACTIONS(1479), + [sym__autolink] = ACTIONS(1479), }, [STATE(138)] = { [sym_list_marker_plus] = STATE(23), [sym__list_item_plus] = STATE(140), [aux_sym__list_plus_repeat1] = STATE(140), [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_BSLASH] = ACTIONS(1400), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1398), - [sym__escaped_characters] = ACTIONS(1398), - [sym__word] = ACTIONS(1398), - [sym__soft_line_ending] = ACTIONS(1398), - [sym__block_close] = ACTIONS(1398), - [sym__block_quote_start] = ACTIONS(1398), - [sym__indented_chunk_start] = ACTIONS(1398), - [sym_atx_h1_marker] = ACTIONS(1398), - [sym_atx_h2_marker] = ACTIONS(1398), - [sym_atx_h3_marker] = ACTIONS(1398), - [sym_atx_h4_marker] = ACTIONS(1398), - [sym_atx_h5_marker] = ACTIONS(1398), - [sym_atx_h6_marker] = ACTIONS(1398), - [sym__thematic_break] = ACTIONS(1398), - [sym__list_marker_minus] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1400), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym__] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1400), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1400), + [sym__escaped_characters] = ACTIONS(1400), + [sym__word] = ACTIONS(1400), + [sym__soft_line_ending] = ACTIONS(1400), + [sym__block_close] = ACTIONS(1400), + [sym__block_quote_start] = ACTIONS(1400), + [sym__indented_chunk_start] = ACTIONS(1400), + [sym_atx_h1_marker] = ACTIONS(1400), + [sym_atx_h2_marker] = ACTIONS(1400), + [sym_atx_h3_marker] = ACTIONS(1400), + [sym_atx_h4_marker] = ACTIONS(1400), + [sym_atx_h5_marker] = ACTIONS(1400), + [sym_atx_h6_marker] = ACTIONS(1400), + [sym__thematic_break] = ACTIONS(1400), + [sym__list_marker_minus] = ACTIONS(1400), [sym__list_marker_plus] = ACTIONS(35), - [sym__list_marker_star] = ACTIONS(1398), - [sym__list_marker_parenthesis] = ACTIONS(1398), - [sym__list_marker_dot] = ACTIONS(1398), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1398), + [sym__list_marker_star] = ACTIONS(1400), + [sym__list_marker_parenthesis] = ACTIONS(1400), + [sym__list_marker_dot] = ACTIONS(1400), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1400), [sym__list_marker_plus_dont_interrupt] = ACTIONS(35), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_example] = ACTIONS(1398), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1398), - [sym__fenced_code_block_start_backtick] = ACTIONS(1398), - [sym__fenced_code_block_start_tilde] = ACTIONS(1398), - [sym__blank_line_start] = ACTIONS(1398), - [sym_minus_metadata] = ACTIONS(1398), - [sym__pipe_table_start] = ACTIONS(1398), - [sym__fenced_div_start] = ACTIONS(1398), - [sym_ref_id_specifier] = ACTIONS(1398), - [sym__display_math_state_track_marker] = ACTIONS(1398), - [sym__inline_math_state_track_marker] = ACTIONS(1398), - [sym__code_span_start] = ACTIONS(1398), - [sym__html_comment] = ACTIONS(1398), - [sym_raw_specifier] = ACTIONS(1398), - [sym__autolink] = ACTIONS(1398), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_example] = ACTIONS(1400), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1400), + [sym__fenced_code_block_start_backtick] = ACTIONS(1400), + [sym__fenced_code_block_start_tilde] = ACTIONS(1400), + [sym__blank_line_start] = ACTIONS(1400), + [sym_minus_metadata] = ACTIONS(1400), + [sym__pipe_table_start] = ACTIONS(1400), + [sym__fenced_div_start] = ACTIONS(1400), + [sym_ref_id_specifier] = ACTIONS(1400), + [sym__display_math_state_track_marker] = ACTIONS(1400), + [sym__inline_math_state_track_marker] = ACTIONS(1400), + [sym__code_span_start] = ACTIONS(1400), + [sym__html_comment] = ACTIONS(1400), + [sym_raw_specifier] = ACTIONS(1400), + [sym__autolink] = ACTIONS(1400), }, [STATE(139)] = { [sym_list_marker_star] = STATE(3), [sym__list_item_star] = STATE(139), [aux_sym__list_star_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1458), [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1456), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_BSLASH] = ACTIONS(1458), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1456), - [sym__escaped_characters] = ACTIONS(1456), - [sym__word] = ACTIONS(1456), - [sym__soft_line_ending] = ACTIONS(1456), - [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), + [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1458), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1458), + [sym__escaped_characters] = 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(1460), - [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_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(1460), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_example] = ACTIONS(1456), - [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1456), - [sym__display_math_state_track_marker] = ACTIONS(1456), - [sym__inline_math_state_track_marker] = ACTIONS(1456), - [sym__code_span_start] = ACTIONS(1456), - [sym__html_comment] = ACTIONS(1456), - [sym_raw_specifier] = ACTIONS(1456), - [sym__autolink] = ACTIONS(1456), + [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), + [sym__code_span_start] = ACTIONS(1458), + [sym__html_comment] = ACTIONS(1458), + [sym_raw_specifier] = ACTIONS(1458), + [sym__autolink] = ACTIONS(1458), }, [STATE(140)] = { [sym_list_marker_plus] = STATE(23), [sym__list_item_plus] = STATE(140), [aux_sym__list_plus_repeat1] = STATE(140), [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_RBRACK] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1477), - [sym__escaped_characters] = ACTIONS(1477), - [sym__word] = ACTIONS(1477), - [sym__soft_line_ending] = ACTIONS(1477), - [sym__block_close] = ACTIONS(1477), - [sym__block_quote_start] = ACTIONS(1477), - [sym__indented_chunk_start] = ACTIONS(1477), - [sym_atx_h1_marker] = ACTIONS(1477), - [sym_atx_h2_marker] = ACTIONS(1477), - [sym_atx_h3_marker] = ACTIONS(1477), - [sym_atx_h4_marker] = ACTIONS(1477), - [sym_atx_h5_marker] = ACTIONS(1477), - [sym_atx_h6_marker] = ACTIONS(1477), - [sym__thematic_break] = ACTIONS(1477), - [sym__list_marker_minus] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1479), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_BSLASH] = ACTIONS(1477), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1479), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1479), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1479), + [sym__escaped_characters] = ACTIONS(1479), + [sym__word] = ACTIONS(1479), + [sym__soft_line_ending] = ACTIONS(1479), + [sym__block_close] = ACTIONS(1479), + [sym__block_quote_start] = ACTIONS(1479), + [sym__indented_chunk_start] = ACTIONS(1479), + [sym_atx_h1_marker] = ACTIONS(1479), + [sym_atx_h2_marker] = ACTIONS(1479), + [sym_atx_h3_marker] = ACTIONS(1479), + [sym_atx_h4_marker] = ACTIONS(1479), + [sym_atx_h5_marker] = ACTIONS(1479), + [sym_atx_h6_marker] = ACTIONS(1479), + [sym__thematic_break] = ACTIONS(1479), + [sym__list_marker_minus] = ACTIONS(1479), [sym__list_marker_plus] = ACTIONS(1481), - [sym__list_marker_star] = ACTIONS(1477), - [sym__list_marker_parenthesis] = ACTIONS(1477), - [sym__list_marker_dot] = ACTIONS(1477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1477), + [sym__list_marker_star] = ACTIONS(1479), + [sym__list_marker_parenthesis] = ACTIONS(1479), + [sym__list_marker_dot] = ACTIONS(1479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1479), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1481), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_example] = ACTIONS(1477), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1477), - [sym__fenced_code_block_start_backtick] = ACTIONS(1477), - [sym__fenced_code_block_start_tilde] = ACTIONS(1477), - [sym__blank_line_start] = ACTIONS(1477), - [sym_minus_metadata] = ACTIONS(1477), - [sym__pipe_table_start] = ACTIONS(1477), - [sym__fenced_div_start] = ACTIONS(1477), - [sym_ref_id_specifier] = ACTIONS(1477), - [sym__display_math_state_track_marker] = ACTIONS(1477), - [sym__inline_math_state_track_marker] = ACTIONS(1477), - [sym__code_span_start] = ACTIONS(1477), - [sym__html_comment] = ACTIONS(1477), - [sym_raw_specifier] = ACTIONS(1477), - [sym__autolink] = ACTIONS(1477), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_example] = ACTIONS(1479), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1479), + [sym__fenced_code_block_start_backtick] = ACTIONS(1479), + [sym__fenced_code_block_start_tilde] = ACTIONS(1479), + [sym__blank_line_start] = ACTIONS(1479), + [sym_minus_metadata] = ACTIONS(1479), + [sym__pipe_table_start] = ACTIONS(1479), + [sym__fenced_div_start] = ACTIONS(1479), + [sym_ref_id_specifier] = ACTIONS(1479), + [sym__display_math_state_track_marker] = ACTIONS(1479), + [sym__inline_math_state_track_marker] = ACTIONS(1479), + [sym__code_span_start] = ACTIONS(1479), + [sym__html_comment] = ACTIONS(1479), + [sym_raw_specifier] = ACTIONS(1479), + [sym__autolink] = ACTIONS(1479), }, [STATE(141)] = { [sym__indented_chunk] = STATE(144), [sym__blank_line] = STATE(144), [aux_sym_indented_code_block_repeat1] = STATE(144), - [ts_builtin_sym_end] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_BSLASH] = ACTIONS(1404), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1402), - [sym__escaped_characters] = ACTIONS(1402), - [sym__word] = ACTIONS(1402), - [sym__soft_line_ending] = ACTIONS(1402), - [sym__block_quote_start] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1404), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1404), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_BSLASH] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym__] = ACTIONS(1404), + [anon_sym_BQUOTE] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1404), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1404), + [sym__escaped_characters] = ACTIONS(1404), + [sym__word] = ACTIONS(1404), + [sym__soft_line_ending] = ACTIONS(1404), + [sym__block_quote_start] = ACTIONS(1404), [sym__indented_chunk_start] = ACTIONS(17), - [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__list_marker_example] = ACTIONS(1402), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1402), - [sym__fenced_code_block_start_backtick] = ACTIONS(1402), - [sym__fenced_code_block_start_tilde] = ACTIONS(1402), + [sym_atx_h1_marker] = ACTIONS(1404), + [sym_atx_h2_marker] = ACTIONS(1404), + [sym_atx_h3_marker] = ACTIONS(1404), + [sym_atx_h4_marker] = ACTIONS(1404), + [sym_atx_h5_marker] = ACTIONS(1404), + [sym_atx_h6_marker] = ACTIONS(1404), + [sym__thematic_break] = ACTIONS(1404), + [sym__list_marker_minus] = ACTIONS(1404), + [sym__list_marker_plus] = ACTIONS(1404), + [sym__list_marker_star] = ACTIONS(1404), + [sym__list_marker_parenthesis] = ACTIONS(1404), + [sym__list_marker_dot] = ACTIONS(1404), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_example] = ACTIONS(1404), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1404), + [sym__fenced_code_block_start_backtick] = ACTIONS(1404), + [sym__fenced_code_block_start_tilde] = ACTIONS(1404), [sym__blank_line_start] = ACTIONS(49), - [sym_minus_metadata] = ACTIONS(1402), - [sym__pipe_table_start] = ACTIONS(1402), - [sym__fenced_div_start] = ACTIONS(1402), - [sym_ref_id_specifier] = ACTIONS(1402), - [sym__display_math_state_track_marker] = ACTIONS(1402), - [sym__inline_math_state_track_marker] = ACTIONS(1402), - [sym__code_span_start] = ACTIONS(1402), - [sym__html_comment] = ACTIONS(1402), - [sym_raw_specifier] = ACTIONS(1402), - [sym__autolink] = ACTIONS(1402), + [sym_minus_metadata] = ACTIONS(1404), + [sym__pipe_table_start] = ACTIONS(1404), + [sym__fenced_div_start] = ACTIONS(1404), + [sym_ref_id_specifier] = ACTIONS(1404), + [sym__display_math_state_track_marker] = ACTIONS(1404), + [sym__inline_math_state_track_marker] = ACTIONS(1404), + [sym__code_span_start] = ACTIONS(1404), + [sym__html_comment] = ACTIONS(1404), + [sym_raw_specifier] = ACTIONS(1404), + [sym__autolink] = ACTIONS(1404), }, [STATE(142)] = { [sym__indented_chunk] = STATE(142), [sym__blank_line] = STATE(142), [aux_sym_indented_code_block_repeat1] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1442), [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_BSLASH] = ACTIONS(1442), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1440), - [sym__escaped_characters] = ACTIONS(1440), - [sym__word] = ACTIONS(1440), - [sym__soft_line_ending] = ACTIONS(1440), - [sym__block_quote_start] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1442), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_BSLASH] = ACTIONS(1440), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1442), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1442), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1442), + [sym__escaped_characters] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1442), [sym__indented_chunk_start] = ACTIONS(1484), - [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__list_marker_example] = ACTIONS(1440), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1440), - [sym__fenced_code_block_start_backtick] = ACTIONS(1440), - [sym__fenced_code_block_start_tilde] = ACTIONS(1440), + [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(1487), - [sym_minus_metadata] = ACTIONS(1440), - [sym__pipe_table_start] = ACTIONS(1440), - [sym__fenced_div_start] = ACTIONS(1440), - [sym_ref_id_specifier] = ACTIONS(1440), - [sym__display_math_state_track_marker] = ACTIONS(1440), - [sym__inline_math_state_track_marker] = ACTIONS(1440), - [sym__code_span_start] = ACTIONS(1440), - [sym__html_comment] = ACTIONS(1440), - [sym_raw_specifier] = ACTIONS(1440), - [sym__autolink] = ACTIONS(1440), + [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), + [sym__code_span_start] = ACTIONS(1442), + [sym__html_comment] = ACTIONS(1442), + [sym_raw_specifier] = ACTIONS(1442), + [sym__autolink] = ACTIONS(1442), }, [STATE(143)] = { [sym_list_marker_minus] = STATE(24), [sym__list_item_minus] = STATE(143), [aux_sym__list_minus_repeat1] = STATE(143), [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1465), - [anon_sym_RBRACK] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym__] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1463), - [sym__escaped_characters] = ACTIONS(1463), - [sym__word] = ACTIONS(1463), - [sym__soft_line_ending] = ACTIONS(1463), - [sym__block_close] = ACTIONS(1463), - [sym__block_quote_start] = ACTIONS(1463), - [sym__indented_chunk_start] = ACTIONS(1463), - [sym_atx_h1_marker] = ACTIONS(1463), - [sym_atx_h2_marker] = ACTIONS(1463), - [sym_atx_h3_marker] = ACTIONS(1463), - [sym_atx_h4_marker] = ACTIONS(1463), - [sym_atx_h5_marker] = ACTIONS(1463), - [sym_atx_h6_marker] = ACTIONS(1463), - [sym__thematic_break] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1465), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_DOLLAR] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_BSLASH] = ACTIONS(1463), + [anon_sym_RBRACK] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym__] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1465), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1465), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1465), + [sym__escaped_characters] = ACTIONS(1465), + [sym__word] = ACTIONS(1465), + [sym__soft_line_ending] = ACTIONS(1465), + [sym__block_close] = ACTIONS(1465), + [sym__block_quote_start] = ACTIONS(1465), + [sym__indented_chunk_start] = ACTIONS(1465), + [sym_atx_h1_marker] = ACTIONS(1465), + [sym_atx_h2_marker] = ACTIONS(1465), + [sym_atx_h3_marker] = ACTIONS(1465), + [sym_atx_h4_marker] = ACTIONS(1465), + [sym_atx_h5_marker] = ACTIONS(1465), + [sym_atx_h6_marker] = ACTIONS(1465), + [sym__thematic_break] = ACTIONS(1465), [sym__list_marker_minus] = ACTIONS(1467), - [sym__list_marker_plus] = ACTIONS(1463), - [sym__list_marker_star] = ACTIONS(1463), - [sym__list_marker_parenthesis] = ACTIONS(1463), - [sym__list_marker_dot] = ACTIONS(1463), + [sym__list_marker_plus] = ACTIONS(1465), + [sym__list_marker_star] = ACTIONS(1465), + [sym__list_marker_parenthesis] = ACTIONS(1465), + [sym__list_marker_dot] = ACTIONS(1465), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1467), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_example] = ACTIONS(1463), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1463), - [sym__fenced_code_block_start_backtick] = ACTIONS(1463), - [sym__fenced_code_block_start_tilde] = ACTIONS(1463), - [sym__blank_line_start] = ACTIONS(1463), - [sym_minus_metadata] = ACTIONS(1463), - [sym__pipe_table_start] = ACTIONS(1463), - [sym__fenced_div_start] = ACTIONS(1463), - [sym_ref_id_specifier] = ACTIONS(1463), - [sym__display_math_state_track_marker] = ACTIONS(1463), - [sym__inline_math_state_track_marker] = ACTIONS(1463), - [sym__code_span_start] = ACTIONS(1463), - [sym__html_comment] = ACTIONS(1463), - [sym_raw_specifier] = ACTIONS(1463), - [sym__autolink] = ACTIONS(1463), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_example] = ACTIONS(1465), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1465), + [sym__fenced_code_block_start_backtick] = ACTIONS(1465), + [sym__fenced_code_block_start_tilde] = ACTIONS(1465), + [sym__blank_line_start] = ACTIONS(1465), + [sym_minus_metadata] = ACTIONS(1465), + [sym__pipe_table_start] = ACTIONS(1465), + [sym__fenced_div_start] = ACTIONS(1465), + [sym_ref_id_specifier] = ACTIONS(1465), + [sym__display_math_state_track_marker] = ACTIONS(1465), + [sym__inline_math_state_track_marker] = ACTIONS(1465), + [sym__code_span_start] = ACTIONS(1465), + [sym__html_comment] = ACTIONS(1465), + [sym_raw_specifier] = ACTIONS(1465), + [sym__autolink] = ACTIONS(1465), }, [STATE(144)] = { [sym__indented_chunk] = STATE(142), [sym__blank_line] = STATE(142), [aux_sym_indented_code_block_repeat1] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1424), [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1422), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_BSLASH] = ACTIONS(1424), - [anon_sym_RBRACK] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym__] = ACTIONS(1422), - [anon_sym_BQUOTE] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1422), - [sym__escaped_characters] = ACTIONS(1422), - [sym__word] = ACTIONS(1422), - [sym__soft_line_ending] = ACTIONS(1422), - [sym__block_quote_start] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1424), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_BSLASH] = ACTIONS(1422), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1424), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1424), + [sym__escaped_characters] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), [sym__indented_chunk_start] = ACTIONS(17), - [sym_atx_h1_marker] = ACTIONS(1422), - [sym_atx_h2_marker] = ACTIONS(1422), - [sym_atx_h3_marker] = ACTIONS(1422), - [sym_atx_h4_marker] = ACTIONS(1422), - [sym_atx_h5_marker] = ACTIONS(1422), - [sym_atx_h6_marker] = ACTIONS(1422), - [sym__thematic_break] = ACTIONS(1422), - [sym__list_marker_minus] = ACTIONS(1422), - [sym__list_marker_plus] = ACTIONS(1422), - [sym__list_marker_star] = ACTIONS(1422), - [sym__list_marker_parenthesis] = ACTIONS(1422), - [sym__list_marker_dot] = ACTIONS(1422), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_example] = ACTIONS(1422), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1422), - [sym__fenced_code_block_start_backtick] = ACTIONS(1422), - [sym__fenced_code_block_start_tilde] = ACTIONS(1422), + [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(49), - [sym_minus_metadata] = ACTIONS(1422), - [sym__pipe_table_start] = ACTIONS(1422), - [sym__fenced_div_start] = ACTIONS(1422), - [sym_ref_id_specifier] = ACTIONS(1422), - [sym__display_math_state_track_marker] = ACTIONS(1422), - [sym__inline_math_state_track_marker] = ACTIONS(1422), - [sym__code_span_start] = ACTIONS(1422), - [sym__html_comment] = ACTIONS(1422), - [sym_raw_specifier] = ACTIONS(1422), - [sym__autolink] = ACTIONS(1422), + [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), + [sym__code_span_start] = ACTIONS(1424), + [sym__html_comment] = ACTIONS(1424), + [sym_raw_specifier] = ACTIONS(1424), + [sym__autolink] = ACTIONS(1424), }, [STATE(145)] = { - [ts_builtin_sym_end] = ACTIONS(1450), + [ts_builtin_sym_end] = ACTIONS(1452), [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1450), - [sym__escaped_characters] = ACTIONS(1450), - [sym__word] = ACTIONS(1450), - [sym__soft_line_ending] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1452), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1452), + [sym__escaped_characters] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), [sym_block_continuation] = ACTIONS(1490), - [sym__block_quote_start] = ACTIONS(1450), - [sym__indented_chunk_start] = ACTIONS(1450), - [sym_atx_h1_marker] = ACTIONS(1450), - [sym_atx_h2_marker] = ACTIONS(1450), - [sym_atx_h3_marker] = ACTIONS(1450), - [sym_atx_h4_marker] = ACTIONS(1450), - [sym_atx_h5_marker] = ACTIONS(1450), - [sym_atx_h6_marker] = ACTIONS(1450), - [sym_setext_h1_underline] = ACTIONS(1450), - [sym_setext_h2_underline] = ACTIONS(1450), - [sym__thematic_break] = ACTIONS(1450), - [sym__list_marker_minus] = ACTIONS(1450), - [sym__list_marker_plus] = ACTIONS(1450), - [sym__list_marker_star] = ACTIONS(1450), - [sym__list_marker_parenthesis] = ACTIONS(1450), - [sym__list_marker_dot] = ACTIONS(1450), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_example] = ACTIONS(1450), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), - [sym__fenced_code_block_start_backtick] = ACTIONS(1450), - [sym__fenced_code_block_start_tilde] = ACTIONS(1450), - [sym__blank_line_start] = ACTIONS(1450), - [sym_minus_metadata] = ACTIONS(1450), - [sym__pipe_table_start] = ACTIONS(1450), - [sym__fenced_div_start] = ACTIONS(1450), - [sym_ref_id_specifier] = ACTIONS(1450), - [sym__display_math_state_track_marker] = ACTIONS(1450), - [sym__inline_math_state_track_marker] = ACTIONS(1450), - [sym__code_span_start] = ACTIONS(1450), - [sym__html_comment] = ACTIONS(1450), - [sym_raw_specifier] = ACTIONS(1450), - [sym__autolink] = ACTIONS(1450), + [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_setext_h1_underline] = ACTIONS(1452), + [sym_setext_h2_underline] = 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__list_marker_example] = ACTIONS(1452), + [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1452), + [sym__display_math_state_track_marker] = ACTIONS(1452), + [sym__inline_math_state_track_marker] = ACTIONS(1452), + [sym__code_span_start] = ACTIONS(1452), + [sym__html_comment] = ACTIONS(1452), + [sym_raw_specifier] = ACTIONS(1452), + [sym__autolink] = ACTIONS(1452), }, [STATE(146)] = { [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1494), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1492), - [sym__escaped_characters] = 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_setext_h1_underline] = ACTIONS(1492), - [sym_setext_h2_underline] = 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), - [sym__code_span_start] = ACTIONS(1492), - [sym__html_comment] = ACTIONS(1492), - [sym_raw_specifier] = ACTIONS(1492), - [sym__autolink] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1494), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1494), + [sym__escaped_characters] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_close] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym_setext_h1_underline] = ACTIONS(1494), + [sym_setext_h2_underline] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym__fenced_div_end] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + [sym__code_span_start] = ACTIONS(1494), + [sym__html_comment] = ACTIONS(1494), + [sym_raw_specifier] = ACTIONS(1494), + [sym__autolink] = ACTIONS(1494), }, [STATE(147)] = { [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1450), - [sym__escaped_characters] = ACTIONS(1450), - [sym__word] = ACTIONS(1450), - [sym__soft_line_ending] = ACTIONS(1450), - [sym__block_close] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1452), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1452), + [sym__escaped_characters] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), + [sym__block_close] = ACTIONS(1452), [sym_block_continuation] = ACTIONS(1496), - [sym__block_quote_start] = ACTIONS(1450), - [sym__indented_chunk_start] = ACTIONS(1450), - [sym_atx_h1_marker] = ACTIONS(1450), - [sym_atx_h2_marker] = ACTIONS(1450), - [sym_atx_h3_marker] = ACTIONS(1450), - [sym_atx_h4_marker] = ACTIONS(1450), - [sym_atx_h5_marker] = ACTIONS(1450), - [sym_atx_h6_marker] = ACTIONS(1450), - [sym_setext_h1_underline] = ACTIONS(1450), - [sym_setext_h2_underline] = ACTIONS(1450), - [sym__thematic_break] = ACTIONS(1450), - [sym__list_marker_minus] = ACTIONS(1450), - [sym__list_marker_plus] = ACTIONS(1450), - [sym__list_marker_star] = ACTIONS(1450), - [sym__list_marker_parenthesis] = ACTIONS(1450), - [sym__list_marker_dot] = ACTIONS(1450), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_example] = ACTIONS(1450), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), - [sym__fenced_code_block_start_backtick] = ACTIONS(1450), - [sym__fenced_code_block_start_tilde] = ACTIONS(1450), - [sym__blank_line_start] = ACTIONS(1450), - [sym_minus_metadata] = ACTIONS(1450), - [sym__pipe_table_start] = ACTIONS(1450), - [sym__fenced_div_start] = ACTIONS(1450), - [sym_ref_id_specifier] = ACTIONS(1450), - [sym__display_math_state_track_marker] = ACTIONS(1450), - [sym__inline_math_state_track_marker] = ACTIONS(1450), - [sym__code_span_start] = ACTIONS(1450), - [sym__html_comment] = ACTIONS(1450), - [sym_raw_specifier] = ACTIONS(1450), - [sym__autolink] = ACTIONS(1450), + [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_setext_h1_underline] = ACTIONS(1452), + [sym_setext_h2_underline] = 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__list_marker_example] = ACTIONS(1452), + [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1452), + [sym__display_math_state_track_marker] = ACTIONS(1452), + [sym__inline_math_state_track_marker] = ACTIONS(1452), + [sym__code_span_start] = ACTIONS(1452), + [sym__html_comment] = ACTIONS(1452), + [sym_raw_specifier] = ACTIONS(1452), + [sym__autolink] = ACTIONS(1452), }, [STATE(148)] = { [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_COLON] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1450), - [sym__escaped_characters] = ACTIONS(1450), - [sym__word] = ACTIONS(1450), - [sym__soft_line_ending] = ACTIONS(1450), - [sym__block_close] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1452), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1452), + [sym__escaped_characters] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), + [sym__block_close] = ACTIONS(1452), [sym_block_continuation] = ACTIONS(1498), - [sym__block_quote_start] = ACTIONS(1450), - [sym__indented_chunk_start] = ACTIONS(1450), - [sym_atx_h1_marker] = ACTIONS(1450), - [sym_atx_h2_marker] = ACTIONS(1450), - [sym_atx_h3_marker] = ACTIONS(1450), - [sym_atx_h4_marker] = ACTIONS(1450), - [sym_atx_h5_marker] = ACTIONS(1450), - [sym_atx_h6_marker] = ACTIONS(1450), - [sym__thematic_break] = ACTIONS(1450), - [sym__list_marker_minus] = ACTIONS(1450), - [sym__list_marker_plus] = ACTIONS(1450), - [sym__list_marker_star] = ACTIONS(1450), - [sym__list_marker_parenthesis] = ACTIONS(1450), - [sym__list_marker_dot] = ACTIONS(1450), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_example] = ACTIONS(1450), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), - [sym__fenced_code_block_start_backtick] = ACTIONS(1450), - [sym__fenced_code_block_start_tilde] = ACTIONS(1450), - [sym__blank_line_start] = ACTIONS(1450), - [sym_minus_metadata] = ACTIONS(1450), - [sym__pipe_table_start] = ACTIONS(1450), - [sym__fenced_div_start] = ACTIONS(1450), - [sym__fenced_div_end] = ACTIONS(1450), - [sym_ref_id_specifier] = ACTIONS(1450), - [sym__display_math_state_track_marker] = ACTIONS(1450), - [sym__inline_math_state_track_marker] = ACTIONS(1450), - [sym__code_span_start] = ACTIONS(1450), - [sym__html_comment] = ACTIONS(1450), - [sym_raw_specifier] = ACTIONS(1450), - [sym__autolink] = ACTIONS(1450), + [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__list_marker_example] = ACTIONS(1452), + [sym__list_marker_example_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), + [sym__code_span_start] = ACTIONS(1452), + [sym__html_comment] = ACTIONS(1452), + [sym_raw_specifier] = ACTIONS(1452), + [sym__autolink] = ACTIONS(1452), }, [STATE(149)] = { [sym__indented_chunk] = STATE(149), [sym__blank_line] = STATE(149), [aux_sym_indented_code_block_repeat1] = STATE(149), [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_BSLASH] = ACTIONS(1442), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1440), - [sym__escaped_characters] = ACTIONS(1440), - [sym__word] = ACTIONS(1440), - [sym__soft_line_ending] = ACTIONS(1440), - [sym__block_close] = ACTIONS(1440), - [sym__block_quote_start] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1442), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_BSLASH] = ACTIONS(1440), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1442), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1442), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1442), + [sym__escaped_characters] = 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(1500), - [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__list_marker_example] = ACTIONS(1440), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1440), - [sym__fenced_code_block_start_backtick] = ACTIONS(1440), - [sym__fenced_code_block_start_tilde] = ACTIONS(1440), + [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(1503), - [sym_minus_metadata] = ACTIONS(1440), - [sym__pipe_table_start] = ACTIONS(1440), - [sym__fenced_div_start] = ACTIONS(1440), - [sym_ref_id_specifier] = ACTIONS(1440), - [sym__display_math_state_track_marker] = ACTIONS(1440), - [sym__inline_math_state_track_marker] = ACTIONS(1440), - [sym__code_span_start] = ACTIONS(1440), - [sym__html_comment] = ACTIONS(1440), - [sym_raw_specifier] = ACTIONS(1440), - [sym__autolink] = ACTIONS(1440), + [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), + [sym__code_span_start] = ACTIONS(1442), + [sym__html_comment] = ACTIONS(1442), + [sym_raw_specifier] = ACTIONS(1442), + [sym__autolink] = ACTIONS(1442), }, [STATE(150)] = { [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1506), - [sym__escaped_characters] = ACTIONS(1506), - [sym__word] = ACTIONS(1506), - [sym__soft_line_ending] = ACTIONS(1506), - [sym__block_close] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym_setext_h1_underline] = ACTIONS(1506), - [sym_setext_h2_underline] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(1506), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_example] = ACTIONS(1506), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym_minus_metadata] = ACTIONS(1506), - [sym__pipe_table_start] = ACTIONS(1506), - [sym__fenced_div_start] = ACTIONS(1506), - [sym__fenced_div_end] = ACTIONS(1506), - [sym_ref_id_specifier] = ACTIONS(1506), - [sym__display_math_state_track_marker] = ACTIONS(1506), - [sym__inline_math_state_track_marker] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__html_comment] = ACTIONS(1506), - [sym_raw_specifier] = ACTIONS(1506), - [sym__autolink] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym__] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1508), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1508), + [sym__escaped_characters] = ACTIONS(1508), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_close] = ACTIONS(1508), + [sym__block_quote_start] = ACTIONS(1508), + [sym__indented_chunk_start] = ACTIONS(1508), + [sym_atx_h1_marker] = ACTIONS(1508), + [sym_atx_h2_marker] = ACTIONS(1508), + [sym_atx_h3_marker] = ACTIONS(1508), + [sym_atx_h4_marker] = ACTIONS(1508), + [sym_atx_h5_marker] = ACTIONS(1508), + [sym_atx_h6_marker] = ACTIONS(1508), + [sym_setext_h1_underline] = ACTIONS(1508), + [sym_setext_h2_underline] = ACTIONS(1508), + [sym__thematic_break] = ACTIONS(1508), + [sym__list_marker_minus] = ACTIONS(1508), + [sym__list_marker_plus] = ACTIONS(1508), + [sym__list_marker_star] = ACTIONS(1508), + [sym__list_marker_parenthesis] = ACTIONS(1508), + [sym__list_marker_dot] = ACTIONS(1508), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_example] = ACTIONS(1508), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1508), + [sym__fenced_code_block_start_backtick] = ACTIONS(1508), + [sym__fenced_code_block_start_tilde] = ACTIONS(1508), + [sym__blank_line_start] = ACTIONS(1508), + [sym_minus_metadata] = ACTIONS(1508), + [sym__pipe_table_start] = ACTIONS(1508), + [sym__fenced_div_start] = ACTIONS(1508), + [sym__fenced_div_end] = ACTIONS(1508), + [sym_ref_id_specifier] = ACTIONS(1508), + [sym__display_math_state_track_marker] = ACTIONS(1508), + [sym__inline_math_state_track_marker] = ACTIONS(1508), + [sym__code_span_start] = ACTIONS(1508), + [sym__html_comment] = ACTIONS(1508), + [sym_raw_specifier] = ACTIONS(1508), + [sym__autolink] = ACTIONS(1508), }, [STATE(151)] = { [sym_list_marker_dot] = STATE(4), [sym__list_item_dot] = STATE(151), [aux_sym__list_dot_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(1433), + [ts_builtin_sym_end] = ACTIONS(1435), [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_BSLASH] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym__] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1433), - [sym__escaped_characters] = ACTIONS(1433), - [sym__word] = ACTIONS(1433), - [sym__soft_line_ending] = ACTIONS(1433), - [sym__block_quote_start] = ACTIONS(1433), - [sym__indented_chunk_start] = ACTIONS(1433), - [sym_atx_h1_marker] = ACTIONS(1433), - [sym_atx_h2_marker] = ACTIONS(1433), - [sym_atx_h3_marker] = ACTIONS(1433), - [sym_atx_h4_marker] = ACTIONS(1433), - [sym_atx_h5_marker] = ACTIONS(1433), - [sym_atx_h6_marker] = ACTIONS(1433), - [sym__thematic_break] = ACTIONS(1433), - [sym__list_marker_minus] = ACTIONS(1433), - [sym__list_marker_plus] = ACTIONS(1433), - [sym__list_marker_star] = ACTIONS(1433), - [sym__list_marker_parenthesis] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1435), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_BSLASH] = ACTIONS(1433), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym__] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1435), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1435), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1435), + [sym__escaped_characters] = ACTIONS(1435), + [sym__word] = ACTIONS(1435), + [sym__soft_line_ending] = ACTIONS(1435), + [sym__block_quote_start] = ACTIONS(1435), + [sym__indented_chunk_start] = ACTIONS(1435), + [sym_atx_h1_marker] = ACTIONS(1435), + [sym_atx_h2_marker] = ACTIONS(1435), + [sym_atx_h3_marker] = ACTIONS(1435), + [sym_atx_h4_marker] = ACTIONS(1435), + [sym_atx_h5_marker] = ACTIONS(1435), + [sym_atx_h6_marker] = ACTIONS(1435), + [sym__thematic_break] = ACTIONS(1435), + [sym__list_marker_minus] = ACTIONS(1435), + [sym__list_marker_plus] = ACTIONS(1435), + [sym__list_marker_star] = ACTIONS(1435), + [sym__list_marker_parenthesis] = ACTIONS(1435), [sym__list_marker_dot] = ACTIONS(1437), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1433), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1435), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1437), - [sym__list_marker_example] = ACTIONS(1433), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1433), - [sym__fenced_code_block_start_backtick] = ACTIONS(1433), - [sym__fenced_code_block_start_tilde] = ACTIONS(1433), - [sym__blank_line_start] = ACTIONS(1433), - [sym_minus_metadata] = ACTIONS(1433), - [sym__pipe_table_start] = ACTIONS(1433), - [sym__fenced_div_start] = ACTIONS(1433), - [sym_ref_id_specifier] = ACTIONS(1433), - [sym__display_math_state_track_marker] = ACTIONS(1433), - [sym__inline_math_state_track_marker] = ACTIONS(1433), - [sym__code_span_start] = ACTIONS(1433), - [sym__html_comment] = ACTIONS(1433), - [sym_raw_specifier] = ACTIONS(1433), - [sym__autolink] = ACTIONS(1433), + [sym__list_marker_example] = ACTIONS(1435), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1435), + [sym__fenced_code_block_start_backtick] = ACTIONS(1435), + [sym__fenced_code_block_start_tilde] = ACTIONS(1435), + [sym__blank_line_start] = ACTIONS(1435), + [sym_minus_metadata] = ACTIONS(1435), + [sym__pipe_table_start] = ACTIONS(1435), + [sym__fenced_div_start] = ACTIONS(1435), + [sym_ref_id_specifier] = ACTIONS(1435), + [sym__display_math_state_track_marker] = ACTIONS(1435), + [sym__inline_math_state_track_marker] = ACTIONS(1435), + [sym__code_span_start] = ACTIONS(1435), + [sym__html_comment] = ACTIONS(1435), + [sym_raw_specifier] = ACTIONS(1435), + [sym__autolink] = ACTIONS(1435), }, [STATE(152)] = { [sym_list_marker_parenthesis] = STATE(5), [sym__list_item_parenthesis] = STATE(152), [aux_sym__list_parenthesis_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1428), [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_BSLASH] = ACTIONS(1428), - [anon_sym_RBRACK] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym__] = ACTIONS(1426), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1426), - [sym__escaped_characters] = ACTIONS(1426), - [sym__word] = ACTIONS(1426), - [sym__soft_line_ending] = ACTIONS(1426), - [sym__block_quote_start] = ACTIONS(1426), - [sym__indented_chunk_start] = ACTIONS(1426), - [sym_atx_h1_marker] = ACTIONS(1426), - [sym_atx_h2_marker] = ACTIONS(1426), - [sym_atx_h3_marker] = ACTIONS(1426), - [sym_atx_h4_marker] = ACTIONS(1426), - [sym_atx_h5_marker] = ACTIONS(1426), - [sym_atx_h6_marker] = ACTIONS(1426), - [sym__thematic_break] = ACTIONS(1426), - [sym__list_marker_minus] = ACTIONS(1426), - [sym__list_marker_plus] = ACTIONS(1426), - [sym__list_marker_star] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1428), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1428), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1428), + [sym__escaped_characters] = 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(1430), - [sym__list_marker_dot] = ACTIONS(1426), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [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(1430), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_example] = ACTIONS(1426), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), - [sym__fenced_code_block_start_backtick] = ACTIONS(1426), - [sym__fenced_code_block_start_tilde] = ACTIONS(1426), - [sym__blank_line_start] = ACTIONS(1426), - [sym_minus_metadata] = ACTIONS(1426), - [sym__pipe_table_start] = ACTIONS(1426), - [sym__fenced_div_start] = ACTIONS(1426), - [sym_ref_id_specifier] = ACTIONS(1426), - [sym__display_math_state_track_marker] = ACTIONS(1426), - [sym__inline_math_state_track_marker] = ACTIONS(1426), - [sym__code_span_start] = ACTIONS(1426), - [sym__html_comment] = ACTIONS(1426), - [sym_raw_specifier] = ACTIONS(1426), - [sym__autolink] = ACTIONS(1426), + [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), + [sym__code_span_start] = ACTIONS(1428), + [sym__html_comment] = ACTIONS(1428), + [sym_raw_specifier] = ACTIONS(1428), + [sym__autolink] = ACTIONS(1428), }, [STATE(153)] = { [sym_list_marker_star] = STATE(25), [sym__list_item_star] = STATE(153), [aux_sym__list_star_repeat1] = STATE(153), [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1456), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_BSLASH] = ACTIONS(1458), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1456), - [sym__escaped_characters] = ACTIONS(1456), - [sym__word] = ACTIONS(1456), - [sym__soft_line_ending] = ACTIONS(1456), - [sym__block_close] = ACTIONS(1456), - [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), + [anon_sym_RBRACE] = ACTIONS(1458), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1458), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1458), + [sym__escaped_characters] = 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(1460), - [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_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(1460), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_example] = ACTIONS(1456), - [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1456), - [sym__display_math_state_track_marker] = ACTIONS(1456), - [sym__inline_math_state_track_marker] = ACTIONS(1456), - [sym__code_span_start] = ACTIONS(1456), - [sym__html_comment] = ACTIONS(1456), - [sym_raw_specifier] = ACTIONS(1456), - [sym__autolink] = ACTIONS(1456), + [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), + [sym__code_span_start] = ACTIONS(1458), + [sym__html_comment] = ACTIONS(1458), + [sym_raw_specifier] = ACTIONS(1458), + [sym__autolink] = ACTIONS(1458), }, [STATE(154)] = { [sym__indented_chunk] = STATE(149), [sym__blank_line] = STATE(149), [aux_sym_indented_code_block_repeat1] = STATE(149), [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1422), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_BSLASH] = ACTIONS(1424), - [anon_sym_RBRACK] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym__] = ACTIONS(1422), - [anon_sym_BQUOTE] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1422), - [sym__escaped_characters] = ACTIONS(1422), - [sym__word] = ACTIONS(1422), - [sym__soft_line_ending] = ACTIONS(1422), - [sym__block_close] = ACTIONS(1422), - [sym__block_quote_start] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1424), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_BSLASH] = ACTIONS(1422), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1424), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1424), + [sym__escaped_characters] = 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(101), - [sym_atx_h1_marker] = ACTIONS(1422), - [sym_atx_h2_marker] = ACTIONS(1422), - [sym_atx_h3_marker] = ACTIONS(1422), - [sym_atx_h4_marker] = ACTIONS(1422), - [sym_atx_h5_marker] = ACTIONS(1422), - [sym_atx_h6_marker] = ACTIONS(1422), - [sym__thematic_break] = ACTIONS(1422), - [sym__list_marker_minus] = ACTIONS(1422), - [sym__list_marker_plus] = ACTIONS(1422), - [sym__list_marker_star] = ACTIONS(1422), - [sym__list_marker_parenthesis] = ACTIONS(1422), - [sym__list_marker_dot] = ACTIONS(1422), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1422), - [sym__list_marker_example] = ACTIONS(1422), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1422), - [sym__fenced_code_block_start_backtick] = ACTIONS(1422), - [sym__fenced_code_block_start_tilde] = ACTIONS(1422), + [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(121), - [sym_minus_metadata] = ACTIONS(1422), - [sym__pipe_table_start] = ACTIONS(1422), - [sym__fenced_div_start] = ACTIONS(1422), - [sym_ref_id_specifier] = ACTIONS(1422), - [sym__display_math_state_track_marker] = ACTIONS(1422), - [sym__inline_math_state_track_marker] = ACTIONS(1422), - [sym__code_span_start] = ACTIONS(1422), - [sym__html_comment] = ACTIONS(1422), - [sym_raw_specifier] = ACTIONS(1422), - [sym__autolink] = ACTIONS(1422), + [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), + [sym__code_span_start] = ACTIONS(1424), + [sym__html_comment] = ACTIONS(1424), + [sym_raw_specifier] = ACTIONS(1424), + [sym__autolink] = ACTIONS(1424), }, [STATE(155)] = { [sym_list_marker_dot] = STATE(26), [sym__list_item_dot] = STATE(155), [aux_sym__list_dot_repeat1] = STATE(155), [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(1433), - [anon_sym_PERCENT] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_BSLASH] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym__] = ACTIONS(1433), - [anon_sym_BQUOTE] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1433), - [sym__escaped_characters] = ACTIONS(1433), - [sym__word] = ACTIONS(1433), - [sym__soft_line_ending] = ACTIONS(1433), - [sym__block_close] = ACTIONS(1433), - [sym__block_quote_start] = ACTIONS(1433), - [sym__indented_chunk_start] = ACTIONS(1433), - [sym_atx_h1_marker] = ACTIONS(1433), - [sym_atx_h2_marker] = ACTIONS(1433), - [sym_atx_h3_marker] = ACTIONS(1433), - [sym_atx_h4_marker] = ACTIONS(1433), - [sym_atx_h5_marker] = ACTIONS(1433), - [sym_atx_h6_marker] = ACTIONS(1433), - [sym__thematic_break] = ACTIONS(1433), - [sym__list_marker_minus] = ACTIONS(1433), - [sym__list_marker_plus] = ACTIONS(1433), - [sym__list_marker_star] = ACTIONS(1433), - [sym__list_marker_parenthesis] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1435), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_BSLASH] = ACTIONS(1433), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym__] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1435), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1435), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1435), + [sym__escaped_characters] = ACTIONS(1435), + [sym__word] = ACTIONS(1435), + [sym__soft_line_ending] = ACTIONS(1435), + [sym__block_close] = ACTIONS(1435), + [sym__block_quote_start] = ACTIONS(1435), + [sym__indented_chunk_start] = ACTIONS(1435), + [sym_atx_h1_marker] = ACTIONS(1435), + [sym_atx_h2_marker] = ACTIONS(1435), + [sym_atx_h3_marker] = ACTIONS(1435), + [sym_atx_h4_marker] = ACTIONS(1435), + [sym_atx_h5_marker] = ACTIONS(1435), + [sym_atx_h6_marker] = ACTIONS(1435), + [sym__thematic_break] = ACTIONS(1435), + [sym__list_marker_minus] = ACTIONS(1435), + [sym__list_marker_plus] = ACTIONS(1435), + [sym__list_marker_star] = ACTIONS(1435), + [sym__list_marker_parenthesis] = ACTIONS(1435), [sym__list_marker_dot] = ACTIONS(1437), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1433), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1433), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1435), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1435), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1437), - [sym__list_marker_example] = ACTIONS(1433), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1433), - [sym__fenced_code_block_start_backtick] = ACTIONS(1433), - [sym__fenced_code_block_start_tilde] = ACTIONS(1433), - [sym__blank_line_start] = ACTIONS(1433), - [sym_minus_metadata] = ACTIONS(1433), - [sym__pipe_table_start] = ACTIONS(1433), - [sym__fenced_div_start] = ACTIONS(1433), - [sym_ref_id_specifier] = ACTIONS(1433), - [sym__display_math_state_track_marker] = ACTIONS(1433), - [sym__inline_math_state_track_marker] = ACTIONS(1433), - [sym__code_span_start] = ACTIONS(1433), - [sym__html_comment] = ACTIONS(1433), - [sym_raw_specifier] = ACTIONS(1433), - [sym__autolink] = ACTIONS(1433), + [sym__list_marker_example] = ACTIONS(1435), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1435), + [sym__fenced_code_block_start_backtick] = ACTIONS(1435), + [sym__fenced_code_block_start_tilde] = ACTIONS(1435), + [sym__blank_line_start] = ACTIONS(1435), + [sym_minus_metadata] = ACTIONS(1435), + [sym__pipe_table_start] = ACTIONS(1435), + [sym__fenced_div_start] = ACTIONS(1435), + [sym_ref_id_specifier] = ACTIONS(1435), + [sym__display_math_state_track_marker] = ACTIONS(1435), + [sym__inline_math_state_track_marker] = ACTIONS(1435), + [sym__code_span_start] = ACTIONS(1435), + [sym__html_comment] = ACTIONS(1435), + [sym_raw_specifier] = ACTIONS(1435), + [sym__autolink] = ACTIONS(1435), }, [STATE(156)] = { [sym_list_marker_plus] = STATE(35), [sym__list_item_plus] = STATE(171), [aux_sym__list_plus_repeat1] = STATE(171), - [ts_builtin_sym_end] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1400), [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_DQUOTE] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_BSLASH] = ACTIONS(1400), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym__] = ACTIONS(1398), - [anon_sym_BQUOTE] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1398), - [sym__escaped_characters] = ACTIONS(1398), - [sym__word] = ACTIONS(1398), - [sym__soft_line_ending] = ACTIONS(1398), - [sym__block_quote_start] = ACTIONS(1398), - [sym__indented_chunk_start] = ACTIONS(1398), - [sym_atx_h1_marker] = ACTIONS(1398), - [sym_atx_h2_marker] = ACTIONS(1398), - [sym_atx_h3_marker] = ACTIONS(1398), - [sym_atx_h4_marker] = ACTIONS(1398), - [sym_atx_h5_marker] = ACTIONS(1398), - [sym_atx_h6_marker] = ACTIONS(1398), - [sym__thematic_break] = ACTIONS(1398), - [sym__list_marker_minus] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1400), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1400), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_COMMA] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1398), + [anon_sym_RBRACK] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym__] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1400), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1400), + [sym__escaped_characters] = ACTIONS(1400), + [sym__word] = ACTIONS(1400), + [sym__soft_line_ending] = ACTIONS(1400), + [sym__block_quote_start] = ACTIONS(1400), + [sym__indented_chunk_start] = ACTIONS(1400), + [sym_atx_h1_marker] = ACTIONS(1400), + [sym_atx_h2_marker] = ACTIONS(1400), + [sym_atx_h3_marker] = ACTIONS(1400), + [sym_atx_h4_marker] = ACTIONS(1400), + [sym_atx_h5_marker] = ACTIONS(1400), + [sym_atx_h6_marker] = ACTIONS(1400), + [sym__thematic_break] = ACTIONS(1400), + [sym__list_marker_minus] = ACTIONS(1400), [sym__list_marker_plus] = ACTIONS(35), - [sym__list_marker_star] = ACTIONS(1398), - [sym__list_marker_parenthesis] = ACTIONS(1398), - [sym__list_marker_dot] = ACTIONS(1398), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1398), + [sym__list_marker_star] = ACTIONS(1400), + [sym__list_marker_parenthesis] = ACTIONS(1400), + [sym__list_marker_dot] = ACTIONS(1400), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1400), [sym__list_marker_plus_dont_interrupt] = ACTIONS(35), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1398), - [sym__list_marker_example] = ACTIONS(1398), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1398), - [sym__fenced_code_block_start_backtick] = ACTIONS(1398), - [sym__fenced_code_block_start_tilde] = ACTIONS(1398), - [sym__blank_line_start] = ACTIONS(1398), - [sym_minus_metadata] = ACTIONS(1398), - [sym__pipe_table_start] = ACTIONS(1398), - [sym__fenced_div_start] = ACTIONS(1398), - [sym_ref_id_specifier] = ACTIONS(1398), - [sym__display_math_state_track_marker] = ACTIONS(1398), - [sym__inline_math_state_track_marker] = ACTIONS(1398), - [sym__code_span_start] = ACTIONS(1398), - [sym__html_comment] = ACTIONS(1398), - [sym_raw_specifier] = ACTIONS(1398), - [sym__autolink] = ACTIONS(1398), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1400), + [sym__list_marker_example] = ACTIONS(1400), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1400), + [sym__fenced_code_block_start_backtick] = ACTIONS(1400), + [sym__fenced_code_block_start_tilde] = ACTIONS(1400), + [sym__blank_line_start] = ACTIONS(1400), + [sym_minus_metadata] = ACTIONS(1400), + [sym__pipe_table_start] = ACTIONS(1400), + [sym__fenced_div_start] = ACTIONS(1400), + [sym_ref_id_specifier] = ACTIONS(1400), + [sym__display_math_state_track_marker] = ACTIONS(1400), + [sym__inline_math_state_track_marker] = ACTIONS(1400), + [sym__code_span_start] = ACTIONS(1400), + [sym__html_comment] = ACTIONS(1400), + [sym_raw_specifier] = ACTIONS(1400), + [sym__autolink] = ACTIONS(1400), }, [STATE(157)] = { [sym_list_marker_minus] = STATE(18), [sym__list_item_minus] = STATE(172), [aux_sym__list_minus_repeat1] = STATE(172), - [ts_builtin_sym_end] = ACTIONS(1418), + [ts_builtin_sym_end] = ACTIONS(1420), [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_BSLASH] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1418), - [anon_sym_BQUOTE] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1418), - [sym__escaped_characters] = ACTIONS(1418), - [sym__word] = ACTIONS(1418), - [sym__soft_line_ending] = ACTIONS(1418), - [sym__block_quote_start] = ACTIONS(1418), - [sym__indented_chunk_start] = ACTIONS(1418), - [sym_atx_h1_marker] = ACTIONS(1418), - [sym_atx_h2_marker] = ACTIONS(1418), - [sym_atx_h3_marker] = ACTIONS(1418), - [sym_atx_h4_marker] = ACTIONS(1418), - [sym_atx_h5_marker] = ACTIONS(1418), - [sym_atx_h6_marker] = ACTIONS(1418), - [sym__thematic_break] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1420), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1418), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1420), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1420), + [sym__escaped_characters] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [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(33), - [sym__list_marker_plus] = ACTIONS(1418), - [sym__list_marker_star] = ACTIONS(1418), - [sym__list_marker_parenthesis] = ACTIONS(1418), - [sym__list_marker_dot] = ACTIONS(1418), + [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(33), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_example] = ACTIONS(1418), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1418), - [sym__fenced_code_block_start_backtick] = ACTIONS(1418), - [sym__fenced_code_block_start_tilde] = ACTIONS(1418), - [sym__blank_line_start] = ACTIONS(1418), - [sym_minus_metadata] = ACTIONS(1418), - [sym__pipe_table_start] = ACTIONS(1418), - [sym__fenced_div_start] = ACTIONS(1418), - [sym_ref_id_specifier] = ACTIONS(1418), - [sym__display_math_state_track_marker] = ACTIONS(1418), - [sym__inline_math_state_track_marker] = ACTIONS(1418), - [sym__code_span_start] = ACTIONS(1418), - [sym__html_comment] = ACTIONS(1418), - [sym_raw_specifier] = ACTIONS(1418), - [sym__autolink] = ACTIONS(1418), + [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__list_marker_example] = ACTIONS(1420), + [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1420), + [sym__display_math_state_track_marker] = ACTIONS(1420), + [sym__inline_math_state_track_marker] = ACTIONS(1420), + [sym__code_span_start] = ACTIONS(1420), + [sym__html_comment] = ACTIONS(1420), + [sym_raw_specifier] = ACTIONS(1420), + [sym__autolink] = ACTIONS(1420), }, [STATE(158)] = { [sym_list_marker_star] = STATE(3), [sym__list_item_star] = STATE(139), [aux_sym__list_star_repeat1] = STATE(139), - [ts_builtin_sym_end] = ACTIONS(1394), + [ts_builtin_sym_end] = ACTIONS(1396), [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_BSLASH] = ACTIONS(1396), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1394), - [sym__escaped_characters] = ACTIONS(1394), - [sym__word] = ACTIONS(1394), - [sym__soft_line_ending] = 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), + [anon_sym_RBRACE] = ACTIONS(1396), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_BSLASH] = ACTIONS(1394), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1396), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1396), + [sym__escaped_characters] = ACTIONS(1396), + [sym__word] = ACTIONS(1396), + [sym__soft_line_ending] = ACTIONS(1396), + [sym__block_quote_start] = ACTIONS(1396), + [sym__indented_chunk_start] = ACTIONS(1396), + [sym_atx_h1_marker] = ACTIONS(1396), + [sym_atx_h2_marker] = ACTIONS(1396), + [sym_atx_h3_marker] = ACTIONS(1396), + [sym_atx_h4_marker] = ACTIONS(1396), + [sym_atx_h5_marker] = ACTIONS(1396), + [sym_atx_h6_marker] = ACTIONS(1396), + [sym__thematic_break] = ACTIONS(1396), + [sym__list_marker_minus] = ACTIONS(1396), + [sym__list_marker_plus] = ACTIONS(1396), [sym__list_marker_star] = ACTIONS(37), - [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_parenthesis] = ACTIONS(1396), + [sym__list_marker_dot] = ACTIONS(1396), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1396), [sym__list_marker_star_dont_interrupt] = ACTIONS(37), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), - [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), - [sym__code_span_start] = ACTIONS(1394), - [sym__html_comment] = ACTIONS(1394), - [sym_raw_specifier] = ACTIONS(1394), - [sym__autolink] = ACTIONS(1394), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1396), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1396), + [sym__fenced_code_block_start_backtick] = ACTIONS(1396), + [sym__fenced_code_block_start_tilde] = ACTIONS(1396), + [sym__blank_line_start] = ACTIONS(1396), + [sym_minus_metadata] = ACTIONS(1396), + [sym__pipe_table_start] = ACTIONS(1396), + [sym__fenced_div_start] = ACTIONS(1396), + [sym_ref_id_specifier] = ACTIONS(1396), + [sym__display_math_state_track_marker] = ACTIONS(1396), + [sym__inline_math_state_track_marker] = ACTIONS(1396), + [sym__code_span_start] = ACTIONS(1396), + [sym__html_comment] = ACTIONS(1396), + [sym_raw_specifier] = ACTIONS(1396), + [sym__autolink] = ACTIONS(1396), }, [STATE(159)] = { [sym_list_marker_dot] = STATE(4), [sym__list_item_dot] = STATE(151), [aux_sym__list_dot_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(1414), + [ts_builtin_sym_end] = ACTIONS(1416), [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_BSLASH] = ACTIONS(1416), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym__] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1414), - [sym__escaped_characters] = ACTIONS(1414), - [sym__word] = ACTIONS(1414), - [sym__soft_line_ending] = ACTIONS(1414), - [sym__block_quote_start] = ACTIONS(1414), - [sym__indented_chunk_start] = ACTIONS(1414), - [sym_atx_h1_marker] = ACTIONS(1414), - [sym_atx_h2_marker] = ACTIONS(1414), - [sym_atx_h3_marker] = ACTIONS(1414), - [sym_atx_h4_marker] = ACTIONS(1414), - [sym_atx_h5_marker] = ACTIONS(1414), - [sym_atx_h6_marker] = ACTIONS(1414), - [sym__thematic_break] = ACTIONS(1414), - [sym__list_marker_minus] = ACTIONS(1414), - [sym__list_marker_plus] = ACTIONS(1414), - [sym__list_marker_star] = ACTIONS(1414), - [sym__list_marker_parenthesis] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1416), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym__] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1416), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1416), + [sym__escaped_characters] = ACTIONS(1416), + [sym__word] = ACTIONS(1416), + [sym__soft_line_ending] = ACTIONS(1416), + [sym__block_quote_start] = ACTIONS(1416), + [sym__indented_chunk_start] = ACTIONS(1416), + [sym_atx_h1_marker] = ACTIONS(1416), + [sym_atx_h2_marker] = ACTIONS(1416), + [sym_atx_h3_marker] = ACTIONS(1416), + [sym_atx_h4_marker] = ACTIONS(1416), + [sym_atx_h5_marker] = ACTIONS(1416), + [sym_atx_h6_marker] = ACTIONS(1416), + [sym__thematic_break] = ACTIONS(1416), + [sym__list_marker_minus] = ACTIONS(1416), + [sym__list_marker_plus] = ACTIONS(1416), + [sym__list_marker_star] = ACTIONS(1416), + [sym__list_marker_parenthesis] = ACTIONS(1416), [sym__list_marker_dot] = ACTIONS(41), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1416), [sym__list_marker_dot_dont_interrupt] = ACTIONS(41), - [sym__list_marker_example] = ACTIONS(1414), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), - [sym__fenced_code_block_start_backtick] = ACTIONS(1414), - [sym__fenced_code_block_start_tilde] = ACTIONS(1414), - [sym__blank_line_start] = ACTIONS(1414), - [sym_minus_metadata] = ACTIONS(1414), - [sym__pipe_table_start] = ACTIONS(1414), - [sym__fenced_div_start] = ACTIONS(1414), - [sym_ref_id_specifier] = ACTIONS(1414), - [sym__display_math_state_track_marker] = ACTIONS(1414), - [sym__inline_math_state_track_marker] = ACTIONS(1414), - [sym__code_span_start] = ACTIONS(1414), - [sym__html_comment] = ACTIONS(1414), - [sym_raw_specifier] = ACTIONS(1414), - [sym__autolink] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1416), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1416), + [sym__fenced_code_block_start_backtick] = ACTIONS(1416), + [sym__fenced_code_block_start_tilde] = ACTIONS(1416), + [sym__blank_line_start] = ACTIONS(1416), + [sym_minus_metadata] = ACTIONS(1416), + [sym__pipe_table_start] = ACTIONS(1416), + [sym__fenced_div_start] = ACTIONS(1416), + [sym_ref_id_specifier] = ACTIONS(1416), + [sym__display_math_state_track_marker] = ACTIONS(1416), + [sym__inline_math_state_track_marker] = ACTIONS(1416), + [sym__code_span_start] = ACTIONS(1416), + [sym__html_comment] = ACTIONS(1416), + [sym_raw_specifier] = ACTIONS(1416), + [sym__autolink] = ACTIONS(1416), }, [STATE(160)] = { [sym_list_marker_parenthesis] = STATE(5), [sym__list_item_parenthesis] = STATE(152), [aux_sym__list_parenthesis_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1412), [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_BSLASH] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1410), - [sym__escaped_characters] = ACTIONS(1410), - [sym__word] = ACTIONS(1410), - [sym__soft_line_ending] = ACTIONS(1410), - [sym__block_quote_start] = ACTIONS(1410), - [sym__indented_chunk_start] = ACTIONS(1410), - [sym_atx_h1_marker] = ACTIONS(1410), - [sym_atx_h2_marker] = ACTIONS(1410), - [sym_atx_h3_marker] = ACTIONS(1410), - [sym_atx_h4_marker] = ACTIONS(1410), - [sym_atx_h5_marker] = ACTIONS(1410), - [sym_atx_h6_marker] = ACTIONS(1410), - [sym__thematic_break] = ACTIONS(1410), - [sym__list_marker_minus] = ACTIONS(1410), - [sym__list_marker_plus] = ACTIONS(1410), - [sym__list_marker_star] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1412), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_BSLASH] = ACTIONS(1410), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1412), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1412), + [sym__escaped_characters] = 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__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(39), - [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_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(39), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_example] = ACTIONS(1410), - [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1410), - [sym__display_math_state_track_marker] = ACTIONS(1410), - [sym__inline_math_state_track_marker] = ACTIONS(1410), - [sym__code_span_start] = ACTIONS(1410), - [sym__html_comment] = ACTIONS(1410), - [sym_raw_specifier] = ACTIONS(1410), - [sym__autolink] = ACTIONS(1410), + [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), + [sym__code_span_start] = ACTIONS(1412), + [sym__html_comment] = ACTIONS(1412), + [sym_raw_specifier] = ACTIONS(1412), + [sym__autolink] = ACTIONS(1412), }, [STATE(161)] = { [sym_list_marker_example] = STATE(6), [sym__list_item_example] = STATE(173), [aux_sym__list_example_repeat1] = STATE(173), - [ts_builtin_sym_end] = ACTIONS(1406), + [ts_builtin_sym_end] = ACTIONS(1408), [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_BSLASH] = ACTIONS(1408), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1406), - [sym__escaped_characters] = ACTIONS(1406), - [sym__word] = ACTIONS(1406), - [sym__soft_line_ending] = ACTIONS(1406), - [sym__block_quote_start] = ACTIONS(1406), - [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), + [anon_sym_RBRACE] = ACTIONS(1408), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1408), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1408), + [sym__escaped_characters] = ACTIONS(1408), + [sym__word] = ACTIONS(1408), + [sym__soft_line_ending] = ACTIONS(1408), + [sym__block_quote_start] = ACTIONS(1408), + [sym__indented_chunk_start] = ACTIONS(1408), + [sym_atx_h1_marker] = ACTIONS(1408), + [sym_atx_h2_marker] = ACTIONS(1408), + [sym_atx_h3_marker] = ACTIONS(1408), + [sym_atx_h4_marker] = ACTIONS(1408), + [sym_atx_h5_marker] = ACTIONS(1408), + [sym_atx_h6_marker] = ACTIONS(1408), + [sym__thematic_break] = ACTIONS(1408), + [sym__list_marker_minus] = ACTIONS(1408), + [sym__list_marker_plus] = ACTIONS(1408), + [sym__list_marker_star] = ACTIONS(1408), + [sym__list_marker_parenthesis] = ACTIONS(1408), + [sym__list_marker_dot] = ACTIONS(1408), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1408), [sym__list_marker_example] = ACTIONS(43), [sym__list_marker_example_dont_interrupt] = ACTIONS(43), - [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_ref_id_specifier] = ACTIONS(1406), - [sym__display_math_state_track_marker] = ACTIONS(1406), - [sym__inline_math_state_track_marker] = ACTIONS(1406), - [sym__code_span_start] = ACTIONS(1406), - [sym__html_comment] = ACTIONS(1406), - [sym_raw_specifier] = ACTIONS(1406), - [sym__autolink] = ACTIONS(1406), + [sym__fenced_code_block_start_backtick] = ACTIONS(1408), + [sym__fenced_code_block_start_tilde] = ACTIONS(1408), + [sym__blank_line_start] = ACTIONS(1408), + [sym_minus_metadata] = ACTIONS(1408), + [sym__pipe_table_start] = ACTIONS(1408), + [sym__fenced_div_start] = ACTIONS(1408), + [sym_ref_id_specifier] = ACTIONS(1408), + [sym__display_math_state_track_marker] = ACTIONS(1408), + [sym__inline_math_state_track_marker] = ACTIONS(1408), + [sym__code_span_start] = ACTIONS(1408), + [sym__html_comment] = ACTIONS(1408), + [sym_raw_specifier] = ACTIONS(1408), + [sym__autolink] = ACTIONS(1408), }, [STATE(162)] = { [sym_list_marker_parenthesis] = STATE(27), [sym__list_item_parenthesis] = STATE(162), [aux_sym__list_parenthesis_repeat1] = STATE(162), [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_BSLASH] = ACTIONS(1428), - [anon_sym_RBRACK] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym__] = ACTIONS(1426), - [anon_sym_BQUOTE] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1426), - [sym__escaped_characters] = ACTIONS(1426), - [sym__word] = ACTIONS(1426), - [sym__soft_line_ending] = ACTIONS(1426), - [sym__block_close] = ACTIONS(1426), - [sym__block_quote_start] = ACTIONS(1426), - [sym__indented_chunk_start] = ACTIONS(1426), - [sym_atx_h1_marker] = ACTIONS(1426), - [sym_atx_h2_marker] = ACTIONS(1426), - [sym_atx_h3_marker] = ACTIONS(1426), - [sym_atx_h4_marker] = ACTIONS(1426), - [sym_atx_h5_marker] = ACTIONS(1426), - [sym_atx_h6_marker] = ACTIONS(1426), - [sym__thematic_break] = ACTIONS(1426), - [sym__list_marker_minus] = ACTIONS(1426), - [sym__list_marker_plus] = ACTIONS(1426), - [sym__list_marker_star] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1428), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1428), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1428), + [sym__escaped_characters] = 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(1430), - [sym__list_marker_dot] = ACTIONS(1426), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [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(1430), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), - [sym__list_marker_example] = ACTIONS(1426), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), - [sym__fenced_code_block_start_backtick] = ACTIONS(1426), - [sym__fenced_code_block_start_tilde] = ACTIONS(1426), - [sym__blank_line_start] = ACTIONS(1426), - [sym_minus_metadata] = ACTIONS(1426), - [sym__pipe_table_start] = ACTIONS(1426), - [sym__fenced_div_start] = ACTIONS(1426), - [sym_ref_id_specifier] = ACTIONS(1426), - [sym__display_math_state_track_marker] = ACTIONS(1426), - [sym__inline_math_state_track_marker] = ACTIONS(1426), - [sym__code_span_start] = ACTIONS(1426), - [sym__html_comment] = ACTIONS(1426), - [sym_raw_specifier] = ACTIONS(1426), - [sym__autolink] = ACTIONS(1426), + [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), + [sym__code_span_start] = ACTIONS(1428), + [sym__html_comment] = ACTIONS(1428), + [sym_raw_specifier] = ACTIONS(1428), + [sym__autolink] = ACTIONS(1428), }, [STATE(163)] = { [sym__indented_chunk] = STATE(154), [sym__blank_line] = STATE(154), [aux_sym_indented_code_block_repeat1] = STATE(154), [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_BSLASH] = ACTIONS(1404), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1402), - [sym__escaped_characters] = ACTIONS(1402), - [sym__word] = ACTIONS(1402), - [sym__soft_line_ending] = ACTIONS(1402), - [sym__block_close] = ACTIONS(1402), - [sym__block_quote_start] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1404), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1404), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_DOLLAR] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_COMMA] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1404), + [anon_sym_AT] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_BSLASH] = ACTIONS(1402), + [anon_sym_RBRACK] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym__] = ACTIONS(1404), + [anon_sym_BQUOTE] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1404), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1404), + [sym__escaped_characters] = ACTIONS(1404), + [sym__word] = ACTIONS(1404), + [sym__soft_line_ending] = ACTIONS(1404), + [sym__block_close] = ACTIONS(1404), + [sym__block_quote_start] = ACTIONS(1404), [sym__indented_chunk_start] = ACTIONS(101), - [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__list_marker_example] = ACTIONS(1402), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1402), - [sym__fenced_code_block_start_backtick] = ACTIONS(1402), - [sym__fenced_code_block_start_tilde] = ACTIONS(1402), + [sym_atx_h1_marker] = ACTIONS(1404), + [sym_atx_h2_marker] = ACTIONS(1404), + [sym_atx_h3_marker] = ACTIONS(1404), + [sym_atx_h4_marker] = ACTIONS(1404), + [sym_atx_h5_marker] = ACTIONS(1404), + [sym_atx_h6_marker] = ACTIONS(1404), + [sym__thematic_break] = ACTIONS(1404), + [sym__list_marker_minus] = ACTIONS(1404), + [sym__list_marker_plus] = ACTIONS(1404), + [sym__list_marker_star] = ACTIONS(1404), + [sym__list_marker_parenthesis] = ACTIONS(1404), + [sym__list_marker_dot] = ACTIONS(1404), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1404), + [sym__list_marker_example] = ACTIONS(1404), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1404), + [sym__fenced_code_block_start_backtick] = ACTIONS(1404), + [sym__fenced_code_block_start_tilde] = ACTIONS(1404), [sym__blank_line_start] = ACTIONS(121), - [sym_minus_metadata] = ACTIONS(1402), - [sym__pipe_table_start] = ACTIONS(1402), - [sym__fenced_div_start] = ACTIONS(1402), - [sym_ref_id_specifier] = ACTIONS(1402), - [sym__display_math_state_track_marker] = ACTIONS(1402), - [sym__inline_math_state_track_marker] = ACTIONS(1402), - [sym__code_span_start] = ACTIONS(1402), - [sym__html_comment] = ACTIONS(1402), - [sym_raw_specifier] = ACTIONS(1402), - [sym__autolink] = ACTIONS(1402), + [sym_minus_metadata] = ACTIONS(1404), + [sym__pipe_table_start] = ACTIONS(1404), + [sym__fenced_div_start] = ACTIONS(1404), + [sym_ref_id_specifier] = ACTIONS(1404), + [sym__display_math_state_track_marker] = ACTIONS(1404), + [sym__inline_math_state_track_marker] = ACTIONS(1404), + [sym__code_span_start] = ACTIONS(1404), + [sym__html_comment] = ACTIONS(1404), + [sym_raw_specifier] = ACTIONS(1404), + [sym__autolink] = ACTIONS(1404), }, [STATE(164)] = { [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1510), - [sym__escaped_characters] = ACTIONS(1510), - [sym__word] = ACTIONS(1510), - [sym__soft_line_ending] = ACTIONS(1510), - [sym__block_close] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1510), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1512), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1512), + [sym__escaped_characters] = 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_setext_h1_underline] = ACTIONS(1514), [sym_setext_h2_underline] = ACTIONS(1516), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(1510), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_example] = ACTIONS(1510), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym_minus_metadata] = ACTIONS(1510), - [sym__pipe_table_start] = ACTIONS(1510), - [sym__fenced_div_start] = ACTIONS(1510), - [sym__fenced_div_end] = ACTIONS(1510), - [sym_ref_id_specifier] = ACTIONS(1510), - [sym__display_math_state_track_marker] = ACTIONS(1510), - [sym__inline_math_state_track_marker] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__html_comment] = ACTIONS(1510), - [sym_raw_specifier] = ACTIONS(1510), - [sym__autolink] = ACTIONS(1510), + [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), + [sym__code_span_start] = ACTIONS(1512), + [sym__html_comment] = ACTIONS(1512), + [sym_raw_specifier] = ACTIONS(1512), + [sym__autolink] = ACTIONS(1512), }, [STATE(165)] = { [sym_list_marker_minus] = STATE(24), [sym__list_item_minus] = STATE(143), [aux_sym__list_minus_repeat1] = STATE(143), [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_BSLASH] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1418), - [anon_sym_BQUOTE] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1418), - [sym__escaped_characters] = ACTIONS(1418), - [sym__word] = ACTIONS(1418), - [sym__soft_line_ending] = ACTIONS(1418), - [sym__block_close] = ACTIONS(1418), - [sym__block_quote_start] = ACTIONS(1418), - [sym__indented_chunk_start] = ACTIONS(1418), - [sym_atx_h1_marker] = ACTIONS(1418), - [sym_atx_h2_marker] = ACTIONS(1418), - [sym_atx_h3_marker] = ACTIONS(1418), - [sym_atx_h4_marker] = ACTIONS(1418), - [sym_atx_h5_marker] = ACTIONS(1418), - [sym_atx_h6_marker] = ACTIONS(1418), - [sym__thematic_break] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1420), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_BSLASH] = ACTIONS(1418), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1420), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1420), + [sym__escaped_characters] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [sym__block_close] = ACTIONS(1420), + [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(33), - [sym__list_marker_plus] = ACTIONS(1418), - [sym__list_marker_star] = ACTIONS(1418), - [sym__list_marker_parenthesis] = ACTIONS(1418), - [sym__list_marker_dot] = ACTIONS(1418), + [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(33), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1418), - [sym__list_marker_example] = ACTIONS(1418), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1418), - [sym__fenced_code_block_start_backtick] = ACTIONS(1418), - [sym__fenced_code_block_start_tilde] = ACTIONS(1418), - [sym__blank_line_start] = ACTIONS(1418), - [sym_minus_metadata] = ACTIONS(1418), - [sym__pipe_table_start] = ACTIONS(1418), - [sym__fenced_div_start] = ACTIONS(1418), - [sym_ref_id_specifier] = ACTIONS(1418), - [sym__display_math_state_track_marker] = ACTIONS(1418), - [sym__inline_math_state_track_marker] = ACTIONS(1418), - [sym__code_span_start] = ACTIONS(1418), - [sym__html_comment] = ACTIONS(1418), - [sym_raw_specifier] = ACTIONS(1418), - [sym__autolink] = ACTIONS(1418), + [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__list_marker_example] = ACTIONS(1420), + [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1420), + [sym__display_math_state_track_marker] = ACTIONS(1420), + [sym__inline_math_state_track_marker] = ACTIONS(1420), + [sym__code_span_start] = ACTIONS(1420), + [sym__html_comment] = ACTIONS(1420), + [sym_raw_specifier] = ACTIONS(1420), + [sym__autolink] = ACTIONS(1420), }, [STATE(166)] = { [sym_list_marker_star] = STATE(25), [sym__list_item_star] = STATE(153), [aux_sym__list_star_repeat1] = STATE(153), [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_BSLASH] = ACTIONS(1396), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1394), - [sym__escaped_characters] = 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), + [anon_sym_RBRACE] = ACTIONS(1396), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_BSLASH] = ACTIONS(1394), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1396), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1396), + [sym__escaped_characters] = ACTIONS(1396), + [sym__word] = ACTIONS(1396), + [sym__soft_line_ending] = ACTIONS(1396), + [sym__block_close] = ACTIONS(1396), + [sym__block_quote_start] = ACTIONS(1396), + [sym__indented_chunk_start] = ACTIONS(1396), + [sym_atx_h1_marker] = ACTIONS(1396), + [sym_atx_h2_marker] = ACTIONS(1396), + [sym_atx_h3_marker] = ACTIONS(1396), + [sym_atx_h4_marker] = ACTIONS(1396), + [sym_atx_h5_marker] = ACTIONS(1396), + [sym_atx_h6_marker] = ACTIONS(1396), + [sym__thematic_break] = ACTIONS(1396), + [sym__list_marker_minus] = ACTIONS(1396), + [sym__list_marker_plus] = ACTIONS(1396), [sym__list_marker_star] = ACTIONS(37), - [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_parenthesis] = ACTIONS(1396), + [sym__list_marker_dot] = ACTIONS(1396), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1396), [sym__list_marker_star_dont_interrupt] = ACTIONS(37), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), - [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), - [sym__code_span_start] = ACTIONS(1394), - [sym__html_comment] = ACTIONS(1394), - [sym_raw_specifier] = ACTIONS(1394), - [sym__autolink] = ACTIONS(1394), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1396), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1396), + [sym__fenced_code_block_start_backtick] = ACTIONS(1396), + [sym__fenced_code_block_start_tilde] = ACTIONS(1396), + [sym__blank_line_start] = ACTIONS(1396), + [sym_minus_metadata] = ACTIONS(1396), + [sym__pipe_table_start] = ACTIONS(1396), + [sym__fenced_div_start] = ACTIONS(1396), + [sym_ref_id_specifier] = ACTIONS(1396), + [sym__display_math_state_track_marker] = ACTIONS(1396), + [sym__inline_math_state_track_marker] = ACTIONS(1396), + [sym__code_span_start] = ACTIONS(1396), + [sym__html_comment] = ACTIONS(1396), + [sym_raw_specifier] = ACTIONS(1396), + [sym__autolink] = ACTIONS(1396), }, [STATE(167)] = { [sym_list_marker_dot] = STATE(26), [sym__list_item_dot] = STATE(155), [aux_sym__list_dot_repeat1] = STATE(155), [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_BSLASH] = ACTIONS(1416), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym__] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1414), - [sym__escaped_characters] = ACTIONS(1414), - [sym__word] = ACTIONS(1414), - [sym__soft_line_ending] = ACTIONS(1414), - [sym__block_close] = ACTIONS(1414), - [sym__block_quote_start] = ACTIONS(1414), - [sym__indented_chunk_start] = ACTIONS(1414), - [sym_atx_h1_marker] = ACTIONS(1414), - [sym_atx_h2_marker] = ACTIONS(1414), - [sym_atx_h3_marker] = ACTIONS(1414), - [sym_atx_h4_marker] = ACTIONS(1414), - [sym_atx_h5_marker] = ACTIONS(1414), - [sym_atx_h6_marker] = ACTIONS(1414), - [sym__thematic_break] = ACTIONS(1414), - [sym__list_marker_minus] = ACTIONS(1414), - [sym__list_marker_plus] = ACTIONS(1414), - [sym__list_marker_star] = ACTIONS(1414), - [sym__list_marker_parenthesis] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1416), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_RPAREN] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym__] = ACTIONS(1416), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1416), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1416), + [sym__escaped_characters] = ACTIONS(1416), + [sym__word] = ACTIONS(1416), + [sym__soft_line_ending] = ACTIONS(1416), + [sym__block_close] = ACTIONS(1416), + [sym__block_quote_start] = ACTIONS(1416), + [sym__indented_chunk_start] = ACTIONS(1416), + [sym_atx_h1_marker] = ACTIONS(1416), + [sym_atx_h2_marker] = ACTIONS(1416), + [sym_atx_h3_marker] = ACTIONS(1416), + [sym_atx_h4_marker] = ACTIONS(1416), + [sym_atx_h5_marker] = ACTIONS(1416), + [sym_atx_h6_marker] = ACTIONS(1416), + [sym__thematic_break] = ACTIONS(1416), + [sym__list_marker_minus] = ACTIONS(1416), + [sym__list_marker_plus] = ACTIONS(1416), + [sym__list_marker_star] = ACTIONS(1416), + [sym__list_marker_parenthesis] = ACTIONS(1416), [sym__list_marker_dot] = ACTIONS(41), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1416), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1416), [sym__list_marker_dot_dont_interrupt] = ACTIONS(41), - [sym__list_marker_example] = ACTIONS(1414), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), - [sym__fenced_code_block_start_backtick] = ACTIONS(1414), - [sym__fenced_code_block_start_tilde] = ACTIONS(1414), - [sym__blank_line_start] = ACTIONS(1414), - [sym_minus_metadata] = ACTIONS(1414), - [sym__pipe_table_start] = ACTIONS(1414), - [sym__fenced_div_start] = ACTIONS(1414), - [sym_ref_id_specifier] = ACTIONS(1414), - [sym__display_math_state_track_marker] = ACTIONS(1414), - [sym__inline_math_state_track_marker] = ACTIONS(1414), - [sym__code_span_start] = ACTIONS(1414), - [sym__html_comment] = ACTIONS(1414), - [sym_raw_specifier] = ACTIONS(1414), - [sym__autolink] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1416), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1416), + [sym__fenced_code_block_start_backtick] = ACTIONS(1416), + [sym__fenced_code_block_start_tilde] = ACTIONS(1416), + [sym__blank_line_start] = ACTIONS(1416), + [sym_minus_metadata] = ACTIONS(1416), + [sym__pipe_table_start] = ACTIONS(1416), + [sym__fenced_div_start] = ACTIONS(1416), + [sym_ref_id_specifier] = ACTIONS(1416), + [sym__display_math_state_track_marker] = ACTIONS(1416), + [sym__inline_math_state_track_marker] = ACTIONS(1416), + [sym__code_span_start] = ACTIONS(1416), + [sym__html_comment] = ACTIONS(1416), + [sym_raw_specifier] = ACTIONS(1416), + [sym__autolink] = ACTIONS(1416), }, [STATE(168)] = { [sym_list_marker_parenthesis] = STATE(27), [sym__list_item_parenthesis] = STATE(162), [aux_sym__list_parenthesis_repeat1] = STATE(162), [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_BSLASH] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1410), - [sym__escaped_characters] = ACTIONS(1410), - [sym__word] = ACTIONS(1410), - [sym__soft_line_ending] = ACTIONS(1410), - [sym__block_close] = ACTIONS(1410), - [sym__block_quote_start] = ACTIONS(1410), - [sym__indented_chunk_start] = ACTIONS(1410), - [sym_atx_h1_marker] = ACTIONS(1410), - [sym_atx_h2_marker] = ACTIONS(1410), - [sym_atx_h3_marker] = ACTIONS(1410), - [sym_atx_h4_marker] = ACTIONS(1410), - [sym_atx_h5_marker] = ACTIONS(1410), - [sym_atx_h6_marker] = ACTIONS(1410), - [sym__thematic_break] = ACTIONS(1410), - [sym__list_marker_minus] = ACTIONS(1410), - [sym__list_marker_plus] = ACTIONS(1410), - [sym__list_marker_star] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1412), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_BSLASH] = ACTIONS(1410), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1412), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1412), + [sym__escaped_characters] = 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(39), - [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_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(39), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_example] = ACTIONS(1410), - [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1410), - [sym__display_math_state_track_marker] = ACTIONS(1410), - [sym__inline_math_state_track_marker] = ACTIONS(1410), - [sym__code_span_start] = ACTIONS(1410), - [sym__html_comment] = ACTIONS(1410), - [sym_raw_specifier] = ACTIONS(1410), - [sym__autolink] = ACTIONS(1410), + [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), + [sym__code_span_start] = ACTIONS(1412), + [sym__html_comment] = ACTIONS(1412), + [sym_raw_specifier] = ACTIONS(1412), + [sym__autolink] = ACTIONS(1412), }, [STATE(169)] = { [sym_list_marker_example] = STATE(28), [sym__list_item_example] = STATE(170), [aux_sym__list_example_repeat1] = STATE(170), [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_BSLASH] = ACTIONS(1408), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1406), - [sym__escaped_characters] = ACTIONS(1406), - [sym__word] = ACTIONS(1406), - [sym__soft_line_ending] = ACTIONS(1406), - [sym__block_close] = ACTIONS(1406), - [sym__block_quote_start] = ACTIONS(1406), - [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), + [anon_sym_RBRACE] = ACTIONS(1408), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PERCENT] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_COMMA] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_DOT] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_QMARK] = ACTIONS(1408), + [anon_sym_AT] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1408), + [anon_sym_CARET] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BQUOTE] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1408), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1408), + [sym__escaped_characters] = ACTIONS(1408), + [sym__word] = ACTIONS(1408), + [sym__soft_line_ending] = ACTIONS(1408), + [sym__block_close] = ACTIONS(1408), + [sym__block_quote_start] = ACTIONS(1408), + [sym__indented_chunk_start] = ACTIONS(1408), + [sym_atx_h1_marker] = ACTIONS(1408), + [sym_atx_h2_marker] = ACTIONS(1408), + [sym_atx_h3_marker] = ACTIONS(1408), + [sym_atx_h4_marker] = ACTIONS(1408), + [sym_atx_h5_marker] = ACTIONS(1408), + [sym_atx_h6_marker] = ACTIONS(1408), + [sym__thematic_break] = ACTIONS(1408), + [sym__list_marker_minus] = ACTIONS(1408), + [sym__list_marker_plus] = ACTIONS(1408), + [sym__list_marker_star] = ACTIONS(1408), + [sym__list_marker_parenthesis] = ACTIONS(1408), + [sym__list_marker_dot] = ACTIONS(1408), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1408), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1408), [sym__list_marker_example] = ACTIONS(43), [sym__list_marker_example_dont_interrupt] = ACTIONS(43), - [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_ref_id_specifier] = ACTIONS(1406), - [sym__display_math_state_track_marker] = ACTIONS(1406), - [sym__inline_math_state_track_marker] = ACTIONS(1406), - [sym__code_span_start] = ACTIONS(1406), - [sym__html_comment] = ACTIONS(1406), - [sym_raw_specifier] = ACTIONS(1406), - [sym__autolink] = ACTIONS(1406), + [sym__fenced_code_block_start_backtick] = ACTIONS(1408), + [sym__fenced_code_block_start_tilde] = ACTIONS(1408), + [sym__blank_line_start] = ACTIONS(1408), + [sym_minus_metadata] = ACTIONS(1408), + [sym__pipe_table_start] = ACTIONS(1408), + [sym__fenced_div_start] = ACTIONS(1408), + [sym_ref_id_specifier] = ACTIONS(1408), + [sym__display_math_state_track_marker] = ACTIONS(1408), + [sym__inline_math_state_track_marker] = ACTIONS(1408), + [sym__code_span_start] = ACTIONS(1408), + [sym__html_comment] = ACTIONS(1408), + [sym_raw_specifier] = ACTIONS(1408), + [sym__autolink] = ACTIONS(1408), }, [STATE(170)] = { [sym_list_marker_example] = STATE(28), [sym__list_item_example] = STATE(170), [aux_sym__list_example_repeat1] = STATE(170), [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_BSLASH] = ACTIONS(1472), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1470), - [sym__escaped_characters] = ACTIONS(1470), - [sym__word] = ACTIONS(1470), - [sym__soft_line_ending] = ACTIONS(1470), - [sym__block_close] = ACTIONS(1470), - [sym__block_quote_start] = ACTIONS(1470), - [sym__indented_chunk_start] = ACTIONS(1470), - [sym_atx_h1_marker] = ACTIONS(1470), - [sym_atx_h2_marker] = ACTIONS(1470), - [sym_atx_h3_marker] = ACTIONS(1470), - [sym_atx_h4_marker] = ACTIONS(1470), - [sym_atx_h5_marker] = ACTIONS(1470), - [sym_atx_h6_marker] = ACTIONS(1470), - [sym__thematic_break] = ACTIONS(1470), - [sym__list_marker_minus] = ACTIONS(1470), - [sym__list_marker_plus] = ACTIONS(1470), - [sym__list_marker_star] = ACTIONS(1470), - [sym__list_marker_parenthesis] = ACTIONS(1470), - [sym__list_marker_dot] = ACTIONS(1470), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1472), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1472), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1472), + [sym__escaped_characters] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [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(1474), [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), - [sym__fenced_code_block_start_backtick] = ACTIONS(1470), - [sym__fenced_code_block_start_tilde] = ACTIONS(1470), - [sym__blank_line_start] = ACTIONS(1470), - [sym_minus_metadata] = ACTIONS(1470), - [sym__pipe_table_start] = ACTIONS(1470), - [sym__fenced_div_start] = ACTIONS(1470), - [sym_ref_id_specifier] = ACTIONS(1470), - [sym__display_math_state_track_marker] = ACTIONS(1470), - [sym__inline_math_state_track_marker] = ACTIONS(1470), - [sym__code_span_start] = ACTIONS(1470), - [sym__html_comment] = ACTIONS(1470), - [sym_raw_specifier] = ACTIONS(1470), - [sym__autolink] = ACTIONS(1470), + [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), + [sym__code_span_start] = ACTIONS(1472), + [sym__html_comment] = ACTIONS(1472), + [sym_raw_specifier] = ACTIONS(1472), + [sym__autolink] = ACTIONS(1472), }, [STATE(171)] = { [sym_list_marker_plus] = STATE(35), [sym__list_item_plus] = STATE(171), [aux_sym__list_plus_repeat1] = STATE(171), - [ts_builtin_sym_end] = ACTIONS(1477), + [ts_builtin_sym_end] = ACTIONS(1479), [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_BSLASH] = ACTIONS(1479), - [anon_sym_RBRACK] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1477), - [sym__escaped_characters] = ACTIONS(1477), - [sym__word] = ACTIONS(1477), - [sym__soft_line_ending] = ACTIONS(1477), - [sym__block_quote_start] = ACTIONS(1477), - [sym__indented_chunk_start] = ACTIONS(1477), - [sym_atx_h1_marker] = ACTIONS(1477), - [sym_atx_h2_marker] = ACTIONS(1477), - [sym_atx_h3_marker] = ACTIONS(1477), - [sym_atx_h4_marker] = ACTIONS(1477), - [sym_atx_h5_marker] = ACTIONS(1477), - [sym_atx_h6_marker] = ACTIONS(1477), - [sym__thematic_break] = ACTIONS(1477), - [sym__list_marker_minus] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1479), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_DOLLAR] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_AT] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_BSLASH] = ACTIONS(1477), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1479), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1479), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1479), + [sym__escaped_characters] = ACTIONS(1479), + [sym__word] = ACTIONS(1479), + [sym__soft_line_ending] = ACTIONS(1479), + [sym__block_quote_start] = ACTIONS(1479), + [sym__indented_chunk_start] = ACTIONS(1479), + [sym_atx_h1_marker] = ACTIONS(1479), + [sym_atx_h2_marker] = ACTIONS(1479), + [sym_atx_h3_marker] = ACTIONS(1479), + [sym_atx_h4_marker] = ACTIONS(1479), + [sym_atx_h5_marker] = ACTIONS(1479), + [sym_atx_h6_marker] = ACTIONS(1479), + [sym__thematic_break] = ACTIONS(1479), + [sym__list_marker_minus] = ACTIONS(1479), [sym__list_marker_plus] = ACTIONS(1481), - [sym__list_marker_star] = ACTIONS(1477), - [sym__list_marker_parenthesis] = ACTIONS(1477), - [sym__list_marker_dot] = ACTIONS(1477), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1477), + [sym__list_marker_star] = ACTIONS(1479), + [sym__list_marker_parenthesis] = ACTIONS(1479), + [sym__list_marker_dot] = ACTIONS(1479), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1479), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1481), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1477), - [sym__list_marker_example] = ACTIONS(1477), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1477), - [sym__fenced_code_block_start_backtick] = ACTIONS(1477), - [sym__fenced_code_block_start_tilde] = ACTIONS(1477), - [sym__blank_line_start] = ACTIONS(1477), - [sym_minus_metadata] = ACTIONS(1477), - [sym__pipe_table_start] = ACTIONS(1477), - [sym__fenced_div_start] = ACTIONS(1477), - [sym_ref_id_specifier] = ACTIONS(1477), - [sym__display_math_state_track_marker] = ACTIONS(1477), - [sym__inline_math_state_track_marker] = ACTIONS(1477), - [sym__code_span_start] = ACTIONS(1477), - [sym__html_comment] = ACTIONS(1477), - [sym_raw_specifier] = ACTIONS(1477), - [sym__autolink] = ACTIONS(1477), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1479), + [sym__list_marker_example] = ACTIONS(1479), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1479), + [sym__fenced_code_block_start_backtick] = ACTIONS(1479), + [sym__fenced_code_block_start_tilde] = ACTIONS(1479), + [sym__blank_line_start] = ACTIONS(1479), + [sym_minus_metadata] = ACTIONS(1479), + [sym__pipe_table_start] = ACTIONS(1479), + [sym__fenced_div_start] = ACTIONS(1479), + [sym_ref_id_specifier] = ACTIONS(1479), + [sym__display_math_state_track_marker] = ACTIONS(1479), + [sym__inline_math_state_track_marker] = ACTIONS(1479), + [sym__code_span_start] = ACTIONS(1479), + [sym__html_comment] = ACTIONS(1479), + [sym_raw_specifier] = ACTIONS(1479), + [sym__autolink] = ACTIONS(1479), }, [STATE(172)] = { [sym_list_marker_minus] = STATE(18), [sym__list_item_minus] = STATE(172), [aux_sym__list_minus_repeat1] = STATE(172), - [ts_builtin_sym_end] = ACTIONS(1463), + [ts_builtin_sym_end] = ACTIONS(1465), [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1463), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_DQUOTE] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_COMMA] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1463), - [anon_sym_AT] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1465), - [anon_sym_RBRACK] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym__] = ACTIONS(1463), - [anon_sym_BQUOTE] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_TILDE] = ACTIONS(1463), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1463), - [sym__escaped_characters] = ACTIONS(1463), - [sym__word] = ACTIONS(1463), - [sym__soft_line_ending] = ACTIONS(1463), - [sym__block_quote_start] = ACTIONS(1463), - [sym__indented_chunk_start] = ACTIONS(1463), - [sym_atx_h1_marker] = ACTIONS(1463), - [sym_atx_h2_marker] = ACTIONS(1463), - [sym_atx_h3_marker] = ACTIONS(1463), - [sym_atx_h4_marker] = ACTIONS(1463), - [sym_atx_h5_marker] = ACTIONS(1463), - [sym_atx_h6_marker] = ACTIONS(1463), - [sym__thematic_break] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1465), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_DOLLAR] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_BSLASH] = ACTIONS(1463), + [anon_sym_RBRACK] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym__] = ACTIONS(1465), + [anon_sym_BQUOTE] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1465), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1465), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1465), + [sym__escaped_characters] = ACTIONS(1465), + [sym__word] = ACTIONS(1465), + [sym__soft_line_ending] = ACTIONS(1465), + [sym__block_quote_start] = ACTIONS(1465), + [sym__indented_chunk_start] = ACTIONS(1465), + [sym_atx_h1_marker] = ACTIONS(1465), + [sym_atx_h2_marker] = ACTIONS(1465), + [sym_atx_h3_marker] = ACTIONS(1465), + [sym_atx_h4_marker] = ACTIONS(1465), + [sym_atx_h5_marker] = ACTIONS(1465), + [sym_atx_h6_marker] = ACTIONS(1465), + [sym__thematic_break] = ACTIONS(1465), [sym__list_marker_minus] = ACTIONS(1467), - [sym__list_marker_plus] = ACTIONS(1463), - [sym__list_marker_star] = ACTIONS(1463), - [sym__list_marker_parenthesis] = ACTIONS(1463), - [sym__list_marker_dot] = ACTIONS(1463), + [sym__list_marker_plus] = ACTIONS(1465), + [sym__list_marker_star] = ACTIONS(1465), + [sym__list_marker_parenthesis] = ACTIONS(1465), + [sym__list_marker_dot] = ACTIONS(1465), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1467), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1463), - [sym__list_marker_example] = ACTIONS(1463), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1463), - [sym__fenced_code_block_start_backtick] = ACTIONS(1463), - [sym__fenced_code_block_start_tilde] = ACTIONS(1463), - [sym__blank_line_start] = ACTIONS(1463), - [sym_minus_metadata] = ACTIONS(1463), - [sym__pipe_table_start] = ACTIONS(1463), - [sym__fenced_div_start] = ACTIONS(1463), - [sym_ref_id_specifier] = ACTIONS(1463), - [sym__display_math_state_track_marker] = ACTIONS(1463), - [sym__inline_math_state_track_marker] = ACTIONS(1463), - [sym__code_span_start] = ACTIONS(1463), - [sym__html_comment] = ACTIONS(1463), - [sym_raw_specifier] = ACTIONS(1463), - [sym__autolink] = ACTIONS(1463), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1465), + [sym__list_marker_example] = ACTIONS(1465), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1465), + [sym__fenced_code_block_start_backtick] = ACTIONS(1465), + [sym__fenced_code_block_start_tilde] = ACTIONS(1465), + [sym__blank_line_start] = ACTIONS(1465), + [sym_minus_metadata] = ACTIONS(1465), + [sym__pipe_table_start] = ACTIONS(1465), + [sym__fenced_div_start] = ACTIONS(1465), + [sym_ref_id_specifier] = ACTIONS(1465), + [sym__display_math_state_track_marker] = ACTIONS(1465), + [sym__inline_math_state_track_marker] = ACTIONS(1465), + [sym__code_span_start] = ACTIONS(1465), + [sym__html_comment] = ACTIONS(1465), + [sym_raw_specifier] = ACTIONS(1465), + [sym__autolink] = ACTIONS(1465), }, [STATE(173)] = { [sym_list_marker_example] = STATE(6), [sym__list_item_example] = STATE(173), [aux_sym__list_example_repeat1] = STATE(173), - [ts_builtin_sym_end] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1472), [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_BSLASH] = ACTIONS(1472), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1470), - [anon_sym_BQUOTE] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1470), - [sym__escaped_characters] = ACTIONS(1470), - [sym__word] = ACTIONS(1470), - [sym__soft_line_ending] = ACTIONS(1470), - [sym__block_quote_start] = ACTIONS(1470), - [sym__indented_chunk_start] = ACTIONS(1470), - [sym_atx_h1_marker] = ACTIONS(1470), - [sym_atx_h2_marker] = ACTIONS(1470), - [sym_atx_h3_marker] = ACTIONS(1470), - [sym_atx_h4_marker] = ACTIONS(1470), - [sym_atx_h5_marker] = ACTIONS(1470), - [sym_atx_h6_marker] = ACTIONS(1470), - [sym__thematic_break] = ACTIONS(1470), - [sym__list_marker_minus] = ACTIONS(1470), - [sym__list_marker_plus] = ACTIONS(1470), - [sym__list_marker_star] = ACTIONS(1470), - [sym__list_marker_parenthesis] = ACTIONS(1470), - [sym__list_marker_dot] = ACTIONS(1470), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1472), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1472), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1472), + [sym__escaped_characters] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [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(1474), [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), - [sym__fenced_code_block_start_backtick] = ACTIONS(1470), - [sym__fenced_code_block_start_tilde] = ACTIONS(1470), - [sym__blank_line_start] = ACTIONS(1470), - [sym_minus_metadata] = ACTIONS(1470), - [sym__pipe_table_start] = ACTIONS(1470), - [sym__fenced_div_start] = ACTIONS(1470), - [sym_ref_id_specifier] = ACTIONS(1470), - [sym__display_math_state_track_marker] = ACTIONS(1470), - [sym__inline_math_state_track_marker] = ACTIONS(1470), - [sym__code_span_start] = ACTIONS(1470), - [sym__html_comment] = ACTIONS(1470), - [sym_raw_specifier] = ACTIONS(1470), - [sym__autolink] = ACTIONS(1470), + [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), + [sym__code_span_start] = ACTIONS(1472), + [sym__html_comment] = ACTIONS(1472), + [sym_raw_specifier] = ACTIONS(1472), + [sym__autolink] = ACTIONS(1472), }, [STATE(174)] = { [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_BSLASH] = ACTIONS(1520), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1518), - [sym__escaped_characters] = ACTIONS(1518), - [sym__word] = ACTIONS(1518), - [sym__soft_line_ending] = ACTIONS(1518), - [sym__block_close] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym__] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1520), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1520), + [sym__escaped_characters] = ACTIONS(1520), + [sym__word] = ACTIONS(1520), + [sym__soft_line_ending] = ACTIONS(1520), + [sym__block_close] = ACTIONS(1520), [sym_block_continuation] = ACTIONS(1522), - [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), - [sym__code_span_start] = ACTIONS(1518), - [sym__html_comment] = ACTIONS(1518), - [sym_raw_specifier] = ACTIONS(1518), - [sym__autolink] = ACTIONS(1518), + [sym__block_quote_start] = ACTIONS(1520), + [sym__indented_chunk_start] = ACTIONS(1520), + [sym_atx_h1_marker] = ACTIONS(1520), + [sym_atx_h2_marker] = ACTIONS(1520), + [sym_atx_h3_marker] = ACTIONS(1520), + [sym_atx_h4_marker] = ACTIONS(1520), + [sym_atx_h5_marker] = ACTIONS(1520), + [sym_atx_h6_marker] = ACTIONS(1520), + [sym__thematic_break] = ACTIONS(1520), + [sym__list_marker_minus] = ACTIONS(1520), + [sym__list_marker_plus] = ACTIONS(1520), + [sym__list_marker_star] = ACTIONS(1520), + [sym__list_marker_parenthesis] = ACTIONS(1520), + [sym__list_marker_dot] = ACTIONS(1520), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_example] = ACTIONS(1520), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1520), + [sym__fenced_code_block_start_backtick] = ACTIONS(1520), + [sym__fenced_code_block_start_tilde] = ACTIONS(1520), + [sym__blank_line_start] = ACTIONS(1520), + [sym_minus_metadata] = ACTIONS(1520), + [sym__pipe_table_start] = ACTIONS(1520), + [sym__fenced_div_start] = ACTIONS(1520), + [sym__fenced_div_end] = ACTIONS(1520), + [sym_ref_id_specifier] = ACTIONS(1520), + [sym__display_math_state_track_marker] = ACTIONS(1520), + [sym__inline_math_state_track_marker] = ACTIONS(1520), + [sym__code_span_start] = ACTIONS(1520), + [sym__html_comment] = ACTIONS(1520), + [sym_raw_specifier] = ACTIONS(1520), + [sym__autolink] = ACTIONS(1520), }, [STATE(175)] = { - [ts_builtin_sym_end] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1494), [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1494), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1492), - [sym__escaped_characters] = 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_setext_h1_underline] = ACTIONS(1492), - [sym_setext_h2_underline] = 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), - [sym__code_span_start] = ACTIONS(1492), - [sym__html_comment] = ACTIONS(1492), - [sym_raw_specifier] = ACTIONS(1492), - [sym__autolink] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1494), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1494), + [sym__escaped_characters] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym_setext_h1_underline] = ACTIONS(1494), + [sym_setext_h2_underline] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + [sym__code_span_start] = ACTIONS(1494), + [sym__html_comment] = ACTIONS(1494), + [sym_raw_specifier] = ACTIONS(1494), + [sym__autolink] = ACTIONS(1494), }, [STATE(176)] = { [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1526), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1524), - [sym__escaped_characters] = ACTIONS(1524), - [sym__word] = ACTIONS(1524), - [sym__soft_line_ending] = ACTIONS(1524), - [sym__block_close] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1526), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1526), + [sym__escaped_characters] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_close] = ACTIONS(1526), [sym_block_continuation] = ACTIONS(1528), - [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), - [sym__code_span_start] = ACTIONS(1524), - [sym__html_comment] = ACTIONS(1524), - [sym_raw_specifier] = ACTIONS(1524), - [sym__autolink] = ACTIONS(1524), + [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), + [sym__code_span_start] = ACTIONS(1526), + [sym__html_comment] = ACTIONS(1526), + [sym_raw_specifier] = ACTIONS(1526), + [sym__autolink] = ACTIONS(1526), }, [STATE(177)] = { [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_BSLASH] = ACTIONS(1532), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1530), - [sym__escaped_characters] = ACTIONS(1530), - [sym__word] = ACTIONS(1530), - [sym__soft_line_ending] = ACTIONS(1530), - [sym__block_close] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_BQUOTE] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1532), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1532), + [sym__escaped_characters] = ACTIONS(1532), + [sym__word] = ACTIONS(1532), + [sym__soft_line_ending] = ACTIONS(1532), + [sym__block_close] = ACTIONS(1532), [sym_block_continuation] = ACTIONS(1534), - [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), - [sym__code_span_start] = ACTIONS(1530), - [sym__html_comment] = ACTIONS(1530), - [sym_raw_specifier] = ACTIONS(1530), - [sym__autolink] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1532), + [sym__indented_chunk_start] = ACTIONS(1532), + [sym_atx_h1_marker] = ACTIONS(1532), + [sym_atx_h2_marker] = ACTIONS(1532), + [sym_atx_h3_marker] = ACTIONS(1532), + [sym_atx_h4_marker] = ACTIONS(1532), + [sym_atx_h5_marker] = ACTIONS(1532), + [sym_atx_h6_marker] = ACTIONS(1532), + [sym__thematic_break] = ACTIONS(1532), + [sym__list_marker_minus] = ACTIONS(1532), + [sym__list_marker_plus] = ACTIONS(1532), + [sym__list_marker_star] = ACTIONS(1532), + [sym__list_marker_parenthesis] = ACTIONS(1532), + [sym__list_marker_dot] = ACTIONS(1532), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_example] = ACTIONS(1532), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1532), + [sym__fenced_code_block_start_backtick] = ACTIONS(1532), + [sym__fenced_code_block_start_tilde] = ACTIONS(1532), + [sym__blank_line_start] = ACTIONS(1532), + [sym_minus_metadata] = ACTIONS(1532), + [sym__pipe_table_start] = ACTIONS(1532), + [sym__fenced_div_start] = ACTIONS(1532), + [sym__fenced_div_end] = ACTIONS(1532), + [sym_ref_id_specifier] = ACTIONS(1532), + [sym__display_math_state_track_marker] = ACTIONS(1532), + [sym__inline_math_state_track_marker] = ACTIONS(1532), + [sym__code_span_start] = ACTIONS(1532), + [sym__html_comment] = ACTIONS(1532), + [sym_raw_specifier] = ACTIONS(1532), + [sym__autolink] = ACTIONS(1532), }, [STATE(178)] = { [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_BSLASH] = ACTIONS(1538), - [anon_sym_RBRACK] = ACTIONS(1536), - [anon_sym_CARET] = ACTIONS(1536), - [anon_sym__] = ACTIONS(1536), - [anon_sym_BQUOTE] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1536), - [sym__escaped_characters] = ACTIONS(1536), - [sym__word] = ACTIONS(1536), - [sym__soft_line_ending] = ACTIONS(1536), - [sym__block_close] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1538), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1538), + [sym__escaped_characters] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_close] = ACTIONS(1538), [sym_block_continuation] = ACTIONS(1540), - [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), - [sym__code_span_start] = ACTIONS(1536), - [sym__html_comment] = ACTIONS(1536), - [sym_raw_specifier] = ACTIONS(1536), - [sym__autolink] = ACTIONS(1536), + [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), + [sym__code_span_start] = ACTIONS(1538), + [sym__html_comment] = ACTIONS(1538), + [sym_raw_specifier] = ACTIONS(1538), + [sym__autolink] = ACTIONS(1538), }, [STATE(179)] = { [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_BSLASH] = ACTIONS(1544), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1542), - [sym__escaped_characters] = ACTIONS(1542), - [sym__word] = ACTIONS(1542), - [sym__soft_line_ending] = ACTIONS(1542), - [sym__block_close] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1544), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1544), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1544), + [sym__escaped_characters] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_close] = ACTIONS(1544), [sym_block_continuation] = ACTIONS(1546), - [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), - [sym__code_span_start] = ACTIONS(1542), - [sym__html_comment] = ACTIONS(1542), - [sym_raw_specifier] = ACTIONS(1542), - [sym__autolink] = ACTIONS(1542), + [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), + [sym__code_span_start] = ACTIONS(1544), + [sym__html_comment] = ACTIONS(1544), + [sym_raw_specifier] = ACTIONS(1544), + [sym__autolink] = ACTIONS(1544), }, [STATE(180)] = { [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1548), - [anon_sym_AT] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_BSLASH] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym__] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1548), - [sym__escaped_characters] = ACTIONS(1548), - [sym__word] = ACTIONS(1548), - [sym__soft_line_ending] = ACTIONS(1548), - [sym__block_close] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1550), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1550), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1550), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1550), + [sym__escaped_characters] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_close] = ACTIONS(1550), [sym_block_continuation] = ACTIONS(1552), - [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), - [sym__code_span_start] = ACTIONS(1548), - [sym__html_comment] = ACTIONS(1548), - [sym_raw_specifier] = ACTIONS(1548), - [sym__autolink] = ACTIONS(1548), + [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), + [sym__code_span_start] = ACTIONS(1550), + [sym__html_comment] = ACTIONS(1550), + [sym_raw_specifier] = ACTIONS(1550), + [sym__autolink] = ACTIONS(1550), }, [STATE(181)] = { [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1554), - [anon_sym_AT] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_BSLASH] = ACTIONS(1556), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1554), - [sym__escaped_characters] = ACTIONS(1554), - [sym__word] = ACTIONS(1554), - [sym__soft_line_ending] = ACTIONS(1554), - [sym__block_close] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1556), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1556), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1556), + [sym__escaped_characters] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_close] = ACTIONS(1556), [sym_block_continuation] = ACTIONS(1558), - [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), - [sym__code_span_start] = ACTIONS(1554), - [sym__html_comment] = ACTIONS(1554), - [sym_raw_specifier] = ACTIONS(1554), - [sym__autolink] = ACTIONS(1554), + [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), + [sym__code_span_start] = ACTIONS(1556), + [sym__html_comment] = ACTIONS(1556), + [sym_raw_specifier] = ACTIONS(1556), + [sym__autolink] = ACTIONS(1556), }, [STATE(182)] = { [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1560), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_BSLASH] = ACTIONS(1562), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1560), - [sym__escaped_characters] = ACTIONS(1560), - [sym__word] = ACTIONS(1560), - [sym__soft_line_ending] = ACTIONS(1560), - [sym__block_close] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1562), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1562), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1562), + [anon_sym_DOLLAR] = ACTIONS(1562), + [anon_sym_PERCENT] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_DOT] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1562), + [anon_sym__] = ACTIONS(1562), + [anon_sym_BQUOTE] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1562), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1562), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1562), + [sym__escaped_characters] = ACTIONS(1562), + [sym__word] = ACTIONS(1562), + [sym__soft_line_ending] = ACTIONS(1562), + [sym__block_close] = ACTIONS(1562), [sym_block_continuation] = ACTIONS(1564), - [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), - [sym__code_span_start] = ACTIONS(1560), - [sym__html_comment] = ACTIONS(1560), - [sym_raw_specifier] = ACTIONS(1560), - [sym__autolink] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1562), + [sym__indented_chunk_start] = ACTIONS(1562), + [sym_atx_h1_marker] = ACTIONS(1562), + [sym_atx_h2_marker] = ACTIONS(1562), + [sym_atx_h3_marker] = ACTIONS(1562), + [sym_atx_h4_marker] = ACTIONS(1562), + [sym_atx_h5_marker] = ACTIONS(1562), + [sym_atx_h6_marker] = ACTIONS(1562), + [sym__thematic_break] = ACTIONS(1562), + [sym__list_marker_minus] = ACTIONS(1562), + [sym__list_marker_plus] = ACTIONS(1562), + [sym__list_marker_star] = ACTIONS(1562), + [sym__list_marker_parenthesis] = ACTIONS(1562), + [sym__list_marker_dot] = ACTIONS(1562), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_example] = ACTIONS(1562), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1562), + [sym__fenced_code_block_start_backtick] = ACTIONS(1562), + [sym__fenced_code_block_start_tilde] = ACTIONS(1562), + [sym__blank_line_start] = ACTIONS(1562), + [sym_minus_metadata] = ACTIONS(1562), + [sym__pipe_table_start] = ACTIONS(1562), + [sym__fenced_div_start] = ACTIONS(1562), + [sym__fenced_div_end] = ACTIONS(1562), + [sym_ref_id_specifier] = ACTIONS(1562), + [sym__display_math_state_track_marker] = ACTIONS(1562), + [sym__inline_math_state_track_marker] = ACTIONS(1562), + [sym__code_span_start] = ACTIONS(1562), + [sym__html_comment] = ACTIONS(1562), + [sym_raw_specifier] = ACTIONS(1562), + [sym__autolink] = ACTIONS(1562), }, [STATE(183)] = { [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_BSLASH] = ACTIONS(1568), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1566), - [sym__escaped_characters] = ACTIONS(1566), - [sym__word] = ACTIONS(1566), - [sym__soft_line_ending] = ACTIONS(1566), - [sym__block_close] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1568), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1568), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_COMMA] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym__] = ACTIONS(1568), + [anon_sym_BQUOTE] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1568), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1568), + [sym__escaped_characters] = ACTIONS(1568), + [sym__word] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), + [sym__block_close] = ACTIONS(1568), [sym_block_continuation] = ACTIONS(1570), - [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), - [sym__code_span_start] = ACTIONS(1566), - [sym__html_comment] = ACTIONS(1566), - [sym_raw_specifier] = ACTIONS(1566), - [sym__autolink] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1568), + [sym__indented_chunk_start] = ACTIONS(1568), + [sym_atx_h1_marker] = ACTIONS(1568), + [sym_atx_h2_marker] = ACTIONS(1568), + [sym_atx_h3_marker] = ACTIONS(1568), + [sym_atx_h4_marker] = ACTIONS(1568), + [sym_atx_h5_marker] = ACTIONS(1568), + [sym_atx_h6_marker] = ACTIONS(1568), + [sym__thematic_break] = ACTIONS(1568), + [sym__list_marker_minus] = ACTIONS(1568), + [sym__list_marker_plus] = ACTIONS(1568), + [sym__list_marker_star] = ACTIONS(1568), + [sym__list_marker_parenthesis] = ACTIONS(1568), + [sym__list_marker_dot] = ACTIONS(1568), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_example] = ACTIONS(1568), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1568), + [sym__fenced_code_block_start_backtick] = ACTIONS(1568), + [sym__fenced_code_block_start_tilde] = ACTIONS(1568), + [sym__blank_line_start] = ACTIONS(1568), + [sym_minus_metadata] = ACTIONS(1568), + [sym__pipe_table_start] = ACTIONS(1568), + [sym__fenced_div_start] = ACTIONS(1568), + [sym__fenced_div_end] = ACTIONS(1568), + [sym_ref_id_specifier] = ACTIONS(1568), + [sym__display_math_state_track_marker] = ACTIONS(1568), + [sym__inline_math_state_track_marker] = ACTIONS(1568), + [sym__code_span_start] = ACTIONS(1568), + [sym__html_comment] = ACTIONS(1568), + [sym_raw_specifier] = ACTIONS(1568), + [sym__autolink] = ACTIONS(1568), }, [STATE(184)] = { [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_BSLASH] = ACTIONS(1574), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1572), - [sym__escaped_characters] = ACTIONS(1572), - [sym__word] = ACTIONS(1572), - [sym__soft_line_ending] = ACTIONS(1572), - [sym__block_close] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1574), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1574), + [sym__escaped_characters] = ACTIONS(1574), + [sym__word] = ACTIONS(1574), + [sym__soft_line_ending] = ACTIONS(1574), + [sym__block_close] = ACTIONS(1574), [sym_block_continuation] = ACTIONS(1576), - [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), - [sym__code_span_start] = ACTIONS(1572), - [sym__html_comment] = ACTIONS(1572), - [sym_raw_specifier] = ACTIONS(1572), - [sym__autolink] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1574), + [sym__indented_chunk_start] = ACTIONS(1574), + [sym_atx_h1_marker] = ACTIONS(1574), + [sym_atx_h2_marker] = ACTIONS(1574), + [sym_atx_h3_marker] = ACTIONS(1574), + [sym_atx_h4_marker] = ACTIONS(1574), + [sym_atx_h5_marker] = ACTIONS(1574), + [sym_atx_h6_marker] = ACTIONS(1574), + [sym__thematic_break] = ACTIONS(1574), + [sym__list_marker_minus] = ACTIONS(1574), + [sym__list_marker_plus] = ACTIONS(1574), + [sym__list_marker_star] = ACTIONS(1574), + [sym__list_marker_parenthesis] = ACTIONS(1574), + [sym__list_marker_dot] = ACTIONS(1574), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_example] = ACTIONS(1574), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1574), + [sym__fenced_code_block_start_backtick] = ACTIONS(1574), + [sym__fenced_code_block_start_tilde] = ACTIONS(1574), + [sym__blank_line_start] = ACTIONS(1574), + [sym_minus_metadata] = ACTIONS(1574), + [sym__pipe_table_start] = ACTIONS(1574), + [sym__fenced_div_start] = ACTIONS(1574), + [sym__fenced_div_end] = ACTIONS(1574), + [sym_ref_id_specifier] = ACTIONS(1574), + [sym__display_math_state_track_marker] = ACTIONS(1574), + [sym__inline_math_state_track_marker] = ACTIONS(1574), + [sym__code_span_start] = ACTIONS(1574), + [sym__html_comment] = ACTIONS(1574), + [sym_raw_specifier] = ACTIONS(1574), + [sym__autolink] = ACTIONS(1574), }, [STATE(185)] = { [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1578), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_BSLASH] = ACTIONS(1580), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1578), - [sym__escaped_characters] = ACTIONS(1578), - [sym__word] = ACTIONS(1578), - [sym__soft_line_ending] = ACTIONS(1578), - [sym__block_close] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1580), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1580), + [sym__escaped_characters] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_close] = ACTIONS(1580), [sym_block_continuation] = ACTIONS(1582), - [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), - [sym__code_span_start] = ACTIONS(1578), - [sym__html_comment] = ACTIONS(1578), - [sym_raw_specifier] = ACTIONS(1578), - [sym__autolink] = ACTIONS(1578), + [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), + [sym__code_span_start] = ACTIONS(1580), + [sym__html_comment] = ACTIONS(1580), + [sym_raw_specifier] = ACTIONS(1580), + [sym__autolink] = ACTIONS(1580), }, [STATE(186)] = { [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_BSLASH] = ACTIONS(1586), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1584), - [sym__escaped_characters] = ACTIONS(1584), - [sym__word] = ACTIONS(1584), - [sym__soft_line_ending] = ACTIONS(1584), - [sym__block_close] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1586), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1586), + [sym__escaped_characters] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_close] = ACTIONS(1586), [sym_block_continuation] = ACTIONS(1588), - [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), - [sym__code_span_start] = ACTIONS(1584), - [sym__html_comment] = ACTIONS(1584), - [sym_raw_specifier] = ACTIONS(1584), - [sym__autolink] = ACTIONS(1584), + [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), + [sym__code_span_start] = ACTIONS(1586), + [sym__html_comment] = ACTIONS(1586), + [sym_raw_specifier] = ACTIONS(1586), + [sym__autolink] = ACTIONS(1586), }, [STATE(187)] = { [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_BSLASH] = ACTIONS(1592), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1590), - [sym__escaped_characters] = ACTIONS(1590), - [sym__word] = ACTIONS(1590), - [sym__soft_line_ending] = ACTIONS(1590), - [sym__block_close] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1592), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1592), + [sym__escaped_characters] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_close] = ACTIONS(1592), [sym_block_continuation] = ACTIONS(1594), - [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), - [sym__code_span_start] = ACTIONS(1590), - [sym__html_comment] = ACTIONS(1590), - [sym_raw_specifier] = ACTIONS(1590), - [sym__autolink] = ACTIONS(1590), + [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), + [sym__code_span_start] = ACTIONS(1592), + [sym__html_comment] = ACTIONS(1592), + [sym_raw_specifier] = ACTIONS(1592), + [sym__autolink] = ACTIONS(1592), }, [STATE(188)] = { [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_BSLASH] = ACTIONS(1598), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1596), - [sym__escaped_characters] = ACTIONS(1596), - [sym__word] = ACTIONS(1596), - [sym__soft_line_ending] = ACTIONS(1596), - [sym__block_close] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1598), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1598), + [sym__escaped_characters] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_close] = ACTIONS(1598), [sym_block_continuation] = ACTIONS(1600), - [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), - [sym__code_span_start] = ACTIONS(1596), - [sym__html_comment] = ACTIONS(1596), - [sym_raw_specifier] = ACTIONS(1596), - [sym__autolink] = ACTIONS(1596), + [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), + [sym__code_span_start] = ACTIONS(1598), + [sym__html_comment] = ACTIONS(1598), + [sym_raw_specifier] = ACTIONS(1598), + [sym__autolink] = ACTIONS(1598), }, [STATE(189)] = { [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1604), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1602), - [sym__escaped_characters] = ACTIONS(1602), - [sym__word] = ACTIONS(1602), - [sym__soft_line_ending] = ACTIONS(1602), - [sym__block_close] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1604), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1604), + [sym__escaped_characters] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_close] = ACTIONS(1604), [sym_block_continuation] = ACTIONS(1606), - [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), - [sym__code_span_start] = ACTIONS(1602), - [sym__html_comment] = ACTIONS(1602), - [sym_raw_specifier] = ACTIONS(1602), - [sym__autolink] = ACTIONS(1602), + [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), + [sym__code_span_start] = ACTIONS(1604), + [sym__html_comment] = ACTIONS(1604), + [sym_raw_specifier] = ACTIONS(1604), + [sym__autolink] = ACTIONS(1604), }, [STATE(190)] = { [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_AT] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_BSLASH] = ACTIONS(1610), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1608), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1608), - [sym__html_comment] = ACTIONS(1608), - [sym_raw_specifier] = ACTIONS(1608), - [sym__autolink] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1610), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1610), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1610), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1610), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1610), + [sym__html_comment] = ACTIONS(1610), + [sym_raw_specifier] = ACTIONS(1610), + [sym__autolink] = ACTIONS(1610), }, [STATE(191)] = { - [ts_builtin_sym_end] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1508), [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1506), - [sym__escaped_characters] = ACTIONS(1506), - [sym__word] = ACTIONS(1506), - [sym__soft_line_ending] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym_setext_h1_underline] = ACTIONS(1506), - [sym_setext_h2_underline] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(1506), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_example] = ACTIONS(1506), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym_minus_metadata] = ACTIONS(1506), - [sym__pipe_table_start] = ACTIONS(1506), - [sym__fenced_div_start] = ACTIONS(1506), - [sym_ref_id_specifier] = ACTIONS(1506), - [sym__display_math_state_track_marker] = ACTIONS(1506), - [sym__inline_math_state_track_marker] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__html_comment] = ACTIONS(1506), - [sym_raw_specifier] = ACTIONS(1506), - [sym__autolink] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym__] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1508), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1508), + [sym__escaped_characters] = ACTIONS(1508), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_quote_start] = ACTIONS(1508), + [sym__indented_chunk_start] = ACTIONS(1508), + [sym_atx_h1_marker] = ACTIONS(1508), + [sym_atx_h2_marker] = ACTIONS(1508), + [sym_atx_h3_marker] = ACTIONS(1508), + [sym_atx_h4_marker] = ACTIONS(1508), + [sym_atx_h5_marker] = ACTIONS(1508), + [sym_atx_h6_marker] = ACTIONS(1508), + [sym_setext_h1_underline] = ACTIONS(1508), + [sym_setext_h2_underline] = ACTIONS(1508), + [sym__thematic_break] = ACTIONS(1508), + [sym__list_marker_minus] = ACTIONS(1508), + [sym__list_marker_plus] = ACTIONS(1508), + [sym__list_marker_star] = ACTIONS(1508), + [sym__list_marker_parenthesis] = ACTIONS(1508), + [sym__list_marker_dot] = ACTIONS(1508), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_example] = ACTIONS(1508), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1508), + [sym__fenced_code_block_start_backtick] = ACTIONS(1508), + [sym__fenced_code_block_start_tilde] = ACTIONS(1508), + [sym__blank_line_start] = ACTIONS(1508), + [sym_minus_metadata] = ACTIONS(1508), + [sym__pipe_table_start] = ACTIONS(1508), + [sym__fenced_div_start] = ACTIONS(1508), + [sym_ref_id_specifier] = ACTIONS(1508), + [sym__display_math_state_track_marker] = ACTIONS(1508), + [sym__inline_math_state_track_marker] = ACTIONS(1508), + [sym__code_span_start] = ACTIONS(1508), + [sym__html_comment] = ACTIONS(1508), + [sym_raw_specifier] = ACTIONS(1508), + [sym__autolink] = ACTIONS(1508), }, [STATE(192)] = { [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_COLON] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1450), - [sym__escaped_characters] = ACTIONS(1450), - [sym__word] = ACTIONS(1450), - [sym__soft_line_ending] = ACTIONS(1450), - [sym__block_close] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1452), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1452), + [sym__escaped_characters] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), + [sym__block_close] = ACTIONS(1452), [sym_block_continuation] = ACTIONS(1612), - [sym__block_quote_start] = ACTIONS(1450), - [sym__indented_chunk_start] = ACTIONS(1450), - [sym_atx_h1_marker] = ACTIONS(1450), - [sym_atx_h2_marker] = ACTIONS(1450), - [sym_atx_h3_marker] = ACTIONS(1450), - [sym_atx_h4_marker] = ACTIONS(1450), - [sym_atx_h5_marker] = ACTIONS(1450), - [sym_atx_h6_marker] = ACTIONS(1450), - [sym__thematic_break] = ACTIONS(1450), - [sym__list_marker_minus] = ACTIONS(1450), - [sym__list_marker_plus] = ACTIONS(1450), - [sym__list_marker_star] = ACTIONS(1450), - [sym__list_marker_parenthesis] = ACTIONS(1450), - [sym__list_marker_dot] = ACTIONS(1450), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_example] = ACTIONS(1450), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), - [sym__fenced_code_block_start_backtick] = ACTIONS(1450), - [sym__fenced_code_block_start_tilde] = ACTIONS(1450), - [sym__blank_line_start] = ACTIONS(1450), - [sym_minus_metadata] = ACTIONS(1450), - [sym__pipe_table_start] = ACTIONS(1450), - [sym__fenced_div_start] = ACTIONS(1450), - [sym_ref_id_specifier] = ACTIONS(1450), - [sym__display_math_state_track_marker] = ACTIONS(1450), - [sym__inline_math_state_track_marker] = ACTIONS(1450), - [sym__code_span_start] = ACTIONS(1450), - [sym__html_comment] = ACTIONS(1450), - [sym_raw_specifier] = ACTIONS(1450), - [sym__autolink] = ACTIONS(1450), + [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__list_marker_example] = ACTIONS(1452), + [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1452), + [sym__display_math_state_track_marker] = ACTIONS(1452), + [sym__inline_math_state_track_marker] = ACTIONS(1452), + [sym__code_span_start] = ACTIONS(1452), + [sym__html_comment] = ACTIONS(1452), + [sym_raw_specifier] = ACTIONS(1452), + [sym__autolink] = ACTIONS(1452), }, [STATE(193)] = { [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1506), - [sym__escaped_characters] = ACTIONS(1506), - [sym__word] = ACTIONS(1506), - [sym__soft_line_ending] = ACTIONS(1506), - [sym__block_close] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym_setext_h1_underline] = ACTIONS(1506), - [sym_setext_h2_underline] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(1506), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_example] = ACTIONS(1506), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym_minus_metadata] = ACTIONS(1506), - [sym__pipe_table_start] = ACTIONS(1506), - [sym__fenced_div_start] = ACTIONS(1506), - [sym_ref_id_specifier] = ACTIONS(1506), - [sym__display_math_state_track_marker] = ACTIONS(1506), - [sym__inline_math_state_track_marker] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__html_comment] = ACTIONS(1506), - [sym_raw_specifier] = ACTIONS(1506), - [sym__autolink] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym__] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1508), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1508), + [sym__escaped_characters] = ACTIONS(1508), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_close] = ACTIONS(1508), + [sym__block_quote_start] = ACTIONS(1508), + [sym__indented_chunk_start] = ACTIONS(1508), + [sym_atx_h1_marker] = ACTIONS(1508), + [sym_atx_h2_marker] = ACTIONS(1508), + [sym_atx_h3_marker] = ACTIONS(1508), + [sym_atx_h4_marker] = ACTIONS(1508), + [sym_atx_h5_marker] = ACTIONS(1508), + [sym_atx_h6_marker] = ACTIONS(1508), + [sym_setext_h1_underline] = ACTIONS(1508), + [sym_setext_h2_underline] = ACTIONS(1508), + [sym__thematic_break] = ACTIONS(1508), + [sym__list_marker_minus] = ACTIONS(1508), + [sym__list_marker_plus] = ACTIONS(1508), + [sym__list_marker_star] = ACTIONS(1508), + [sym__list_marker_parenthesis] = ACTIONS(1508), + [sym__list_marker_dot] = ACTIONS(1508), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_example] = ACTIONS(1508), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1508), + [sym__fenced_code_block_start_backtick] = ACTIONS(1508), + [sym__fenced_code_block_start_tilde] = ACTIONS(1508), + [sym__blank_line_start] = ACTIONS(1508), + [sym_minus_metadata] = ACTIONS(1508), + [sym__pipe_table_start] = ACTIONS(1508), + [sym__fenced_div_start] = ACTIONS(1508), + [sym_ref_id_specifier] = ACTIONS(1508), + [sym__display_math_state_track_marker] = ACTIONS(1508), + [sym__inline_math_state_track_marker] = ACTIONS(1508), + [sym__code_span_start] = ACTIONS(1508), + [sym__html_comment] = ACTIONS(1508), + [sym_raw_specifier] = ACTIONS(1508), + [sym__autolink] = ACTIONS(1508), }, [STATE(194)] = { [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1494), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1492), - [sym__escaped_characters] = 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_setext_h1_underline] = ACTIONS(1492), - [sym_setext_h2_underline] = 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), - [sym__code_span_start] = ACTIONS(1492), - [sym__html_comment] = ACTIONS(1492), - [sym_raw_specifier] = ACTIONS(1492), - [sym__autolink] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1494), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1494), + [sym__escaped_characters] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_close] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym_setext_h1_underline] = ACTIONS(1494), + [sym_setext_h2_underline] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + [sym__code_span_start] = ACTIONS(1494), + [sym__html_comment] = ACTIONS(1494), + [sym_raw_specifier] = ACTIONS(1494), + [sym__autolink] = ACTIONS(1494), }, [STATE(195)] = { [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1506), - [sym__escaped_characters] = ACTIONS(1506), - [sym__word] = ACTIONS(1506), - [sym__soft_line_ending] = ACTIONS(1506), - [sym__block_close] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(1506), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_example] = ACTIONS(1506), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym_minus_metadata] = ACTIONS(1506), - [sym__pipe_table_start] = ACTIONS(1506), - [sym__fenced_div_start] = ACTIONS(1506), - [sym__fenced_div_end] = ACTIONS(1506), - [sym_ref_id_specifier] = ACTIONS(1506), - [sym__display_math_state_track_marker] = ACTIONS(1506), - [sym__inline_math_state_track_marker] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__html_comment] = ACTIONS(1506), - [sym_raw_specifier] = ACTIONS(1506), - [sym__autolink] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym__] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1508), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1508), + [sym__escaped_characters] = ACTIONS(1508), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_close] = ACTIONS(1508), + [sym__block_quote_start] = ACTIONS(1508), + [sym__indented_chunk_start] = ACTIONS(1508), + [sym_atx_h1_marker] = ACTIONS(1508), + [sym_atx_h2_marker] = ACTIONS(1508), + [sym_atx_h3_marker] = ACTIONS(1508), + [sym_atx_h4_marker] = ACTIONS(1508), + [sym_atx_h5_marker] = ACTIONS(1508), + [sym_atx_h6_marker] = ACTIONS(1508), + [sym__thematic_break] = ACTIONS(1508), + [sym__list_marker_minus] = ACTIONS(1508), + [sym__list_marker_plus] = ACTIONS(1508), + [sym__list_marker_star] = ACTIONS(1508), + [sym__list_marker_parenthesis] = ACTIONS(1508), + [sym__list_marker_dot] = ACTIONS(1508), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_example] = ACTIONS(1508), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1508), + [sym__fenced_code_block_start_backtick] = ACTIONS(1508), + [sym__fenced_code_block_start_tilde] = ACTIONS(1508), + [sym__blank_line_start] = ACTIONS(1508), + [sym_minus_metadata] = ACTIONS(1508), + [sym__pipe_table_start] = ACTIONS(1508), + [sym__fenced_div_start] = ACTIONS(1508), + [sym__fenced_div_end] = ACTIONS(1508), + [sym_ref_id_specifier] = ACTIONS(1508), + [sym__display_math_state_track_marker] = ACTIONS(1508), + [sym__inline_math_state_track_marker] = ACTIONS(1508), + [sym__code_span_start] = ACTIONS(1508), + [sym__html_comment] = ACTIONS(1508), + [sym_raw_specifier] = ACTIONS(1508), + [sym__autolink] = ACTIONS(1508), }, [STATE(196)] = { [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1614), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1510), - [sym__escaped_characters] = ACTIONS(1510), - [sym__word] = ACTIONS(1510), - [sym__soft_line_ending] = ACTIONS(1510), - [sym__block_close] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(1510), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_example] = ACTIONS(1510), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym_minus_metadata] = ACTIONS(1510), - [sym__pipe_table_start] = ACTIONS(1510), - [sym__fenced_div_start] = ACTIONS(1510), - [sym__fenced_div_end] = ACTIONS(1510), - [sym_ref_id_specifier] = ACTIONS(1510), - [sym__display_math_state_track_marker] = ACTIONS(1510), - [sym__inline_math_state_track_marker] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__html_comment] = ACTIONS(1510), - [sym_raw_specifier] = ACTIONS(1510), - [sym__autolink] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1510), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1512), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1512), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1512), + [sym__html_comment] = ACTIONS(1512), + [sym_raw_specifier] = ACTIONS(1512), + [sym__autolink] = ACTIONS(1512), }, [STATE(197)] = { - [ts_builtin_sym_end] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1512), [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1510), - [sym__escaped_characters] = ACTIONS(1510), - [sym__word] = ACTIONS(1510), - [sym__soft_line_ending] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1510), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1512), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1512), + [sym__escaped_characters] = 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_setext_h1_underline] = ACTIONS(1616), [sym_setext_h2_underline] = ACTIONS(1618), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(1510), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_example] = ACTIONS(1510), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym_minus_metadata] = ACTIONS(1510), - [sym__pipe_table_start] = ACTIONS(1510), - [sym__fenced_div_start] = ACTIONS(1510), - [sym_ref_id_specifier] = ACTIONS(1510), - [sym__display_math_state_track_marker] = ACTIONS(1510), - [sym__inline_math_state_track_marker] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__html_comment] = ACTIONS(1510), - [sym_raw_specifier] = ACTIONS(1510), - [sym__autolink] = ACTIONS(1510), + [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), + [sym__code_span_start] = ACTIONS(1512), + [sym__html_comment] = ACTIONS(1512), + [sym_raw_specifier] = ACTIONS(1512), + [sym__autolink] = ACTIONS(1512), }, [STATE(198)] = { [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1620), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_BSLASH] = ACTIONS(1622), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1620), - [sym__escaped_characters] = ACTIONS(1620), - [sym__word] = ACTIONS(1620), - [sym__soft_line_ending] = ACTIONS(1620), - [sym__block_close] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1622), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1622), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1622), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1622), + [sym__escaped_characters] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_close] = ACTIONS(1622), [sym_block_continuation] = ACTIONS(1624), - [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), - [sym__code_span_start] = ACTIONS(1620), - [sym__html_comment] = ACTIONS(1620), - [sym_raw_specifier] = ACTIONS(1620), - [sym__autolink] = ACTIONS(1620), + [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), + [sym__code_span_start] = ACTIONS(1622), + [sym__html_comment] = ACTIONS(1622), + [sym_raw_specifier] = ACTIONS(1622), + [sym__autolink] = ACTIONS(1622), }, [STATE(199)] = { [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(1626), - [anon_sym_PERCENT] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_BSLASH] = ACTIONS(1628), - [anon_sym_RBRACK] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1626), - [anon_sym__] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1626), - [sym__escaped_characters] = ACTIONS(1626), - [sym__word] = ACTIONS(1626), - [sym__soft_line_ending] = ACTIONS(1626), - [sym__block_close] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1628), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1628), + [anon_sym_AT] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym__] = ACTIONS(1628), + [anon_sym_BQUOTE] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1628), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1628), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1628), + [sym__escaped_characters] = ACTIONS(1628), + [sym__word] = ACTIONS(1628), + [sym__soft_line_ending] = ACTIONS(1628), + [sym__block_close] = ACTIONS(1628), [sym_block_continuation] = ACTIONS(1630), - [sym__block_quote_start] = ACTIONS(1626), - [sym__indented_chunk_start] = ACTIONS(1626), - [sym_atx_h1_marker] = ACTIONS(1626), - [sym_atx_h2_marker] = ACTIONS(1626), - [sym_atx_h3_marker] = ACTIONS(1626), - [sym_atx_h4_marker] = ACTIONS(1626), - [sym_atx_h5_marker] = ACTIONS(1626), - [sym_atx_h6_marker] = ACTIONS(1626), - [sym__thematic_break] = ACTIONS(1626), - [sym__list_marker_minus] = ACTIONS(1626), - [sym__list_marker_plus] = ACTIONS(1626), - [sym__list_marker_star] = ACTIONS(1626), - [sym__list_marker_parenthesis] = ACTIONS(1626), - [sym__list_marker_dot] = ACTIONS(1626), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_example] = ACTIONS(1626), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1626), - [sym__fenced_code_block_start_backtick] = ACTIONS(1626), - [sym__fenced_code_block_start_tilde] = ACTIONS(1626), - [sym__blank_line_start] = ACTIONS(1626), - [sym_minus_metadata] = ACTIONS(1626), - [sym__pipe_table_start] = ACTIONS(1626), - [sym__fenced_div_start] = ACTIONS(1626), - [sym__fenced_div_end] = ACTIONS(1626), - [sym_ref_id_specifier] = ACTIONS(1626), - [sym__display_math_state_track_marker] = ACTIONS(1626), - [sym__inline_math_state_track_marker] = ACTIONS(1626), - [sym__code_span_start] = ACTIONS(1626), - [sym__html_comment] = ACTIONS(1626), - [sym_raw_specifier] = ACTIONS(1626), - [sym__autolink] = ACTIONS(1626), + [sym__block_quote_start] = ACTIONS(1628), + [sym__indented_chunk_start] = ACTIONS(1628), + [sym_atx_h1_marker] = ACTIONS(1628), + [sym_atx_h2_marker] = ACTIONS(1628), + [sym_atx_h3_marker] = ACTIONS(1628), + [sym_atx_h4_marker] = ACTIONS(1628), + [sym_atx_h5_marker] = ACTIONS(1628), + [sym_atx_h6_marker] = ACTIONS(1628), + [sym__thematic_break] = ACTIONS(1628), + [sym__list_marker_minus] = ACTIONS(1628), + [sym__list_marker_plus] = ACTIONS(1628), + [sym__list_marker_star] = ACTIONS(1628), + [sym__list_marker_parenthesis] = ACTIONS(1628), + [sym__list_marker_dot] = ACTIONS(1628), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_example] = ACTIONS(1628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1628), + [sym__fenced_code_block_start_backtick] = ACTIONS(1628), + [sym__fenced_code_block_start_tilde] = ACTIONS(1628), + [sym__blank_line_start] = ACTIONS(1628), + [sym_minus_metadata] = ACTIONS(1628), + [sym__pipe_table_start] = ACTIONS(1628), + [sym__fenced_div_start] = ACTIONS(1628), + [sym__fenced_div_end] = ACTIONS(1628), + [sym_ref_id_specifier] = ACTIONS(1628), + [sym__display_math_state_track_marker] = ACTIONS(1628), + [sym__inline_math_state_track_marker] = ACTIONS(1628), + [sym__code_span_start] = ACTIONS(1628), + [sym__html_comment] = ACTIONS(1628), + [sym_raw_specifier] = ACTIONS(1628), + [sym__autolink] = ACTIONS(1628), }, [STATE(200)] = { [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1510), - [sym__escaped_characters] = ACTIONS(1510), - [sym__word] = ACTIONS(1510), - [sym__soft_line_ending] = ACTIONS(1510), - [sym__block_close] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1510), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1512), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1512), + [sym__escaped_characters] = 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_setext_h1_underline] = ACTIONS(1632), [sym_setext_h2_underline] = ACTIONS(1634), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(1510), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_example] = ACTIONS(1510), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym_minus_metadata] = ACTIONS(1510), - [sym__pipe_table_start] = ACTIONS(1510), - [sym__fenced_div_start] = ACTIONS(1510), - [sym_ref_id_specifier] = ACTIONS(1510), - [sym__display_math_state_track_marker] = ACTIONS(1510), - [sym__inline_math_state_track_marker] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__html_comment] = ACTIONS(1510), - [sym_raw_specifier] = ACTIONS(1510), - [sym__autolink] = ACTIONS(1510), + [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), + [sym__code_span_start] = ACTIONS(1512), + [sym__html_comment] = ACTIONS(1512), + [sym_raw_specifier] = ACTIONS(1512), + [sym__autolink] = ACTIONS(1512), }, [STATE(201)] = { - [ts_builtin_sym_end] = ACTIONS(1450), + [ts_builtin_sym_end] = ACTIONS(1452), [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_COLON] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1450), - [anon_sym_BQUOTE] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1450), - [sym__escaped_characters] = ACTIONS(1450), - [sym__word] = ACTIONS(1450), - [sym__soft_line_ending] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1452), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1452), + [sym__escaped_characters] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), [sym_block_continuation] = ACTIONS(1636), - [sym__block_quote_start] = ACTIONS(1450), - [sym__indented_chunk_start] = ACTIONS(1450), - [sym_atx_h1_marker] = ACTIONS(1450), - [sym_atx_h2_marker] = ACTIONS(1450), - [sym_atx_h3_marker] = ACTIONS(1450), - [sym_atx_h4_marker] = ACTIONS(1450), - [sym_atx_h5_marker] = ACTIONS(1450), - [sym_atx_h6_marker] = ACTIONS(1450), - [sym__thematic_break] = ACTIONS(1450), - [sym__list_marker_minus] = ACTIONS(1450), - [sym__list_marker_plus] = ACTIONS(1450), - [sym__list_marker_star] = ACTIONS(1450), - [sym__list_marker_parenthesis] = ACTIONS(1450), - [sym__list_marker_dot] = ACTIONS(1450), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), - [sym__list_marker_example] = ACTIONS(1450), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), - [sym__fenced_code_block_start_backtick] = ACTIONS(1450), - [sym__fenced_code_block_start_tilde] = ACTIONS(1450), - [sym__blank_line_start] = ACTIONS(1450), - [sym_minus_metadata] = ACTIONS(1450), - [sym__pipe_table_start] = ACTIONS(1450), - [sym__fenced_div_start] = ACTIONS(1450), - [sym_ref_id_specifier] = ACTIONS(1450), - [sym__display_math_state_track_marker] = ACTIONS(1450), - [sym__inline_math_state_track_marker] = ACTIONS(1450), - [sym__code_span_start] = ACTIONS(1450), - [sym__html_comment] = ACTIONS(1450), - [sym_raw_specifier] = ACTIONS(1450), - [sym__autolink] = ACTIONS(1450), + [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__list_marker_example] = ACTIONS(1452), + [sym__list_marker_example_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_ref_id_specifier] = ACTIONS(1452), + [sym__display_math_state_track_marker] = ACTIONS(1452), + [sym__inline_math_state_track_marker] = ACTIONS(1452), + [sym__code_span_start] = ACTIONS(1452), + [sym__html_comment] = ACTIONS(1452), + [sym_raw_specifier] = ACTIONS(1452), + [sym__autolink] = ACTIONS(1452), }, [STATE(202)] = { [sym__blank_line] = STATE(1020), [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1510), - [sym__escaped_characters] = ACTIONS(1510), - [sym__word] = ACTIONS(1510), - [sym__soft_line_ending] = ACTIONS(1510), - [sym__block_close] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(1510), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_example] = ACTIONS(1510), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1510), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1512), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1512), + [sym__escaped_characters] = 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(1640), - [sym_minus_metadata] = ACTIONS(1510), - [sym__pipe_table_start] = ACTIONS(1510), - [sym__fenced_div_start] = ACTIONS(1510), - [sym_ref_id_specifier] = ACTIONS(1510), - [sym__display_math_state_track_marker] = ACTIONS(1510), - [sym__inline_math_state_track_marker] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__html_comment] = ACTIONS(1510), - [sym_raw_specifier] = ACTIONS(1510), - [sym__autolink] = ACTIONS(1510), + [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), + [sym__code_span_start] = ACTIONS(1512), + [sym__html_comment] = ACTIONS(1512), + [sym_raw_specifier] = ACTIONS(1512), + [sym__autolink] = ACTIONS(1512), }, [STATE(203)] = { [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1642), - [anon_sym_AT] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_BSLASH] = ACTIONS(1644), - [anon_sym_RBRACK] = ACTIONS(1642), - [anon_sym_CARET] = ACTIONS(1642), - [anon_sym__] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1642), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1642), - [sym__html_comment] = ACTIONS(1642), - [sym_raw_specifier] = ACTIONS(1642), - [sym__autolink] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1644), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1644), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1644), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1644), + [sym__html_comment] = ACTIONS(1644), + [sym_raw_specifier] = ACTIONS(1644), + [sym__autolink] = ACTIONS(1644), }, [STATE(204)] = { - [ts_builtin_sym_end] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1550), [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1548), - [anon_sym_AT] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_BSLASH] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym__] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1548), - [sym__escaped_characters] = ACTIONS(1548), - [sym__word] = ACTIONS(1548), - [sym__soft_line_ending] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1550), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1550), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1550), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1550), + [sym__escaped_characters] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), [sym_block_continuation] = ACTIONS(1646), - [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), - [sym__code_span_start] = ACTIONS(1548), - [sym__html_comment] = ACTIONS(1548), - [sym_raw_specifier] = ACTIONS(1548), - [sym__autolink] = ACTIONS(1548), + [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), + [sym__code_span_start] = ACTIONS(1550), + [sym__html_comment] = ACTIONS(1550), + [sym_raw_specifier] = ACTIONS(1550), + [sym__autolink] = ACTIONS(1550), }, [STATE(205)] = { - [ts_builtin_sym_end] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1520), [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_BSLASH] = ACTIONS(1520), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1518), - [sym__escaped_characters] = ACTIONS(1518), - [sym__word] = ACTIONS(1518), - [sym__soft_line_ending] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym__] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1520), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1520), + [sym__escaped_characters] = ACTIONS(1520), + [sym__word] = ACTIONS(1520), + [sym__soft_line_ending] = ACTIONS(1520), [sym_block_continuation] = ACTIONS(1648), - [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), - [sym__code_span_start] = ACTIONS(1518), - [sym__html_comment] = ACTIONS(1518), - [sym_raw_specifier] = ACTIONS(1518), - [sym__autolink] = ACTIONS(1518), + [sym__block_quote_start] = ACTIONS(1520), + [sym__indented_chunk_start] = ACTIONS(1520), + [sym_atx_h1_marker] = ACTIONS(1520), + [sym_atx_h2_marker] = ACTIONS(1520), + [sym_atx_h3_marker] = ACTIONS(1520), + [sym_atx_h4_marker] = ACTIONS(1520), + [sym_atx_h5_marker] = ACTIONS(1520), + [sym_atx_h6_marker] = ACTIONS(1520), + [sym__thematic_break] = ACTIONS(1520), + [sym__list_marker_minus] = ACTIONS(1520), + [sym__list_marker_plus] = ACTIONS(1520), + [sym__list_marker_star] = ACTIONS(1520), + [sym__list_marker_parenthesis] = ACTIONS(1520), + [sym__list_marker_dot] = ACTIONS(1520), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_example] = ACTIONS(1520), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1520), + [sym__fenced_code_block_start_backtick] = ACTIONS(1520), + [sym__fenced_code_block_start_tilde] = ACTIONS(1520), + [sym__blank_line_start] = ACTIONS(1520), + [sym_minus_metadata] = ACTIONS(1520), + [sym__pipe_table_start] = ACTIONS(1520), + [sym__fenced_div_start] = ACTIONS(1520), + [sym_ref_id_specifier] = ACTIONS(1520), + [sym__display_math_state_track_marker] = ACTIONS(1520), + [sym__inline_math_state_track_marker] = ACTIONS(1520), + [sym__code_span_start] = ACTIONS(1520), + [sym__html_comment] = ACTIONS(1520), + [sym_raw_specifier] = ACTIONS(1520), + [sym__autolink] = ACTIONS(1520), }, [STATE(206)] = { - [ts_builtin_sym_end] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1580), [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1578), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_BSLASH] = ACTIONS(1580), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1578), - [sym__escaped_characters] = ACTIONS(1578), - [sym__word] = ACTIONS(1578), - [sym__soft_line_ending] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1580), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1580), + [sym__escaped_characters] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), [sym_block_continuation] = ACTIONS(1650), - [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), - [sym__code_span_start] = ACTIONS(1578), - [sym__html_comment] = ACTIONS(1578), - [sym_raw_specifier] = ACTIONS(1578), - [sym__autolink] = ACTIONS(1578), + [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), + [sym__code_span_start] = ACTIONS(1580), + [sym__html_comment] = ACTIONS(1580), + [sym_raw_specifier] = ACTIONS(1580), + [sym__autolink] = ACTIONS(1580), }, [STATE(207)] = { - [ts_builtin_sym_end] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1586), [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_BSLASH] = ACTIONS(1586), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1584), - [sym__escaped_characters] = ACTIONS(1584), - [sym__word] = ACTIONS(1584), - [sym__soft_line_ending] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1586), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1586), + [sym__escaped_characters] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), [sym_block_continuation] = ACTIONS(1652), - [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), - [sym__code_span_start] = ACTIONS(1584), - [sym__html_comment] = ACTIONS(1584), - [sym_raw_specifier] = ACTIONS(1584), - [sym__autolink] = ACTIONS(1584), + [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), + [sym__code_span_start] = ACTIONS(1586), + [sym__html_comment] = ACTIONS(1586), + [sym_raw_specifier] = ACTIONS(1586), + [sym__autolink] = ACTIONS(1586), }, [STATE(208)] = { - [ts_builtin_sym_end] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1556), [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1554), - [anon_sym_AT] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_BSLASH] = ACTIONS(1556), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1554), - [sym__escaped_characters] = ACTIONS(1554), - [sym__word] = ACTIONS(1554), - [sym__soft_line_ending] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1556), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1556), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1556), + [sym__escaped_characters] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), [sym_block_continuation] = ACTIONS(1654), - [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), - [sym__code_span_start] = ACTIONS(1554), - [sym__html_comment] = ACTIONS(1554), - [sym_raw_specifier] = ACTIONS(1554), - [sym__autolink] = ACTIONS(1554), + [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), + [sym__code_span_start] = ACTIONS(1556), + [sym__html_comment] = ACTIONS(1556), + [sym_raw_specifier] = ACTIONS(1556), + [sym__autolink] = ACTIONS(1556), }, [STATE(209)] = { - [ts_builtin_sym_end] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1508), [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1506), - [sym__escaped_characters] = ACTIONS(1506), - [sym__word] = ACTIONS(1506), - [sym__soft_line_ending] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(1506), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_example] = ACTIONS(1506), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym_minus_metadata] = ACTIONS(1506), - [sym__pipe_table_start] = ACTIONS(1506), - [sym__fenced_div_start] = ACTIONS(1506), - [sym_ref_id_specifier] = ACTIONS(1506), - [sym__display_math_state_track_marker] = ACTIONS(1506), - [sym__inline_math_state_track_marker] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__html_comment] = ACTIONS(1506), - [sym_raw_specifier] = ACTIONS(1506), - [sym__autolink] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym__] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1508), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1508), + [sym__escaped_characters] = ACTIONS(1508), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_quote_start] = ACTIONS(1508), + [sym__indented_chunk_start] = ACTIONS(1508), + [sym_atx_h1_marker] = ACTIONS(1508), + [sym_atx_h2_marker] = ACTIONS(1508), + [sym_atx_h3_marker] = ACTIONS(1508), + [sym_atx_h4_marker] = ACTIONS(1508), + [sym_atx_h5_marker] = ACTIONS(1508), + [sym_atx_h6_marker] = ACTIONS(1508), + [sym__thematic_break] = ACTIONS(1508), + [sym__list_marker_minus] = ACTIONS(1508), + [sym__list_marker_plus] = ACTIONS(1508), + [sym__list_marker_star] = ACTIONS(1508), + [sym__list_marker_parenthesis] = ACTIONS(1508), + [sym__list_marker_dot] = ACTIONS(1508), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_example] = ACTIONS(1508), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1508), + [sym__fenced_code_block_start_backtick] = ACTIONS(1508), + [sym__fenced_code_block_start_tilde] = ACTIONS(1508), + [sym__blank_line_start] = ACTIONS(1508), + [sym_minus_metadata] = ACTIONS(1508), + [sym__pipe_table_start] = ACTIONS(1508), + [sym__fenced_div_start] = ACTIONS(1508), + [sym_ref_id_specifier] = ACTIONS(1508), + [sym__display_math_state_track_marker] = ACTIONS(1508), + [sym__inline_math_state_track_marker] = ACTIONS(1508), + [sym__code_span_start] = ACTIONS(1508), + [sym__html_comment] = ACTIONS(1508), + [sym_raw_specifier] = ACTIONS(1508), + [sym__autolink] = ACTIONS(1508), }, [STATE(210)] = { [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1656), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PERCENT] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_COMMA] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_BSLASH] = ACTIONS(1658), - [anon_sym_RBRACK] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1656), - [sym__escaped_characters] = ACTIONS(1656), - [sym__word] = ACTIONS(1656), - [sym__soft_line_ending] = ACTIONS(1656), - [sym__block_close] = ACTIONS(1656), - [sym__block_quote_start] = ACTIONS(1656), - [sym__indented_chunk_start] = ACTIONS(1656), - [sym_atx_h1_marker] = ACTIONS(1656), - [sym_atx_h2_marker] = ACTIONS(1656), - [sym_atx_h3_marker] = ACTIONS(1656), - [sym_atx_h4_marker] = ACTIONS(1656), - [sym_atx_h5_marker] = ACTIONS(1656), - [sym_atx_h6_marker] = ACTIONS(1656), - [sym__thematic_break] = ACTIONS(1656), - [sym__list_marker_minus] = ACTIONS(1656), - [sym__list_marker_plus] = ACTIONS(1656), - [sym__list_marker_star] = ACTIONS(1656), - [sym__list_marker_parenthesis] = ACTIONS(1656), - [sym__list_marker_dot] = ACTIONS(1656), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_example] = ACTIONS(1656), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1656), - [sym__fenced_code_block_start_backtick] = ACTIONS(1656), - [sym__fenced_code_block_start_tilde] = ACTIONS(1656), - [sym__blank_line_start] = ACTIONS(1656), - [sym_minus_metadata] = ACTIONS(1656), - [sym__pipe_table_start] = ACTIONS(1656), - [sym__fenced_div_start] = ACTIONS(1656), - [sym__fenced_div_end] = ACTIONS(1656), - [sym_ref_id_specifier] = ACTIONS(1656), - [sym__display_math_state_track_marker] = ACTIONS(1656), - [sym__inline_math_state_track_marker] = ACTIONS(1656), - [sym__code_span_start] = ACTIONS(1656), - [sym__html_comment] = ACTIONS(1656), - [sym_raw_specifier] = ACTIONS(1656), - [sym__autolink] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1658), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1658), + [anon_sym_EQ] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_BANG] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1658), + [anon_sym_PERCENT] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1658), + [anon_sym_COMMA] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(1658), + [anon_sym_SLASH] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_QMARK] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_BSLASH] = ACTIONS(1656), + [anon_sym_RBRACK] = ACTIONS(1658), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym__] = ACTIONS(1658), + [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_TILDE] = ACTIONS(1658), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1658), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1658), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1658), + [sym__escaped_characters] = ACTIONS(1658), + [sym__word] = ACTIONS(1658), + [sym__soft_line_ending] = ACTIONS(1658), + [sym__block_close] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(1658), + [sym__indented_chunk_start] = ACTIONS(1658), + [sym_atx_h1_marker] = ACTIONS(1658), + [sym_atx_h2_marker] = ACTIONS(1658), + [sym_atx_h3_marker] = ACTIONS(1658), + [sym_atx_h4_marker] = ACTIONS(1658), + [sym_atx_h5_marker] = ACTIONS(1658), + [sym_atx_h6_marker] = ACTIONS(1658), + [sym__thematic_break] = ACTIONS(1658), + [sym__list_marker_minus] = ACTIONS(1658), + [sym__list_marker_plus] = ACTIONS(1658), + [sym__list_marker_star] = ACTIONS(1658), + [sym__list_marker_parenthesis] = ACTIONS(1658), + [sym__list_marker_dot] = ACTIONS(1658), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_example] = ACTIONS(1658), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1658), + [sym__fenced_code_block_start_backtick] = ACTIONS(1658), + [sym__fenced_code_block_start_tilde] = ACTIONS(1658), + [sym__blank_line_start] = ACTIONS(1658), + [sym_minus_metadata] = ACTIONS(1658), + [sym__pipe_table_start] = ACTIONS(1658), + [sym__fenced_div_start] = ACTIONS(1658), + [sym__fenced_div_end] = ACTIONS(1658), + [sym_ref_id_specifier] = ACTIONS(1658), + [sym__display_math_state_track_marker] = ACTIONS(1658), + [sym__inline_math_state_track_marker] = ACTIONS(1658), + [sym__code_span_start] = ACTIONS(1658), + [sym__html_comment] = ACTIONS(1658), + [sym_raw_specifier] = ACTIONS(1658), + [sym__autolink] = ACTIONS(1658), }, [STATE(211)] = { [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1660), - [anon_sym_EQ] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_DQUOTE] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_PERCENT] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_RPAREN] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_COMMA] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_DOT] = ACTIONS(1660), - [anon_sym_SLASH] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_QMARK] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_BSLASH] = ACTIONS(1662), - [anon_sym_RBRACK] = ACTIONS(1660), - [anon_sym_CARET] = ACTIONS(1660), - [anon_sym__] = ACTIONS(1660), - [anon_sym_BQUOTE] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_TILDE] = ACTIONS(1660), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1660), - [sym__escaped_characters] = ACTIONS(1660), - [sym__word] = ACTIONS(1660), - [sym__soft_line_ending] = ACTIONS(1660), - [sym__block_close] = ACTIONS(1660), - [sym__block_quote_start] = ACTIONS(1660), - [sym__indented_chunk_start] = ACTIONS(1660), - [sym_atx_h1_marker] = ACTIONS(1660), - [sym_atx_h2_marker] = ACTIONS(1660), - [sym_atx_h3_marker] = ACTIONS(1660), - [sym_atx_h4_marker] = ACTIONS(1660), - [sym_atx_h5_marker] = ACTIONS(1660), - [sym_atx_h6_marker] = ACTIONS(1660), - [sym__thematic_break] = ACTIONS(1660), - [sym__list_marker_minus] = ACTIONS(1660), - [sym__list_marker_plus] = ACTIONS(1660), - [sym__list_marker_star] = ACTIONS(1660), - [sym__list_marker_parenthesis] = ACTIONS(1660), - [sym__list_marker_dot] = ACTIONS(1660), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_example] = ACTIONS(1660), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1660), - [sym__fenced_code_block_start_backtick] = ACTIONS(1660), - [sym__fenced_code_block_start_tilde] = ACTIONS(1660), - [sym__blank_line_start] = ACTIONS(1660), - [sym_minus_metadata] = ACTIONS(1660), - [sym__pipe_table_start] = ACTIONS(1660), - [sym__fenced_div_start] = ACTIONS(1660), - [sym__fenced_div_end] = ACTIONS(1660), - [sym_ref_id_specifier] = ACTIONS(1660), - [sym__display_math_state_track_marker] = ACTIONS(1660), - [sym__inline_math_state_track_marker] = ACTIONS(1660), - [sym__code_span_start] = ACTIONS(1660), - [sym__html_comment] = ACTIONS(1660), - [sym_raw_specifier] = ACTIONS(1660), - [sym__autolink] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1662), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1662), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1662), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1662), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1662), + [sym__html_comment] = ACTIONS(1662), + [sym_raw_specifier] = ACTIONS(1662), + [sym__autolink] = ACTIONS(1662), }, [STATE(212)] = { [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1664), - [anon_sym_EQ] = ACTIONS(1664), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PERCENT] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_QMARK] = ACTIONS(1664), - [anon_sym_AT] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_BSLASH] = ACTIONS(1666), - [anon_sym_RBRACK] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1664), - [anon_sym__] = ACTIONS(1664), - [anon_sym_BQUOTE] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1664), - [sym__escaped_characters] = ACTIONS(1664), - [sym__word] = ACTIONS(1664), - [sym__soft_line_ending] = ACTIONS(1664), - [sym__block_close] = ACTIONS(1664), - [sym__block_quote_start] = ACTIONS(1664), - [sym__indented_chunk_start] = ACTIONS(1664), - [sym_atx_h1_marker] = ACTIONS(1664), - [sym_atx_h2_marker] = ACTIONS(1664), - [sym_atx_h3_marker] = ACTIONS(1664), - [sym_atx_h4_marker] = ACTIONS(1664), - [sym_atx_h5_marker] = ACTIONS(1664), - [sym_atx_h6_marker] = ACTIONS(1664), - [sym__thematic_break] = ACTIONS(1664), - [sym__list_marker_minus] = ACTIONS(1664), - [sym__list_marker_plus] = ACTIONS(1664), - [sym__list_marker_star] = ACTIONS(1664), - [sym__list_marker_parenthesis] = ACTIONS(1664), - [sym__list_marker_dot] = ACTIONS(1664), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_example] = ACTIONS(1664), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1664), - [sym__fenced_code_block_start_backtick] = ACTIONS(1664), - [sym__fenced_code_block_start_tilde] = ACTIONS(1664), - [sym__blank_line_start] = ACTIONS(1664), - [sym_minus_metadata] = ACTIONS(1664), - [sym__pipe_table_start] = ACTIONS(1664), - [sym__fenced_div_start] = ACTIONS(1664), - [sym__fenced_div_end] = ACTIONS(1664), - [sym_ref_id_specifier] = ACTIONS(1664), - [sym__display_math_state_track_marker] = ACTIONS(1664), - [sym__inline_math_state_track_marker] = ACTIONS(1664), - [sym__code_span_start] = ACTIONS(1664), - [sym__html_comment] = ACTIONS(1664), - [sym_raw_specifier] = ACTIONS(1664), - [sym__autolink] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1666), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1666), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1666), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1666), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1666), + [sym__html_comment] = ACTIONS(1666), + [sym_raw_specifier] = ACTIONS(1666), + [sym__autolink] = ACTIONS(1666), }, [STATE(213)] = { [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_BSLASH] = ACTIONS(1586), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1584), - [sym__escaped_characters] = ACTIONS(1584), - [sym__word] = ACTIONS(1584), - [sym__soft_line_ending] = ACTIONS(1584), - [sym__block_close] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1586), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1586), + [sym__escaped_characters] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_close] = ACTIONS(1586), [sym_block_continuation] = ACTIONS(1668), - [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), - [sym__code_span_start] = ACTIONS(1584), - [sym__html_comment] = ACTIONS(1584), - [sym_raw_specifier] = ACTIONS(1584), - [sym__autolink] = ACTIONS(1584), + [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), + [sym__code_span_start] = ACTIONS(1586), + [sym__html_comment] = ACTIONS(1586), + [sym_raw_specifier] = ACTIONS(1586), + [sym__autolink] = ACTIONS(1586), }, [STATE(214)] = { [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_BSLASH] = ACTIONS(1592), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1590), - [sym__escaped_characters] = ACTIONS(1590), - [sym__word] = ACTIONS(1590), - [sym__soft_line_ending] = ACTIONS(1590), - [sym__block_close] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1592), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1592), + [sym__escaped_characters] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_close] = ACTIONS(1592), [sym_block_continuation] = ACTIONS(1670), - [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), - [sym__code_span_start] = ACTIONS(1590), - [sym__html_comment] = ACTIONS(1590), - [sym_raw_specifier] = ACTIONS(1590), - [sym__autolink] = ACTIONS(1590), + [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), + [sym__code_span_start] = ACTIONS(1592), + [sym__html_comment] = ACTIONS(1592), + [sym_raw_specifier] = ACTIONS(1592), + [sym__autolink] = ACTIONS(1592), }, [STATE(215)] = { [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_BSLASH] = ACTIONS(1598), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1596), - [sym__escaped_characters] = ACTIONS(1596), - [sym__word] = ACTIONS(1596), - [sym__soft_line_ending] = ACTIONS(1596), - [sym__block_close] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1598), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1598), + [sym__escaped_characters] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_close] = ACTIONS(1598), [sym_block_continuation] = ACTIONS(1672), - [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), - [sym__code_span_start] = ACTIONS(1596), - [sym__html_comment] = ACTIONS(1596), - [sym_raw_specifier] = ACTIONS(1596), - [sym__autolink] = ACTIONS(1596), + [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), + [sym__code_span_start] = ACTIONS(1598), + [sym__html_comment] = ACTIONS(1598), + [sym_raw_specifier] = ACTIONS(1598), + [sym__autolink] = ACTIONS(1598), }, [STATE(216)] = { [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1604), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1602), - [sym__escaped_characters] = ACTIONS(1602), - [sym__word] = ACTIONS(1602), - [sym__soft_line_ending] = ACTIONS(1602), - [sym__block_close] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1604), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1604), + [sym__escaped_characters] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_close] = ACTIONS(1604), [sym_block_continuation] = ACTIONS(1674), - [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), - [sym__code_span_start] = ACTIONS(1602), - [sym__html_comment] = ACTIONS(1602), - [sym_raw_specifier] = ACTIONS(1602), - [sym__autolink] = ACTIONS(1602), + [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), + [sym__code_span_start] = ACTIONS(1604), + [sym__html_comment] = ACTIONS(1604), + [sym_raw_specifier] = ACTIONS(1604), + [sym__autolink] = ACTIONS(1604), }, [STATE(217)] = { [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_RBRACE] = ACTIONS(1676), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1676), - [anon_sym_EQ] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_PERCENT] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_DOT] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_QMARK] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_BSLASH] = ACTIONS(1678), - [anon_sym_RBRACK] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1676), - [anon_sym__] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1676), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1676), - [sym__escaped_characters] = ACTIONS(1676), - [sym__word] = ACTIONS(1676), - [sym__soft_line_ending] = ACTIONS(1676), - [sym__block_close] = ACTIONS(1676), - [sym__block_quote_start] = ACTIONS(1676), - [sym__indented_chunk_start] = ACTIONS(1676), - [sym_atx_h1_marker] = ACTIONS(1676), - [sym_atx_h2_marker] = ACTIONS(1676), - [sym_atx_h3_marker] = ACTIONS(1676), - [sym_atx_h4_marker] = ACTIONS(1676), - [sym_atx_h5_marker] = ACTIONS(1676), - [sym_atx_h6_marker] = ACTIONS(1676), - [sym__thematic_break] = ACTIONS(1676), - [sym__list_marker_minus] = ACTIONS(1676), - [sym__list_marker_plus] = ACTIONS(1676), - [sym__list_marker_star] = ACTIONS(1676), - [sym__list_marker_parenthesis] = ACTIONS(1676), - [sym__list_marker_dot] = ACTIONS(1676), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_example] = ACTIONS(1676), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1676), - [sym__fenced_code_block_start_backtick] = ACTIONS(1676), - [sym__fenced_code_block_start_tilde] = ACTIONS(1676), - [sym__blank_line_start] = ACTIONS(1676), - [sym_minus_metadata] = ACTIONS(1676), - [sym__pipe_table_start] = ACTIONS(1676), - [sym__fenced_div_start] = ACTIONS(1676), - [sym__fenced_div_end] = ACTIONS(1676), - [sym_ref_id_specifier] = ACTIONS(1676), - [sym__display_math_state_track_marker] = ACTIONS(1676), - [sym__inline_math_state_track_marker] = ACTIONS(1676), - [sym__code_span_start] = ACTIONS(1676), - [sym__html_comment] = ACTIONS(1676), - [sym_raw_specifier] = ACTIONS(1676), - [sym__autolink] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1678), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1678), + [anon_sym_EQ] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_PERCENT] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym__] = ACTIONS(1678), + [anon_sym_BQUOTE] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1678), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1678), + [sym__escaped_characters] = ACTIONS(1678), + [sym__word] = ACTIONS(1678), + [sym__soft_line_ending] = ACTIONS(1678), + [sym__block_close] = ACTIONS(1678), + [sym__block_quote_start] = ACTIONS(1678), + [sym__indented_chunk_start] = ACTIONS(1678), + [sym_atx_h1_marker] = ACTIONS(1678), + [sym_atx_h2_marker] = ACTIONS(1678), + [sym_atx_h3_marker] = ACTIONS(1678), + [sym_atx_h4_marker] = ACTIONS(1678), + [sym_atx_h5_marker] = ACTIONS(1678), + [sym_atx_h6_marker] = ACTIONS(1678), + [sym__thematic_break] = ACTIONS(1678), + [sym__list_marker_minus] = ACTIONS(1678), + [sym__list_marker_plus] = ACTIONS(1678), + [sym__list_marker_star] = ACTIONS(1678), + [sym__list_marker_parenthesis] = ACTIONS(1678), + [sym__list_marker_dot] = ACTIONS(1678), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_example] = ACTIONS(1678), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1678), + [sym__fenced_code_block_start_backtick] = ACTIONS(1678), + [sym__fenced_code_block_start_tilde] = ACTIONS(1678), + [sym__blank_line_start] = ACTIONS(1678), + [sym_minus_metadata] = ACTIONS(1678), + [sym__pipe_table_start] = ACTIONS(1678), + [sym__fenced_div_start] = ACTIONS(1678), + [sym__fenced_div_end] = ACTIONS(1678), + [sym_ref_id_specifier] = ACTIONS(1678), + [sym__display_math_state_track_marker] = ACTIONS(1678), + [sym__inline_math_state_track_marker] = ACTIONS(1678), + [sym__code_span_start] = ACTIONS(1678), + [sym__html_comment] = ACTIONS(1678), + [sym_raw_specifier] = ACTIONS(1678), + [sym__autolink] = ACTIONS(1678), }, [STATE(218)] = { [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1680), - [anon_sym_EQ] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_PERCENT] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_COMMA] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_DOT] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_QMARK] = ACTIONS(1680), - [anon_sym_AT] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_BSLASH] = ACTIONS(1682), - [anon_sym_RBRACK] = ACTIONS(1680), - [anon_sym_CARET] = ACTIONS(1680), - [anon_sym__] = ACTIONS(1680), - [anon_sym_BQUOTE] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1680), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1680), - [sym__escaped_characters] = ACTIONS(1680), - [sym__word] = ACTIONS(1680), - [sym__soft_line_ending] = ACTIONS(1680), - [sym__block_close] = ACTIONS(1680), - [sym__block_quote_start] = ACTIONS(1680), - [sym__indented_chunk_start] = ACTIONS(1680), - [sym_atx_h1_marker] = ACTIONS(1680), - [sym_atx_h2_marker] = ACTIONS(1680), - [sym_atx_h3_marker] = ACTIONS(1680), - [sym_atx_h4_marker] = ACTIONS(1680), - [sym_atx_h5_marker] = ACTIONS(1680), - [sym_atx_h6_marker] = ACTIONS(1680), - [sym__thematic_break] = ACTIONS(1680), - [sym__list_marker_minus] = ACTIONS(1680), - [sym__list_marker_plus] = ACTIONS(1680), - [sym__list_marker_star] = ACTIONS(1680), - [sym__list_marker_parenthesis] = ACTIONS(1680), - [sym__list_marker_dot] = ACTIONS(1680), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_example] = ACTIONS(1680), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1680), - [sym__fenced_code_block_start_backtick] = ACTIONS(1680), - [sym__fenced_code_block_start_tilde] = ACTIONS(1680), - [sym__blank_line_start] = ACTIONS(1680), - [sym_minus_metadata] = ACTIONS(1680), - [sym__pipe_table_start] = ACTIONS(1680), - [sym__fenced_div_start] = ACTIONS(1680), - [sym__fenced_div_end] = ACTIONS(1680), - [sym_ref_id_specifier] = ACTIONS(1680), - [sym__display_math_state_track_marker] = ACTIONS(1680), - [sym__inline_math_state_track_marker] = ACTIONS(1680), - [sym__code_span_start] = ACTIONS(1680), - [sym__html_comment] = ACTIONS(1680), - [sym_raw_specifier] = ACTIONS(1680), - [sym__autolink] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1682), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_BSLASH] = ACTIONS(1680), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1682), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1682), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1682), + [sym__html_comment] = ACTIONS(1682), + [sym_raw_specifier] = ACTIONS(1682), + [sym__autolink] = ACTIONS(1682), }, [STATE(219)] = { [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_BSLASH] = ACTIONS(1574), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1572), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1572), - [sym__html_comment] = ACTIONS(1572), - [sym_raw_specifier] = ACTIONS(1572), - [sym__autolink] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1574), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1574), + [sym__escaped_characters] = ACTIONS(1574), + [sym__word] = ACTIONS(1574), + [sym__soft_line_ending] = ACTIONS(1574), + [sym__block_close] = ACTIONS(1574), + [sym__block_quote_start] = ACTIONS(1574), + [sym__indented_chunk_start] = ACTIONS(1574), + [sym_atx_h1_marker] = ACTIONS(1574), + [sym_atx_h2_marker] = ACTIONS(1574), + [sym_atx_h3_marker] = ACTIONS(1574), + [sym_atx_h4_marker] = ACTIONS(1574), + [sym_atx_h5_marker] = ACTIONS(1574), + [sym_atx_h6_marker] = ACTIONS(1574), + [sym__thematic_break] = ACTIONS(1574), + [sym__list_marker_minus] = ACTIONS(1574), + [sym__list_marker_plus] = ACTIONS(1574), + [sym__list_marker_star] = ACTIONS(1574), + [sym__list_marker_parenthesis] = ACTIONS(1574), + [sym__list_marker_dot] = ACTIONS(1574), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_example] = ACTIONS(1574), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1574), + [sym__fenced_code_block_start_backtick] = ACTIONS(1574), + [sym__fenced_code_block_start_tilde] = ACTIONS(1574), + [sym__blank_line_start] = ACTIONS(1574), + [sym_minus_metadata] = ACTIONS(1574), + [sym__pipe_table_start] = ACTIONS(1574), + [sym__fenced_div_start] = ACTIONS(1574), + [sym__fenced_div_end] = ACTIONS(1574), + [sym_ref_id_specifier] = ACTIONS(1574), + [sym__display_math_state_track_marker] = ACTIONS(1574), + [sym__inline_math_state_track_marker] = ACTIONS(1574), + [sym__code_span_start] = ACTIONS(1574), + [sym__html_comment] = ACTIONS(1574), + [sym_raw_specifier] = ACTIONS(1574), + [sym__autolink] = ACTIONS(1574), }, [STATE(220)] = { - [ts_builtin_sym_end] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(1538), [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_BSLASH] = ACTIONS(1538), - [anon_sym_RBRACK] = ACTIONS(1536), - [anon_sym_CARET] = ACTIONS(1536), - [anon_sym__] = ACTIONS(1536), - [anon_sym_BQUOTE] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1536), - [sym__escaped_characters] = ACTIONS(1536), - [sym__word] = ACTIONS(1536), - [sym__soft_line_ending] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1538), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1538), + [sym__escaped_characters] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), [sym_block_continuation] = ACTIONS(1684), - [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), - [sym__code_span_start] = ACTIONS(1536), - [sym__html_comment] = ACTIONS(1536), - [sym_raw_specifier] = ACTIONS(1536), - [sym__autolink] = ACTIONS(1536), + [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), + [sym__code_span_start] = ACTIONS(1538), + [sym__html_comment] = ACTIONS(1538), + [sym_raw_specifier] = ACTIONS(1538), + [sym__autolink] = ACTIONS(1538), }, [STATE(221)] = { [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_DQUOTE] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_RPAREN] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_QMARK] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_BSLASH] = ACTIONS(1688), - [anon_sym_RBRACK] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1686), - [anon_sym__] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1686), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1686), - [sym__escaped_characters] = ACTIONS(1686), - [sym__word] = ACTIONS(1686), - [sym__soft_line_ending] = ACTIONS(1686), - [sym__block_close] = ACTIONS(1686), - [sym__block_quote_start] = ACTIONS(1686), - [sym__indented_chunk_start] = ACTIONS(1686), - [sym_atx_h1_marker] = ACTIONS(1686), - [sym_atx_h2_marker] = ACTIONS(1686), - [sym_atx_h3_marker] = ACTIONS(1686), - [sym_atx_h4_marker] = ACTIONS(1686), - [sym_atx_h5_marker] = ACTIONS(1686), - [sym_atx_h6_marker] = ACTIONS(1686), - [sym__thematic_break] = ACTIONS(1686), - [sym__list_marker_minus] = ACTIONS(1686), - [sym__list_marker_plus] = ACTIONS(1686), - [sym__list_marker_star] = ACTIONS(1686), - [sym__list_marker_parenthesis] = ACTIONS(1686), - [sym__list_marker_dot] = ACTIONS(1686), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_example] = ACTIONS(1686), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1686), - [sym__fenced_code_block_start_backtick] = ACTIONS(1686), - [sym__fenced_code_block_start_tilde] = ACTIONS(1686), - [sym__blank_line_start] = ACTIONS(1686), - [sym_minus_metadata] = ACTIONS(1686), - [sym__pipe_table_start] = ACTIONS(1686), - [sym__fenced_div_start] = ACTIONS(1686), - [sym__fenced_div_end] = ACTIONS(1686), - [sym_ref_id_specifier] = ACTIONS(1686), - [sym__display_math_state_track_marker] = ACTIONS(1686), - [sym__inline_math_state_track_marker] = ACTIONS(1686), - [sym__code_span_start] = ACTIONS(1686), - [sym__html_comment] = ACTIONS(1686), - [sym_raw_specifier] = ACTIONS(1686), - [sym__autolink] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_QMARK] = ACTIONS(1688), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_RBRACK] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1688), + [anon_sym__] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1688), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1688), + [sym__escaped_characters] = ACTIONS(1688), + [sym__word] = ACTIONS(1688), + [sym__soft_line_ending] = ACTIONS(1688), + [sym__block_close] = ACTIONS(1688), + [sym__block_quote_start] = ACTIONS(1688), + [sym__indented_chunk_start] = ACTIONS(1688), + [sym_atx_h1_marker] = ACTIONS(1688), + [sym_atx_h2_marker] = ACTIONS(1688), + [sym_atx_h3_marker] = ACTIONS(1688), + [sym_atx_h4_marker] = ACTIONS(1688), + [sym_atx_h5_marker] = ACTIONS(1688), + [sym_atx_h6_marker] = ACTIONS(1688), + [sym__thematic_break] = ACTIONS(1688), + [sym__list_marker_minus] = ACTIONS(1688), + [sym__list_marker_plus] = ACTIONS(1688), + [sym__list_marker_star] = ACTIONS(1688), + [sym__list_marker_parenthesis] = ACTIONS(1688), + [sym__list_marker_dot] = ACTIONS(1688), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_example] = ACTIONS(1688), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1688), + [sym__fenced_code_block_start_backtick] = ACTIONS(1688), + [sym__fenced_code_block_start_tilde] = ACTIONS(1688), + [sym__blank_line_start] = ACTIONS(1688), + [sym_minus_metadata] = ACTIONS(1688), + [sym__pipe_table_start] = ACTIONS(1688), + [sym__fenced_div_start] = ACTIONS(1688), + [sym__fenced_div_end] = ACTIONS(1688), + [sym_ref_id_specifier] = ACTIONS(1688), + [sym__display_math_state_track_marker] = ACTIONS(1688), + [sym__inline_math_state_track_marker] = ACTIONS(1688), + [sym__code_span_start] = ACTIONS(1688), + [sym__html_comment] = ACTIONS(1688), + [sym_raw_specifier] = ACTIONS(1688), + [sym__autolink] = ACTIONS(1688), }, [STATE(222)] = { [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1690), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PERCENT] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_DOT] = ACTIONS(1690), - [anon_sym_SLASH] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_BSLASH] = ACTIONS(1692), - [anon_sym_RBRACK] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym__] = ACTIONS(1690), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1690), - [sym__escaped_characters] = ACTIONS(1690), - [sym__word] = ACTIONS(1690), - [sym__soft_line_ending] = ACTIONS(1690), - [sym__block_close] = ACTIONS(1690), - [sym__block_quote_start] = ACTIONS(1690), - [sym__indented_chunk_start] = ACTIONS(1690), - [sym_atx_h1_marker] = ACTIONS(1690), - [sym_atx_h2_marker] = ACTIONS(1690), - [sym_atx_h3_marker] = ACTIONS(1690), - [sym_atx_h4_marker] = ACTIONS(1690), - [sym_atx_h5_marker] = ACTIONS(1690), - [sym_atx_h6_marker] = ACTIONS(1690), - [sym__thematic_break] = ACTIONS(1690), - [sym__list_marker_minus] = ACTIONS(1690), - [sym__list_marker_plus] = ACTIONS(1690), - [sym__list_marker_star] = ACTIONS(1690), - [sym__list_marker_parenthesis] = ACTIONS(1690), - [sym__list_marker_dot] = ACTIONS(1690), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_example] = ACTIONS(1690), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1690), - [sym__fenced_code_block_start_backtick] = ACTIONS(1690), - [sym__fenced_code_block_start_tilde] = ACTIONS(1690), - [sym__blank_line_start] = ACTIONS(1690), - [sym_minus_metadata] = ACTIONS(1690), - [sym__pipe_table_start] = ACTIONS(1690), - [sym__fenced_div_start] = ACTIONS(1690), - [sym__fenced_div_end] = ACTIONS(1690), - [sym_ref_id_specifier] = ACTIONS(1690), - [sym__display_math_state_track_marker] = ACTIONS(1690), - [sym__inline_math_state_track_marker] = ACTIONS(1690), - [sym__code_span_start] = ACTIONS(1690), - [sym__html_comment] = ACTIONS(1690), - [sym_raw_specifier] = ACTIONS(1690), - [sym__autolink] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1692), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1692), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PERCENT] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_COMMA] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_DOT] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [anon_sym_RBRACK] = ACTIONS(1692), + [anon_sym_CARET] = ACTIONS(1692), + [anon_sym__] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1692), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1692), + [sym__escaped_characters] = ACTIONS(1692), + [sym__word] = ACTIONS(1692), + [sym__soft_line_ending] = ACTIONS(1692), + [sym__block_close] = ACTIONS(1692), + [sym__block_quote_start] = ACTIONS(1692), + [sym__indented_chunk_start] = ACTIONS(1692), + [sym_atx_h1_marker] = ACTIONS(1692), + [sym_atx_h2_marker] = ACTIONS(1692), + [sym_atx_h3_marker] = ACTIONS(1692), + [sym_atx_h4_marker] = ACTIONS(1692), + [sym_atx_h5_marker] = ACTIONS(1692), + [sym_atx_h6_marker] = ACTIONS(1692), + [sym__thematic_break] = ACTIONS(1692), + [sym__list_marker_minus] = ACTIONS(1692), + [sym__list_marker_plus] = ACTIONS(1692), + [sym__list_marker_star] = ACTIONS(1692), + [sym__list_marker_parenthesis] = ACTIONS(1692), + [sym__list_marker_dot] = ACTIONS(1692), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_example] = ACTIONS(1692), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1692), + [sym__fenced_code_block_start_backtick] = ACTIONS(1692), + [sym__fenced_code_block_start_tilde] = ACTIONS(1692), + [sym__blank_line_start] = ACTIONS(1692), + [sym_minus_metadata] = ACTIONS(1692), + [sym__pipe_table_start] = ACTIONS(1692), + [sym__fenced_div_start] = ACTIONS(1692), + [sym__fenced_div_end] = ACTIONS(1692), + [sym_ref_id_specifier] = ACTIONS(1692), + [sym__display_math_state_track_marker] = ACTIONS(1692), + [sym__inline_math_state_track_marker] = ACTIONS(1692), + [sym__code_span_start] = ACTIONS(1692), + [sym__html_comment] = ACTIONS(1692), + [sym_raw_specifier] = ACTIONS(1692), + [sym__autolink] = ACTIONS(1692), }, [STATE(223)] = { [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_COMMA] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_BSLASH] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1694), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1694), - [sym__escaped_characters] = ACTIONS(1694), - [sym__word] = ACTIONS(1694), - [sym__soft_line_ending] = ACTIONS(1694), - [sym__block_close] = ACTIONS(1694), - [sym__block_quote_start] = ACTIONS(1694), - [sym__indented_chunk_start] = ACTIONS(1694), - [sym_atx_h1_marker] = ACTIONS(1694), - [sym_atx_h2_marker] = ACTIONS(1694), - [sym_atx_h3_marker] = ACTIONS(1694), - [sym_atx_h4_marker] = ACTIONS(1694), - [sym_atx_h5_marker] = ACTIONS(1694), - [sym_atx_h6_marker] = ACTIONS(1694), - [sym__thematic_break] = ACTIONS(1694), - [sym__list_marker_minus] = ACTIONS(1694), - [sym__list_marker_plus] = ACTIONS(1694), - [sym__list_marker_star] = ACTIONS(1694), - [sym__list_marker_parenthesis] = ACTIONS(1694), - [sym__list_marker_dot] = ACTIONS(1694), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_example] = ACTIONS(1694), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1694), - [sym__fenced_code_block_start_backtick] = ACTIONS(1694), - [sym__fenced_code_block_start_tilde] = ACTIONS(1694), - [sym__blank_line_start] = ACTIONS(1694), - [sym_minus_metadata] = ACTIONS(1694), - [sym__pipe_table_start] = ACTIONS(1694), - [sym__fenced_div_start] = ACTIONS(1694), - [sym__fenced_div_end] = ACTIONS(1694), - [sym_ref_id_specifier] = ACTIONS(1694), - [sym__display_math_state_track_marker] = ACTIONS(1694), - [sym__inline_math_state_track_marker] = ACTIONS(1694), - [sym__code_span_start] = ACTIONS(1694), - [sym__html_comment] = ACTIONS(1694), - [sym_raw_specifier] = ACTIONS(1694), - [sym__autolink] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1696), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_BSLASH] = ACTIONS(1694), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1696), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1696), + [sym__escaped_characters] = ACTIONS(1696), + [sym__word] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_close] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_example] = ACTIONS(1696), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym_minus_metadata] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + [sym__fenced_div_start] = ACTIONS(1696), + [sym__fenced_div_end] = ACTIONS(1696), + [sym_ref_id_specifier] = ACTIONS(1696), + [sym__display_math_state_track_marker] = ACTIONS(1696), + [sym__inline_math_state_track_marker] = ACTIONS(1696), + [sym__code_span_start] = ACTIONS(1696), + [sym__html_comment] = ACTIONS(1696), + [sym_raw_specifier] = ACTIONS(1696), + [sym__autolink] = ACTIONS(1696), }, [STATE(224)] = { [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1698), - [anon_sym_SQUOTE] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(1698), - [anon_sym_SLASH] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_QMARK] = ACTIONS(1698), - [anon_sym_AT] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_BSLASH] = ACTIONS(1700), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym__] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_TILDE] = ACTIONS(1698), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1698), - [sym__escaped_characters] = ACTIONS(1698), - [sym__word] = ACTIONS(1698), - [sym__soft_line_ending] = ACTIONS(1698), - [sym__block_close] = ACTIONS(1698), - [sym__block_quote_start] = ACTIONS(1698), - [sym__indented_chunk_start] = ACTIONS(1698), - [sym_atx_h1_marker] = ACTIONS(1698), - [sym_atx_h2_marker] = ACTIONS(1698), - [sym_atx_h3_marker] = ACTIONS(1698), - [sym_atx_h4_marker] = ACTIONS(1698), - [sym_atx_h5_marker] = ACTIONS(1698), - [sym_atx_h6_marker] = ACTIONS(1698), - [sym__thematic_break] = ACTIONS(1698), - [sym__list_marker_minus] = ACTIONS(1698), - [sym__list_marker_plus] = ACTIONS(1698), - [sym__list_marker_star] = ACTIONS(1698), - [sym__list_marker_parenthesis] = ACTIONS(1698), - [sym__list_marker_dot] = ACTIONS(1698), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_example] = ACTIONS(1698), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1698), - [sym__fenced_code_block_start_backtick] = ACTIONS(1698), - [sym__fenced_code_block_start_tilde] = ACTIONS(1698), - [sym__blank_line_start] = ACTIONS(1698), - [sym_minus_metadata] = ACTIONS(1698), - [sym__pipe_table_start] = ACTIONS(1698), - [sym__fenced_div_start] = ACTIONS(1698), - [sym__fenced_div_end] = ACTIONS(1698), - [sym_ref_id_specifier] = ACTIONS(1698), - [sym__display_math_state_track_marker] = ACTIONS(1698), - [sym__inline_math_state_track_marker] = ACTIONS(1698), - [sym__code_span_start] = ACTIONS(1698), - [sym__html_comment] = ACTIONS(1698), - [sym_raw_specifier] = ACTIONS(1698), - [sym__autolink] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1700), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1700), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PERCENT] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DOT] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_AT] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_BSLASH] = ACTIONS(1698), + [anon_sym_RBRACK] = ACTIONS(1700), + [anon_sym_CARET] = ACTIONS(1700), + [anon_sym__] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1700), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1700), + [sym__escaped_characters] = ACTIONS(1700), + [sym__word] = ACTIONS(1700), + [sym__soft_line_ending] = ACTIONS(1700), + [sym__block_close] = ACTIONS(1700), + [sym__block_quote_start] = ACTIONS(1700), + [sym__indented_chunk_start] = ACTIONS(1700), + [sym_atx_h1_marker] = ACTIONS(1700), + [sym_atx_h2_marker] = ACTIONS(1700), + [sym_atx_h3_marker] = ACTIONS(1700), + [sym_atx_h4_marker] = ACTIONS(1700), + [sym_atx_h5_marker] = ACTIONS(1700), + [sym_atx_h6_marker] = ACTIONS(1700), + [sym__thematic_break] = ACTIONS(1700), + [sym__list_marker_minus] = ACTIONS(1700), + [sym__list_marker_plus] = ACTIONS(1700), + [sym__list_marker_star] = ACTIONS(1700), + [sym__list_marker_parenthesis] = ACTIONS(1700), + [sym__list_marker_dot] = ACTIONS(1700), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_example] = ACTIONS(1700), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1700), + [sym__fenced_code_block_start_backtick] = ACTIONS(1700), + [sym__fenced_code_block_start_tilde] = ACTIONS(1700), + [sym__blank_line_start] = ACTIONS(1700), + [sym_minus_metadata] = ACTIONS(1700), + [sym__pipe_table_start] = ACTIONS(1700), + [sym__fenced_div_start] = ACTIONS(1700), + [sym__fenced_div_end] = ACTIONS(1700), + [sym_ref_id_specifier] = ACTIONS(1700), + [sym__display_math_state_track_marker] = ACTIONS(1700), + [sym__inline_math_state_track_marker] = ACTIONS(1700), + [sym__code_span_start] = ACTIONS(1700), + [sym__html_comment] = ACTIONS(1700), + [sym_raw_specifier] = ACTIONS(1700), + [sym__autolink] = ACTIONS(1700), }, [STATE(225)] = { [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_BSLASH] = ACTIONS(1704), - [anon_sym_RBRACK] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym__] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1702), - [sym__escaped_characters] = ACTIONS(1702), - [sym__word] = ACTIONS(1702), - [sym__soft_line_ending] = ACTIONS(1702), - [sym__block_close] = ACTIONS(1702), - [sym__block_quote_start] = ACTIONS(1702), - [sym__indented_chunk_start] = ACTIONS(1702), - [sym_atx_h1_marker] = ACTIONS(1702), - [sym_atx_h2_marker] = ACTIONS(1702), - [sym_atx_h3_marker] = ACTIONS(1702), - [sym_atx_h4_marker] = ACTIONS(1702), - [sym_atx_h5_marker] = ACTIONS(1702), - [sym_atx_h6_marker] = ACTIONS(1702), - [sym__thematic_break] = ACTIONS(1702), - [sym__list_marker_minus] = ACTIONS(1702), - [sym__list_marker_plus] = ACTIONS(1702), - [sym__list_marker_star] = ACTIONS(1702), - [sym__list_marker_parenthesis] = ACTIONS(1702), - [sym__list_marker_dot] = ACTIONS(1702), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_example] = ACTIONS(1702), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1702), - [sym__fenced_code_block_start_backtick] = ACTIONS(1702), - [sym__fenced_code_block_start_tilde] = ACTIONS(1702), - [sym__blank_line_start] = ACTIONS(1702), - [sym_minus_metadata] = ACTIONS(1702), - [sym__pipe_table_start] = ACTIONS(1702), - [sym__fenced_div_start] = ACTIONS(1702), - [sym__fenced_div_end] = ACTIONS(1702), - [sym_ref_id_specifier] = ACTIONS(1702), - [sym__display_math_state_track_marker] = ACTIONS(1702), - [sym__inline_math_state_track_marker] = ACTIONS(1702), - [sym__code_span_start] = ACTIONS(1702), - [sym__html_comment] = ACTIONS(1702), - [sym_raw_specifier] = ACTIONS(1702), - [sym__autolink] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1704), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_POUND] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PERCENT] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_CARET] = ACTIONS(1704), + [anon_sym__] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1704), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1704), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1704), + [sym__escaped_characters] = ACTIONS(1704), + [sym__word] = ACTIONS(1704), + [sym__soft_line_ending] = ACTIONS(1704), + [sym__block_close] = ACTIONS(1704), + [sym__block_quote_start] = ACTIONS(1704), + [sym__indented_chunk_start] = ACTIONS(1704), + [sym_atx_h1_marker] = ACTIONS(1704), + [sym_atx_h2_marker] = ACTIONS(1704), + [sym_atx_h3_marker] = ACTIONS(1704), + [sym_atx_h4_marker] = ACTIONS(1704), + [sym_atx_h5_marker] = ACTIONS(1704), + [sym_atx_h6_marker] = ACTIONS(1704), + [sym__thematic_break] = ACTIONS(1704), + [sym__list_marker_minus] = ACTIONS(1704), + [sym__list_marker_plus] = ACTIONS(1704), + [sym__list_marker_star] = ACTIONS(1704), + [sym__list_marker_parenthesis] = ACTIONS(1704), + [sym__list_marker_dot] = ACTIONS(1704), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_example] = ACTIONS(1704), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1704), + [sym__fenced_code_block_start_backtick] = ACTIONS(1704), + [sym__fenced_code_block_start_tilde] = ACTIONS(1704), + [sym__blank_line_start] = ACTIONS(1704), + [sym_minus_metadata] = ACTIONS(1704), + [sym__pipe_table_start] = ACTIONS(1704), + [sym__fenced_div_start] = ACTIONS(1704), + [sym__fenced_div_end] = ACTIONS(1704), + [sym_ref_id_specifier] = ACTIONS(1704), + [sym__display_math_state_track_marker] = ACTIONS(1704), + [sym__inline_math_state_track_marker] = ACTIONS(1704), + [sym__code_span_start] = ACTIONS(1704), + [sym__html_comment] = ACTIONS(1704), + [sym_raw_specifier] = ACTIONS(1704), + [sym__autolink] = ACTIONS(1704), }, [STATE(226)] = { [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PERCENT] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1706), - [anon_sym_COMMA] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SLASH] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_AT] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_BSLASH] = ACTIONS(1708), - [anon_sym_RBRACK] = ACTIONS(1706), - [anon_sym_CARET] = ACTIONS(1706), - [anon_sym__] = ACTIONS(1706), - [anon_sym_BQUOTE] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1706), - [sym__escaped_characters] = ACTIONS(1706), - [sym__word] = ACTIONS(1706), - [sym__soft_line_ending] = ACTIONS(1706), - [sym__block_close] = ACTIONS(1706), - [sym__block_quote_start] = ACTIONS(1706), - [sym__indented_chunk_start] = ACTIONS(1706), - [sym_atx_h1_marker] = ACTIONS(1706), - [sym_atx_h2_marker] = ACTIONS(1706), - [sym_atx_h3_marker] = ACTIONS(1706), - [sym_atx_h4_marker] = ACTIONS(1706), - [sym_atx_h5_marker] = ACTIONS(1706), - [sym_atx_h6_marker] = ACTIONS(1706), - [sym__thematic_break] = ACTIONS(1706), - [sym__list_marker_minus] = ACTIONS(1706), - [sym__list_marker_plus] = ACTIONS(1706), - [sym__list_marker_star] = ACTIONS(1706), - [sym__list_marker_parenthesis] = ACTIONS(1706), - [sym__list_marker_dot] = ACTIONS(1706), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_example] = ACTIONS(1706), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1706), - [sym__fenced_code_block_start_backtick] = ACTIONS(1706), - [sym__fenced_code_block_start_tilde] = ACTIONS(1706), - [sym__blank_line_start] = ACTIONS(1706), - [sym_minus_metadata] = ACTIONS(1706), - [sym__pipe_table_start] = ACTIONS(1706), - [sym__fenced_div_start] = ACTIONS(1706), - [sym__fenced_div_end] = ACTIONS(1706), - [sym_ref_id_specifier] = ACTIONS(1706), - [sym__display_math_state_track_marker] = ACTIONS(1706), - [sym__inline_math_state_track_marker] = ACTIONS(1706), - [sym__code_span_start] = ACTIONS(1706), - [sym__html_comment] = ACTIONS(1706), - [sym_raw_specifier] = ACTIONS(1706), - [sym__autolink] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1708), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_BSLASH] = ACTIONS(1706), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym__] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1708), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1708), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1708), + [sym__escaped_characters] = ACTIONS(1708), + [sym__word] = ACTIONS(1708), + [sym__soft_line_ending] = ACTIONS(1708), + [sym__block_close] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1708), + [sym__indented_chunk_start] = ACTIONS(1708), + [sym_atx_h1_marker] = ACTIONS(1708), + [sym_atx_h2_marker] = ACTIONS(1708), + [sym_atx_h3_marker] = ACTIONS(1708), + [sym_atx_h4_marker] = ACTIONS(1708), + [sym_atx_h5_marker] = ACTIONS(1708), + [sym_atx_h6_marker] = ACTIONS(1708), + [sym__thematic_break] = ACTIONS(1708), + [sym__list_marker_minus] = ACTIONS(1708), + [sym__list_marker_plus] = ACTIONS(1708), + [sym__list_marker_star] = ACTIONS(1708), + [sym__list_marker_parenthesis] = ACTIONS(1708), + [sym__list_marker_dot] = ACTIONS(1708), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_example] = ACTIONS(1708), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1708), + [sym__fenced_code_block_start_backtick] = ACTIONS(1708), + [sym__fenced_code_block_start_tilde] = ACTIONS(1708), + [sym__blank_line_start] = ACTIONS(1708), + [sym_minus_metadata] = ACTIONS(1708), + [sym__pipe_table_start] = ACTIONS(1708), + [sym__fenced_div_start] = ACTIONS(1708), + [sym__fenced_div_end] = ACTIONS(1708), + [sym_ref_id_specifier] = ACTIONS(1708), + [sym__display_math_state_track_marker] = ACTIONS(1708), + [sym__inline_math_state_track_marker] = ACTIONS(1708), + [sym__code_span_start] = ACTIONS(1708), + [sym__html_comment] = ACTIONS(1708), + [sym_raw_specifier] = ACTIONS(1708), + [sym__autolink] = ACTIONS(1708), }, [STATE(227)] = { [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1710), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_DQUOTE] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_PERCENT] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_COMMA] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_DOT] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_QMARK] = ACTIONS(1710), - [anon_sym_AT] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_BSLASH] = ACTIONS(1712), - [anon_sym_RBRACK] = ACTIONS(1710), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym__] = ACTIONS(1710), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1710), - [sym__escaped_characters] = ACTIONS(1710), - [sym__word] = ACTIONS(1710), - [sym__soft_line_ending] = ACTIONS(1710), - [sym__block_close] = ACTIONS(1710), - [sym__block_quote_start] = ACTIONS(1710), - [sym__indented_chunk_start] = ACTIONS(1710), - [sym_atx_h1_marker] = ACTIONS(1710), - [sym_atx_h2_marker] = ACTIONS(1710), - [sym_atx_h3_marker] = ACTIONS(1710), - [sym_atx_h4_marker] = ACTIONS(1710), - [sym_atx_h5_marker] = ACTIONS(1710), - [sym_atx_h6_marker] = ACTIONS(1710), - [sym__thematic_break] = ACTIONS(1710), - [sym__list_marker_minus] = ACTIONS(1710), - [sym__list_marker_plus] = ACTIONS(1710), - [sym__list_marker_star] = ACTIONS(1710), - [sym__list_marker_parenthesis] = ACTIONS(1710), - [sym__list_marker_dot] = ACTIONS(1710), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_example] = ACTIONS(1710), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1710), - [sym__fenced_code_block_start_backtick] = ACTIONS(1710), - [sym__fenced_code_block_start_tilde] = ACTIONS(1710), - [sym__blank_line_start] = ACTIONS(1710), - [sym_minus_metadata] = ACTIONS(1710), - [sym__pipe_table_start] = ACTIONS(1710), - [sym__fenced_div_start] = ACTIONS(1710), - [sym__fenced_div_end] = ACTIONS(1710), - [sym_ref_id_specifier] = ACTIONS(1710), - [sym__display_math_state_track_marker] = ACTIONS(1710), - [sym__inline_math_state_track_marker] = ACTIONS(1710), - [sym__code_span_start] = ACTIONS(1710), - [sym__html_comment] = ACTIONS(1710), - [sym_raw_specifier] = ACTIONS(1710), - [sym__autolink] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1712), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1712), + [anon_sym_EQ] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_QMARK] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BSLASH] = ACTIONS(1710), + [anon_sym_RBRACK] = ACTIONS(1712), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym__] = ACTIONS(1712), + [anon_sym_BQUOTE] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1712), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1712), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1712), + [sym__escaped_characters] = ACTIONS(1712), + [sym__word] = ACTIONS(1712), + [sym__soft_line_ending] = ACTIONS(1712), + [sym__block_close] = ACTIONS(1712), + [sym__block_quote_start] = ACTIONS(1712), + [sym__indented_chunk_start] = ACTIONS(1712), + [sym_atx_h1_marker] = ACTIONS(1712), + [sym_atx_h2_marker] = ACTIONS(1712), + [sym_atx_h3_marker] = ACTIONS(1712), + [sym_atx_h4_marker] = ACTIONS(1712), + [sym_atx_h5_marker] = ACTIONS(1712), + [sym_atx_h6_marker] = ACTIONS(1712), + [sym__thematic_break] = ACTIONS(1712), + [sym__list_marker_minus] = ACTIONS(1712), + [sym__list_marker_plus] = ACTIONS(1712), + [sym__list_marker_star] = ACTIONS(1712), + [sym__list_marker_parenthesis] = ACTIONS(1712), + [sym__list_marker_dot] = ACTIONS(1712), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_example] = ACTIONS(1712), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1712), + [sym__fenced_code_block_start_backtick] = ACTIONS(1712), + [sym__fenced_code_block_start_tilde] = ACTIONS(1712), + [sym__blank_line_start] = ACTIONS(1712), + [sym_minus_metadata] = ACTIONS(1712), + [sym__pipe_table_start] = ACTIONS(1712), + [sym__fenced_div_start] = ACTIONS(1712), + [sym__fenced_div_end] = ACTIONS(1712), + [sym_ref_id_specifier] = ACTIONS(1712), + [sym__display_math_state_track_marker] = ACTIONS(1712), + [sym__inline_math_state_track_marker] = ACTIONS(1712), + [sym__code_span_start] = ACTIONS(1712), + [sym__html_comment] = ACTIONS(1712), + [sym_raw_specifier] = ACTIONS(1712), + [sym__autolink] = ACTIONS(1712), }, [STATE(228)] = { [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_BSLASH] = ACTIONS(1716), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1714), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1714), - [sym__html_comment] = ACTIONS(1714), - [sym_raw_specifier] = ACTIONS(1714), - [sym__autolink] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1716), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1716), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1716), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1716), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1716), + [sym__html_comment] = ACTIONS(1716), + [sym_raw_specifier] = ACTIONS(1716), + [sym__autolink] = ACTIONS(1716), }, [STATE(229)] = { [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_BSLASH] = ACTIONS(1532), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1530), - [sym__escaped_characters] = ACTIONS(1530), - [sym__word] = ACTIONS(1530), - [sym__soft_line_ending] = ACTIONS(1530), - [sym__block_close] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_BQUOTE] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1532), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1532), + [sym__escaped_characters] = ACTIONS(1532), + [sym__word] = ACTIONS(1532), + [sym__soft_line_ending] = ACTIONS(1532), + [sym__block_close] = ACTIONS(1532), [sym_block_continuation] = ACTIONS(1718), - [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), - [sym__code_span_start] = ACTIONS(1530), - [sym__html_comment] = ACTIONS(1530), - [sym_raw_specifier] = ACTIONS(1530), - [sym__autolink] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1532), + [sym__indented_chunk_start] = ACTIONS(1532), + [sym_atx_h1_marker] = ACTIONS(1532), + [sym_atx_h2_marker] = ACTIONS(1532), + [sym_atx_h3_marker] = ACTIONS(1532), + [sym_atx_h4_marker] = ACTIONS(1532), + [sym_atx_h5_marker] = ACTIONS(1532), + [sym_atx_h6_marker] = ACTIONS(1532), + [sym__thematic_break] = ACTIONS(1532), + [sym__list_marker_minus] = ACTIONS(1532), + [sym__list_marker_plus] = ACTIONS(1532), + [sym__list_marker_star] = ACTIONS(1532), + [sym__list_marker_parenthesis] = ACTIONS(1532), + [sym__list_marker_dot] = ACTIONS(1532), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_example] = ACTIONS(1532), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1532), + [sym__fenced_code_block_start_backtick] = ACTIONS(1532), + [sym__fenced_code_block_start_tilde] = ACTIONS(1532), + [sym__blank_line_start] = ACTIONS(1532), + [sym_minus_metadata] = ACTIONS(1532), + [sym__pipe_table_start] = ACTIONS(1532), + [sym__fenced_div_start] = ACTIONS(1532), + [sym_ref_id_specifier] = ACTIONS(1532), + [sym__display_math_state_track_marker] = ACTIONS(1532), + [sym__inline_math_state_track_marker] = ACTIONS(1532), + [sym__code_span_start] = ACTIONS(1532), + [sym__html_comment] = ACTIONS(1532), + [sym_raw_specifier] = ACTIONS(1532), + [sym__autolink] = ACTIONS(1532), }, [STATE(230)] = { [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_BSLASH] = ACTIONS(1520), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1518), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1518), - [sym__html_comment] = ACTIONS(1518), - [sym_raw_specifier] = ACTIONS(1518), - [sym__autolink] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym__] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1520), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1520), + [sym__escaped_characters] = ACTIONS(1520), + [sym__word] = ACTIONS(1520), + [sym__soft_line_ending] = ACTIONS(1520), + [sym__block_close] = ACTIONS(1520), + [sym__block_quote_start] = ACTIONS(1520), + [sym__indented_chunk_start] = ACTIONS(1520), + [sym_atx_h1_marker] = ACTIONS(1520), + [sym_atx_h2_marker] = ACTIONS(1520), + [sym_atx_h3_marker] = ACTIONS(1520), + [sym_atx_h4_marker] = ACTIONS(1520), + [sym_atx_h5_marker] = ACTIONS(1520), + [sym_atx_h6_marker] = ACTIONS(1520), + [sym__thematic_break] = ACTIONS(1520), + [sym__list_marker_minus] = ACTIONS(1520), + [sym__list_marker_plus] = ACTIONS(1520), + [sym__list_marker_star] = ACTIONS(1520), + [sym__list_marker_parenthesis] = ACTIONS(1520), + [sym__list_marker_dot] = ACTIONS(1520), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_example] = ACTIONS(1520), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1520), + [sym__fenced_code_block_start_backtick] = ACTIONS(1520), + [sym__fenced_code_block_start_tilde] = ACTIONS(1520), + [sym__blank_line_start] = ACTIONS(1520), + [sym_minus_metadata] = ACTIONS(1520), + [sym__pipe_table_start] = ACTIONS(1520), + [sym__fenced_div_start] = ACTIONS(1520), + [sym__fenced_div_end] = ACTIONS(1520), + [sym_ref_id_specifier] = ACTIONS(1520), + [sym__display_math_state_track_marker] = ACTIONS(1520), + [sym__inline_math_state_track_marker] = ACTIONS(1520), + [sym__code_span_start] = ACTIONS(1520), + [sym__html_comment] = ACTIONS(1520), + [sym_raw_specifier] = ACTIONS(1520), + [sym__autolink] = ACTIONS(1520), }, [STATE(231)] = { - [ts_builtin_sym_end] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1544), [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_BSLASH] = ACTIONS(1544), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1542), - [sym__escaped_characters] = ACTIONS(1542), - [sym__word] = ACTIONS(1542), - [sym__soft_line_ending] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1544), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1544), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1544), + [sym__escaped_characters] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), [sym_block_continuation] = ACTIONS(1720), - [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), - [sym__code_span_start] = ACTIONS(1542), - [sym__html_comment] = ACTIONS(1542), - [sym_raw_specifier] = ACTIONS(1542), - [sym__autolink] = ACTIONS(1542), + [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), + [sym__code_span_start] = ACTIONS(1544), + [sym__html_comment] = ACTIONS(1544), + [sym_raw_specifier] = ACTIONS(1544), + [sym__autolink] = ACTIONS(1544), }, [STATE(232)] = { [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1578), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_BSLASH] = ACTIONS(1580), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1578), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1578), - [sym__html_comment] = ACTIONS(1578), - [sym_raw_specifier] = ACTIONS(1578), - [sym__autolink] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1580), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1580), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1580), + [sym__html_comment] = ACTIONS(1580), + [sym_raw_specifier] = ACTIONS(1580), + [sym__autolink] = ACTIONS(1580), }, [STATE(233)] = { [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1526), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1524), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1524), - [sym__html_comment] = ACTIONS(1524), - [sym_raw_specifier] = ACTIONS(1524), - [sym__autolink] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1526), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1526), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1526), + [sym__html_comment] = ACTIONS(1526), + [sym_raw_specifier] = ACTIONS(1526), + [sym__autolink] = ACTIONS(1526), }, [STATE(234)] = { [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_BSLASH] = ACTIONS(1586), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1584), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1584), - [sym__html_comment] = ACTIONS(1584), - [sym_raw_specifier] = ACTIONS(1584), - [sym__autolink] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1586), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1586), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1586), + [sym__html_comment] = ACTIONS(1586), + [sym_raw_specifier] = ACTIONS(1586), + [sym__autolink] = ACTIONS(1586), }, [STATE(235)] = { [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_BSLASH] = ACTIONS(1520), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1518), - [sym__escaped_characters] = ACTIONS(1518), - [sym__word] = ACTIONS(1518), - [sym__soft_line_ending] = ACTIONS(1518), - [sym__block_close] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym__] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1520), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1520), + [sym__escaped_characters] = ACTIONS(1520), + [sym__word] = ACTIONS(1520), + [sym__soft_line_ending] = ACTIONS(1520), + [sym__block_close] = ACTIONS(1520), [sym_block_continuation] = ACTIONS(1722), - [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), - [sym__code_span_start] = ACTIONS(1518), - [sym__html_comment] = ACTIONS(1518), - [sym_raw_specifier] = ACTIONS(1518), - [sym__autolink] = ACTIONS(1518), + [sym__block_quote_start] = ACTIONS(1520), + [sym__indented_chunk_start] = ACTIONS(1520), + [sym_atx_h1_marker] = ACTIONS(1520), + [sym_atx_h2_marker] = ACTIONS(1520), + [sym_atx_h3_marker] = ACTIONS(1520), + [sym_atx_h4_marker] = ACTIONS(1520), + [sym_atx_h5_marker] = ACTIONS(1520), + [sym_atx_h6_marker] = ACTIONS(1520), + [sym__thematic_break] = ACTIONS(1520), + [sym__list_marker_minus] = ACTIONS(1520), + [sym__list_marker_plus] = ACTIONS(1520), + [sym__list_marker_star] = ACTIONS(1520), + [sym__list_marker_parenthesis] = ACTIONS(1520), + [sym__list_marker_dot] = ACTIONS(1520), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_example] = ACTIONS(1520), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1520), + [sym__fenced_code_block_start_backtick] = ACTIONS(1520), + [sym__fenced_code_block_start_tilde] = ACTIONS(1520), + [sym__blank_line_start] = ACTIONS(1520), + [sym_minus_metadata] = ACTIONS(1520), + [sym__pipe_table_start] = ACTIONS(1520), + [sym__fenced_div_start] = ACTIONS(1520), + [sym_ref_id_specifier] = ACTIONS(1520), + [sym__display_math_state_track_marker] = ACTIONS(1520), + [sym__inline_math_state_track_marker] = ACTIONS(1520), + [sym__code_span_start] = ACTIONS(1520), + [sym__html_comment] = ACTIONS(1520), + [sym_raw_specifier] = ACTIONS(1520), + [sym__autolink] = ACTIONS(1520), }, [STATE(236)] = { [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_BSLASH] = ACTIONS(1592), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1590), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1590), - [sym__html_comment] = ACTIONS(1590), - [sym_raw_specifier] = ACTIONS(1590), - [sym__autolink] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1592), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1592), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1592), + [sym__html_comment] = ACTIONS(1592), + [sym_raw_specifier] = ACTIONS(1592), + [sym__autolink] = ACTIONS(1592), }, [STATE(237)] = { [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_BSLASH] = ACTIONS(1532), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1530), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1530), - [sym__html_comment] = ACTIONS(1530), - [sym_raw_specifier] = ACTIONS(1530), - [sym__autolink] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_BQUOTE] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1532), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1532), + [sym__escaped_characters] = ACTIONS(1532), + [sym__word] = ACTIONS(1532), + [sym__soft_line_ending] = ACTIONS(1532), + [sym__block_close] = ACTIONS(1532), + [sym__block_quote_start] = ACTIONS(1532), + [sym__indented_chunk_start] = ACTIONS(1532), + [sym_atx_h1_marker] = ACTIONS(1532), + [sym_atx_h2_marker] = ACTIONS(1532), + [sym_atx_h3_marker] = ACTIONS(1532), + [sym_atx_h4_marker] = ACTIONS(1532), + [sym_atx_h5_marker] = ACTIONS(1532), + [sym_atx_h6_marker] = ACTIONS(1532), + [sym__thematic_break] = ACTIONS(1532), + [sym__list_marker_minus] = ACTIONS(1532), + [sym__list_marker_plus] = ACTIONS(1532), + [sym__list_marker_star] = ACTIONS(1532), + [sym__list_marker_parenthesis] = ACTIONS(1532), + [sym__list_marker_dot] = ACTIONS(1532), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_example] = ACTIONS(1532), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1532), + [sym__fenced_code_block_start_backtick] = ACTIONS(1532), + [sym__fenced_code_block_start_tilde] = ACTIONS(1532), + [sym__blank_line_start] = ACTIONS(1532), + [sym_minus_metadata] = ACTIONS(1532), + [sym__pipe_table_start] = ACTIONS(1532), + [sym__fenced_div_start] = ACTIONS(1532), + [sym__fenced_div_end] = ACTIONS(1532), + [sym_ref_id_specifier] = ACTIONS(1532), + [sym__display_math_state_track_marker] = ACTIONS(1532), + [sym__inline_math_state_track_marker] = ACTIONS(1532), + [sym__code_span_start] = ACTIONS(1532), + [sym__html_comment] = ACTIONS(1532), + [sym_raw_specifier] = ACTIONS(1532), + [sym__autolink] = ACTIONS(1532), }, [STATE(238)] = { [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_BSLASH] = ACTIONS(1598), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1596), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1596), - [sym__html_comment] = ACTIONS(1596), - [sym_raw_specifier] = ACTIONS(1596), - [sym__autolink] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1598), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1598), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1598), + [sym__html_comment] = ACTIONS(1598), + [sym_raw_specifier] = ACTIONS(1598), + [sym__autolink] = ACTIONS(1598), }, [STATE(239)] = { [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1578), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_BSLASH] = ACTIONS(1580), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1578), - [sym__escaped_characters] = ACTIONS(1578), - [sym__word] = ACTIONS(1578), - [sym__soft_line_ending] = ACTIONS(1578), - [sym__block_close] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1580), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1580), + [sym__escaped_characters] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_close] = ACTIONS(1580), [sym_block_continuation] = ACTIONS(1724), - [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), - [sym__code_span_start] = ACTIONS(1578), - [sym__html_comment] = ACTIONS(1578), - [sym_raw_specifier] = ACTIONS(1578), - [sym__autolink] = ACTIONS(1578), + [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), + [sym__code_span_start] = ACTIONS(1580), + [sym__html_comment] = ACTIONS(1580), + [sym_raw_specifier] = ACTIONS(1580), + [sym__autolink] = ACTIONS(1580), }, [STATE(240)] = { [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1604), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1602), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1602), - [sym__html_comment] = ACTIONS(1602), - [sym_raw_specifier] = ACTIONS(1602), - [sym__autolink] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1604), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1604), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1604), + [sym__html_comment] = ACTIONS(1604), + [sym_raw_specifier] = ACTIONS(1604), + [sym__autolink] = ACTIONS(1604), }, [STATE(241)] = { [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1726), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_BSLASH] = ACTIONS(1728), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1726), - [sym__escaped_characters] = ACTIONS(1726), - [sym__word] = ACTIONS(1726), - [sym__soft_line_ending] = ACTIONS(1726), - [sym__block_close] = 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__fenced_div_end] = ACTIONS(1726), - [sym_ref_id_specifier] = ACTIONS(1726), - [sym__display_math_state_track_marker] = ACTIONS(1726), - [sym__inline_math_state_track_marker] = ACTIONS(1726), - [sym__code_span_start] = ACTIONS(1726), - [sym__html_comment] = ACTIONS(1726), - [sym_raw_specifier] = ACTIONS(1726), - [sym__autolink] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1728), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_BSLASH] = ACTIONS(1726), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1728), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1728), + [sym__escaped_characters] = ACTIONS(1728), + [sym__word] = ACTIONS(1728), + [sym__soft_line_ending] = ACTIONS(1728), + [sym__block_close] = 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__fenced_div_end] = ACTIONS(1728), + [sym_ref_id_specifier] = ACTIONS(1728), + [sym__display_math_state_track_marker] = ACTIONS(1728), + [sym__inline_math_state_track_marker] = ACTIONS(1728), + [sym__code_span_start] = ACTIONS(1728), + [sym__html_comment] = ACTIONS(1728), + [sym_raw_specifier] = ACTIONS(1728), + [sym__autolink] = ACTIONS(1728), }, [STATE(242)] = { [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1730), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_BSLASH] = ACTIONS(1732), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_CARET] = ACTIONS(1730), - [anon_sym__] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1730), - [sym__escaped_characters] = ACTIONS(1730), - [sym__word] = ACTIONS(1730), - [sym__soft_line_ending] = ACTIONS(1730), - [sym__block_close] = 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__fenced_div_end] = ACTIONS(1730), - [sym_ref_id_specifier] = ACTIONS(1730), - [sym__display_math_state_track_marker] = ACTIONS(1730), - [sym__inline_math_state_track_marker] = ACTIONS(1730), - [sym__code_span_start] = ACTIONS(1730), - [sym__html_comment] = ACTIONS(1730), - [sym_raw_specifier] = ACTIONS(1730), - [sym__autolink] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1732), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_BSLASH] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1732), + [anon_sym_CARET] = ACTIONS(1732), + [anon_sym__] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1732), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1732), + [sym__escaped_characters] = ACTIONS(1732), + [sym__word] = ACTIONS(1732), + [sym__soft_line_ending] = ACTIONS(1732), + [sym__block_close] = ACTIONS(1732), + [sym__block_quote_start] = ACTIONS(1732), + [sym__indented_chunk_start] = ACTIONS(1732), + [sym_atx_h1_marker] = ACTIONS(1732), + [sym_atx_h2_marker] = ACTIONS(1732), + [sym_atx_h3_marker] = ACTIONS(1732), + [sym_atx_h4_marker] = ACTIONS(1732), + [sym_atx_h5_marker] = ACTIONS(1732), + [sym_atx_h6_marker] = ACTIONS(1732), + [sym__thematic_break] = ACTIONS(1732), + [sym__list_marker_minus] = ACTIONS(1732), + [sym__list_marker_plus] = ACTIONS(1732), + [sym__list_marker_star] = ACTIONS(1732), + [sym__list_marker_parenthesis] = ACTIONS(1732), + [sym__list_marker_dot] = ACTIONS(1732), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_example] = ACTIONS(1732), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1732), + [sym__fenced_code_block_start_backtick] = ACTIONS(1732), + [sym__fenced_code_block_start_tilde] = ACTIONS(1732), + [sym__blank_line_start] = ACTIONS(1732), + [sym_minus_metadata] = ACTIONS(1732), + [sym__pipe_table_start] = ACTIONS(1732), + [sym__fenced_div_start] = ACTIONS(1732), + [sym__fenced_div_end] = ACTIONS(1732), + [sym_ref_id_specifier] = ACTIONS(1732), + [sym__display_math_state_track_marker] = ACTIONS(1732), + [sym__inline_math_state_track_marker] = ACTIONS(1732), + [sym__code_span_start] = ACTIONS(1732), + [sym__html_comment] = ACTIONS(1732), + [sym_raw_specifier] = ACTIONS(1732), + [sym__autolink] = ACTIONS(1732), }, [STATE(243)] = { [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_BSLASH] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_CARET] = ACTIONS(1734), - [anon_sym__] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1734), - [sym__escaped_characters] = ACTIONS(1734), - [sym__word] = ACTIONS(1734), - [sym__soft_line_ending] = ACTIONS(1734), - [sym__block_close] = ACTIONS(1734), - [sym__block_quote_start] = ACTIONS(1734), - [sym__indented_chunk_start] = ACTIONS(1734), - [sym_atx_h1_marker] = ACTIONS(1734), - [sym_atx_h2_marker] = ACTIONS(1734), - [sym_atx_h3_marker] = ACTIONS(1734), - [sym_atx_h4_marker] = ACTIONS(1734), - [sym_atx_h5_marker] = ACTIONS(1734), - [sym_atx_h6_marker] = ACTIONS(1734), - [sym__thematic_break] = ACTIONS(1734), - [sym__list_marker_minus] = ACTIONS(1734), - [sym__list_marker_plus] = ACTIONS(1734), - [sym__list_marker_star] = ACTIONS(1734), - [sym__list_marker_parenthesis] = ACTIONS(1734), - [sym__list_marker_dot] = ACTIONS(1734), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_example] = ACTIONS(1734), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1734), - [sym__fenced_code_block_start_backtick] = ACTIONS(1734), - [sym__fenced_code_block_start_tilde] = ACTIONS(1734), - [sym__blank_line_start] = ACTIONS(1734), - [sym_minus_metadata] = ACTIONS(1734), - [sym__pipe_table_start] = ACTIONS(1734), - [sym__fenced_div_start] = ACTIONS(1734), - [sym__fenced_div_end] = ACTIONS(1734), - [sym_ref_id_specifier] = ACTIONS(1734), - [sym__display_math_state_track_marker] = ACTIONS(1734), - [sym__inline_math_state_track_marker] = ACTIONS(1734), - [sym__code_span_start] = ACTIONS(1734), - [sym__html_comment] = ACTIONS(1734), - [sym_raw_specifier] = ACTIONS(1734), - [sym__autolink] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1736), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1736), + [anon_sym_EQ] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_SLASH] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_QMARK] = ACTIONS(1736), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_BSLASH] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_CARET] = ACTIONS(1736), + [anon_sym__] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1736), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1736), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1736), + [sym__escaped_characters] = ACTIONS(1736), + [sym__word] = ACTIONS(1736), + [sym__soft_line_ending] = ACTIONS(1736), + [sym__block_close] = ACTIONS(1736), + [sym__block_quote_start] = ACTIONS(1736), + [sym__indented_chunk_start] = ACTIONS(1736), + [sym_atx_h1_marker] = ACTIONS(1736), + [sym_atx_h2_marker] = ACTIONS(1736), + [sym_atx_h3_marker] = ACTIONS(1736), + [sym_atx_h4_marker] = ACTIONS(1736), + [sym_atx_h5_marker] = ACTIONS(1736), + [sym_atx_h6_marker] = ACTIONS(1736), + [sym__thematic_break] = ACTIONS(1736), + [sym__list_marker_minus] = ACTIONS(1736), + [sym__list_marker_plus] = ACTIONS(1736), + [sym__list_marker_star] = ACTIONS(1736), + [sym__list_marker_parenthesis] = ACTIONS(1736), + [sym__list_marker_dot] = ACTIONS(1736), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_example] = ACTIONS(1736), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1736), + [sym__fenced_code_block_start_backtick] = ACTIONS(1736), + [sym__fenced_code_block_start_tilde] = ACTIONS(1736), + [sym__blank_line_start] = ACTIONS(1736), + [sym_minus_metadata] = ACTIONS(1736), + [sym__pipe_table_start] = ACTIONS(1736), + [sym__fenced_div_start] = ACTIONS(1736), + [sym__fenced_div_end] = ACTIONS(1736), + [sym_ref_id_specifier] = ACTIONS(1736), + [sym__display_math_state_track_marker] = ACTIONS(1736), + [sym__inline_math_state_track_marker] = ACTIONS(1736), + [sym__code_span_start] = ACTIONS(1736), + [sym__html_comment] = ACTIONS(1736), + [sym_raw_specifier] = ACTIONS(1736), + [sym__autolink] = ACTIONS(1736), }, [STATE(244)] = { [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_PERCENT] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_QMARK] = ACTIONS(1738), - [anon_sym_AT] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_BSLASH] = ACTIONS(1740), - [anon_sym_RBRACK] = ACTIONS(1738), - [anon_sym_CARET] = ACTIONS(1738), - [anon_sym__] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1738), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1738), - [sym__escaped_characters] = ACTIONS(1738), - [sym__word] = ACTIONS(1738), - [sym__soft_line_ending] = ACTIONS(1738), - [sym__block_close] = ACTIONS(1738), - [sym__block_quote_start] = ACTIONS(1738), - [sym__indented_chunk_start] = ACTIONS(1738), - [sym_atx_h1_marker] = ACTIONS(1738), - [sym_atx_h2_marker] = ACTIONS(1738), - [sym_atx_h3_marker] = ACTIONS(1738), - [sym_atx_h4_marker] = ACTIONS(1738), - [sym_atx_h5_marker] = ACTIONS(1738), - [sym_atx_h6_marker] = ACTIONS(1738), - [sym__thematic_break] = ACTIONS(1738), - [sym__list_marker_minus] = ACTIONS(1738), - [sym__list_marker_plus] = ACTIONS(1738), - [sym__list_marker_star] = ACTIONS(1738), - [sym__list_marker_parenthesis] = ACTIONS(1738), - [sym__list_marker_dot] = ACTIONS(1738), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_example] = ACTIONS(1738), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1738), - [sym__fenced_code_block_start_backtick] = ACTIONS(1738), - [sym__fenced_code_block_start_tilde] = ACTIONS(1738), - [sym__blank_line_start] = ACTIONS(1738), - [sym_minus_metadata] = ACTIONS(1738), - [sym__pipe_table_start] = ACTIONS(1738), - [sym__fenced_div_start] = ACTIONS(1738), - [sym__fenced_div_end] = ACTIONS(1738), - [sym_ref_id_specifier] = ACTIONS(1738), - [sym__display_math_state_track_marker] = ACTIONS(1738), - [sym__inline_math_state_track_marker] = ACTIONS(1738), - [sym__code_span_start] = ACTIONS(1738), - [sym__html_comment] = ACTIONS(1738), - [sym_raw_specifier] = ACTIONS(1738), - [sym__autolink] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1740), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1740), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1740), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_SLASH] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_QMARK] = ACTIONS(1740), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_BSLASH] = ACTIONS(1738), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_CARET] = ACTIONS(1740), + [anon_sym__] = ACTIONS(1740), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1740), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1740), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1740), + [sym__escaped_characters] = ACTIONS(1740), + [sym__word] = ACTIONS(1740), + [sym__soft_line_ending] = ACTIONS(1740), + [sym__block_close] = ACTIONS(1740), + [sym__block_quote_start] = ACTIONS(1740), + [sym__indented_chunk_start] = ACTIONS(1740), + [sym_atx_h1_marker] = ACTIONS(1740), + [sym_atx_h2_marker] = ACTIONS(1740), + [sym_atx_h3_marker] = ACTIONS(1740), + [sym_atx_h4_marker] = ACTIONS(1740), + [sym_atx_h5_marker] = ACTIONS(1740), + [sym_atx_h6_marker] = ACTIONS(1740), + [sym__thematic_break] = ACTIONS(1740), + [sym__list_marker_minus] = ACTIONS(1740), + [sym__list_marker_plus] = ACTIONS(1740), + [sym__list_marker_star] = ACTIONS(1740), + [sym__list_marker_parenthesis] = ACTIONS(1740), + [sym__list_marker_dot] = ACTIONS(1740), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_example] = ACTIONS(1740), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1740), + [sym__fenced_code_block_start_backtick] = ACTIONS(1740), + [sym__fenced_code_block_start_tilde] = ACTIONS(1740), + [sym__blank_line_start] = ACTIONS(1740), + [sym_minus_metadata] = ACTIONS(1740), + [sym__pipe_table_start] = ACTIONS(1740), + [sym__fenced_div_start] = ACTIONS(1740), + [sym__fenced_div_end] = ACTIONS(1740), + [sym_ref_id_specifier] = ACTIONS(1740), + [sym__display_math_state_track_marker] = ACTIONS(1740), + [sym__inline_math_state_track_marker] = ACTIONS(1740), + [sym__code_span_start] = ACTIONS(1740), + [sym__html_comment] = ACTIONS(1740), + [sym_raw_specifier] = ACTIONS(1740), + [sym__autolink] = ACTIONS(1740), }, [STATE(245)] = { [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_QMARK] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_BSLASH] = ACTIONS(1744), - [anon_sym_RBRACK] = ACTIONS(1742), - [anon_sym_CARET] = ACTIONS(1742), - [anon_sym__] = ACTIONS(1742), - [anon_sym_BQUOTE] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_TILDE] = ACTIONS(1742), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1742), - [sym__escaped_characters] = ACTIONS(1742), - [sym__word] = ACTIONS(1742), - [sym__soft_line_ending] = ACTIONS(1742), - [sym__block_close] = ACTIONS(1742), - [sym__block_quote_start] = ACTIONS(1742), - [sym__indented_chunk_start] = ACTIONS(1742), - [sym_atx_h1_marker] = ACTIONS(1742), - [sym_atx_h2_marker] = ACTIONS(1742), - [sym_atx_h3_marker] = ACTIONS(1742), - [sym_atx_h4_marker] = ACTIONS(1742), - [sym_atx_h5_marker] = ACTIONS(1742), - [sym_atx_h6_marker] = ACTIONS(1742), - [sym__thematic_break] = ACTIONS(1742), - [sym__list_marker_minus] = ACTIONS(1742), - [sym__list_marker_plus] = ACTIONS(1742), - [sym__list_marker_star] = ACTIONS(1742), - [sym__list_marker_parenthesis] = ACTIONS(1742), - [sym__list_marker_dot] = ACTIONS(1742), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_example] = ACTIONS(1742), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1742), - [sym__fenced_code_block_start_backtick] = ACTIONS(1742), - [sym__fenced_code_block_start_tilde] = ACTIONS(1742), - [sym__blank_line_start] = ACTIONS(1742), - [sym_minus_metadata] = ACTIONS(1742), - [sym__pipe_table_start] = ACTIONS(1742), - [sym__fenced_div_start] = ACTIONS(1742), - [sym__fenced_div_end] = ACTIONS(1742), - [sym_ref_id_specifier] = ACTIONS(1742), - [sym__display_math_state_track_marker] = ACTIONS(1742), - [sym__inline_math_state_track_marker] = ACTIONS(1742), - [sym__code_span_start] = ACTIONS(1742), - [sym__html_comment] = ACTIONS(1742), - [sym_raw_specifier] = ACTIONS(1742), - [sym__autolink] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1744), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_BSLASH] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(1744), + [anon_sym_CARET] = ACTIONS(1744), + [anon_sym__] = ACTIONS(1744), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1744), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1744), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1744), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1744), + [sym__escaped_characters] = ACTIONS(1744), + [sym__word] = ACTIONS(1744), + [sym__soft_line_ending] = ACTIONS(1744), + [sym__block_close] = ACTIONS(1744), + [sym__block_quote_start] = ACTIONS(1744), + [sym__indented_chunk_start] = ACTIONS(1744), + [sym_atx_h1_marker] = ACTIONS(1744), + [sym_atx_h2_marker] = ACTIONS(1744), + [sym_atx_h3_marker] = ACTIONS(1744), + [sym_atx_h4_marker] = ACTIONS(1744), + [sym_atx_h5_marker] = ACTIONS(1744), + [sym_atx_h6_marker] = ACTIONS(1744), + [sym__thematic_break] = ACTIONS(1744), + [sym__list_marker_minus] = ACTIONS(1744), + [sym__list_marker_plus] = ACTIONS(1744), + [sym__list_marker_star] = ACTIONS(1744), + [sym__list_marker_parenthesis] = ACTIONS(1744), + [sym__list_marker_dot] = ACTIONS(1744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_example] = ACTIONS(1744), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1744), + [sym__fenced_code_block_start_backtick] = ACTIONS(1744), + [sym__fenced_code_block_start_tilde] = ACTIONS(1744), + [sym__blank_line_start] = ACTIONS(1744), + [sym_minus_metadata] = ACTIONS(1744), + [sym__pipe_table_start] = ACTIONS(1744), + [sym__fenced_div_start] = ACTIONS(1744), + [sym__fenced_div_end] = ACTIONS(1744), + [sym_ref_id_specifier] = ACTIONS(1744), + [sym__display_math_state_track_marker] = ACTIONS(1744), + [sym__inline_math_state_track_marker] = ACTIONS(1744), + [sym__code_span_start] = ACTIONS(1744), + [sym__html_comment] = ACTIONS(1744), + [sym_raw_specifier] = ACTIONS(1744), + [sym__autolink] = ACTIONS(1744), }, [STATE(246)] = { [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_PERCENT] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_BSLASH] = ACTIONS(1748), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_CARET] = ACTIONS(1746), - [anon_sym__] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1746), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1746), - [sym__escaped_characters] = ACTIONS(1746), - [sym__word] = ACTIONS(1746), - [sym__soft_line_ending] = ACTIONS(1746), - [sym__block_close] = ACTIONS(1746), - [sym__block_quote_start] = ACTIONS(1746), - [sym__indented_chunk_start] = ACTIONS(1746), - [sym_atx_h1_marker] = ACTIONS(1746), - [sym_atx_h2_marker] = ACTIONS(1746), - [sym_atx_h3_marker] = ACTIONS(1746), - [sym_atx_h4_marker] = ACTIONS(1746), - [sym_atx_h5_marker] = ACTIONS(1746), - [sym_atx_h6_marker] = ACTIONS(1746), - [sym__thematic_break] = ACTIONS(1746), - [sym__list_marker_minus] = ACTIONS(1746), - [sym__list_marker_plus] = ACTIONS(1746), - [sym__list_marker_star] = ACTIONS(1746), - [sym__list_marker_parenthesis] = ACTIONS(1746), - [sym__list_marker_dot] = ACTIONS(1746), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_example] = ACTIONS(1746), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1746), - [sym__fenced_code_block_start_backtick] = ACTIONS(1746), - [sym__fenced_code_block_start_tilde] = ACTIONS(1746), - [sym__blank_line_start] = ACTIONS(1746), - [sym_minus_metadata] = ACTIONS(1746), - [sym__pipe_table_start] = ACTIONS(1746), - [sym__fenced_div_start] = ACTIONS(1746), - [sym__fenced_div_end] = ACTIONS(1746), - [sym_ref_id_specifier] = ACTIONS(1746), - [sym__display_math_state_track_marker] = ACTIONS(1746), - [sym__inline_math_state_track_marker] = ACTIONS(1746), - [sym__code_span_start] = ACTIONS(1746), - [sym__html_comment] = ACTIONS(1746), - [sym_raw_specifier] = ACTIONS(1746), - [sym__autolink] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1748), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1748), + [anon_sym_PERCENT] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_DOT] = ACTIONS(1748), + [anon_sym_SLASH] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_BSLASH] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_CARET] = ACTIONS(1748), + [anon_sym__] = ACTIONS(1748), + [anon_sym_BQUOTE] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1748), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1748), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1748), + [sym__escaped_characters] = ACTIONS(1748), + [sym__word] = ACTIONS(1748), + [sym__soft_line_ending] = ACTIONS(1748), + [sym__block_close] = ACTIONS(1748), + [sym__block_quote_start] = ACTIONS(1748), + [sym__indented_chunk_start] = ACTIONS(1748), + [sym_atx_h1_marker] = ACTIONS(1748), + [sym_atx_h2_marker] = ACTIONS(1748), + [sym_atx_h3_marker] = ACTIONS(1748), + [sym_atx_h4_marker] = ACTIONS(1748), + [sym_atx_h5_marker] = ACTIONS(1748), + [sym_atx_h6_marker] = ACTIONS(1748), + [sym__thematic_break] = ACTIONS(1748), + [sym__list_marker_minus] = ACTIONS(1748), + [sym__list_marker_plus] = ACTIONS(1748), + [sym__list_marker_star] = ACTIONS(1748), + [sym__list_marker_parenthesis] = ACTIONS(1748), + [sym__list_marker_dot] = ACTIONS(1748), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_example] = ACTIONS(1748), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1748), + [sym__fenced_code_block_start_backtick] = ACTIONS(1748), + [sym__fenced_code_block_start_tilde] = ACTIONS(1748), + [sym__blank_line_start] = ACTIONS(1748), + [sym_minus_metadata] = ACTIONS(1748), + [sym__pipe_table_start] = ACTIONS(1748), + [sym__fenced_div_start] = ACTIONS(1748), + [sym__fenced_div_end] = ACTIONS(1748), + [sym_ref_id_specifier] = ACTIONS(1748), + [sym__display_math_state_track_marker] = ACTIONS(1748), + [sym__inline_math_state_track_marker] = ACTIONS(1748), + [sym__code_span_start] = ACTIONS(1748), + [sym__html_comment] = ACTIONS(1748), + [sym_raw_specifier] = ACTIONS(1748), + [sym__autolink] = ACTIONS(1748), }, [STATE(247)] = { [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_AT] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_RBRACK] = ACTIONS(1750), - [anon_sym_CARET] = ACTIONS(1750), - [anon_sym__] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1750), - [sym__escaped_characters] = ACTIONS(1750), - [sym__word] = ACTIONS(1750), - [sym__soft_line_ending] = ACTIONS(1750), - [sym__block_close] = ACTIONS(1750), - [sym__block_quote_start] = ACTIONS(1750), - [sym__indented_chunk_start] = ACTIONS(1750), - [sym_atx_h1_marker] = ACTIONS(1750), - [sym_atx_h2_marker] = ACTIONS(1750), - [sym_atx_h3_marker] = ACTIONS(1750), - [sym_atx_h4_marker] = ACTIONS(1750), - [sym_atx_h5_marker] = ACTIONS(1750), - [sym_atx_h6_marker] = ACTIONS(1750), - [sym__thematic_break] = ACTIONS(1750), - [sym__list_marker_minus] = ACTIONS(1750), - [sym__list_marker_plus] = ACTIONS(1750), - [sym__list_marker_star] = ACTIONS(1750), - [sym__list_marker_parenthesis] = ACTIONS(1750), - [sym__list_marker_dot] = ACTIONS(1750), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_example] = ACTIONS(1750), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1750), - [sym__fenced_code_block_start_backtick] = ACTIONS(1750), - [sym__fenced_code_block_start_tilde] = ACTIONS(1750), - [sym__blank_line_start] = ACTIONS(1750), - [sym_minus_metadata] = ACTIONS(1750), - [sym__pipe_table_start] = ACTIONS(1750), - [sym__fenced_div_start] = ACTIONS(1750), - [sym__fenced_div_end] = ACTIONS(1750), - [sym_ref_id_specifier] = ACTIONS(1750), - [sym__display_math_state_track_marker] = ACTIONS(1750), - [sym__inline_math_state_track_marker] = ACTIONS(1750), - [sym__code_span_start] = ACTIONS(1750), - [sym__html_comment] = ACTIONS(1750), - [sym_raw_specifier] = ACTIONS(1750), - [sym__autolink] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1752), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_DQUOTE] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_QMARK] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_BSLASH] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym__] = ACTIONS(1752), + [anon_sym_BQUOTE] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1752), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1752), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1752), + [sym__escaped_characters] = ACTIONS(1752), + [sym__word] = ACTIONS(1752), + [sym__soft_line_ending] = ACTIONS(1752), + [sym__block_close] = ACTIONS(1752), + [sym__block_quote_start] = ACTIONS(1752), + [sym__indented_chunk_start] = ACTIONS(1752), + [sym_atx_h1_marker] = ACTIONS(1752), + [sym_atx_h2_marker] = ACTIONS(1752), + [sym_atx_h3_marker] = ACTIONS(1752), + [sym_atx_h4_marker] = ACTIONS(1752), + [sym_atx_h5_marker] = ACTIONS(1752), + [sym_atx_h6_marker] = ACTIONS(1752), + [sym__thematic_break] = ACTIONS(1752), + [sym__list_marker_minus] = ACTIONS(1752), + [sym__list_marker_plus] = ACTIONS(1752), + [sym__list_marker_star] = ACTIONS(1752), + [sym__list_marker_parenthesis] = ACTIONS(1752), + [sym__list_marker_dot] = ACTIONS(1752), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_example] = ACTIONS(1752), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1752), + [sym__fenced_code_block_start_backtick] = ACTIONS(1752), + [sym__fenced_code_block_start_tilde] = ACTIONS(1752), + [sym__blank_line_start] = ACTIONS(1752), + [sym_minus_metadata] = ACTIONS(1752), + [sym__pipe_table_start] = ACTIONS(1752), + [sym__fenced_div_start] = ACTIONS(1752), + [sym__fenced_div_end] = ACTIONS(1752), + [sym_ref_id_specifier] = ACTIONS(1752), + [sym__display_math_state_track_marker] = ACTIONS(1752), + [sym__inline_math_state_track_marker] = ACTIONS(1752), + [sym__code_span_start] = ACTIONS(1752), + [sym__html_comment] = ACTIONS(1752), + [sym_raw_specifier] = ACTIONS(1752), + [sym__autolink] = ACTIONS(1752), }, [STATE(248)] = { [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1754), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SLASH] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_QMARK] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_BSLASH] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1754), - [anon_sym__] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1754), - [sym__escaped_characters] = ACTIONS(1754), - [sym__word] = ACTIONS(1754), - [sym__soft_line_ending] = ACTIONS(1754), - [sym__block_close] = ACTIONS(1754), - [sym__block_quote_start] = ACTIONS(1754), - [sym__indented_chunk_start] = ACTIONS(1754), - [sym_atx_h1_marker] = ACTIONS(1754), - [sym_atx_h2_marker] = ACTIONS(1754), - [sym_atx_h3_marker] = ACTIONS(1754), - [sym_atx_h4_marker] = ACTIONS(1754), - [sym_atx_h5_marker] = ACTIONS(1754), - [sym_atx_h6_marker] = ACTIONS(1754), - [sym__thematic_break] = ACTIONS(1754), - [sym__list_marker_minus] = ACTIONS(1754), - [sym__list_marker_plus] = ACTIONS(1754), - [sym__list_marker_star] = ACTIONS(1754), - [sym__list_marker_parenthesis] = ACTIONS(1754), - [sym__list_marker_dot] = ACTIONS(1754), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_example] = ACTIONS(1754), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1754), - [sym__fenced_code_block_start_backtick] = ACTIONS(1754), - [sym__fenced_code_block_start_tilde] = ACTIONS(1754), - [sym__blank_line_start] = ACTIONS(1754), - [sym_minus_metadata] = ACTIONS(1754), - [sym__pipe_table_start] = ACTIONS(1754), - [sym__fenced_div_start] = ACTIONS(1754), - [sym__fenced_div_end] = ACTIONS(1754), - [sym_ref_id_specifier] = ACTIONS(1754), - [sym__display_math_state_track_marker] = ACTIONS(1754), - [sym__inline_math_state_track_marker] = ACTIONS(1754), - [sym__code_span_start] = ACTIONS(1754), - [sym__html_comment] = ACTIONS(1754), - [sym_raw_specifier] = ACTIONS(1754), - [sym__autolink] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1756), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_SQUOTE] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_QMARK] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_BSLASH] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym__] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_TILDE] = ACTIONS(1756), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1756), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1756), + [sym__escaped_characters] = ACTIONS(1756), + [sym__word] = ACTIONS(1756), + [sym__soft_line_ending] = ACTIONS(1756), + [sym__block_close] = ACTIONS(1756), + [sym__block_quote_start] = ACTIONS(1756), + [sym__indented_chunk_start] = ACTIONS(1756), + [sym_atx_h1_marker] = ACTIONS(1756), + [sym_atx_h2_marker] = ACTIONS(1756), + [sym_atx_h3_marker] = ACTIONS(1756), + [sym_atx_h4_marker] = ACTIONS(1756), + [sym_atx_h5_marker] = ACTIONS(1756), + [sym_atx_h6_marker] = ACTIONS(1756), + [sym__thematic_break] = ACTIONS(1756), + [sym__list_marker_minus] = ACTIONS(1756), + [sym__list_marker_plus] = ACTIONS(1756), + [sym__list_marker_star] = ACTIONS(1756), + [sym__list_marker_parenthesis] = ACTIONS(1756), + [sym__list_marker_dot] = ACTIONS(1756), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_example] = ACTIONS(1756), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1756), + [sym__fenced_code_block_start_backtick] = ACTIONS(1756), + [sym__fenced_code_block_start_tilde] = ACTIONS(1756), + [sym__blank_line_start] = ACTIONS(1756), + [sym_minus_metadata] = ACTIONS(1756), + [sym__pipe_table_start] = ACTIONS(1756), + [sym__fenced_div_start] = ACTIONS(1756), + [sym__fenced_div_end] = ACTIONS(1756), + [sym_ref_id_specifier] = ACTIONS(1756), + [sym__display_math_state_track_marker] = ACTIONS(1756), + [sym__inline_math_state_track_marker] = ACTIONS(1756), + [sym__code_span_start] = ACTIONS(1756), + [sym__html_comment] = ACTIONS(1756), + [sym_raw_specifier] = ACTIONS(1756), + [sym__autolink] = ACTIONS(1756), }, [STATE(249)] = { [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1758), - [anon_sym_EQ] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_QMARK] = ACTIONS(1758), - [anon_sym_AT] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_BSLASH] = ACTIONS(1760), - [anon_sym_RBRACK] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym__] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1758), - [sym__escaped_characters] = ACTIONS(1758), - [sym__word] = ACTIONS(1758), - [sym__soft_line_ending] = ACTIONS(1758), - [sym__block_close] = ACTIONS(1758), - [sym__block_quote_start] = ACTIONS(1758), - [sym__indented_chunk_start] = ACTIONS(1758), - [sym_atx_h1_marker] = ACTIONS(1758), - [sym_atx_h2_marker] = ACTIONS(1758), - [sym_atx_h3_marker] = ACTIONS(1758), - [sym_atx_h4_marker] = ACTIONS(1758), - [sym_atx_h5_marker] = ACTIONS(1758), - [sym_atx_h6_marker] = ACTIONS(1758), - [sym__thematic_break] = ACTIONS(1758), - [sym__list_marker_minus] = ACTIONS(1758), - [sym__list_marker_plus] = ACTIONS(1758), - [sym__list_marker_star] = ACTIONS(1758), - [sym__list_marker_parenthesis] = ACTIONS(1758), - [sym__list_marker_dot] = ACTIONS(1758), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_example] = ACTIONS(1758), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1758), - [sym__fenced_code_block_start_backtick] = ACTIONS(1758), - [sym__fenced_code_block_start_tilde] = ACTIONS(1758), - [sym__blank_line_start] = ACTIONS(1758), - [sym_minus_metadata] = ACTIONS(1758), - [sym__pipe_table_start] = ACTIONS(1758), - [sym__fenced_div_start] = ACTIONS(1758), - [sym__fenced_div_end] = ACTIONS(1758), - [sym_ref_id_specifier] = ACTIONS(1758), - [sym__display_math_state_track_marker] = ACTIONS(1758), - [sym__inline_math_state_track_marker] = ACTIONS(1758), - [sym__code_span_start] = ACTIONS(1758), - [sym__html_comment] = ACTIONS(1758), - [sym_raw_specifier] = ACTIONS(1758), - [sym__autolink] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1760), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym__] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1760), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1760), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1760), + [sym__escaped_characters] = ACTIONS(1760), + [sym__word] = ACTIONS(1760), + [sym__soft_line_ending] = ACTIONS(1760), + [sym__block_close] = ACTIONS(1760), + [sym__block_quote_start] = ACTIONS(1760), + [sym__indented_chunk_start] = ACTIONS(1760), + [sym_atx_h1_marker] = ACTIONS(1760), + [sym_atx_h2_marker] = ACTIONS(1760), + [sym_atx_h3_marker] = ACTIONS(1760), + [sym_atx_h4_marker] = ACTIONS(1760), + [sym_atx_h5_marker] = ACTIONS(1760), + [sym_atx_h6_marker] = ACTIONS(1760), + [sym__thematic_break] = ACTIONS(1760), + [sym__list_marker_minus] = ACTIONS(1760), + [sym__list_marker_plus] = ACTIONS(1760), + [sym__list_marker_star] = ACTIONS(1760), + [sym__list_marker_parenthesis] = ACTIONS(1760), + [sym__list_marker_dot] = ACTIONS(1760), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_example] = ACTIONS(1760), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1760), + [sym__fenced_code_block_start_backtick] = ACTIONS(1760), + [sym__fenced_code_block_start_tilde] = ACTIONS(1760), + [sym__blank_line_start] = ACTIONS(1760), + [sym_minus_metadata] = ACTIONS(1760), + [sym__pipe_table_start] = ACTIONS(1760), + [sym__fenced_div_start] = ACTIONS(1760), + [sym__fenced_div_end] = ACTIONS(1760), + [sym_ref_id_specifier] = ACTIONS(1760), + [sym__display_math_state_track_marker] = ACTIONS(1760), + [sym__inline_math_state_track_marker] = ACTIONS(1760), + [sym__code_span_start] = ACTIONS(1760), + [sym__html_comment] = ACTIONS(1760), + [sym_raw_specifier] = ACTIONS(1760), + [sym__autolink] = ACTIONS(1760), }, [STATE(250)] = { [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_BSLASH] = ACTIONS(1574), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1572), - [sym__escaped_characters] = ACTIONS(1572), - [sym__word] = ACTIONS(1572), - [sym__soft_line_ending] = ACTIONS(1572), - [sym__block_close] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1574), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1574), + [sym__escaped_characters] = ACTIONS(1574), + [sym__word] = ACTIONS(1574), + [sym__soft_line_ending] = ACTIONS(1574), + [sym__block_close] = ACTIONS(1574), [sym_block_continuation] = ACTIONS(1762), - [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), - [sym__code_span_start] = ACTIONS(1572), - [sym__html_comment] = ACTIONS(1572), - [sym_raw_specifier] = ACTIONS(1572), - [sym__autolink] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1574), + [sym__indented_chunk_start] = ACTIONS(1574), + [sym_atx_h1_marker] = ACTIONS(1574), + [sym_atx_h2_marker] = ACTIONS(1574), + [sym_atx_h3_marker] = ACTIONS(1574), + [sym_atx_h4_marker] = ACTIONS(1574), + [sym_atx_h5_marker] = ACTIONS(1574), + [sym_atx_h6_marker] = ACTIONS(1574), + [sym__thematic_break] = ACTIONS(1574), + [sym__list_marker_minus] = ACTIONS(1574), + [sym__list_marker_plus] = ACTIONS(1574), + [sym__list_marker_star] = ACTIONS(1574), + [sym__list_marker_parenthesis] = ACTIONS(1574), + [sym__list_marker_dot] = ACTIONS(1574), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_example] = ACTIONS(1574), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1574), + [sym__fenced_code_block_start_backtick] = ACTIONS(1574), + [sym__fenced_code_block_start_tilde] = ACTIONS(1574), + [sym__blank_line_start] = ACTIONS(1574), + [sym_minus_metadata] = ACTIONS(1574), + [sym__pipe_table_start] = ACTIONS(1574), + [sym__fenced_div_start] = ACTIONS(1574), + [sym_ref_id_specifier] = ACTIONS(1574), + [sym__display_math_state_track_marker] = ACTIONS(1574), + [sym__inline_math_state_track_marker] = ACTIONS(1574), + [sym__code_span_start] = ACTIONS(1574), + [sym__html_comment] = ACTIONS(1574), + [sym_raw_specifier] = ACTIONS(1574), + [sym__autolink] = ACTIONS(1574), }, [STATE(251)] = { [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_BSLASH] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym__] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1764), - [sym__escaped_characters] = ACTIONS(1764), - [sym__word] = ACTIONS(1764), - [sym__soft_line_ending] = ACTIONS(1764), - [sym__block_close] = ACTIONS(1764), - [sym__block_quote_start] = ACTIONS(1764), - [sym__indented_chunk_start] = ACTIONS(1764), - [sym_atx_h1_marker] = ACTIONS(1764), - [sym_atx_h2_marker] = ACTIONS(1764), - [sym_atx_h3_marker] = ACTIONS(1764), - [sym_atx_h4_marker] = ACTIONS(1764), - [sym_atx_h5_marker] = ACTIONS(1764), - [sym_atx_h6_marker] = ACTIONS(1764), - [sym__thematic_break] = ACTIONS(1764), - [sym__list_marker_minus] = ACTIONS(1764), - [sym__list_marker_plus] = ACTIONS(1764), - [sym__list_marker_star] = ACTIONS(1764), - [sym__list_marker_parenthesis] = ACTIONS(1764), - [sym__list_marker_dot] = ACTIONS(1764), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_example] = ACTIONS(1764), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1764), - [sym__fenced_code_block_start_backtick] = ACTIONS(1764), - [sym__fenced_code_block_start_tilde] = ACTIONS(1764), - [sym__blank_line_start] = ACTIONS(1764), - [sym_minus_metadata] = ACTIONS(1764), - [sym__pipe_table_start] = ACTIONS(1764), - [sym__fenced_div_start] = ACTIONS(1764), - [sym__fenced_div_end] = ACTIONS(1764), - [sym_ref_id_specifier] = ACTIONS(1764), - [sym__display_math_state_track_marker] = ACTIONS(1764), - [sym__inline_math_state_track_marker] = ACTIONS(1764), - [sym__code_span_start] = ACTIONS(1764), - [sym__html_comment] = ACTIONS(1764), - [sym_raw_specifier] = ACTIONS(1764), - [sym__autolink] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1766), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_BSLASH] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym__] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1766), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1766), + [sym__escaped_characters] = ACTIONS(1766), + [sym__word] = ACTIONS(1766), + [sym__soft_line_ending] = ACTIONS(1766), + [sym__block_close] = ACTIONS(1766), + [sym__block_quote_start] = ACTIONS(1766), + [sym__indented_chunk_start] = ACTIONS(1766), + [sym_atx_h1_marker] = ACTIONS(1766), + [sym_atx_h2_marker] = ACTIONS(1766), + [sym_atx_h3_marker] = ACTIONS(1766), + [sym_atx_h4_marker] = ACTIONS(1766), + [sym_atx_h5_marker] = ACTIONS(1766), + [sym_atx_h6_marker] = ACTIONS(1766), + [sym__thematic_break] = ACTIONS(1766), + [sym__list_marker_minus] = ACTIONS(1766), + [sym__list_marker_plus] = ACTIONS(1766), + [sym__list_marker_star] = ACTIONS(1766), + [sym__list_marker_parenthesis] = ACTIONS(1766), + [sym__list_marker_dot] = ACTIONS(1766), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_example] = ACTIONS(1766), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1766), + [sym__fenced_code_block_start_backtick] = ACTIONS(1766), + [sym__fenced_code_block_start_tilde] = ACTIONS(1766), + [sym__blank_line_start] = ACTIONS(1766), + [sym_minus_metadata] = ACTIONS(1766), + [sym__pipe_table_start] = ACTIONS(1766), + [sym__fenced_div_start] = ACTIONS(1766), + [sym__fenced_div_end] = ACTIONS(1766), + [sym_ref_id_specifier] = ACTIONS(1766), + [sym__display_math_state_track_marker] = ACTIONS(1766), + [sym__inline_math_state_track_marker] = ACTIONS(1766), + [sym__code_span_start] = ACTIONS(1766), + [sym__html_comment] = ACTIONS(1766), + [sym_raw_specifier] = ACTIONS(1766), + [sym__autolink] = ACTIONS(1766), }, [STATE(252)] = { [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1768), - [anon_sym_EQ] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_DOT] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_QMARK] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_RBRACK] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym__] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1768), - [sym__escaped_characters] = ACTIONS(1768), - [sym__word] = ACTIONS(1768), - [sym__soft_line_ending] = ACTIONS(1768), - [sym__block_close] = ACTIONS(1768), - [sym__block_quote_start] = ACTIONS(1768), - [sym__indented_chunk_start] = ACTIONS(1768), - [sym_atx_h1_marker] = ACTIONS(1768), - [sym_atx_h2_marker] = ACTIONS(1768), - [sym_atx_h3_marker] = ACTIONS(1768), - [sym_atx_h4_marker] = ACTIONS(1768), - [sym_atx_h5_marker] = ACTIONS(1768), - [sym_atx_h6_marker] = ACTIONS(1768), - [sym__thematic_break] = ACTIONS(1768), - [sym__list_marker_minus] = ACTIONS(1768), - [sym__list_marker_plus] = ACTIONS(1768), - [sym__list_marker_star] = ACTIONS(1768), - [sym__list_marker_parenthesis] = ACTIONS(1768), - [sym__list_marker_dot] = ACTIONS(1768), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_example] = ACTIONS(1768), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1768), - [sym__fenced_code_block_start_backtick] = ACTIONS(1768), - [sym__fenced_code_block_start_tilde] = ACTIONS(1768), - [sym__blank_line_start] = ACTIONS(1768), - [sym_minus_metadata] = ACTIONS(1768), - [sym__pipe_table_start] = ACTIONS(1768), - [sym__fenced_div_start] = ACTIONS(1768), - [sym__fenced_div_end] = ACTIONS(1768), - [sym_ref_id_specifier] = ACTIONS(1768), - [sym__display_math_state_track_marker] = ACTIONS(1768), - [sym__inline_math_state_track_marker] = ACTIONS(1768), - [sym__code_span_start] = ACTIONS(1768), - [sym__html_comment] = ACTIONS(1768), - [sym_raw_specifier] = ACTIONS(1768), - [sym__autolink] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1770), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_BSLASH] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym__] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1770), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1770), + [sym__escaped_characters] = ACTIONS(1770), + [sym__word] = ACTIONS(1770), + [sym__soft_line_ending] = ACTIONS(1770), + [sym__block_close] = ACTIONS(1770), + [sym__block_quote_start] = ACTIONS(1770), + [sym__indented_chunk_start] = ACTIONS(1770), + [sym_atx_h1_marker] = ACTIONS(1770), + [sym_atx_h2_marker] = ACTIONS(1770), + [sym_atx_h3_marker] = ACTIONS(1770), + [sym_atx_h4_marker] = ACTIONS(1770), + [sym_atx_h5_marker] = ACTIONS(1770), + [sym_atx_h6_marker] = ACTIONS(1770), + [sym__thematic_break] = ACTIONS(1770), + [sym__list_marker_minus] = ACTIONS(1770), + [sym__list_marker_plus] = ACTIONS(1770), + [sym__list_marker_star] = ACTIONS(1770), + [sym__list_marker_parenthesis] = ACTIONS(1770), + [sym__list_marker_dot] = ACTIONS(1770), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_example] = ACTIONS(1770), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1770), + [sym__fenced_code_block_start_backtick] = ACTIONS(1770), + [sym__fenced_code_block_start_tilde] = ACTIONS(1770), + [sym__blank_line_start] = ACTIONS(1770), + [sym_minus_metadata] = ACTIONS(1770), + [sym__pipe_table_start] = ACTIONS(1770), + [sym__fenced_div_start] = ACTIONS(1770), + [sym__fenced_div_end] = ACTIONS(1770), + [sym_ref_id_specifier] = ACTIONS(1770), + [sym__display_math_state_track_marker] = ACTIONS(1770), + [sym__inline_math_state_track_marker] = ACTIONS(1770), + [sym__code_span_start] = ACTIONS(1770), + [sym__html_comment] = ACTIONS(1770), + [sym_raw_specifier] = ACTIONS(1770), + [sym__autolink] = ACTIONS(1770), }, [STATE(253)] = { [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_BSLASH] = ACTIONS(1774), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym__] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1772), - [sym__escaped_characters] = ACTIONS(1772), - [sym__word] = ACTIONS(1772), - [sym__soft_line_ending] = ACTIONS(1772), - [sym__block_close] = ACTIONS(1772), - [sym__block_quote_start] = ACTIONS(1772), - [sym__indented_chunk_start] = ACTIONS(1772), - [sym_atx_h1_marker] = ACTIONS(1772), - [sym_atx_h2_marker] = ACTIONS(1772), - [sym_atx_h3_marker] = ACTIONS(1772), - [sym_atx_h4_marker] = ACTIONS(1772), - [sym_atx_h5_marker] = ACTIONS(1772), - [sym_atx_h6_marker] = ACTIONS(1772), - [sym__thematic_break] = ACTIONS(1772), - [sym__list_marker_minus] = ACTIONS(1772), - [sym__list_marker_plus] = ACTIONS(1772), - [sym__list_marker_star] = ACTIONS(1772), - [sym__list_marker_parenthesis] = ACTIONS(1772), - [sym__list_marker_dot] = ACTIONS(1772), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_example] = ACTIONS(1772), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1772), - [sym__fenced_code_block_start_backtick] = ACTIONS(1772), - [sym__fenced_code_block_start_tilde] = ACTIONS(1772), - [sym__blank_line_start] = ACTIONS(1772), - [sym_minus_metadata] = ACTIONS(1772), - [sym__pipe_table_start] = ACTIONS(1772), - [sym__fenced_div_start] = ACTIONS(1772), - [sym__fenced_div_end] = ACTIONS(1772), - [sym_ref_id_specifier] = ACTIONS(1772), - [sym__display_math_state_track_marker] = ACTIONS(1772), - [sym__inline_math_state_track_marker] = ACTIONS(1772), - [sym__code_span_start] = ACTIONS(1772), - [sym__html_comment] = ACTIONS(1772), - [sym_raw_specifier] = ACTIONS(1772), - [sym__autolink] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_BSLASH] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym__] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1774), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1774), + [sym__escaped_characters] = ACTIONS(1774), + [sym__word] = ACTIONS(1774), + [sym__soft_line_ending] = ACTIONS(1774), + [sym__block_close] = ACTIONS(1774), + [sym__block_quote_start] = ACTIONS(1774), + [sym__indented_chunk_start] = ACTIONS(1774), + [sym_atx_h1_marker] = ACTIONS(1774), + [sym_atx_h2_marker] = ACTIONS(1774), + [sym_atx_h3_marker] = ACTIONS(1774), + [sym_atx_h4_marker] = ACTIONS(1774), + [sym_atx_h5_marker] = ACTIONS(1774), + [sym_atx_h6_marker] = ACTIONS(1774), + [sym__thematic_break] = ACTIONS(1774), + [sym__list_marker_minus] = ACTIONS(1774), + [sym__list_marker_plus] = ACTIONS(1774), + [sym__list_marker_star] = ACTIONS(1774), + [sym__list_marker_parenthesis] = ACTIONS(1774), + [sym__list_marker_dot] = ACTIONS(1774), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_example] = ACTIONS(1774), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1774), + [sym__fenced_code_block_start_backtick] = ACTIONS(1774), + [sym__fenced_code_block_start_tilde] = ACTIONS(1774), + [sym__blank_line_start] = ACTIONS(1774), + [sym_minus_metadata] = ACTIONS(1774), + [sym__pipe_table_start] = ACTIONS(1774), + [sym__fenced_div_start] = ACTIONS(1774), + [sym__fenced_div_end] = ACTIONS(1774), + [sym_ref_id_specifier] = ACTIONS(1774), + [sym__display_math_state_track_marker] = ACTIONS(1774), + [sym__inline_math_state_track_marker] = ACTIONS(1774), + [sym__code_span_start] = ACTIONS(1774), + [sym__html_comment] = ACTIONS(1774), + [sym_raw_specifier] = ACTIONS(1774), + [sym__autolink] = ACTIONS(1774), }, [STATE(254)] = { [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1776), - [anon_sym_EQ] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_BSLASH] = ACTIONS(1778), - [anon_sym_RBRACK] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym__] = ACTIONS(1776), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1776), - [sym__escaped_characters] = ACTIONS(1776), - [sym__word] = ACTIONS(1776), - [sym__soft_line_ending] = ACTIONS(1776), - [sym__block_close] = ACTIONS(1776), - [sym__block_quote_start] = ACTIONS(1776), - [sym__indented_chunk_start] = ACTIONS(1776), - [sym_atx_h1_marker] = ACTIONS(1776), - [sym_atx_h2_marker] = ACTIONS(1776), - [sym_atx_h3_marker] = ACTIONS(1776), - [sym_atx_h4_marker] = ACTIONS(1776), - [sym_atx_h5_marker] = ACTIONS(1776), - [sym_atx_h6_marker] = ACTIONS(1776), - [sym__thematic_break] = ACTIONS(1776), - [sym__list_marker_minus] = ACTIONS(1776), - [sym__list_marker_plus] = ACTIONS(1776), - [sym__list_marker_star] = ACTIONS(1776), - [sym__list_marker_parenthesis] = ACTIONS(1776), - [sym__list_marker_dot] = ACTIONS(1776), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_example] = ACTIONS(1776), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1776), - [sym__fenced_code_block_start_backtick] = ACTIONS(1776), - [sym__fenced_code_block_start_tilde] = ACTIONS(1776), - [sym__blank_line_start] = ACTIONS(1776), - [sym_minus_metadata] = ACTIONS(1776), - [sym__pipe_table_start] = ACTIONS(1776), - [sym__fenced_div_start] = ACTIONS(1776), - [sym__fenced_div_end] = ACTIONS(1776), - [sym_ref_id_specifier] = ACTIONS(1776), - [sym__display_math_state_track_marker] = ACTIONS(1776), - [sym__inline_math_state_track_marker] = ACTIONS(1776), - [sym__code_span_start] = ACTIONS(1776), - [sym__html_comment] = ACTIONS(1776), - [sym_raw_specifier] = ACTIONS(1776), - [sym__autolink] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1778), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_AT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_BSLASH] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym__] = ACTIONS(1778), + [anon_sym_BQUOTE] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1778), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1778), + [sym__escaped_characters] = ACTIONS(1778), + [sym__word] = ACTIONS(1778), + [sym__soft_line_ending] = ACTIONS(1778), + [sym__block_close] = ACTIONS(1778), + [sym__block_quote_start] = ACTIONS(1778), + [sym__indented_chunk_start] = ACTIONS(1778), + [sym_atx_h1_marker] = ACTIONS(1778), + [sym_atx_h2_marker] = ACTIONS(1778), + [sym_atx_h3_marker] = ACTIONS(1778), + [sym_atx_h4_marker] = ACTIONS(1778), + [sym_atx_h5_marker] = ACTIONS(1778), + [sym_atx_h6_marker] = ACTIONS(1778), + [sym__thematic_break] = ACTIONS(1778), + [sym__list_marker_minus] = ACTIONS(1778), + [sym__list_marker_plus] = ACTIONS(1778), + [sym__list_marker_star] = ACTIONS(1778), + [sym__list_marker_parenthesis] = ACTIONS(1778), + [sym__list_marker_dot] = ACTIONS(1778), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_example] = ACTIONS(1778), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1778), + [sym__fenced_code_block_start_backtick] = ACTIONS(1778), + [sym__fenced_code_block_start_tilde] = ACTIONS(1778), + [sym__blank_line_start] = ACTIONS(1778), + [sym_minus_metadata] = ACTIONS(1778), + [sym__pipe_table_start] = ACTIONS(1778), + [sym__fenced_div_start] = ACTIONS(1778), + [sym__fenced_div_end] = ACTIONS(1778), + [sym_ref_id_specifier] = ACTIONS(1778), + [sym__display_math_state_track_marker] = ACTIONS(1778), + [sym__inline_math_state_track_marker] = ACTIONS(1778), + [sym__code_span_start] = ACTIONS(1778), + [sym__html_comment] = ACTIONS(1778), + [sym_raw_specifier] = ACTIONS(1778), + [sym__autolink] = ACTIONS(1778), }, [STATE(255)] = { [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_BSLASH] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_BQUOTE] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1780), - [sym__escaped_characters] = ACTIONS(1780), - [sym__word] = ACTIONS(1780), - [sym__soft_line_ending] = ACTIONS(1780), - [sym__block_close] = ACTIONS(1780), - [sym__block_quote_start] = ACTIONS(1780), - [sym__indented_chunk_start] = ACTIONS(1780), - [sym_atx_h1_marker] = ACTIONS(1780), - [sym_atx_h2_marker] = ACTIONS(1780), - [sym_atx_h3_marker] = ACTIONS(1780), - [sym_atx_h4_marker] = ACTIONS(1780), - [sym_atx_h5_marker] = ACTIONS(1780), - [sym_atx_h6_marker] = ACTIONS(1780), - [sym__thematic_break] = ACTIONS(1780), - [sym__list_marker_minus] = ACTIONS(1780), - [sym__list_marker_plus] = ACTIONS(1780), - [sym__list_marker_star] = ACTIONS(1780), - [sym__list_marker_parenthesis] = ACTIONS(1780), - [sym__list_marker_dot] = ACTIONS(1780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_example] = ACTIONS(1780), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1780), - [sym__fenced_code_block_start_backtick] = ACTIONS(1780), - [sym__fenced_code_block_start_tilde] = ACTIONS(1780), - [sym__blank_line_start] = ACTIONS(1780), - [sym_minus_metadata] = ACTIONS(1780), - [sym__pipe_table_start] = ACTIONS(1780), - [sym__fenced_div_start] = ACTIONS(1780), - [sym__fenced_div_end] = ACTIONS(1780), - [sym_ref_id_specifier] = ACTIONS(1780), - [sym__display_math_state_track_marker] = ACTIONS(1780), - [sym__inline_math_state_track_marker] = ACTIONS(1780), - [sym__code_span_start] = ACTIONS(1780), - [sym__html_comment] = ACTIONS(1780), - [sym_raw_specifier] = ACTIONS(1780), - [sym__autolink] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1782), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_QMARK] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(1780), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym__] = ACTIONS(1782), + [anon_sym_BQUOTE] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1782), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1782), + [sym__escaped_characters] = ACTIONS(1782), + [sym__word] = ACTIONS(1782), + [sym__soft_line_ending] = ACTIONS(1782), + [sym__block_close] = ACTIONS(1782), + [sym__block_quote_start] = ACTIONS(1782), + [sym__indented_chunk_start] = ACTIONS(1782), + [sym_atx_h1_marker] = ACTIONS(1782), + [sym_atx_h2_marker] = ACTIONS(1782), + [sym_atx_h3_marker] = ACTIONS(1782), + [sym_atx_h4_marker] = ACTIONS(1782), + [sym_atx_h5_marker] = ACTIONS(1782), + [sym_atx_h6_marker] = ACTIONS(1782), + [sym__thematic_break] = ACTIONS(1782), + [sym__list_marker_minus] = ACTIONS(1782), + [sym__list_marker_plus] = ACTIONS(1782), + [sym__list_marker_star] = ACTIONS(1782), + [sym__list_marker_parenthesis] = ACTIONS(1782), + [sym__list_marker_dot] = ACTIONS(1782), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_example] = ACTIONS(1782), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1782), + [sym__fenced_code_block_start_backtick] = ACTIONS(1782), + [sym__fenced_code_block_start_tilde] = ACTIONS(1782), + [sym__blank_line_start] = ACTIONS(1782), + [sym_minus_metadata] = ACTIONS(1782), + [sym__pipe_table_start] = ACTIONS(1782), + [sym__fenced_div_start] = ACTIONS(1782), + [sym__fenced_div_end] = ACTIONS(1782), + [sym_ref_id_specifier] = ACTIONS(1782), + [sym__display_math_state_track_marker] = ACTIONS(1782), + [sym__inline_math_state_track_marker] = ACTIONS(1782), + [sym__code_span_start] = ACTIONS(1782), + [sym__html_comment] = ACTIONS(1782), + [sym_raw_specifier] = ACTIONS(1782), + [sym__autolink] = ACTIONS(1782), }, [STATE(256)] = { [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_BSLASH] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1784), - [anon_sym__] = ACTIONS(1784), - [anon_sym_BQUOTE] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1784), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1784), - [sym__escaped_characters] = ACTIONS(1784), - [sym__word] = ACTIONS(1784), - [sym__soft_line_ending] = ACTIONS(1784), - [sym__block_close] = ACTIONS(1784), - [sym__block_quote_start] = ACTIONS(1784), - [sym__indented_chunk_start] = ACTIONS(1784), - [sym_atx_h1_marker] = ACTIONS(1784), - [sym_atx_h2_marker] = ACTIONS(1784), - [sym_atx_h3_marker] = ACTIONS(1784), - [sym_atx_h4_marker] = ACTIONS(1784), - [sym_atx_h5_marker] = ACTIONS(1784), - [sym_atx_h6_marker] = ACTIONS(1784), - [sym__thematic_break] = ACTIONS(1784), - [sym__list_marker_minus] = ACTIONS(1784), - [sym__list_marker_plus] = ACTIONS(1784), - [sym__list_marker_star] = ACTIONS(1784), - [sym__list_marker_parenthesis] = ACTIONS(1784), - [sym__list_marker_dot] = ACTIONS(1784), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_example] = ACTIONS(1784), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1784), - [sym__fenced_code_block_start_backtick] = ACTIONS(1784), - [sym__fenced_code_block_start_tilde] = ACTIONS(1784), - [sym__blank_line_start] = ACTIONS(1784), - [sym_minus_metadata] = ACTIONS(1784), - [sym__pipe_table_start] = ACTIONS(1784), - [sym__fenced_div_start] = ACTIONS(1784), - [sym__fenced_div_end] = ACTIONS(1784), - [sym_ref_id_specifier] = ACTIONS(1784), - [sym__display_math_state_track_marker] = ACTIONS(1784), - [sym__inline_math_state_track_marker] = ACTIONS(1784), - [sym__code_span_start] = ACTIONS(1784), - [sym__html_comment] = ACTIONS(1784), - [sym_raw_specifier] = ACTIONS(1784), - [sym__autolink] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1786), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1786), + [anon_sym_SLASH] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1786), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_BSLASH] = ACTIONS(1784), + [anon_sym_RBRACK] = ACTIONS(1786), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym__] = ACTIONS(1786), + [anon_sym_BQUOTE] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1786), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1786), + [sym__escaped_characters] = ACTIONS(1786), + [sym__word] = ACTIONS(1786), + [sym__soft_line_ending] = ACTIONS(1786), + [sym__block_close] = ACTIONS(1786), + [sym__block_quote_start] = ACTIONS(1786), + [sym__indented_chunk_start] = ACTIONS(1786), + [sym_atx_h1_marker] = ACTIONS(1786), + [sym_atx_h2_marker] = ACTIONS(1786), + [sym_atx_h3_marker] = ACTIONS(1786), + [sym_atx_h4_marker] = ACTIONS(1786), + [sym_atx_h5_marker] = ACTIONS(1786), + [sym_atx_h6_marker] = ACTIONS(1786), + [sym__thematic_break] = ACTIONS(1786), + [sym__list_marker_minus] = ACTIONS(1786), + [sym__list_marker_plus] = ACTIONS(1786), + [sym__list_marker_star] = ACTIONS(1786), + [sym__list_marker_parenthesis] = ACTIONS(1786), + [sym__list_marker_dot] = ACTIONS(1786), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_example] = ACTIONS(1786), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1786), + [sym__fenced_code_block_start_backtick] = ACTIONS(1786), + [sym__fenced_code_block_start_tilde] = ACTIONS(1786), + [sym__blank_line_start] = ACTIONS(1786), + [sym_minus_metadata] = ACTIONS(1786), + [sym__pipe_table_start] = ACTIONS(1786), + [sym__fenced_div_start] = ACTIONS(1786), + [sym__fenced_div_end] = ACTIONS(1786), + [sym_ref_id_specifier] = ACTIONS(1786), + [sym__display_math_state_track_marker] = ACTIONS(1786), + [sym__inline_math_state_track_marker] = ACTIONS(1786), + [sym__code_span_start] = ACTIONS(1786), + [sym__html_comment] = ACTIONS(1786), + [sym_raw_specifier] = ACTIONS(1786), + [sym__autolink] = ACTIONS(1786), }, [STATE(257)] = { [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(1788), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_RBRACK] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym__] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1788), - [sym__escaped_characters] = ACTIONS(1788), - [sym__word] = ACTIONS(1788), - [sym__soft_line_ending] = ACTIONS(1788), - [sym__block_close] = ACTIONS(1788), - [sym__block_quote_start] = ACTIONS(1788), - [sym__indented_chunk_start] = ACTIONS(1788), - [sym_atx_h1_marker] = ACTIONS(1788), - [sym_atx_h2_marker] = ACTIONS(1788), - [sym_atx_h3_marker] = ACTIONS(1788), - [sym_atx_h4_marker] = ACTIONS(1788), - [sym_atx_h5_marker] = ACTIONS(1788), - [sym_atx_h6_marker] = ACTIONS(1788), - [sym__thematic_break] = ACTIONS(1788), - [sym__list_marker_minus] = ACTIONS(1788), - [sym__list_marker_plus] = ACTIONS(1788), - [sym__list_marker_star] = ACTIONS(1788), - [sym__list_marker_parenthesis] = ACTIONS(1788), - [sym__list_marker_dot] = ACTIONS(1788), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_example] = ACTIONS(1788), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1788), - [sym__fenced_code_block_start_backtick] = ACTIONS(1788), - [sym__fenced_code_block_start_tilde] = ACTIONS(1788), - [sym__blank_line_start] = ACTIONS(1788), - [sym_minus_metadata] = ACTIONS(1788), - [sym__pipe_table_start] = ACTIONS(1788), - [sym__fenced_div_start] = ACTIONS(1788), - [sym__fenced_div_end] = ACTIONS(1788), - [sym_ref_id_specifier] = ACTIONS(1788), - [sym__display_math_state_track_marker] = ACTIONS(1788), - [sym__inline_math_state_track_marker] = ACTIONS(1788), - [sym__code_span_start] = ACTIONS(1788), - [sym__html_comment] = ACTIONS(1788), - [sym_raw_specifier] = ACTIONS(1788), - [sym__autolink] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1790), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_QMARK] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_BSLASH] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym__] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1790), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1790), + [sym__escaped_characters] = ACTIONS(1790), + [sym__word] = ACTIONS(1790), + [sym__soft_line_ending] = ACTIONS(1790), + [sym__block_close] = ACTIONS(1790), + [sym__block_quote_start] = ACTIONS(1790), + [sym__indented_chunk_start] = ACTIONS(1790), + [sym_atx_h1_marker] = ACTIONS(1790), + [sym_atx_h2_marker] = ACTIONS(1790), + [sym_atx_h3_marker] = ACTIONS(1790), + [sym_atx_h4_marker] = ACTIONS(1790), + [sym_atx_h5_marker] = ACTIONS(1790), + [sym_atx_h6_marker] = ACTIONS(1790), + [sym__thematic_break] = ACTIONS(1790), + [sym__list_marker_minus] = ACTIONS(1790), + [sym__list_marker_plus] = ACTIONS(1790), + [sym__list_marker_star] = ACTIONS(1790), + [sym__list_marker_parenthesis] = ACTIONS(1790), + [sym__list_marker_dot] = ACTIONS(1790), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_example] = ACTIONS(1790), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1790), + [sym__fenced_code_block_start_backtick] = ACTIONS(1790), + [sym__fenced_code_block_start_tilde] = ACTIONS(1790), + [sym__blank_line_start] = ACTIONS(1790), + [sym_minus_metadata] = ACTIONS(1790), + [sym__pipe_table_start] = ACTIONS(1790), + [sym__fenced_div_start] = ACTIONS(1790), + [sym__fenced_div_end] = ACTIONS(1790), + [sym_ref_id_specifier] = ACTIONS(1790), + [sym__display_math_state_track_marker] = ACTIONS(1790), + [sym__inline_math_state_track_marker] = ACTIONS(1790), + [sym__code_span_start] = ACTIONS(1790), + [sym__html_comment] = ACTIONS(1790), + [sym_raw_specifier] = ACTIONS(1790), + [sym__autolink] = ACTIONS(1790), }, [STATE(258)] = { [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1792), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_BSLASH] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym__] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1792), - [sym__escaped_characters] = ACTIONS(1792), - [sym__word] = ACTIONS(1792), - [sym__soft_line_ending] = ACTIONS(1792), - [sym__block_close] = ACTIONS(1792), - [sym__block_quote_start] = ACTIONS(1792), - [sym__indented_chunk_start] = ACTIONS(1792), - [sym_atx_h1_marker] = ACTIONS(1792), - [sym_atx_h2_marker] = ACTIONS(1792), - [sym_atx_h3_marker] = ACTIONS(1792), - [sym_atx_h4_marker] = ACTIONS(1792), - [sym_atx_h5_marker] = ACTIONS(1792), - [sym_atx_h6_marker] = ACTIONS(1792), - [sym__thematic_break] = ACTIONS(1792), - [sym__list_marker_minus] = ACTIONS(1792), - [sym__list_marker_plus] = ACTIONS(1792), - [sym__list_marker_star] = ACTIONS(1792), - [sym__list_marker_parenthesis] = ACTIONS(1792), - [sym__list_marker_dot] = ACTIONS(1792), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_example] = ACTIONS(1792), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1792), - [sym__fenced_code_block_start_backtick] = ACTIONS(1792), - [sym__fenced_code_block_start_tilde] = ACTIONS(1792), - [sym__blank_line_start] = ACTIONS(1792), - [sym_minus_metadata] = ACTIONS(1792), - [sym__pipe_table_start] = ACTIONS(1792), - [sym__fenced_div_start] = ACTIONS(1792), - [sym__fenced_div_end] = ACTIONS(1792), - [sym_ref_id_specifier] = ACTIONS(1792), - [sym__display_math_state_track_marker] = ACTIONS(1792), - [sym__inline_math_state_track_marker] = ACTIONS(1792), - [sym__code_span_start] = ACTIONS(1792), - [sym__html_comment] = ACTIONS(1792), - [sym_raw_specifier] = ACTIONS(1792), - [sym__autolink] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1794), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1794), + [anon_sym_EQ] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_PERCENT] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_COMMA] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_QMARK] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_BSLASH] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1794), + [anon_sym__] = ACTIONS(1794), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1794), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1794), + [sym__escaped_characters] = ACTIONS(1794), + [sym__word] = ACTIONS(1794), + [sym__soft_line_ending] = ACTIONS(1794), + [sym__block_close] = ACTIONS(1794), + [sym__block_quote_start] = ACTIONS(1794), + [sym__indented_chunk_start] = ACTIONS(1794), + [sym_atx_h1_marker] = ACTIONS(1794), + [sym_atx_h2_marker] = ACTIONS(1794), + [sym_atx_h3_marker] = ACTIONS(1794), + [sym_atx_h4_marker] = ACTIONS(1794), + [sym_atx_h5_marker] = ACTIONS(1794), + [sym_atx_h6_marker] = ACTIONS(1794), + [sym__thematic_break] = ACTIONS(1794), + [sym__list_marker_minus] = ACTIONS(1794), + [sym__list_marker_plus] = ACTIONS(1794), + [sym__list_marker_star] = ACTIONS(1794), + [sym__list_marker_parenthesis] = ACTIONS(1794), + [sym__list_marker_dot] = ACTIONS(1794), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_example] = ACTIONS(1794), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1794), + [sym__fenced_code_block_start_backtick] = ACTIONS(1794), + [sym__fenced_code_block_start_tilde] = ACTIONS(1794), + [sym__blank_line_start] = ACTIONS(1794), + [sym_minus_metadata] = ACTIONS(1794), + [sym__pipe_table_start] = ACTIONS(1794), + [sym__fenced_div_start] = ACTIONS(1794), + [sym__fenced_div_end] = ACTIONS(1794), + [sym_ref_id_specifier] = ACTIONS(1794), + [sym__display_math_state_track_marker] = ACTIONS(1794), + [sym__inline_math_state_track_marker] = ACTIONS(1794), + [sym__code_span_start] = ACTIONS(1794), + [sym__html_comment] = ACTIONS(1794), + [sym_raw_specifier] = ACTIONS(1794), + [sym__autolink] = ACTIONS(1794), }, [STATE(259)] = { [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_QMARK] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_BSLASH] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym__] = ACTIONS(1796), - [anon_sym_BQUOTE] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1796), - [sym__escaped_characters] = ACTIONS(1796), - [sym__word] = ACTIONS(1796), - [sym__soft_line_ending] = ACTIONS(1796), - [sym__block_close] = ACTIONS(1796), - [sym__block_quote_start] = ACTIONS(1796), - [sym__indented_chunk_start] = ACTIONS(1796), - [sym_atx_h1_marker] = ACTIONS(1796), - [sym_atx_h2_marker] = ACTIONS(1796), - [sym_atx_h3_marker] = ACTIONS(1796), - [sym_atx_h4_marker] = ACTIONS(1796), - [sym_atx_h5_marker] = ACTIONS(1796), - [sym_atx_h6_marker] = ACTIONS(1796), - [sym__thematic_break] = ACTIONS(1796), - [sym__list_marker_minus] = ACTIONS(1796), - [sym__list_marker_plus] = ACTIONS(1796), - [sym__list_marker_star] = ACTIONS(1796), - [sym__list_marker_parenthesis] = ACTIONS(1796), - [sym__list_marker_dot] = ACTIONS(1796), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_example] = ACTIONS(1796), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1796), - [sym__fenced_code_block_start_backtick] = ACTIONS(1796), - [sym__fenced_code_block_start_tilde] = ACTIONS(1796), - [sym__blank_line_start] = ACTIONS(1796), - [sym_minus_metadata] = ACTIONS(1796), - [sym__pipe_table_start] = ACTIONS(1796), - [sym__fenced_div_start] = ACTIONS(1796), - [sym__fenced_div_end] = ACTIONS(1796), - [sym_ref_id_specifier] = ACTIONS(1796), - [sym__display_math_state_track_marker] = ACTIONS(1796), - [sym__inline_math_state_track_marker] = ACTIONS(1796), - [sym__code_span_start] = ACTIONS(1796), - [sym__html_comment] = ACTIONS(1796), - [sym_raw_specifier] = ACTIONS(1796), - [sym__autolink] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1798), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_QMARK] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_BSLASH] = ACTIONS(1796), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym__] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1798), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1798), + [sym__escaped_characters] = ACTIONS(1798), + [sym__word] = ACTIONS(1798), + [sym__soft_line_ending] = ACTIONS(1798), + [sym__block_close] = ACTIONS(1798), + [sym__block_quote_start] = ACTIONS(1798), + [sym__indented_chunk_start] = ACTIONS(1798), + [sym_atx_h1_marker] = ACTIONS(1798), + [sym_atx_h2_marker] = ACTIONS(1798), + [sym_atx_h3_marker] = ACTIONS(1798), + [sym_atx_h4_marker] = ACTIONS(1798), + [sym_atx_h5_marker] = ACTIONS(1798), + [sym_atx_h6_marker] = ACTIONS(1798), + [sym__thematic_break] = ACTIONS(1798), + [sym__list_marker_minus] = ACTIONS(1798), + [sym__list_marker_plus] = ACTIONS(1798), + [sym__list_marker_star] = ACTIONS(1798), + [sym__list_marker_parenthesis] = ACTIONS(1798), + [sym__list_marker_dot] = ACTIONS(1798), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_example] = ACTIONS(1798), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1798), + [sym__fenced_code_block_start_backtick] = ACTIONS(1798), + [sym__fenced_code_block_start_tilde] = ACTIONS(1798), + [sym__blank_line_start] = ACTIONS(1798), + [sym_minus_metadata] = ACTIONS(1798), + [sym__pipe_table_start] = ACTIONS(1798), + [sym__fenced_div_start] = ACTIONS(1798), + [sym__fenced_div_end] = ACTIONS(1798), + [sym_ref_id_specifier] = ACTIONS(1798), + [sym__display_math_state_track_marker] = ACTIONS(1798), + [sym__inline_math_state_track_marker] = ACTIONS(1798), + [sym__code_span_start] = ACTIONS(1798), + [sym__html_comment] = ACTIONS(1798), + [sym_raw_specifier] = ACTIONS(1798), + [sym__autolink] = ACTIONS(1798), }, [STATE(260)] = { [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_BSLASH] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym__] = ACTIONS(1800), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1800), - [sym__escaped_characters] = ACTIONS(1800), - [sym__word] = ACTIONS(1800), - [sym__soft_line_ending] = ACTIONS(1800), - [sym__block_close] = ACTIONS(1800), - [sym__block_quote_start] = ACTIONS(1800), - [sym__indented_chunk_start] = ACTIONS(1800), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1800), - [sym__list_marker_minus] = ACTIONS(1800), - [sym__list_marker_plus] = ACTIONS(1800), - [sym__list_marker_star] = ACTIONS(1800), - [sym__list_marker_parenthesis] = ACTIONS(1800), - [sym__list_marker_dot] = ACTIONS(1800), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_example] = ACTIONS(1800), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1800), - [sym__fenced_code_block_start_backtick] = ACTIONS(1800), - [sym__fenced_code_block_start_tilde] = ACTIONS(1800), - [sym__blank_line_start] = ACTIONS(1800), - [sym_minus_metadata] = ACTIONS(1800), - [sym__pipe_table_start] = ACTIONS(1800), - [sym__fenced_div_start] = ACTIONS(1800), - [sym__fenced_div_end] = ACTIONS(1800), - [sym_ref_id_specifier] = ACTIONS(1800), - [sym__display_math_state_track_marker] = ACTIONS(1800), - [sym__inline_math_state_track_marker] = ACTIONS(1800), - [sym__code_span_start] = ACTIONS(1800), - [sym__html_comment] = ACTIONS(1800), - [sym_raw_specifier] = ACTIONS(1800), - [sym__autolink] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1802), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_BSLASH] = ACTIONS(1800), + [anon_sym_RBRACK] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym__] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1802), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1802), + [sym__escaped_characters] = ACTIONS(1802), + [sym__word] = ACTIONS(1802), + [sym__soft_line_ending] = ACTIONS(1802), + [sym__block_close] = ACTIONS(1802), + [sym__block_quote_start] = ACTIONS(1802), + [sym__indented_chunk_start] = ACTIONS(1802), + [sym_atx_h1_marker] = ACTIONS(1802), + [sym_atx_h2_marker] = ACTIONS(1802), + [sym_atx_h3_marker] = ACTIONS(1802), + [sym_atx_h4_marker] = ACTIONS(1802), + [sym_atx_h5_marker] = ACTIONS(1802), + [sym_atx_h6_marker] = ACTIONS(1802), + [sym__thematic_break] = ACTIONS(1802), + [sym__list_marker_minus] = ACTIONS(1802), + [sym__list_marker_plus] = ACTIONS(1802), + [sym__list_marker_star] = ACTIONS(1802), + [sym__list_marker_parenthesis] = ACTIONS(1802), + [sym__list_marker_dot] = ACTIONS(1802), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_example] = ACTIONS(1802), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1802), + [sym__fenced_code_block_start_backtick] = ACTIONS(1802), + [sym__fenced_code_block_start_tilde] = ACTIONS(1802), + [sym__blank_line_start] = ACTIONS(1802), + [sym_minus_metadata] = ACTIONS(1802), + [sym__pipe_table_start] = ACTIONS(1802), + [sym__fenced_div_start] = ACTIONS(1802), + [sym__fenced_div_end] = ACTIONS(1802), + [sym_ref_id_specifier] = ACTIONS(1802), + [sym__display_math_state_track_marker] = ACTIONS(1802), + [sym__inline_math_state_track_marker] = ACTIONS(1802), + [sym__code_span_start] = ACTIONS(1802), + [sym__html_comment] = ACTIONS(1802), + [sym_raw_specifier] = ACTIONS(1802), + [sym__autolink] = ACTIONS(1802), }, [STATE(261)] = { [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1804), - [anon_sym_EQ] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1804), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(1804), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_QMARK] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_BSLASH] = ACTIONS(1806), - [anon_sym_RBRACK] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym__] = ACTIONS(1804), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1804), - [sym__escaped_characters] = ACTIONS(1804), - [sym__word] = ACTIONS(1804), - [sym__soft_line_ending] = ACTIONS(1804), - [sym__block_close] = ACTIONS(1804), - [sym__block_quote_start] = ACTIONS(1804), - [sym__indented_chunk_start] = ACTIONS(1804), - [sym_atx_h1_marker] = ACTIONS(1804), - [sym_atx_h2_marker] = ACTIONS(1804), - [sym_atx_h3_marker] = ACTIONS(1804), - [sym_atx_h4_marker] = ACTIONS(1804), - [sym_atx_h5_marker] = ACTIONS(1804), - [sym_atx_h6_marker] = ACTIONS(1804), - [sym__thematic_break] = ACTIONS(1804), - [sym__list_marker_minus] = ACTIONS(1804), - [sym__list_marker_plus] = ACTIONS(1804), - [sym__list_marker_star] = ACTIONS(1804), - [sym__list_marker_parenthesis] = ACTIONS(1804), - [sym__list_marker_dot] = ACTIONS(1804), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_example] = ACTIONS(1804), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1804), - [sym__fenced_code_block_start_backtick] = ACTIONS(1804), - [sym__fenced_code_block_start_tilde] = ACTIONS(1804), - [sym__blank_line_start] = ACTIONS(1804), - [sym_minus_metadata] = ACTIONS(1804), - [sym__pipe_table_start] = ACTIONS(1804), - [sym__fenced_div_start] = ACTIONS(1804), - [sym__fenced_div_end] = ACTIONS(1804), - [sym_ref_id_specifier] = ACTIONS(1804), - [sym__display_math_state_track_marker] = ACTIONS(1804), - [sym__inline_math_state_track_marker] = ACTIONS(1804), - [sym__code_span_start] = ACTIONS(1804), - [sym__html_comment] = ACTIONS(1804), - [sym_raw_specifier] = ACTIONS(1804), - [sym__autolink] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1806), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1806), + [anon_sym_EQ] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_DOT] = ACTIONS(1806), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_QMARK] = ACTIONS(1806), + [anon_sym_AT] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_BSLASH] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym__] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1806), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1806), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1806), + [sym__escaped_characters] = ACTIONS(1806), + [sym__word] = ACTIONS(1806), + [sym__soft_line_ending] = ACTIONS(1806), + [sym__block_close] = ACTIONS(1806), + [sym__block_quote_start] = ACTIONS(1806), + [sym__indented_chunk_start] = ACTIONS(1806), + [sym_atx_h1_marker] = ACTIONS(1806), + [sym_atx_h2_marker] = ACTIONS(1806), + [sym_atx_h3_marker] = ACTIONS(1806), + [sym_atx_h4_marker] = ACTIONS(1806), + [sym_atx_h5_marker] = ACTIONS(1806), + [sym_atx_h6_marker] = ACTIONS(1806), + [sym__thematic_break] = ACTIONS(1806), + [sym__list_marker_minus] = ACTIONS(1806), + [sym__list_marker_plus] = ACTIONS(1806), + [sym__list_marker_star] = ACTIONS(1806), + [sym__list_marker_parenthesis] = ACTIONS(1806), + [sym__list_marker_dot] = ACTIONS(1806), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_example] = ACTIONS(1806), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1806), + [sym__fenced_code_block_start_backtick] = ACTIONS(1806), + [sym__fenced_code_block_start_tilde] = ACTIONS(1806), + [sym__blank_line_start] = ACTIONS(1806), + [sym_minus_metadata] = ACTIONS(1806), + [sym__pipe_table_start] = ACTIONS(1806), + [sym__fenced_div_start] = ACTIONS(1806), + [sym__fenced_div_end] = ACTIONS(1806), + [sym_ref_id_specifier] = ACTIONS(1806), + [sym__display_math_state_track_marker] = ACTIONS(1806), + [sym__inline_math_state_track_marker] = ACTIONS(1806), + [sym__code_span_start] = ACTIONS(1806), + [sym__html_comment] = ACTIONS(1806), + [sym_raw_specifier] = ACTIONS(1806), + [sym__autolink] = ACTIONS(1806), }, [STATE(262)] = { [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_COMMA] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_QMARK] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_BSLASH] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1808), - [anon_sym__] = ACTIONS(1808), - [anon_sym_BQUOTE] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1808), - [sym__escaped_characters] = ACTIONS(1808), - [sym__word] = ACTIONS(1808), - [sym__soft_line_ending] = ACTIONS(1808), - [sym__block_close] = ACTIONS(1808), - [sym__block_quote_start] = ACTIONS(1808), - [sym__indented_chunk_start] = ACTIONS(1808), - [sym_atx_h1_marker] = ACTIONS(1808), - [sym_atx_h2_marker] = ACTIONS(1808), - [sym_atx_h3_marker] = ACTIONS(1808), - [sym_atx_h4_marker] = ACTIONS(1808), - [sym_atx_h5_marker] = ACTIONS(1808), - [sym_atx_h6_marker] = ACTIONS(1808), - [sym__thematic_break] = ACTIONS(1808), - [sym__list_marker_minus] = ACTIONS(1808), - [sym__list_marker_plus] = ACTIONS(1808), - [sym__list_marker_star] = ACTIONS(1808), - [sym__list_marker_parenthesis] = ACTIONS(1808), - [sym__list_marker_dot] = ACTIONS(1808), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_example] = ACTIONS(1808), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1808), - [sym__fenced_code_block_start_backtick] = ACTIONS(1808), - [sym__fenced_code_block_start_tilde] = ACTIONS(1808), - [sym__blank_line_start] = ACTIONS(1808), - [sym_minus_metadata] = ACTIONS(1808), - [sym__pipe_table_start] = ACTIONS(1808), - [sym__fenced_div_start] = ACTIONS(1808), - [sym__fenced_div_end] = ACTIONS(1808), - [sym_ref_id_specifier] = ACTIONS(1808), - [sym__display_math_state_track_marker] = ACTIONS(1808), - [sym__inline_math_state_track_marker] = ACTIONS(1808), - [sym__code_span_start] = ACTIONS(1808), - [sym__html_comment] = ACTIONS(1808), - [sym_raw_specifier] = ACTIONS(1808), - [sym__autolink] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1810), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1810), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1810), + [anon_sym_SLASH] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_BSLASH] = ACTIONS(1808), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_CARET] = ACTIONS(1810), + [anon_sym__] = ACTIONS(1810), + [anon_sym_BQUOTE] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1810), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1810), + [sym__escaped_characters] = ACTIONS(1810), + [sym__word] = ACTIONS(1810), + [sym__soft_line_ending] = ACTIONS(1810), + [sym__block_close] = ACTIONS(1810), + [sym__block_quote_start] = ACTIONS(1810), + [sym__indented_chunk_start] = ACTIONS(1810), + [sym_atx_h1_marker] = ACTIONS(1810), + [sym_atx_h2_marker] = ACTIONS(1810), + [sym_atx_h3_marker] = ACTIONS(1810), + [sym_atx_h4_marker] = ACTIONS(1810), + [sym_atx_h5_marker] = ACTIONS(1810), + [sym_atx_h6_marker] = ACTIONS(1810), + [sym__thematic_break] = ACTIONS(1810), + [sym__list_marker_minus] = ACTIONS(1810), + [sym__list_marker_plus] = ACTIONS(1810), + [sym__list_marker_star] = ACTIONS(1810), + [sym__list_marker_parenthesis] = ACTIONS(1810), + [sym__list_marker_dot] = ACTIONS(1810), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_example] = ACTIONS(1810), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1810), + [sym__fenced_code_block_start_backtick] = ACTIONS(1810), + [sym__fenced_code_block_start_tilde] = ACTIONS(1810), + [sym__blank_line_start] = ACTIONS(1810), + [sym_minus_metadata] = ACTIONS(1810), + [sym__pipe_table_start] = ACTIONS(1810), + [sym__fenced_div_start] = ACTIONS(1810), + [sym__fenced_div_end] = ACTIONS(1810), + [sym_ref_id_specifier] = ACTIONS(1810), + [sym__display_math_state_track_marker] = ACTIONS(1810), + [sym__inline_math_state_track_marker] = ACTIONS(1810), + [sym__code_span_start] = ACTIONS(1810), + [sym__html_comment] = ACTIONS(1810), + [sym_raw_specifier] = ACTIONS(1810), + [sym__autolink] = ACTIONS(1810), }, [STATE(263)] = { [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_QMARK] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1812), - [anon_sym__] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1812), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1812), - [sym__escaped_characters] = ACTIONS(1812), - [sym__word] = ACTIONS(1812), - [sym__soft_line_ending] = ACTIONS(1812), - [sym__block_close] = ACTIONS(1812), - [sym__block_quote_start] = ACTIONS(1812), - [sym__indented_chunk_start] = ACTIONS(1812), - [sym_atx_h1_marker] = ACTIONS(1812), - [sym_atx_h2_marker] = ACTIONS(1812), - [sym_atx_h3_marker] = ACTIONS(1812), - [sym_atx_h4_marker] = ACTIONS(1812), - [sym_atx_h5_marker] = ACTIONS(1812), - [sym_atx_h6_marker] = ACTIONS(1812), - [sym__thematic_break] = ACTIONS(1812), - [sym__list_marker_minus] = ACTIONS(1812), - [sym__list_marker_plus] = ACTIONS(1812), - [sym__list_marker_star] = ACTIONS(1812), - [sym__list_marker_parenthesis] = ACTIONS(1812), - [sym__list_marker_dot] = ACTIONS(1812), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_example] = ACTIONS(1812), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1812), - [sym__fenced_code_block_start_backtick] = ACTIONS(1812), - [sym__fenced_code_block_start_tilde] = ACTIONS(1812), - [sym__blank_line_start] = ACTIONS(1812), - [sym_minus_metadata] = ACTIONS(1812), - [sym__pipe_table_start] = ACTIONS(1812), - [sym__fenced_div_start] = ACTIONS(1812), - [sym__fenced_div_end] = ACTIONS(1812), - [sym_ref_id_specifier] = ACTIONS(1812), - [sym__display_math_state_track_marker] = ACTIONS(1812), - [sym__inline_math_state_track_marker] = ACTIONS(1812), - [sym__code_span_start] = ACTIONS(1812), - [sym__html_comment] = ACTIONS(1812), - [sym_raw_specifier] = ACTIONS(1812), - [sym__autolink] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1814), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_DQUOTE] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_COMMA] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_QMARK] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_BSLASH] = ACTIONS(1812), + [anon_sym_RBRACK] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym__] = ACTIONS(1814), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1814), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1814), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1814), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1814), + [sym__escaped_characters] = ACTIONS(1814), + [sym__word] = ACTIONS(1814), + [sym__soft_line_ending] = ACTIONS(1814), + [sym__block_close] = ACTIONS(1814), + [sym__block_quote_start] = ACTIONS(1814), + [sym__indented_chunk_start] = ACTIONS(1814), + [sym_atx_h1_marker] = ACTIONS(1814), + [sym_atx_h2_marker] = ACTIONS(1814), + [sym_atx_h3_marker] = ACTIONS(1814), + [sym_atx_h4_marker] = ACTIONS(1814), + [sym_atx_h5_marker] = ACTIONS(1814), + [sym_atx_h6_marker] = ACTIONS(1814), + [sym__thematic_break] = ACTIONS(1814), + [sym__list_marker_minus] = ACTIONS(1814), + [sym__list_marker_plus] = ACTIONS(1814), + [sym__list_marker_star] = ACTIONS(1814), + [sym__list_marker_parenthesis] = ACTIONS(1814), + [sym__list_marker_dot] = ACTIONS(1814), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_example] = ACTIONS(1814), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1814), + [sym__fenced_code_block_start_backtick] = ACTIONS(1814), + [sym__fenced_code_block_start_tilde] = ACTIONS(1814), + [sym__blank_line_start] = ACTIONS(1814), + [sym_minus_metadata] = ACTIONS(1814), + [sym__pipe_table_start] = ACTIONS(1814), + [sym__fenced_div_start] = ACTIONS(1814), + [sym__fenced_div_end] = ACTIONS(1814), + [sym_ref_id_specifier] = ACTIONS(1814), + [sym__display_math_state_track_marker] = ACTIONS(1814), + [sym__inline_math_state_track_marker] = ACTIONS(1814), + [sym__code_span_start] = ACTIONS(1814), + [sym__html_comment] = ACTIONS(1814), + [sym_raw_specifier] = ACTIONS(1814), + [sym__autolink] = ACTIONS(1814), }, [STATE(264)] = { [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_QMARK] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_BSLASH] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1816), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1816), - [sym__escaped_characters] = ACTIONS(1816), - [sym__word] = ACTIONS(1816), - [sym__soft_line_ending] = ACTIONS(1816), - [sym__block_close] = ACTIONS(1816), - [sym__block_quote_start] = ACTIONS(1816), - [sym__indented_chunk_start] = ACTIONS(1816), - [sym_atx_h1_marker] = ACTIONS(1816), - [sym_atx_h2_marker] = ACTIONS(1816), - [sym_atx_h3_marker] = ACTIONS(1816), - [sym_atx_h4_marker] = ACTIONS(1816), - [sym_atx_h5_marker] = ACTIONS(1816), - [sym_atx_h6_marker] = ACTIONS(1816), - [sym__thematic_break] = ACTIONS(1816), - [sym__list_marker_minus] = ACTIONS(1816), - [sym__list_marker_plus] = ACTIONS(1816), - [sym__list_marker_star] = ACTIONS(1816), - [sym__list_marker_parenthesis] = ACTIONS(1816), - [sym__list_marker_dot] = ACTIONS(1816), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_example] = ACTIONS(1816), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1816), - [sym__fenced_code_block_start_backtick] = ACTIONS(1816), - [sym__fenced_code_block_start_tilde] = ACTIONS(1816), - [sym__blank_line_start] = ACTIONS(1816), - [sym_minus_metadata] = ACTIONS(1816), - [sym__pipe_table_start] = ACTIONS(1816), - [sym__fenced_div_start] = ACTIONS(1816), - [sym__fenced_div_end] = ACTIONS(1816), - [sym_ref_id_specifier] = ACTIONS(1816), - [sym__display_math_state_track_marker] = ACTIONS(1816), - [sym__inline_math_state_track_marker] = ACTIONS(1816), - [sym__code_span_start] = ACTIONS(1816), - [sym__html_comment] = ACTIONS(1816), - [sym_raw_specifier] = ACTIONS(1816), - [sym__autolink] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1818), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_PERCENT] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_QMARK] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_BSLASH] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1818), + [anon_sym__] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1818), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1818), + [sym__escaped_characters] = ACTIONS(1818), + [sym__word] = ACTIONS(1818), + [sym__soft_line_ending] = ACTIONS(1818), + [sym__block_close] = ACTIONS(1818), + [sym__block_quote_start] = ACTIONS(1818), + [sym__indented_chunk_start] = ACTIONS(1818), + [sym_atx_h1_marker] = ACTIONS(1818), + [sym_atx_h2_marker] = ACTIONS(1818), + [sym_atx_h3_marker] = ACTIONS(1818), + [sym_atx_h4_marker] = ACTIONS(1818), + [sym_atx_h5_marker] = ACTIONS(1818), + [sym_atx_h6_marker] = ACTIONS(1818), + [sym__thematic_break] = ACTIONS(1818), + [sym__list_marker_minus] = ACTIONS(1818), + [sym__list_marker_plus] = ACTIONS(1818), + [sym__list_marker_star] = ACTIONS(1818), + [sym__list_marker_parenthesis] = ACTIONS(1818), + [sym__list_marker_dot] = ACTIONS(1818), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_example] = ACTIONS(1818), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1818), + [sym__fenced_code_block_start_backtick] = ACTIONS(1818), + [sym__fenced_code_block_start_tilde] = ACTIONS(1818), + [sym__blank_line_start] = ACTIONS(1818), + [sym_minus_metadata] = ACTIONS(1818), + [sym__pipe_table_start] = ACTIONS(1818), + [sym__fenced_div_start] = ACTIONS(1818), + [sym__fenced_div_end] = ACTIONS(1818), + [sym_ref_id_specifier] = ACTIONS(1818), + [sym__display_math_state_track_marker] = ACTIONS(1818), + [sym__inline_math_state_track_marker] = ACTIONS(1818), + [sym__code_span_start] = ACTIONS(1818), + [sym__html_comment] = ACTIONS(1818), + [sym_raw_specifier] = ACTIONS(1818), + [sym__autolink] = ACTIONS(1818), }, [STATE(265)] = { [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_BSLASH] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym__] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1820), - [sym__escaped_characters] = ACTIONS(1820), - [sym__word] = ACTIONS(1820), - [sym__soft_line_ending] = ACTIONS(1820), - [sym__block_close] = ACTIONS(1820), - [sym__block_quote_start] = ACTIONS(1820), - [sym__indented_chunk_start] = ACTIONS(1820), - [sym_atx_h1_marker] = ACTIONS(1820), - [sym_atx_h2_marker] = ACTIONS(1820), - [sym_atx_h3_marker] = ACTIONS(1820), - [sym_atx_h4_marker] = ACTIONS(1820), - [sym_atx_h5_marker] = ACTIONS(1820), - [sym_atx_h6_marker] = ACTIONS(1820), - [sym__thematic_break] = ACTIONS(1820), - [sym__list_marker_minus] = ACTIONS(1820), - [sym__list_marker_plus] = ACTIONS(1820), - [sym__list_marker_star] = ACTIONS(1820), - [sym__list_marker_parenthesis] = ACTIONS(1820), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1820), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1820), - [sym__fenced_code_block_start_backtick] = ACTIONS(1820), - [sym__fenced_code_block_start_tilde] = ACTIONS(1820), - [sym__blank_line_start] = ACTIONS(1820), - [sym_minus_metadata] = ACTIONS(1820), - [sym__pipe_table_start] = ACTIONS(1820), - [sym__fenced_div_start] = ACTIONS(1820), - [sym__fenced_div_end] = ACTIONS(1820), - [sym_ref_id_specifier] = ACTIONS(1820), - [sym__display_math_state_track_marker] = ACTIONS(1820), - [sym__inline_math_state_track_marker] = ACTIONS(1820), - [sym__code_span_start] = ACTIONS(1820), - [sym__html_comment] = ACTIONS(1820), - [sym_raw_specifier] = ACTIONS(1820), - [sym__autolink] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_BSLASH] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1822), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1822), + [sym__escaped_characters] = ACTIONS(1822), + [sym__word] = ACTIONS(1822), + [sym__soft_line_ending] = ACTIONS(1822), + [sym__block_close] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_example] = ACTIONS(1822), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym_minus_metadata] = ACTIONS(1822), + [sym__pipe_table_start] = ACTIONS(1822), + [sym__fenced_div_start] = ACTIONS(1822), + [sym__fenced_div_end] = ACTIONS(1822), + [sym_ref_id_specifier] = ACTIONS(1822), + [sym__display_math_state_track_marker] = ACTIONS(1822), + [sym__inline_math_state_track_marker] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__html_comment] = ACTIONS(1822), + [sym_raw_specifier] = ACTIONS(1822), + [sym__autolink] = ACTIONS(1822), }, [STATE(266)] = { [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_BSLASH] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym__] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1820), - [sym__escaped_characters] = ACTIONS(1820), - [sym__word] = ACTIONS(1820), - [sym__soft_line_ending] = ACTIONS(1820), - [sym__block_close] = ACTIONS(1820), - [sym__block_quote_start] = ACTIONS(1820), - [sym__indented_chunk_start] = ACTIONS(1820), - [sym_atx_h1_marker] = ACTIONS(1820), - [sym_atx_h2_marker] = ACTIONS(1820), - [sym_atx_h3_marker] = ACTIONS(1820), - [sym_atx_h4_marker] = ACTIONS(1820), - [sym_atx_h5_marker] = ACTIONS(1820), - [sym_atx_h6_marker] = ACTIONS(1820), - [sym__thematic_break] = ACTIONS(1820), - [sym__list_marker_minus] = ACTIONS(1820), - [sym__list_marker_plus] = ACTIONS(1820), - [sym__list_marker_star] = ACTIONS(1820), - [sym__list_marker_parenthesis] = ACTIONS(1820), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1820), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1820), - [sym__fenced_code_block_start_backtick] = ACTIONS(1820), - [sym__fenced_code_block_start_tilde] = ACTIONS(1820), - [sym__blank_line_start] = ACTIONS(1820), - [sym_minus_metadata] = ACTIONS(1820), - [sym__pipe_table_start] = ACTIONS(1820), - [sym__fenced_div_start] = ACTIONS(1820), - [sym__fenced_div_end] = ACTIONS(1820), - [sym_ref_id_specifier] = ACTIONS(1820), - [sym__display_math_state_track_marker] = ACTIONS(1820), - [sym__inline_math_state_track_marker] = ACTIONS(1820), - [sym__code_span_start] = ACTIONS(1820), - [sym__html_comment] = ACTIONS(1820), - [sym_raw_specifier] = ACTIONS(1820), - [sym__autolink] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_BSLASH] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1822), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1822), + [sym__escaped_characters] = ACTIONS(1822), + [sym__word] = ACTIONS(1822), + [sym__soft_line_ending] = ACTIONS(1822), + [sym__block_close] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_example] = ACTIONS(1822), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym_minus_metadata] = ACTIONS(1822), + [sym__pipe_table_start] = ACTIONS(1822), + [sym__fenced_div_start] = ACTIONS(1822), + [sym__fenced_div_end] = ACTIONS(1822), + [sym_ref_id_specifier] = ACTIONS(1822), + [sym__display_math_state_track_marker] = ACTIONS(1822), + [sym__inline_math_state_track_marker] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__html_comment] = ACTIONS(1822), + [sym_raw_specifier] = ACTIONS(1822), + [sym__autolink] = ACTIONS(1822), }, [STATE(267)] = { [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1824), - [anon_sym_EQ] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_SLASH] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_QMARK] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_BSLASH] = ACTIONS(1826), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym__] = ACTIONS(1824), - [anon_sym_BQUOTE] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1824), - [sym__escaped_characters] = ACTIONS(1824), - [sym__word] = ACTIONS(1824), - [sym__soft_line_ending] = ACTIONS(1824), - [sym__block_close] = ACTIONS(1824), - [sym__block_quote_start] = ACTIONS(1824), - [sym__indented_chunk_start] = ACTIONS(1824), - [sym_atx_h1_marker] = ACTIONS(1824), - [sym_atx_h2_marker] = ACTIONS(1824), - [sym_atx_h3_marker] = ACTIONS(1824), - [sym_atx_h4_marker] = ACTIONS(1824), - [sym_atx_h5_marker] = ACTIONS(1824), - [sym_atx_h6_marker] = ACTIONS(1824), - [sym__thematic_break] = ACTIONS(1824), - [sym__list_marker_minus] = ACTIONS(1824), - [sym__list_marker_plus] = ACTIONS(1824), - [sym__list_marker_star] = ACTIONS(1824), - [sym__list_marker_parenthesis] = ACTIONS(1824), - [sym__list_marker_dot] = ACTIONS(1824), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_example] = ACTIONS(1824), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1824), - [sym__fenced_code_block_start_backtick] = ACTIONS(1824), - [sym__fenced_code_block_start_tilde] = ACTIONS(1824), - [sym__blank_line_start] = ACTIONS(1824), - [sym_minus_metadata] = ACTIONS(1824), - [sym__pipe_table_start] = ACTIONS(1824), - [sym__fenced_div_start] = ACTIONS(1824), - [sym__fenced_div_end] = ACTIONS(1824), - [sym_ref_id_specifier] = ACTIONS(1824), - [sym__display_math_state_track_marker] = ACTIONS(1824), - [sym__inline_math_state_track_marker] = ACTIONS(1824), - [sym__code_span_start] = ACTIONS(1824), - [sym__html_comment] = ACTIONS(1824), - [sym_raw_specifier] = ACTIONS(1824), - [sym__autolink] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1826), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1826), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_PERCENT] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_QMARK] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_BSLASH] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym__] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1826), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1826), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1826), + [sym__escaped_characters] = ACTIONS(1826), + [sym__word] = ACTIONS(1826), + [sym__soft_line_ending] = ACTIONS(1826), + [sym__block_close] = ACTIONS(1826), + [sym__block_quote_start] = ACTIONS(1826), + [sym__indented_chunk_start] = ACTIONS(1826), + [sym_atx_h1_marker] = ACTIONS(1826), + [sym_atx_h2_marker] = ACTIONS(1826), + [sym_atx_h3_marker] = ACTIONS(1826), + [sym_atx_h4_marker] = ACTIONS(1826), + [sym_atx_h5_marker] = ACTIONS(1826), + [sym_atx_h6_marker] = ACTIONS(1826), + [sym__thematic_break] = ACTIONS(1826), + [sym__list_marker_minus] = ACTIONS(1826), + [sym__list_marker_plus] = ACTIONS(1826), + [sym__list_marker_star] = ACTIONS(1826), + [sym__list_marker_parenthesis] = ACTIONS(1826), + [sym__list_marker_dot] = ACTIONS(1826), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_example] = ACTIONS(1826), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1826), + [sym__fenced_code_block_start_backtick] = ACTIONS(1826), + [sym__fenced_code_block_start_tilde] = ACTIONS(1826), + [sym__blank_line_start] = ACTIONS(1826), + [sym_minus_metadata] = ACTIONS(1826), + [sym__pipe_table_start] = ACTIONS(1826), + [sym__fenced_div_start] = ACTIONS(1826), + [sym__fenced_div_end] = ACTIONS(1826), + [sym_ref_id_specifier] = ACTIONS(1826), + [sym__display_math_state_track_marker] = ACTIONS(1826), + [sym__inline_math_state_track_marker] = ACTIONS(1826), + [sym__code_span_start] = ACTIONS(1826), + [sym__html_comment] = ACTIONS(1826), + [sym_raw_specifier] = ACTIONS(1826), + [sym__autolink] = ACTIONS(1826), }, [STATE(268)] = { [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_DOT] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_QMARK] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_BSLASH] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym__] = ACTIONS(1828), - [anon_sym_BQUOTE] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1828), - [sym__escaped_characters] = ACTIONS(1828), - [sym__word] = ACTIONS(1828), - [sym__soft_line_ending] = ACTIONS(1828), - [sym__block_close] = ACTIONS(1828), - [sym__block_quote_start] = ACTIONS(1828), - [sym__indented_chunk_start] = ACTIONS(1828), - [sym_atx_h1_marker] = ACTIONS(1828), - [sym_atx_h2_marker] = ACTIONS(1828), - [sym_atx_h3_marker] = ACTIONS(1828), - [sym_atx_h4_marker] = ACTIONS(1828), - [sym_atx_h5_marker] = ACTIONS(1828), - [sym_atx_h6_marker] = ACTIONS(1828), - [sym__thematic_break] = ACTIONS(1828), - [sym__list_marker_minus] = ACTIONS(1828), - [sym__list_marker_plus] = ACTIONS(1828), - [sym__list_marker_star] = ACTIONS(1828), - [sym__list_marker_parenthesis] = ACTIONS(1828), - [sym__list_marker_dot] = ACTIONS(1828), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_example] = ACTIONS(1828), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1828), - [sym__fenced_code_block_start_backtick] = ACTIONS(1828), - [sym__fenced_code_block_start_tilde] = ACTIONS(1828), - [sym__blank_line_start] = ACTIONS(1828), - [sym_minus_metadata] = ACTIONS(1828), - [sym__pipe_table_start] = ACTIONS(1828), - [sym__fenced_div_start] = ACTIONS(1828), - [sym__fenced_div_end] = ACTIONS(1828), - [sym_ref_id_specifier] = ACTIONS(1828), - [sym__display_math_state_track_marker] = ACTIONS(1828), - [sym__inline_math_state_track_marker] = ACTIONS(1828), - [sym__code_span_start] = ACTIONS(1828), - [sym__html_comment] = ACTIONS(1828), - [sym_raw_specifier] = ACTIONS(1828), - [sym__autolink] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1830), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_PERCENT] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_BSLASH] = ACTIONS(1828), + [anon_sym_RBRACK] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1830), + [anon_sym__] = ACTIONS(1830), + [anon_sym_BQUOTE] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1830), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1830), + [sym__escaped_characters] = ACTIONS(1830), + [sym__word] = ACTIONS(1830), + [sym__soft_line_ending] = ACTIONS(1830), + [sym__block_close] = ACTIONS(1830), + [sym__block_quote_start] = ACTIONS(1830), + [sym__indented_chunk_start] = ACTIONS(1830), + [sym_atx_h1_marker] = ACTIONS(1830), + [sym_atx_h2_marker] = ACTIONS(1830), + [sym_atx_h3_marker] = ACTIONS(1830), + [sym_atx_h4_marker] = ACTIONS(1830), + [sym_atx_h5_marker] = ACTIONS(1830), + [sym_atx_h6_marker] = ACTIONS(1830), + [sym__thematic_break] = ACTIONS(1830), + [sym__list_marker_minus] = ACTIONS(1830), + [sym__list_marker_plus] = ACTIONS(1830), + [sym__list_marker_star] = ACTIONS(1830), + [sym__list_marker_parenthesis] = ACTIONS(1830), + [sym__list_marker_dot] = ACTIONS(1830), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_example] = ACTIONS(1830), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1830), + [sym__fenced_code_block_start_backtick] = ACTIONS(1830), + [sym__fenced_code_block_start_tilde] = ACTIONS(1830), + [sym__blank_line_start] = ACTIONS(1830), + [sym_minus_metadata] = ACTIONS(1830), + [sym__pipe_table_start] = ACTIONS(1830), + [sym__fenced_div_start] = ACTIONS(1830), + [sym__fenced_div_end] = ACTIONS(1830), + [sym_ref_id_specifier] = ACTIONS(1830), + [sym__display_math_state_track_marker] = ACTIONS(1830), + [sym__inline_math_state_track_marker] = ACTIONS(1830), + [sym__code_span_start] = ACTIONS(1830), + [sym__html_comment] = ACTIONS(1830), + [sym_raw_specifier] = ACTIONS(1830), + [sym__autolink] = ACTIONS(1830), }, [STATE(269)] = { [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1494), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1492), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1492), - [sym__html_comment] = ACTIONS(1492), - [sym_raw_specifier] = ACTIONS(1492), - [sym__autolink] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1494), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1494), + [sym__escaped_characters] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_close] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym__fenced_div_end] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + [sym__code_span_start] = ACTIONS(1494), + [sym__html_comment] = ACTIONS(1494), + [sym_raw_specifier] = ACTIONS(1494), + [sym__autolink] = ACTIONS(1494), }, [STATE(270)] = { [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_AT] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BQUOTE] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1506), - [sym__escaped_characters] = ACTIONS(1506), - [sym__word] = ACTIONS(1506), - [sym__soft_line_ending] = ACTIONS(1506), - [sym__block_close] = ACTIONS(1506), - [sym__block_quote_start] = ACTIONS(1506), - [sym__indented_chunk_start] = ACTIONS(1506), - [sym_atx_h1_marker] = ACTIONS(1506), - [sym_atx_h2_marker] = ACTIONS(1506), - [sym_atx_h3_marker] = ACTIONS(1506), - [sym_atx_h4_marker] = ACTIONS(1506), - [sym_atx_h5_marker] = ACTIONS(1506), - [sym_atx_h6_marker] = ACTIONS(1506), - [sym__thematic_break] = ACTIONS(1506), - [sym__list_marker_minus] = ACTIONS(1506), - [sym__list_marker_plus] = ACTIONS(1506), - [sym__list_marker_star] = ACTIONS(1506), - [sym__list_marker_parenthesis] = ACTIONS(1506), - [sym__list_marker_dot] = ACTIONS(1506), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1506), - [sym__list_marker_example] = ACTIONS(1506), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1506), - [sym__fenced_code_block_start_backtick] = ACTIONS(1506), - [sym__fenced_code_block_start_tilde] = ACTIONS(1506), - [sym__blank_line_start] = ACTIONS(1506), - [sym_minus_metadata] = ACTIONS(1506), - [sym__pipe_table_start] = ACTIONS(1506), - [sym__fenced_div_start] = ACTIONS(1506), - [sym_ref_id_specifier] = ACTIONS(1506), - [sym__display_math_state_track_marker] = ACTIONS(1506), - [sym__inline_math_state_track_marker] = ACTIONS(1506), - [sym__code_span_start] = ACTIONS(1506), - [sym__html_comment] = ACTIONS(1506), - [sym_raw_specifier] = ACTIONS(1506), - [sym__autolink] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_COLON] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1506), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym__] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1508), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1508), + [sym__escaped_characters] = ACTIONS(1508), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_close] = ACTIONS(1508), + [sym__block_quote_start] = ACTIONS(1508), + [sym__indented_chunk_start] = ACTIONS(1508), + [sym_atx_h1_marker] = ACTIONS(1508), + [sym_atx_h2_marker] = ACTIONS(1508), + [sym_atx_h3_marker] = ACTIONS(1508), + [sym_atx_h4_marker] = ACTIONS(1508), + [sym_atx_h5_marker] = ACTIONS(1508), + [sym_atx_h6_marker] = ACTIONS(1508), + [sym__thematic_break] = ACTIONS(1508), + [sym__list_marker_minus] = ACTIONS(1508), + [sym__list_marker_plus] = ACTIONS(1508), + [sym__list_marker_star] = ACTIONS(1508), + [sym__list_marker_parenthesis] = ACTIONS(1508), + [sym__list_marker_dot] = ACTIONS(1508), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1508), + [sym__list_marker_example] = ACTIONS(1508), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1508), + [sym__fenced_code_block_start_backtick] = ACTIONS(1508), + [sym__fenced_code_block_start_tilde] = ACTIONS(1508), + [sym__blank_line_start] = ACTIONS(1508), + [sym_minus_metadata] = ACTIONS(1508), + [sym__pipe_table_start] = ACTIONS(1508), + [sym__fenced_div_start] = ACTIONS(1508), + [sym_ref_id_specifier] = ACTIONS(1508), + [sym__display_math_state_track_marker] = ACTIONS(1508), + [sym__inline_math_state_track_marker] = ACTIONS(1508), + [sym__code_span_start] = ACTIONS(1508), + [sym__html_comment] = ACTIONS(1508), + [sym_raw_specifier] = ACTIONS(1508), + [sym__autolink] = ACTIONS(1508), }, [STATE(271)] = { [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1526), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1524), - [sym__escaped_characters] = ACTIONS(1524), - [sym__word] = ACTIONS(1524), - [sym__soft_line_ending] = ACTIONS(1524), - [sym__block_close] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1526), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1526), + [sym__escaped_characters] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_close] = ACTIONS(1526), [sym_block_continuation] = ACTIONS(1832), - [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), - [sym__code_span_start] = ACTIONS(1524), - [sym__html_comment] = ACTIONS(1524), - [sym_raw_specifier] = ACTIONS(1524), - [sym__autolink] = ACTIONS(1524), + [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), + [sym__code_span_start] = ACTIONS(1526), + [sym__html_comment] = ACTIONS(1526), + [sym_raw_specifier] = ACTIONS(1526), + [sym__autolink] = ACTIONS(1526), }, [STATE(272)] = { [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_QMARK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_BSLASH] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym__] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1834), - [sym__escaped_characters] = ACTIONS(1834), - [sym__word] = ACTIONS(1834), - [sym__soft_line_ending] = ACTIONS(1834), - [sym__block_close] = ACTIONS(1834), - [sym__block_quote_start] = ACTIONS(1834), - [sym__indented_chunk_start] = ACTIONS(1834), - [sym_atx_h1_marker] = ACTIONS(1834), - [sym_atx_h2_marker] = ACTIONS(1834), - [sym_atx_h3_marker] = ACTIONS(1834), - [sym_atx_h4_marker] = ACTIONS(1834), - [sym_atx_h5_marker] = ACTIONS(1834), - [sym_atx_h6_marker] = ACTIONS(1834), - [sym__thematic_break] = ACTIONS(1834), - [sym__list_marker_minus] = ACTIONS(1834), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1834), - [sym__list_marker_parenthesis] = ACTIONS(1834), - [sym__list_marker_dot] = ACTIONS(1834), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_example] = ACTIONS(1834), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1834), - [sym__fenced_code_block_start_backtick] = ACTIONS(1834), - [sym__fenced_code_block_start_tilde] = ACTIONS(1834), - [sym__blank_line_start] = ACTIONS(1834), - [sym_minus_metadata] = ACTIONS(1834), - [sym__pipe_table_start] = ACTIONS(1834), - [sym__fenced_div_start] = ACTIONS(1834), - [sym__fenced_div_end] = ACTIONS(1834), - [sym_ref_id_specifier] = ACTIONS(1834), - [sym__display_math_state_track_marker] = ACTIONS(1834), - [sym__inline_math_state_track_marker] = ACTIONS(1834), - [sym__code_span_start] = ACTIONS(1834), - [sym__html_comment] = ACTIONS(1834), - [sym_raw_specifier] = ACTIONS(1834), - [sym__autolink] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1836), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1836), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_QMARK] = ACTIONS(1836), + [anon_sym_AT] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_BSLASH] = ACTIONS(1834), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_CARET] = ACTIONS(1836), + [anon_sym__] = ACTIONS(1836), + [anon_sym_BQUOTE] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1836), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1836), + [sym__escaped_characters] = ACTIONS(1836), + [sym__word] = ACTIONS(1836), + [sym__soft_line_ending] = ACTIONS(1836), + [sym__block_close] = ACTIONS(1836), + [sym__block_quote_start] = ACTIONS(1836), + [sym__indented_chunk_start] = ACTIONS(1836), + [sym_atx_h1_marker] = ACTIONS(1836), + [sym_atx_h2_marker] = ACTIONS(1836), + [sym_atx_h3_marker] = ACTIONS(1836), + [sym_atx_h4_marker] = ACTIONS(1836), + [sym_atx_h5_marker] = ACTIONS(1836), + [sym_atx_h6_marker] = ACTIONS(1836), + [sym__thematic_break] = ACTIONS(1836), + [sym__list_marker_minus] = ACTIONS(1836), + [sym__list_marker_plus] = ACTIONS(1836), + [sym__list_marker_star] = ACTIONS(1836), + [sym__list_marker_parenthesis] = ACTIONS(1836), + [sym__list_marker_dot] = ACTIONS(1836), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_example] = ACTIONS(1836), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1836), + [sym__fenced_code_block_start_backtick] = ACTIONS(1836), + [sym__fenced_code_block_start_tilde] = ACTIONS(1836), + [sym__blank_line_start] = ACTIONS(1836), + [sym_minus_metadata] = ACTIONS(1836), + [sym__pipe_table_start] = ACTIONS(1836), + [sym__fenced_div_start] = ACTIONS(1836), + [sym__fenced_div_end] = ACTIONS(1836), + [sym_ref_id_specifier] = ACTIONS(1836), + [sym__display_math_state_track_marker] = ACTIONS(1836), + [sym__inline_math_state_track_marker] = ACTIONS(1836), + [sym__code_span_start] = ACTIONS(1836), + [sym__html_comment] = ACTIONS(1836), + [sym_raw_specifier] = ACTIONS(1836), + [sym__autolink] = ACTIONS(1836), }, [STATE(273)] = { [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_BSLASH] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym__] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1838), - [sym__escaped_characters] = ACTIONS(1838), - [sym__word] = ACTIONS(1838), - [sym__soft_line_ending] = ACTIONS(1838), - [sym__block_close] = ACTIONS(1838), - [sym__block_quote_start] = ACTIONS(1838), - [sym__indented_chunk_start] = ACTIONS(1838), - [sym_atx_h1_marker] = ACTIONS(1838), - [sym_atx_h2_marker] = ACTIONS(1838), - [sym_atx_h3_marker] = ACTIONS(1838), - [sym_atx_h4_marker] = ACTIONS(1838), - [sym_atx_h5_marker] = ACTIONS(1838), - [sym_atx_h6_marker] = ACTIONS(1838), - [sym__thematic_break] = ACTIONS(1838), - [sym__list_marker_minus] = ACTIONS(1838), - [sym__list_marker_plus] = ACTIONS(1838), - [sym__list_marker_star] = ACTIONS(1838), - [sym__list_marker_parenthesis] = ACTIONS(1838), - [sym__list_marker_dot] = ACTIONS(1838), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_example] = ACTIONS(1838), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1838), - [sym__fenced_code_block_start_backtick] = ACTIONS(1838), - [sym__fenced_code_block_start_tilde] = ACTIONS(1838), - [sym__blank_line_start] = ACTIONS(1838), - [sym_minus_metadata] = ACTIONS(1838), - [sym__pipe_table_start] = ACTIONS(1838), - [sym__fenced_div_start] = ACTIONS(1838), - [sym__fenced_div_end] = ACTIONS(1838), - [sym_ref_id_specifier] = ACTIONS(1838), - [sym__display_math_state_track_marker] = ACTIONS(1838), - [sym__inline_math_state_track_marker] = ACTIONS(1838), - [sym__code_span_start] = ACTIONS(1838), - [sym__html_comment] = ACTIONS(1838), - [sym_raw_specifier] = ACTIONS(1838), - [sym__autolink] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1840), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_PERCENT] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_COMMA] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(1840), + [anon_sym_SLASH] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_QMARK] = ACTIONS(1840), + [anon_sym_AT] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_BSLASH] = ACTIONS(1838), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_CARET] = ACTIONS(1840), + [anon_sym__] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_TILDE] = ACTIONS(1840), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1840), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1840), + [sym__escaped_characters] = ACTIONS(1840), + [sym__word] = ACTIONS(1840), + [sym__soft_line_ending] = ACTIONS(1840), + [sym__block_close] = ACTIONS(1840), + [sym__block_quote_start] = ACTIONS(1840), + [sym__indented_chunk_start] = ACTIONS(1840), + [sym_atx_h1_marker] = ACTIONS(1840), + [sym_atx_h2_marker] = ACTIONS(1840), + [sym_atx_h3_marker] = ACTIONS(1840), + [sym_atx_h4_marker] = ACTIONS(1840), + [sym_atx_h5_marker] = ACTIONS(1840), + [sym_atx_h6_marker] = ACTIONS(1840), + [sym__thematic_break] = ACTIONS(1840), + [sym__list_marker_minus] = ACTIONS(1840), + [sym__list_marker_plus] = ACTIONS(1840), + [sym__list_marker_star] = ACTIONS(1840), + [sym__list_marker_parenthesis] = ACTIONS(1840), + [sym__list_marker_dot] = ACTIONS(1840), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_example] = ACTIONS(1840), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1840), + [sym__fenced_code_block_start_backtick] = ACTIONS(1840), + [sym__fenced_code_block_start_tilde] = ACTIONS(1840), + [sym__blank_line_start] = ACTIONS(1840), + [sym_minus_metadata] = ACTIONS(1840), + [sym__pipe_table_start] = ACTIONS(1840), + [sym__fenced_div_start] = ACTIONS(1840), + [sym__fenced_div_end] = ACTIONS(1840), + [sym_ref_id_specifier] = ACTIONS(1840), + [sym__display_math_state_track_marker] = ACTIONS(1840), + [sym__inline_math_state_track_marker] = ACTIONS(1840), + [sym__code_span_start] = ACTIONS(1840), + [sym__html_comment] = ACTIONS(1840), + [sym_raw_specifier] = ACTIONS(1840), + [sym__autolink] = ACTIONS(1840), }, [STATE(274)] = { [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_SLASH] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_QMARK] = ACTIONS(1842), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_BSLASH] = ACTIONS(1844), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_CARET] = ACTIONS(1842), - [anon_sym__] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1842), - [sym__escaped_characters] = ACTIONS(1842), - [sym__word] = ACTIONS(1842), - [sym__soft_line_ending] = ACTIONS(1842), - [sym__block_close] = ACTIONS(1842), - [sym__block_quote_start] = ACTIONS(1842), - [sym__indented_chunk_start] = ACTIONS(1842), - [sym_atx_h1_marker] = ACTIONS(1842), - [sym_atx_h2_marker] = ACTIONS(1842), - [sym_atx_h3_marker] = ACTIONS(1842), - [sym_atx_h4_marker] = ACTIONS(1842), - [sym_atx_h5_marker] = ACTIONS(1842), - [sym_atx_h6_marker] = ACTIONS(1842), - [sym__thematic_break] = ACTIONS(1842), - [sym__list_marker_minus] = ACTIONS(1842), - [sym__list_marker_plus] = ACTIONS(1842), - [sym__list_marker_star] = ACTIONS(1842), - [sym__list_marker_parenthesis] = ACTIONS(1842), - [sym__list_marker_dot] = ACTIONS(1842), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_example] = ACTIONS(1842), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1842), - [sym__fenced_code_block_start_backtick] = ACTIONS(1842), - [sym__fenced_code_block_start_tilde] = ACTIONS(1842), - [sym__blank_line_start] = ACTIONS(1842), - [sym_minus_metadata] = ACTIONS(1842), - [sym__pipe_table_start] = ACTIONS(1842), - [sym__fenced_div_start] = ACTIONS(1842), - [sym__fenced_div_end] = ACTIONS(1842), - [sym_ref_id_specifier] = ACTIONS(1842), - [sym__display_math_state_track_marker] = ACTIONS(1842), - [sym__inline_math_state_track_marker] = ACTIONS(1842), - [sym__code_span_start] = ACTIONS(1842), - [sym__html_comment] = ACTIONS(1842), - [sym_raw_specifier] = ACTIONS(1842), - [sym__autolink] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1844), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1844), + [anon_sym_EQ] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1844), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_QMARK] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_BSLASH] = ACTIONS(1842), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym__] = ACTIONS(1844), + [anon_sym_BQUOTE] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1844), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1844), + [sym__escaped_characters] = ACTIONS(1844), + [sym__word] = ACTIONS(1844), + [sym__soft_line_ending] = ACTIONS(1844), + [sym__block_close] = ACTIONS(1844), + [sym__block_quote_start] = ACTIONS(1844), + [sym__indented_chunk_start] = ACTIONS(1844), + [sym_atx_h1_marker] = ACTIONS(1844), + [sym_atx_h2_marker] = ACTIONS(1844), + [sym_atx_h3_marker] = ACTIONS(1844), + [sym_atx_h4_marker] = ACTIONS(1844), + [sym_atx_h5_marker] = ACTIONS(1844), + [sym_atx_h6_marker] = ACTIONS(1844), + [sym__thematic_break] = ACTIONS(1844), + [sym__list_marker_minus] = ACTIONS(1844), + [sym__list_marker_plus] = ACTIONS(1844), + [sym__list_marker_star] = ACTIONS(1844), + [sym__list_marker_parenthesis] = ACTIONS(1844), + [sym__list_marker_dot] = ACTIONS(1844), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_example] = ACTIONS(1844), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1844), + [sym__fenced_code_block_start_backtick] = ACTIONS(1844), + [sym__fenced_code_block_start_tilde] = ACTIONS(1844), + [sym__blank_line_start] = ACTIONS(1844), + [sym_minus_metadata] = ACTIONS(1844), + [sym__pipe_table_start] = ACTIONS(1844), + [sym__fenced_div_start] = ACTIONS(1844), + [sym__fenced_div_end] = ACTIONS(1844), + [sym_ref_id_specifier] = ACTIONS(1844), + [sym__display_math_state_track_marker] = ACTIONS(1844), + [sym__inline_math_state_track_marker] = ACTIONS(1844), + [sym__code_span_start] = ACTIONS(1844), + [sym__html_comment] = ACTIONS(1844), + [sym_raw_specifier] = ACTIONS(1844), + [sym__autolink] = ACTIONS(1844), }, [STATE(275)] = { [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_COMMA] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_SLASH] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_QMARK] = ACTIONS(1846), - [anon_sym_AT] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_BSLASH] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1846), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym__] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1846), - [sym__escaped_characters] = ACTIONS(1846), - [sym__word] = ACTIONS(1846), - [sym__soft_line_ending] = ACTIONS(1846), - [sym__block_close] = ACTIONS(1846), - [sym__block_quote_start] = ACTIONS(1846), - [sym__indented_chunk_start] = ACTIONS(1846), - [sym_atx_h1_marker] = ACTIONS(1846), - [sym_atx_h2_marker] = ACTIONS(1846), - [sym_atx_h3_marker] = ACTIONS(1846), - [sym_atx_h4_marker] = ACTIONS(1846), - [sym_atx_h5_marker] = ACTIONS(1846), - [sym_atx_h6_marker] = ACTIONS(1846), - [sym__thematic_break] = ACTIONS(1846), - [sym__list_marker_minus] = ACTIONS(1846), - [sym__list_marker_plus] = ACTIONS(1846), - [sym__list_marker_star] = ACTIONS(1846), - [sym__list_marker_parenthesis] = ACTIONS(1846), - [sym__list_marker_dot] = ACTIONS(1846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_example] = ACTIONS(1846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1846), - [sym__fenced_code_block_start_tilde] = ACTIONS(1846), - [sym__blank_line_start] = ACTIONS(1846), - [sym_minus_metadata] = ACTIONS(1846), - [sym__pipe_table_start] = ACTIONS(1846), - [sym__fenced_div_start] = ACTIONS(1846), - [sym__fenced_div_end] = ACTIONS(1846), - [sym_ref_id_specifier] = ACTIONS(1846), - [sym__display_math_state_track_marker] = ACTIONS(1846), - [sym__inline_math_state_track_marker] = ACTIONS(1846), - [sym__code_span_start] = ACTIONS(1846), - [sym__html_comment] = ACTIONS(1846), - [sym_raw_specifier] = ACTIONS(1846), - [sym__autolink] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1848), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1848), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_QMARK] = ACTIONS(1848), + [anon_sym_AT] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_BSLASH] = ACTIONS(1846), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym__] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1848), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1848), + [sym__escaped_characters] = ACTIONS(1848), + [sym__word] = ACTIONS(1848), + [sym__soft_line_ending] = ACTIONS(1848), + [sym__block_close] = ACTIONS(1848), + [sym__block_quote_start] = ACTIONS(1848), + [sym__indented_chunk_start] = ACTIONS(1848), + [sym_atx_h1_marker] = ACTIONS(1848), + [sym_atx_h2_marker] = ACTIONS(1848), + [sym_atx_h3_marker] = ACTIONS(1848), + [sym_atx_h4_marker] = ACTIONS(1848), + [sym_atx_h5_marker] = ACTIONS(1848), + [sym_atx_h6_marker] = ACTIONS(1848), + [sym__thematic_break] = ACTIONS(1848), + [sym__list_marker_minus] = ACTIONS(1848), + [sym__list_marker_plus] = ACTIONS(1848), + [sym__list_marker_star] = ACTIONS(1848), + [sym__list_marker_parenthesis] = ACTIONS(1848), + [sym__list_marker_dot] = ACTIONS(1848), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_example] = ACTIONS(1848), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1848), + [sym__fenced_code_block_start_backtick] = ACTIONS(1848), + [sym__fenced_code_block_start_tilde] = ACTIONS(1848), + [sym__blank_line_start] = ACTIONS(1848), + [sym_minus_metadata] = ACTIONS(1848), + [sym__pipe_table_start] = ACTIONS(1848), + [sym__fenced_div_start] = ACTIONS(1848), + [sym__fenced_div_end] = ACTIONS(1848), + [sym_ref_id_specifier] = ACTIONS(1848), + [sym__display_math_state_track_marker] = ACTIONS(1848), + [sym__inline_math_state_track_marker] = ACTIONS(1848), + [sym__code_span_start] = ACTIONS(1848), + [sym__html_comment] = ACTIONS(1848), + [sym_raw_specifier] = ACTIONS(1848), + [sym__autolink] = ACTIONS(1848), }, [STATE(276)] = { [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1850), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_COMMA] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_SLASH] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_BSLASH] = ACTIONS(1852), - [anon_sym_RBRACK] = ACTIONS(1850), - [anon_sym_CARET] = ACTIONS(1850), - [anon_sym__] = ACTIONS(1850), - [anon_sym_BQUOTE] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1850), - [sym__escaped_characters] = ACTIONS(1850), - [sym__word] = ACTIONS(1850), - [sym__soft_line_ending] = ACTIONS(1850), - [sym__block_close] = ACTIONS(1850), - [sym__block_quote_start] = ACTIONS(1850), - [sym__indented_chunk_start] = ACTIONS(1850), - [sym_atx_h1_marker] = ACTIONS(1850), - [sym_atx_h2_marker] = ACTIONS(1850), - [sym_atx_h3_marker] = ACTIONS(1850), - [sym_atx_h4_marker] = ACTIONS(1850), - [sym_atx_h5_marker] = ACTIONS(1850), - [sym_atx_h6_marker] = ACTIONS(1850), - [sym__thematic_break] = ACTIONS(1850), - [sym__list_marker_minus] = ACTIONS(1850), - [sym__list_marker_plus] = ACTIONS(1850), - [sym__list_marker_star] = ACTIONS(1850), - [sym__list_marker_parenthesis] = ACTIONS(1850), - [sym__list_marker_dot] = ACTIONS(1850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_example] = ACTIONS(1850), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1850), - [sym__fenced_code_block_start_backtick] = ACTIONS(1850), - [sym__fenced_code_block_start_tilde] = ACTIONS(1850), - [sym__blank_line_start] = ACTIONS(1850), - [sym_minus_metadata] = ACTIONS(1850), - [sym__pipe_table_start] = ACTIONS(1850), - [sym__fenced_div_start] = ACTIONS(1850), - [sym__fenced_div_end] = ACTIONS(1850), - [sym_ref_id_specifier] = ACTIONS(1850), - [sym__display_math_state_track_marker] = ACTIONS(1850), - [sym__inline_math_state_track_marker] = ACTIONS(1850), - [sym__code_span_start] = ACTIONS(1850), - [sym__html_comment] = ACTIONS(1850), - [sym_raw_specifier] = ACTIONS(1850), - [sym__autolink] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1852), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_DOLLAR] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_QMARK] = ACTIONS(1852), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_BSLASH] = ACTIONS(1850), + [anon_sym_RBRACK] = ACTIONS(1852), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym__] = ACTIONS(1852), + [anon_sym_BQUOTE] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1852), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1852), + [sym__escaped_characters] = ACTIONS(1852), + [sym__word] = ACTIONS(1852), + [sym__soft_line_ending] = ACTIONS(1852), + [sym__block_close] = ACTIONS(1852), + [sym__block_quote_start] = ACTIONS(1852), + [sym__indented_chunk_start] = ACTIONS(1852), + [sym_atx_h1_marker] = ACTIONS(1852), + [sym_atx_h2_marker] = ACTIONS(1852), + [sym_atx_h3_marker] = ACTIONS(1852), + [sym_atx_h4_marker] = ACTIONS(1852), + [sym_atx_h5_marker] = ACTIONS(1852), + [sym_atx_h6_marker] = ACTIONS(1852), + [sym__thematic_break] = ACTIONS(1852), + [sym__list_marker_minus] = ACTIONS(1852), + [sym__list_marker_plus] = ACTIONS(1852), + [sym__list_marker_star] = ACTIONS(1852), + [sym__list_marker_parenthesis] = ACTIONS(1852), + [sym__list_marker_dot] = ACTIONS(1852), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_example] = ACTIONS(1852), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1852), + [sym__fenced_code_block_start_backtick] = ACTIONS(1852), + [sym__fenced_code_block_start_tilde] = ACTIONS(1852), + [sym__blank_line_start] = ACTIONS(1852), + [sym_minus_metadata] = ACTIONS(1852), + [sym__pipe_table_start] = ACTIONS(1852), + [sym__fenced_div_start] = ACTIONS(1852), + [sym__fenced_div_end] = ACTIONS(1852), + [sym_ref_id_specifier] = ACTIONS(1852), + [sym__display_math_state_track_marker] = ACTIONS(1852), + [sym__inline_math_state_track_marker] = ACTIONS(1852), + [sym__code_span_start] = ACTIONS(1852), + [sym__html_comment] = ACTIONS(1852), + [sym_raw_specifier] = ACTIONS(1852), + [sym__autolink] = ACTIONS(1852), }, [STATE(277)] = { - [ts_builtin_sym_end] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1592), [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_BSLASH] = ACTIONS(1592), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1590), - [sym__escaped_characters] = ACTIONS(1590), - [sym__word] = ACTIONS(1590), - [sym__soft_line_ending] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1592), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1592), + [sym__escaped_characters] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), [sym_block_continuation] = ACTIONS(1854), - [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), - [sym__code_span_start] = ACTIONS(1590), - [sym__html_comment] = ACTIONS(1590), - [sym_raw_specifier] = ACTIONS(1590), - [sym__autolink] = ACTIONS(1590), + [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), + [sym__code_span_start] = ACTIONS(1592), + [sym__html_comment] = ACTIONS(1592), + [sym_raw_specifier] = ACTIONS(1592), + [sym__autolink] = ACTIONS(1592), }, [STATE(278)] = { - [ts_builtin_sym_end] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1598), [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_BSLASH] = ACTIONS(1598), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1596), - [sym__escaped_characters] = ACTIONS(1596), - [sym__word] = ACTIONS(1596), - [sym__soft_line_ending] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1598), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1598), + [sym__escaped_characters] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), [sym_block_continuation] = ACTIONS(1856), - [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), - [sym__code_span_start] = ACTIONS(1596), - [sym__html_comment] = ACTIONS(1596), - [sym_raw_specifier] = ACTIONS(1596), - [sym__autolink] = ACTIONS(1596), + [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), + [sym__code_span_start] = ACTIONS(1598), + [sym__html_comment] = ACTIONS(1598), + [sym_raw_specifier] = ACTIONS(1598), + [sym__autolink] = ACTIONS(1598), }, [STATE(279)] = { - [ts_builtin_sym_end] = ACTIONS(1602), + [ts_builtin_sym_end] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1604), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1602), - [sym__escaped_characters] = ACTIONS(1602), - [sym__word] = ACTIONS(1602), - [sym__soft_line_ending] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1604), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1604), + [sym__escaped_characters] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), [sym_block_continuation] = ACTIONS(1858), - [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), - [sym__code_span_start] = ACTIONS(1602), - [sym__html_comment] = ACTIONS(1602), - [sym_raw_specifier] = ACTIONS(1602), - [sym__autolink] = ACTIONS(1602), + [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), + [sym__code_span_start] = ACTIONS(1604), + [sym__html_comment] = ACTIONS(1604), + [sym_raw_specifier] = ACTIONS(1604), + [sym__autolink] = ACTIONS(1604), }, [STATE(280)] = { [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1860), - [anon_sym_EQ] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1860), - [anon_sym_PERCENT] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_RPAREN] = ACTIONS(1860), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1860), - [anon_sym_COMMA] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_DOT] = ACTIONS(1860), - [anon_sym_SLASH] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_QMARK] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_BSLASH] = ACTIONS(1862), - [anon_sym_RBRACK] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym__] = ACTIONS(1860), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1860), - [sym__escaped_characters] = ACTIONS(1860), - [sym__word] = ACTIONS(1860), - [sym__soft_line_ending] = ACTIONS(1860), - [sym__block_close] = ACTIONS(1860), - [sym__block_quote_start] = ACTIONS(1860), - [sym__indented_chunk_start] = ACTIONS(1860), - [sym_atx_h1_marker] = ACTIONS(1860), - [sym_atx_h2_marker] = ACTIONS(1860), - [sym_atx_h3_marker] = ACTIONS(1860), - [sym_atx_h4_marker] = ACTIONS(1860), - [sym_atx_h5_marker] = ACTIONS(1860), - [sym_atx_h6_marker] = ACTIONS(1860), - [sym__thematic_break] = ACTIONS(1860), - [sym__list_marker_minus] = ACTIONS(1860), - [sym__list_marker_plus] = ACTIONS(1860), - [sym__list_marker_star] = ACTIONS(1860), - [sym__list_marker_parenthesis] = ACTIONS(1860), - [sym__list_marker_dot] = ACTIONS(1860), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_example] = ACTIONS(1860), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1860), - [sym__fenced_code_block_start_backtick] = ACTIONS(1860), - [sym__fenced_code_block_start_tilde] = ACTIONS(1860), - [sym__blank_line_start] = ACTIONS(1860), - [sym_minus_metadata] = ACTIONS(1860), - [sym__pipe_table_start] = ACTIONS(1860), - [sym__fenced_div_start] = ACTIONS(1860), - [sym__fenced_div_end] = ACTIONS(1860), - [sym_ref_id_specifier] = ACTIONS(1860), - [sym__display_math_state_track_marker] = ACTIONS(1860), - [sym__inline_math_state_track_marker] = ACTIONS(1860), - [sym__code_span_start] = ACTIONS(1860), - [sym__html_comment] = ACTIONS(1860), - [sym_raw_specifier] = ACTIONS(1860), - [sym__autolink] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1862), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_PERCENT] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_BSLASH] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym__] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1862), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1862), + [sym__escaped_characters] = ACTIONS(1862), + [sym__word] = ACTIONS(1862), + [sym__soft_line_ending] = ACTIONS(1862), + [sym__block_close] = ACTIONS(1862), + [sym__block_quote_start] = ACTIONS(1862), + [sym__indented_chunk_start] = ACTIONS(1862), + [sym_atx_h1_marker] = ACTIONS(1862), + [sym_atx_h2_marker] = ACTIONS(1862), + [sym_atx_h3_marker] = ACTIONS(1862), + [sym_atx_h4_marker] = ACTIONS(1862), + [sym_atx_h5_marker] = ACTIONS(1862), + [sym_atx_h6_marker] = ACTIONS(1862), + [sym__thematic_break] = ACTIONS(1862), + [sym__list_marker_minus] = ACTIONS(1862), + [sym__list_marker_plus] = ACTIONS(1862), + [sym__list_marker_star] = ACTIONS(1862), + [sym__list_marker_parenthesis] = ACTIONS(1862), + [sym__list_marker_dot] = ACTIONS(1862), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_example] = ACTIONS(1862), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1862), + [sym__fenced_code_block_start_backtick] = ACTIONS(1862), + [sym__fenced_code_block_start_tilde] = ACTIONS(1862), + [sym__blank_line_start] = ACTIONS(1862), + [sym_minus_metadata] = ACTIONS(1862), + [sym__pipe_table_start] = ACTIONS(1862), + [sym__fenced_div_start] = ACTIONS(1862), + [sym__fenced_div_end] = ACTIONS(1862), + [sym_ref_id_specifier] = ACTIONS(1862), + [sym__display_math_state_track_marker] = ACTIONS(1862), + [sym__inline_math_state_track_marker] = ACTIONS(1862), + [sym__code_span_start] = ACTIONS(1862), + [sym__html_comment] = ACTIONS(1862), + [sym_raw_specifier] = ACTIONS(1862), + [sym__autolink] = ACTIONS(1862), }, [STATE(281)] = { - [ts_builtin_sym_end] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1512), [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1510), - [sym__escaped_characters] = ACTIONS(1510), - [sym__word] = ACTIONS(1510), - [sym__soft_line_ending] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(1510), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_example] = ACTIONS(1510), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym_minus_metadata] = ACTIONS(1510), - [sym__pipe_table_start] = ACTIONS(1510), - [sym__fenced_div_start] = ACTIONS(1510), - [sym_ref_id_specifier] = ACTIONS(1510), - [sym__display_math_state_track_marker] = ACTIONS(1510), - [sym__inline_math_state_track_marker] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__html_comment] = ACTIONS(1510), - [sym_raw_specifier] = ACTIONS(1510), - [sym__autolink] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1510), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1512), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1512), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1512), + [sym__html_comment] = ACTIONS(1512), + [sym_raw_specifier] = ACTIONS(1512), + [sym__autolink] = ACTIONS(1512), }, [STATE(282)] = { [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_BSLASH] = ACTIONS(1538), - [anon_sym_RBRACK] = ACTIONS(1536), - [anon_sym_CARET] = ACTIONS(1536), - [anon_sym__] = ACTIONS(1536), - [anon_sym_BQUOTE] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1536), - [sym__escaped_characters] = ACTIONS(1536), - [sym__word] = ACTIONS(1536), - [sym__soft_line_ending] = ACTIONS(1536), - [sym__block_close] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1538), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1538), + [sym__escaped_characters] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_close] = ACTIONS(1538), [sym_block_continuation] = ACTIONS(1866), - [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), - [sym__code_span_start] = ACTIONS(1536), - [sym__html_comment] = ACTIONS(1536), - [sym_raw_specifier] = ACTIONS(1536), - [sym__autolink] = ACTIONS(1536), + [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), + [sym__code_span_start] = ACTIONS(1538), + [sym__html_comment] = ACTIONS(1538), + [sym_raw_specifier] = ACTIONS(1538), + [sym__autolink] = ACTIONS(1538), }, [STATE(283)] = { [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_BSLASH] = ACTIONS(1544), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1542), - [sym__escaped_characters] = ACTIONS(1542), - [sym__word] = ACTIONS(1542), - [sym__soft_line_ending] = ACTIONS(1542), - [sym__block_close] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1544), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1544), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1544), + [sym__escaped_characters] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_close] = ACTIONS(1544), [sym_block_continuation] = ACTIONS(1868), - [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), - [sym__code_span_start] = ACTIONS(1542), - [sym__html_comment] = ACTIONS(1542), - [sym_raw_specifier] = ACTIONS(1542), - [sym__autolink] = ACTIONS(1542), + [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), + [sym__code_span_start] = ACTIONS(1544), + [sym__html_comment] = ACTIONS(1544), + [sym_raw_specifier] = ACTIONS(1544), + [sym__autolink] = ACTIONS(1544), }, [STATE(284)] = { [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1548), - [anon_sym_AT] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_BSLASH] = ACTIONS(1550), - [anon_sym_RBRACK] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym__] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1548), - [sym__escaped_characters] = ACTIONS(1548), - [sym__word] = ACTIONS(1548), - [sym__soft_line_ending] = ACTIONS(1548), - [sym__block_close] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1550), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1550), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1550), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1550), + [sym__escaped_characters] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_close] = ACTIONS(1550), [sym_block_continuation] = ACTIONS(1870), - [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), - [sym__code_span_start] = ACTIONS(1548), - [sym__html_comment] = ACTIONS(1548), - [sym_raw_specifier] = ACTIONS(1548), - [sym__autolink] = ACTIONS(1548), + [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), + [sym__code_span_start] = ACTIONS(1550), + [sym__html_comment] = ACTIONS(1550), + [sym_raw_specifier] = ACTIONS(1550), + [sym__autolink] = ACTIONS(1550), }, [STATE(285)] = { [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1554), - [anon_sym_AT] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_BSLASH] = ACTIONS(1556), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1554), - [sym__escaped_characters] = ACTIONS(1554), - [sym__word] = ACTIONS(1554), - [sym__soft_line_ending] = ACTIONS(1554), - [sym__block_close] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1556), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1556), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1556), + [sym__escaped_characters] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_close] = ACTIONS(1556), [sym_block_continuation] = ACTIONS(1872), - [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), - [sym__code_span_start] = ACTIONS(1554), - [sym__html_comment] = ACTIONS(1554), - [sym_raw_specifier] = ACTIONS(1554), - [sym__autolink] = ACTIONS(1554), + [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), + [sym__code_span_start] = ACTIONS(1556), + [sym__html_comment] = ACTIONS(1556), + [sym_raw_specifier] = ACTIONS(1556), + [sym__autolink] = ACTIONS(1556), }, [STATE(286)] = { - [ts_builtin_sym_end] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1526), [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1526), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1524), - [sym__escaped_characters] = ACTIONS(1524), - [sym__word] = ACTIONS(1524), - [sym__soft_line_ending] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1526), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1526), + [sym__escaped_characters] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), [sym_block_continuation] = ACTIONS(1874), - [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), - [sym__code_span_start] = ACTIONS(1524), - [sym__html_comment] = ACTIONS(1524), - [sym_raw_specifier] = ACTIONS(1524), - [sym__autolink] = ACTIONS(1524), + [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), + [sym__code_span_start] = ACTIONS(1526), + [sym__html_comment] = ACTIONS(1526), + [sym_raw_specifier] = ACTIONS(1526), + [sym__autolink] = ACTIONS(1526), }, [STATE(287)] = { [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1560), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_BSLASH] = ACTIONS(1562), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1560), - [sym__escaped_characters] = ACTIONS(1560), - [sym__word] = ACTIONS(1560), - [sym__soft_line_ending] = ACTIONS(1560), - [sym__block_close] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1562), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1562), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1562), + [anon_sym_DOLLAR] = ACTIONS(1562), + [anon_sym_PERCENT] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_DOT] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1562), + [anon_sym__] = ACTIONS(1562), + [anon_sym_BQUOTE] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1562), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1562), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1562), + [sym__escaped_characters] = ACTIONS(1562), + [sym__word] = ACTIONS(1562), + [sym__soft_line_ending] = ACTIONS(1562), + [sym__block_close] = ACTIONS(1562), [sym_block_continuation] = ACTIONS(1876), - [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), - [sym__code_span_start] = ACTIONS(1560), - [sym__html_comment] = ACTIONS(1560), - [sym_raw_specifier] = ACTIONS(1560), - [sym__autolink] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1562), + [sym__indented_chunk_start] = ACTIONS(1562), + [sym_atx_h1_marker] = ACTIONS(1562), + [sym_atx_h2_marker] = ACTIONS(1562), + [sym_atx_h3_marker] = ACTIONS(1562), + [sym_atx_h4_marker] = ACTIONS(1562), + [sym_atx_h5_marker] = ACTIONS(1562), + [sym_atx_h6_marker] = ACTIONS(1562), + [sym__thematic_break] = ACTIONS(1562), + [sym__list_marker_minus] = ACTIONS(1562), + [sym__list_marker_plus] = ACTIONS(1562), + [sym__list_marker_star] = ACTIONS(1562), + [sym__list_marker_parenthesis] = ACTIONS(1562), + [sym__list_marker_dot] = ACTIONS(1562), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_example] = ACTIONS(1562), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1562), + [sym__fenced_code_block_start_backtick] = ACTIONS(1562), + [sym__fenced_code_block_start_tilde] = ACTIONS(1562), + [sym__blank_line_start] = ACTIONS(1562), + [sym_minus_metadata] = ACTIONS(1562), + [sym__pipe_table_start] = ACTIONS(1562), + [sym__fenced_div_start] = ACTIONS(1562), + [sym_ref_id_specifier] = ACTIONS(1562), + [sym__display_math_state_track_marker] = ACTIONS(1562), + [sym__inline_math_state_track_marker] = ACTIONS(1562), + [sym__code_span_start] = ACTIONS(1562), + [sym__html_comment] = ACTIONS(1562), + [sym_raw_specifier] = ACTIONS(1562), + [sym__autolink] = ACTIONS(1562), }, [STATE(288)] = { [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_BSLASH] = ACTIONS(1568), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1566), - [sym__escaped_characters] = ACTIONS(1566), - [sym__word] = ACTIONS(1566), - [sym__soft_line_ending] = ACTIONS(1566), - [sym__block_close] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1568), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1568), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_COMMA] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym__] = ACTIONS(1568), + [anon_sym_BQUOTE] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1568), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1568), + [sym__escaped_characters] = ACTIONS(1568), + [sym__word] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), + [sym__block_close] = ACTIONS(1568), [sym_block_continuation] = ACTIONS(1878), - [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), - [sym__code_span_start] = ACTIONS(1566), - [sym__html_comment] = ACTIONS(1566), - [sym_raw_specifier] = ACTIONS(1566), - [sym__autolink] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1568), + [sym__indented_chunk_start] = ACTIONS(1568), + [sym_atx_h1_marker] = ACTIONS(1568), + [sym_atx_h2_marker] = ACTIONS(1568), + [sym_atx_h3_marker] = ACTIONS(1568), + [sym_atx_h4_marker] = ACTIONS(1568), + [sym_atx_h5_marker] = ACTIONS(1568), + [sym_atx_h6_marker] = ACTIONS(1568), + [sym__thematic_break] = ACTIONS(1568), + [sym__list_marker_minus] = ACTIONS(1568), + [sym__list_marker_plus] = ACTIONS(1568), + [sym__list_marker_star] = ACTIONS(1568), + [sym__list_marker_parenthesis] = ACTIONS(1568), + [sym__list_marker_dot] = ACTIONS(1568), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_example] = ACTIONS(1568), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1568), + [sym__fenced_code_block_start_backtick] = ACTIONS(1568), + [sym__fenced_code_block_start_tilde] = ACTIONS(1568), + [sym__blank_line_start] = ACTIONS(1568), + [sym_minus_metadata] = ACTIONS(1568), + [sym__pipe_table_start] = ACTIONS(1568), + [sym__fenced_div_start] = ACTIONS(1568), + [sym_ref_id_specifier] = ACTIONS(1568), + [sym__display_math_state_track_marker] = ACTIONS(1568), + [sym__inline_math_state_track_marker] = ACTIONS(1568), + [sym__code_span_start] = ACTIONS(1568), + [sym__html_comment] = ACTIONS(1568), + [sym_raw_specifier] = ACTIONS(1568), + [sym__autolink] = ACTIONS(1568), }, [STATE(289)] = { [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1880), - [anon_sym_EQ] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_COMMA] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_DOT] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_QMARK] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_BSLASH] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym__] = ACTIONS(1880), - [anon_sym_BQUOTE] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1880), - [sym__escaped_characters] = ACTIONS(1880), - [sym__word] = ACTIONS(1880), - [sym__soft_line_ending] = ACTIONS(1880), - [sym__block_close] = ACTIONS(1880), - [sym__block_quote_start] = ACTIONS(1880), - [sym__indented_chunk_start] = ACTIONS(1880), - [sym_atx_h1_marker] = ACTIONS(1880), - [sym_atx_h2_marker] = ACTIONS(1880), - [sym_atx_h3_marker] = ACTIONS(1880), - [sym_atx_h4_marker] = ACTIONS(1880), - [sym_atx_h5_marker] = ACTIONS(1880), - [sym_atx_h6_marker] = ACTIONS(1880), - [sym__thematic_break] = ACTIONS(1880), - [sym__list_marker_minus] = ACTIONS(1880), - [sym__list_marker_plus] = ACTIONS(1880), - [sym__list_marker_star] = ACTIONS(1880), - [sym__list_marker_parenthesis] = ACTIONS(1880), - [sym__list_marker_dot] = ACTIONS(1880), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_example] = ACTIONS(1880), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1880), - [sym__fenced_code_block_start_backtick] = ACTIONS(1880), - [sym__fenced_code_block_start_tilde] = ACTIONS(1880), - [sym__blank_line_start] = ACTIONS(1880), - [sym_minus_metadata] = ACTIONS(1880), - [sym__pipe_table_start] = ACTIONS(1880), - [sym__fenced_div_start] = ACTIONS(1880), - [sym__fenced_div_end] = ACTIONS(1880), - [sym_ref_id_specifier] = ACTIONS(1880), - [sym__display_math_state_track_marker] = ACTIONS(1880), - [sym__inline_math_state_track_marker] = ACTIONS(1880), - [sym__code_span_start] = ACTIONS(1880), - [sym__html_comment] = ACTIONS(1880), - [sym_raw_specifier] = ACTIONS(1880), - [sym__autolink] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1882), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1882), + [anon_sym_PERCENT] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_BSLASH] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym__] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1882), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1882), + [sym__escaped_characters] = ACTIONS(1882), + [sym__word] = ACTIONS(1882), + [sym__soft_line_ending] = ACTIONS(1882), + [sym__block_close] = ACTIONS(1882), + [sym__block_quote_start] = ACTIONS(1882), + [sym__indented_chunk_start] = ACTIONS(1882), + [sym_atx_h1_marker] = ACTIONS(1882), + [sym_atx_h2_marker] = ACTIONS(1882), + [sym_atx_h3_marker] = ACTIONS(1882), + [sym_atx_h4_marker] = ACTIONS(1882), + [sym_atx_h5_marker] = ACTIONS(1882), + [sym_atx_h6_marker] = ACTIONS(1882), + [sym__thematic_break] = ACTIONS(1882), + [sym__list_marker_minus] = ACTIONS(1882), + [sym__list_marker_plus] = ACTIONS(1882), + [sym__list_marker_star] = ACTIONS(1882), + [sym__list_marker_parenthesis] = ACTIONS(1882), + [sym__list_marker_dot] = ACTIONS(1882), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_example] = ACTIONS(1882), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1882), + [sym__fenced_code_block_start_backtick] = ACTIONS(1882), + [sym__fenced_code_block_start_tilde] = ACTIONS(1882), + [sym__blank_line_start] = ACTIONS(1882), + [sym_minus_metadata] = ACTIONS(1882), + [sym__pipe_table_start] = ACTIONS(1882), + [sym__fenced_div_start] = ACTIONS(1882), + [sym__fenced_div_end] = ACTIONS(1882), + [sym_ref_id_specifier] = ACTIONS(1882), + [sym__display_math_state_track_marker] = ACTIONS(1882), + [sym__inline_math_state_track_marker] = ACTIONS(1882), + [sym__code_span_start] = ACTIONS(1882), + [sym__html_comment] = ACTIONS(1882), + [sym_raw_specifier] = ACTIONS(1882), + [sym__autolink] = ACTIONS(1882), }, [STATE(290)] = { [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_DOT] = ACTIONS(1884), - [anon_sym_SLASH] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_QMARK] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_BSLASH] = ACTIONS(1886), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym__] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1884), - [sym__escaped_characters] = ACTIONS(1884), - [sym__word] = ACTIONS(1884), - [sym__soft_line_ending] = ACTIONS(1884), - [sym__block_close] = ACTIONS(1884), - [sym__block_quote_start] = ACTIONS(1884), - [sym__indented_chunk_start] = ACTIONS(1884), - [sym_atx_h1_marker] = ACTIONS(1884), - [sym_atx_h2_marker] = ACTIONS(1884), - [sym_atx_h3_marker] = ACTIONS(1884), - [sym_atx_h4_marker] = ACTIONS(1884), - [sym_atx_h5_marker] = ACTIONS(1884), - [sym_atx_h6_marker] = ACTIONS(1884), - [sym__thematic_break] = ACTIONS(1884), - [sym__list_marker_minus] = ACTIONS(1884), - [sym__list_marker_plus] = ACTIONS(1884), - [sym__list_marker_star] = ACTIONS(1884), - [sym__list_marker_parenthesis] = ACTIONS(1884), - [sym__list_marker_dot] = ACTIONS(1884), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_example] = ACTIONS(1884), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1884), - [sym__fenced_code_block_start_backtick] = ACTIONS(1884), - [sym__fenced_code_block_start_tilde] = ACTIONS(1884), - [sym__blank_line_start] = ACTIONS(1884), - [sym_minus_metadata] = ACTIONS(1884), - [sym__pipe_table_start] = ACTIONS(1884), - [sym__fenced_div_start] = ACTIONS(1884), - [sym__fenced_div_end] = ACTIONS(1884), - [sym_ref_id_specifier] = ACTIONS(1884), - [sym__display_math_state_track_marker] = ACTIONS(1884), - [sym__inline_math_state_track_marker] = ACTIONS(1884), - [sym__code_span_start] = ACTIONS(1884), - [sym__html_comment] = ACTIONS(1884), - [sym_raw_specifier] = ACTIONS(1884), - [sym__autolink] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1886), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_QMARK] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_BSLASH] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1886), + [anon_sym__] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1886), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1886), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1886), + [sym__escaped_characters] = ACTIONS(1886), + [sym__word] = ACTIONS(1886), + [sym__soft_line_ending] = ACTIONS(1886), + [sym__block_close] = ACTIONS(1886), + [sym__block_quote_start] = ACTIONS(1886), + [sym__indented_chunk_start] = ACTIONS(1886), + [sym_atx_h1_marker] = ACTIONS(1886), + [sym_atx_h2_marker] = ACTIONS(1886), + [sym_atx_h3_marker] = ACTIONS(1886), + [sym_atx_h4_marker] = ACTIONS(1886), + [sym_atx_h5_marker] = ACTIONS(1886), + [sym_atx_h6_marker] = ACTIONS(1886), + [sym__thematic_break] = ACTIONS(1886), + [sym__list_marker_minus] = ACTIONS(1886), + [sym__list_marker_plus] = ACTIONS(1886), + [sym__list_marker_star] = ACTIONS(1886), + [sym__list_marker_parenthesis] = ACTIONS(1886), + [sym__list_marker_dot] = ACTIONS(1886), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_example] = ACTIONS(1886), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1886), + [sym__fenced_code_block_start_backtick] = ACTIONS(1886), + [sym__fenced_code_block_start_tilde] = ACTIONS(1886), + [sym__blank_line_start] = ACTIONS(1886), + [sym_minus_metadata] = ACTIONS(1886), + [sym__pipe_table_start] = ACTIONS(1886), + [sym__fenced_div_start] = ACTIONS(1886), + [sym__fenced_div_end] = ACTIONS(1886), + [sym_ref_id_specifier] = ACTIONS(1886), + [sym__display_math_state_track_marker] = ACTIONS(1886), + [sym__inline_math_state_track_marker] = ACTIONS(1886), + [sym__code_span_start] = ACTIONS(1886), + [sym__html_comment] = ACTIONS(1886), + [sym_raw_specifier] = ACTIONS(1886), + [sym__autolink] = ACTIONS(1886), }, [STATE(291)] = { [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1888), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_PERCENT] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(1888), - [anon_sym_SLASH] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym__] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1888), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1888), - [sym__escaped_characters] = ACTIONS(1888), - [sym__word] = ACTIONS(1888), - [sym__soft_line_ending] = ACTIONS(1888), - [sym__block_close] = ACTIONS(1888), - [sym__block_quote_start] = ACTIONS(1888), - [sym__indented_chunk_start] = ACTIONS(1888), - [sym_atx_h1_marker] = ACTIONS(1888), - [sym_atx_h2_marker] = ACTIONS(1888), - [sym_atx_h3_marker] = ACTIONS(1888), - [sym_atx_h4_marker] = ACTIONS(1888), - [sym_atx_h5_marker] = ACTIONS(1888), - [sym_atx_h6_marker] = ACTIONS(1888), - [sym__thematic_break] = ACTIONS(1888), - [sym__list_marker_minus] = ACTIONS(1888), - [sym__list_marker_plus] = ACTIONS(1888), - [sym__list_marker_star] = ACTIONS(1888), - [sym__list_marker_parenthesis] = ACTIONS(1888), - [sym__list_marker_dot] = ACTIONS(1888), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_example] = ACTIONS(1888), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1888), - [sym__fenced_code_block_start_backtick] = ACTIONS(1888), - [sym__fenced_code_block_start_tilde] = ACTIONS(1888), - [sym__blank_line_start] = ACTIONS(1888), - [sym_minus_metadata] = ACTIONS(1888), - [sym__pipe_table_start] = ACTIONS(1888), - [sym__fenced_div_start] = ACTIONS(1888), - [sym__fenced_div_end] = ACTIONS(1888), - [sym_ref_id_specifier] = ACTIONS(1888), - [sym__display_math_state_track_marker] = ACTIONS(1888), - [sym__inline_math_state_track_marker] = ACTIONS(1888), - [sym__code_span_start] = ACTIONS(1888), - [sym__html_comment] = ACTIONS(1888), - [sym_raw_specifier] = ACTIONS(1888), - [sym__autolink] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_PERCENT] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_QMARK] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_BSLASH] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym__] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1890), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1890), + [sym__escaped_characters] = ACTIONS(1890), + [sym__word] = ACTIONS(1890), + [sym__soft_line_ending] = ACTIONS(1890), + [sym__block_close] = ACTIONS(1890), + [sym__block_quote_start] = ACTIONS(1890), + [sym__indented_chunk_start] = ACTIONS(1890), + [sym_atx_h1_marker] = ACTIONS(1890), + [sym_atx_h2_marker] = ACTIONS(1890), + [sym_atx_h3_marker] = ACTIONS(1890), + [sym_atx_h4_marker] = ACTIONS(1890), + [sym_atx_h5_marker] = ACTIONS(1890), + [sym_atx_h6_marker] = ACTIONS(1890), + [sym__thematic_break] = ACTIONS(1890), + [sym__list_marker_minus] = ACTIONS(1890), + [sym__list_marker_plus] = ACTIONS(1890), + [sym__list_marker_star] = ACTIONS(1890), + [sym__list_marker_parenthesis] = ACTIONS(1890), + [sym__list_marker_dot] = ACTIONS(1890), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_example] = ACTIONS(1890), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1890), + [sym__fenced_code_block_start_backtick] = ACTIONS(1890), + [sym__fenced_code_block_start_tilde] = ACTIONS(1890), + [sym__blank_line_start] = ACTIONS(1890), + [sym_minus_metadata] = ACTIONS(1890), + [sym__pipe_table_start] = ACTIONS(1890), + [sym__fenced_div_start] = ACTIONS(1890), + [sym__fenced_div_end] = ACTIONS(1890), + [sym_ref_id_specifier] = ACTIONS(1890), + [sym__display_math_state_track_marker] = ACTIONS(1890), + [sym__inline_math_state_track_marker] = ACTIONS(1890), + [sym__code_span_start] = ACTIONS(1890), + [sym__html_comment] = ACTIONS(1890), + [sym_raw_specifier] = ACTIONS(1890), + [sym__autolink] = ACTIONS(1890), }, [STATE(292)] = { [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1892), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_PERCENT] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_QMARK] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_BSLASH] = ACTIONS(1894), - [anon_sym_RBRACK] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1892), - [anon_sym__] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1892), - [sym__escaped_characters] = ACTIONS(1892), - [sym__word] = ACTIONS(1892), - [sym__soft_line_ending] = ACTIONS(1892), - [sym__block_close] = ACTIONS(1892), - [sym__block_quote_start] = ACTIONS(1892), - [sym__indented_chunk_start] = ACTIONS(1892), - [sym_atx_h1_marker] = ACTIONS(1892), - [sym_atx_h2_marker] = ACTIONS(1892), - [sym_atx_h3_marker] = ACTIONS(1892), - [sym_atx_h4_marker] = ACTIONS(1892), - [sym_atx_h5_marker] = ACTIONS(1892), - [sym_atx_h6_marker] = ACTIONS(1892), - [sym__thematic_break] = ACTIONS(1892), - [sym__list_marker_minus] = ACTIONS(1892), - [sym__list_marker_plus] = ACTIONS(1892), - [sym__list_marker_star] = ACTIONS(1892), - [sym__list_marker_parenthesis] = ACTIONS(1892), - [sym__list_marker_dot] = ACTIONS(1892), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_example] = ACTIONS(1892), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1892), - [sym__fenced_code_block_start_backtick] = ACTIONS(1892), - [sym__fenced_code_block_start_tilde] = ACTIONS(1892), - [sym__blank_line_start] = ACTIONS(1892), - [sym_minus_metadata] = ACTIONS(1892), - [sym__pipe_table_start] = ACTIONS(1892), - [sym__fenced_div_start] = ACTIONS(1892), - [sym__fenced_div_end] = ACTIONS(1892), - [sym_ref_id_specifier] = ACTIONS(1892), - [sym__display_math_state_track_marker] = ACTIONS(1892), - [sym__inline_math_state_track_marker] = ACTIONS(1892), - [sym__code_span_start] = ACTIONS(1892), - [sym__html_comment] = ACTIONS(1892), - [sym_raw_specifier] = ACTIONS(1892), - [sym__autolink] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1894), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_COMMA] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_QMARK] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1894), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1894), + [sym__escaped_characters] = ACTIONS(1894), + [sym__word] = ACTIONS(1894), + [sym__soft_line_ending] = ACTIONS(1894), + [sym__block_close] = ACTIONS(1894), + [sym__block_quote_start] = ACTIONS(1894), + [sym__indented_chunk_start] = ACTIONS(1894), + [sym_atx_h1_marker] = ACTIONS(1894), + [sym_atx_h2_marker] = ACTIONS(1894), + [sym_atx_h3_marker] = ACTIONS(1894), + [sym_atx_h4_marker] = ACTIONS(1894), + [sym_atx_h5_marker] = ACTIONS(1894), + [sym_atx_h6_marker] = ACTIONS(1894), + [sym__thematic_break] = ACTIONS(1894), + [sym__list_marker_minus] = ACTIONS(1894), + [sym__list_marker_plus] = ACTIONS(1894), + [sym__list_marker_star] = ACTIONS(1894), + [sym__list_marker_parenthesis] = ACTIONS(1894), + [sym__list_marker_dot] = ACTIONS(1894), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_example] = ACTIONS(1894), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1894), + [sym__fenced_code_block_start_backtick] = ACTIONS(1894), + [sym__fenced_code_block_start_tilde] = ACTIONS(1894), + [sym__blank_line_start] = ACTIONS(1894), + [sym_minus_metadata] = ACTIONS(1894), + [sym__pipe_table_start] = ACTIONS(1894), + [sym__fenced_div_start] = ACTIONS(1894), + [sym__fenced_div_end] = ACTIONS(1894), + [sym_ref_id_specifier] = ACTIONS(1894), + [sym__display_math_state_track_marker] = ACTIONS(1894), + [sym__inline_math_state_track_marker] = ACTIONS(1894), + [sym__code_span_start] = ACTIONS(1894), + [sym__html_comment] = ACTIONS(1894), + [sym_raw_specifier] = ACTIONS(1894), + [sym__autolink] = ACTIONS(1894), }, [STATE(293)] = { [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_PERCENT] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(1896), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_BSLASH] = ACTIONS(1898), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1896), - [anon_sym__] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1896), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1896), - [sym__escaped_characters] = ACTIONS(1896), - [sym__word] = ACTIONS(1896), - [sym__soft_line_ending] = ACTIONS(1896), - [sym__block_close] = ACTIONS(1896), - [sym__block_quote_start] = ACTIONS(1896), - [sym__indented_chunk_start] = ACTIONS(1896), - [sym_atx_h1_marker] = ACTIONS(1896), - [sym_atx_h2_marker] = ACTIONS(1896), - [sym_atx_h3_marker] = ACTIONS(1896), - [sym_atx_h4_marker] = ACTIONS(1896), - [sym_atx_h5_marker] = ACTIONS(1896), - [sym_atx_h6_marker] = ACTIONS(1896), - [sym__thematic_break] = ACTIONS(1896), - [sym__list_marker_minus] = ACTIONS(1896), - [sym__list_marker_plus] = ACTIONS(1896), - [sym__list_marker_star] = ACTIONS(1896), - [sym__list_marker_parenthesis] = ACTIONS(1896), - [sym__list_marker_dot] = ACTIONS(1896), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_example] = ACTIONS(1896), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1896), - [sym__fenced_code_block_start_backtick] = ACTIONS(1896), - [sym__fenced_code_block_start_tilde] = ACTIONS(1896), - [sym__blank_line_start] = ACTIONS(1896), - [sym_minus_metadata] = ACTIONS(1896), - [sym__pipe_table_start] = ACTIONS(1896), - [sym__fenced_div_start] = ACTIONS(1896), - [sym__fenced_div_end] = ACTIONS(1896), - [sym_ref_id_specifier] = ACTIONS(1896), - [sym__display_math_state_track_marker] = ACTIONS(1896), - [sym__inline_math_state_track_marker] = ACTIONS(1896), - [sym__code_span_start] = ACTIONS(1896), - [sym__html_comment] = ACTIONS(1896), - [sym_raw_specifier] = ACTIONS(1896), - [sym__autolink] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1898), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_PERCENT] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_DOT] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_BSLASH] = ACTIONS(1896), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1898), + [anon_sym__] = ACTIONS(1898), + [anon_sym_BQUOTE] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1898), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1898), + [sym__escaped_characters] = ACTIONS(1898), + [sym__word] = ACTIONS(1898), + [sym__soft_line_ending] = ACTIONS(1898), + [sym__block_close] = ACTIONS(1898), + [sym__block_quote_start] = ACTIONS(1898), + [sym__indented_chunk_start] = ACTIONS(1898), + [sym_atx_h1_marker] = ACTIONS(1898), + [sym_atx_h2_marker] = ACTIONS(1898), + [sym_atx_h3_marker] = ACTIONS(1898), + [sym_atx_h4_marker] = ACTIONS(1898), + [sym_atx_h5_marker] = ACTIONS(1898), + [sym_atx_h6_marker] = ACTIONS(1898), + [sym__thematic_break] = ACTIONS(1898), + [sym__list_marker_minus] = ACTIONS(1898), + [sym__list_marker_plus] = ACTIONS(1898), + [sym__list_marker_star] = ACTIONS(1898), + [sym__list_marker_parenthesis] = ACTIONS(1898), + [sym__list_marker_dot] = ACTIONS(1898), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_example] = ACTIONS(1898), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1898), + [sym__fenced_code_block_start_backtick] = ACTIONS(1898), + [sym__fenced_code_block_start_tilde] = ACTIONS(1898), + [sym__blank_line_start] = ACTIONS(1898), + [sym_minus_metadata] = ACTIONS(1898), + [sym__pipe_table_start] = ACTIONS(1898), + [sym__fenced_div_start] = ACTIONS(1898), + [sym__fenced_div_end] = ACTIONS(1898), + [sym_ref_id_specifier] = ACTIONS(1898), + [sym__display_math_state_track_marker] = ACTIONS(1898), + [sym__inline_math_state_track_marker] = ACTIONS(1898), + [sym__code_span_start] = ACTIONS(1898), + [sym__html_comment] = ACTIONS(1898), + [sym_raw_specifier] = ACTIONS(1898), + [sym__autolink] = ACTIONS(1898), }, [STATE(294)] = { - [ts_builtin_sym_end] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1622), [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1620), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_BSLASH] = ACTIONS(1622), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1620), - [sym__escaped_characters] = ACTIONS(1620), - [sym__word] = ACTIONS(1620), - [sym__soft_line_ending] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1622), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1622), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1622), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1622), + [sym__escaped_characters] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), [sym_block_continuation] = ACTIONS(1900), - [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), - [sym__code_span_start] = ACTIONS(1620), - [sym__html_comment] = ACTIONS(1620), - [sym_raw_specifier] = ACTIONS(1620), - [sym__autolink] = ACTIONS(1620), + [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), + [sym__code_span_start] = ACTIONS(1622), + [sym__html_comment] = ACTIONS(1622), + [sym_raw_specifier] = ACTIONS(1622), + [sym__autolink] = ACTIONS(1622), }, [STATE(295)] = { [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_COMMA] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_DOT] = ACTIONS(1902), - [anon_sym_SLASH] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_QMARK] = ACTIONS(1902), - [anon_sym_AT] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_BSLASH] = ACTIONS(1904), - [anon_sym_RBRACK] = ACTIONS(1902), - [anon_sym_CARET] = ACTIONS(1902), - [anon_sym__] = ACTIONS(1902), - [anon_sym_BQUOTE] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1902), - [sym__escaped_characters] = ACTIONS(1902), - [sym__word] = ACTIONS(1902), - [sym__soft_line_ending] = ACTIONS(1902), - [sym__block_close] = ACTIONS(1902), - [sym__block_quote_start] = ACTIONS(1902), - [sym__indented_chunk_start] = ACTIONS(1902), - [sym_atx_h1_marker] = ACTIONS(1902), - [sym_atx_h2_marker] = ACTIONS(1902), - [sym_atx_h3_marker] = ACTIONS(1902), - [sym_atx_h4_marker] = ACTIONS(1902), - [sym_atx_h5_marker] = ACTIONS(1902), - [sym_atx_h6_marker] = ACTIONS(1902), - [sym__thematic_break] = ACTIONS(1902), - [sym__list_marker_minus] = ACTIONS(1902), - [sym__list_marker_plus] = ACTIONS(1902), - [sym__list_marker_star] = ACTIONS(1902), - [sym__list_marker_parenthesis] = ACTIONS(1902), - [sym__list_marker_dot] = ACTIONS(1902), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_example] = ACTIONS(1902), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1902), - [sym__fenced_code_block_start_backtick] = ACTIONS(1902), - [sym__fenced_code_block_start_tilde] = ACTIONS(1902), - [sym__blank_line_start] = ACTIONS(1902), - [sym_minus_metadata] = ACTIONS(1902), - [sym__pipe_table_start] = ACTIONS(1902), - [sym__fenced_div_start] = ACTIONS(1902), - [sym__fenced_div_end] = ACTIONS(1902), - [sym_ref_id_specifier] = ACTIONS(1902), - [sym__display_math_state_track_marker] = ACTIONS(1902), - [sym__inline_math_state_track_marker] = ACTIONS(1902), - [sym__code_span_start] = ACTIONS(1902), - [sym__html_comment] = ACTIONS(1902), - [sym_raw_specifier] = ACTIONS(1902), - [sym__autolink] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1904), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1904), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_DOLLAR] = ACTIONS(1904), + [anon_sym_PERCENT] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(1904), + [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_QMARK] = ACTIONS(1904), + [anon_sym_AT] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_BSLASH] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1904), + [anon_sym_CARET] = ACTIONS(1904), + [anon_sym__] = ACTIONS(1904), + [anon_sym_BQUOTE] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1904), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1904), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1904), + [sym__escaped_characters] = ACTIONS(1904), + [sym__word] = ACTIONS(1904), + [sym__soft_line_ending] = ACTIONS(1904), + [sym__block_close] = ACTIONS(1904), + [sym__block_quote_start] = ACTIONS(1904), + [sym__indented_chunk_start] = ACTIONS(1904), + [sym_atx_h1_marker] = ACTIONS(1904), + [sym_atx_h2_marker] = ACTIONS(1904), + [sym_atx_h3_marker] = ACTIONS(1904), + [sym_atx_h4_marker] = ACTIONS(1904), + [sym_atx_h5_marker] = ACTIONS(1904), + [sym_atx_h6_marker] = ACTIONS(1904), + [sym__thematic_break] = ACTIONS(1904), + [sym__list_marker_minus] = ACTIONS(1904), + [sym__list_marker_plus] = ACTIONS(1904), + [sym__list_marker_star] = ACTIONS(1904), + [sym__list_marker_parenthesis] = ACTIONS(1904), + [sym__list_marker_dot] = ACTIONS(1904), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_example] = ACTIONS(1904), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1904), + [sym__fenced_code_block_start_backtick] = ACTIONS(1904), + [sym__fenced_code_block_start_tilde] = ACTIONS(1904), + [sym__blank_line_start] = ACTIONS(1904), + [sym_minus_metadata] = ACTIONS(1904), + [sym__pipe_table_start] = ACTIONS(1904), + [sym__fenced_div_start] = ACTIONS(1904), + [sym__fenced_div_end] = ACTIONS(1904), + [sym_ref_id_specifier] = ACTIONS(1904), + [sym__display_math_state_track_marker] = ACTIONS(1904), + [sym__inline_math_state_track_marker] = ACTIONS(1904), + [sym__code_span_start] = ACTIONS(1904), + [sym__html_comment] = ACTIONS(1904), + [sym_raw_specifier] = ACTIONS(1904), + [sym__autolink] = ACTIONS(1904), }, [STATE(296)] = { [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_RPAREN] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_COMMA] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_DOT] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_QMARK] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_BSLASH] = ACTIONS(1908), - [anon_sym_RBRACK] = ACTIONS(1906), - [anon_sym_CARET] = ACTIONS(1906), - [anon_sym__] = ACTIONS(1906), - [anon_sym_BQUOTE] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1906), - [sym__escaped_characters] = ACTIONS(1906), - [sym__word] = ACTIONS(1906), - [sym__soft_line_ending] = ACTIONS(1906), - [sym__block_close] = ACTIONS(1906), - [sym__block_quote_start] = ACTIONS(1906), - [sym__indented_chunk_start] = ACTIONS(1906), - [sym_atx_h1_marker] = ACTIONS(1906), - [sym_atx_h2_marker] = ACTIONS(1906), - [sym_atx_h3_marker] = ACTIONS(1906), - [sym_atx_h4_marker] = ACTIONS(1906), - [sym_atx_h5_marker] = ACTIONS(1906), - [sym_atx_h6_marker] = ACTIONS(1906), - [sym__thematic_break] = ACTIONS(1906), - [sym__list_marker_minus] = ACTIONS(1906), - [sym__list_marker_plus] = ACTIONS(1906), - [sym__list_marker_star] = ACTIONS(1906), - [sym__list_marker_parenthesis] = ACTIONS(1906), - [sym__list_marker_dot] = ACTIONS(1906), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_example] = ACTIONS(1906), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1906), - [sym__fenced_code_block_start_backtick] = ACTIONS(1906), - [sym__fenced_code_block_start_tilde] = ACTIONS(1906), - [sym__blank_line_start] = ACTIONS(1906), - [sym_minus_metadata] = ACTIONS(1906), - [sym__pipe_table_start] = ACTIONS(1906), - [sym__fenced_div_start] = ACTIONS(1906), - [sym__fenced_div_end] = ACTIONS(1906), - [sym_ref_id_specifier] = ACTIONS(1906), - [sym__display_math_state_track_marker] = ACTIONS(1906), - [sym__inline_math_state_track_marker] = ACTIONS(1906), - [sym__code_span_start] = ACTIONS(1906), - [sym__html_comment] = ACTIONS(1906), - [sym_raw_specifier] = ACTIONS(1906), - [sym__autolink] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1908), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1908), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_BSLASH] = ACTIONS(1906), + [anon_sym_RBRACK] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1908), + [anon_sym__] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1908), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1908), + [sym__escaped_characters] = ACTIONS(1908), + [sym__word] = ACTIONS(1908), + [sym__soft_line_ending] = ACTIONS(1908), + [sym__block_close] = ACTIONS(1908), + [sym__block_quote_start] = ACTIONS(1908), + [sym__indented_chunk_start] = ACTIONS(1908), + [sym_atx_h1_marker] = ACTIONS(1908), + [sym_atx_h2_marker] = ACTIONS(1908), + [sym_atx_h3_marker] = ACTIONS(1908), + [sym_atx_h4_marker] = ACTIONS(1908), + [sym_atx_h5_marker] = ACTIONS(1908), + [sym_atx_h6_marker] = ACTIONS(1908), + [sym__thematic_break] = ACTIONS(1908), + [sym__list_marker_minus] = ACTIONS(1908), + [sym__list_marker_plus] = ACTIONS(1908), + [sym__list_marker_star] = ACTIONS(1908), + [sym__list_marker_parenthesis] = ACTIONS(1908), + [sym__list_marker_dot] = ACTIONS(1908), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_example] = ACTIONS(1908), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1908), + [sym__fenced_code_block_start_backtick] = ACTIONS(1908), + [sym__fenced_code_block_start_tilde] = ACTIONS(1908), + [sym__blank_line_start] = ACTIONS(1908), + [sym_minus_metadata] = ACTIONS(1908), + [sym__pipe_table_start] = ACTIONS(1908), + [sym__fenced_div_start] = ACTIONS(1908), + [sym__fenced_div_end] = ACTIONS(1908), + [sym_ref_id_specifier] = ACTIONS(1908), + [sym__display_math_state_track_marker] = ACTIONS(1908), + [sym__inline_math_state_track_marker] = ACTIONS(1908), + [sym__code_span_start] = ACTIONS(1908), + [sym__html_comment] = ACTIONS(1908), + [sym_raw_specifier] = ACTIONS(1908), + [sym__autolink] = ACTIONS(1908), }, [STATE(297)] = { - [ts_builtin_sym_end] = ACTIONS(1626), + [ts_builtin_sym_end] = ACTIONS(1628), [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(1626), - [anon_sym_PERCENT] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_BSLASH] = ACTIONS(1628), - [anon_sym_RBRACK] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1626), - [anon_sym__] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1626), - [sym__escaped_characters] = ACTIONS(1626), - [sym__word] = ACTIONS(1626), - [sym__soft_line_ending] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1628), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1628), + [anon_sym_AT] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym__] = ACTIONS(1628), + [anon_sym_BQUOTE] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1628), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1628), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1628), + [sym__escaped_characters] = ACTIONS(1628), + [sym__word] = ACTIONS(1628), + [sym__soft_line_ending] = ACTIONS(1628), [sym_block_continuation] = ACTIONS(1910), - [sym__block_quote_start] = ACTIONS(1626), - [sym__indented_chunk_start] = ACTIONS(1626), - [sym_atx_h1_marker] = ACTIONS(1626), - [sym_atx_h2_marker] = ACTIONS(1626), - [sym_atx_h3_marker] = ACTIONS(1626), - [sym_atx_h4_marker] = ACTIONS(1626), - [sym_atx_h5_marker] = ACTIONS(1626), - [sym_atx_h6_marker] = ACTIONS(1626), - [sym__thematic_break] = ACTIONS(1626), - [sym__list_marker_minus] = ACTIONS(1626), - [sym__list_marker_plus] = ACTIONS(1626), - [sym__list_marker_star] = ACTIONS(1626), - [sym__list_marker_parenthesis] = ACTIONS(1626), - [sym__list_marker_dot] = ACTIONS(1626), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_example] = ACTIONS(1626), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1626), - [sym__fenced_code_block_start_backtick] = ACTIONS(1626), - [sym__fenced_code_block_start_tilde] = ACTIONS(1626), - [sym__blank_line_start] = ACTIONS(1626), - [sym_minus_metadata] = ACTIONS(1626), - [sym__pipe_table_start] = ACTIONS(1626), - [sym__fenced_div_start] = ACTIONS(1626), - [sym_ref_id_specifier] = ACTIONS(1626), - [sym__display_math_state_track_marker] = ACTIONS(1626), - [sym__inline_math_state_track_marker] = ACTIONS(1626), - [sym__code_span_start] = ACTIONS(1626), - [sym__html_comment] = ACTIONS(1626), - [sym_raw_specifier] = ACTIONS(1626), - [sym__autolink] = ACTIONS(1626), + [sym__block_quote_start] = ACTIONS(1628), + [sym__indented_chunk_start] = ACTIONS(1628), + [sym_atx_h1_marker] = ACTIONS(1628), + [sym_atx_h2_marker] = ACTIONS(1628), + [sym_atx_h3_marker] = ACTIONS(1628), + [sym_atx_h4_marker] = ACTIONS(1628), + [sym_atx_h5_marker] = ACTIONS(1628), + [sym_atx_h6_marker] = ACTIONS(1628), + [sym__thematic_break] = ACTIONS(1628), + [sym__list_marker_minus] = ACTIONS(1628), + [sym__list_marker_plus] = ACTIONS(1628), + [sym__list_marker_star] = ACTIONS(1628), + [sym__list_marker_parenthesis] = ACTIONS(1628), + [sym__list_marker_dot] = ACTIONS(1628), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_example] = ACTIONS(1628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1628), + [sym__fenced_code_block_start_backtick] = ACTIONS(1628), + [sym__fenced_code_block_start_tilde] = ACTIONS(1628), + [sym__blank_line_start] = ACTIONS(1628), + [sym_minus_metadata] = ACTIONS(1628), + [sym__pipe_table_start] = ACTIONS(1628), + [sym__fenced_div_start] = ACTIONS(1628), + [sym_ref_id_specifier] = ACTIONS(1628), + [sym__display_math_state_track_marker] = ACTIONS(1628), + [sym__inline_math_state_track_marker] = ACTIONS(1628), + [sym__code_span_start] = ACTIONS(1628), + [sym__html_comment] = ACTIONS(1628), + [sym_raw_specifier] = ACTIONS(1628), + [sym__autolink] = ACTIONS(1628), }, [STATE(298)] = { - [ts_builtin_sym_end] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1610), [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_AT] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_BSLASH] = ACTIONS(1610), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1608), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1608), - [sym__html_comment] = ACTIONS(1608), - [sym_raw_specifier] = ACTIONS(1608), - [sym__autolink] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1610), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1610), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1610), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1610), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1610), + [sym__html_comment] = ACTIONS(1610), + [sym_raw_specifier] = ACTIONS(1610), + [sym__autolink] = ACTIONS(1610), }, [STATE(299)] = { [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1912), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [anon_sym_PERCENT] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_COMMA] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(1912), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_QMARK] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_BSLASH] = ACTIONS(1914), - [anon_sym_RBRACK] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1912), - [anon_sym__] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1912), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1912), - [sym__escaped_characters] = ACTIONS(1912), - [sym__word] = ACTIONS(1912), - [sym__soft_line_ending] = ACTIONS(1912), - [sym__block_close] = ACTIONS(1912), - [sym__block_quote_start] = ACTIONS(1912), - [sym__indented_chunk_start] = ACTIONS(1912), - [sym_atx_h1_marker] = ACTIONS(1912), - [sym_atx_h2_marker] = ACTIONS(1912), - [sym_atx_h3_marker] = ACTIONS(1912), - [sym_atx_h4_marker] = ACTIONS(1912), - [sym_atx_h5_marker] = ACTIONS(1912), - [sym_atx_h6_marker] = ACTIONS(1912), - [sym__thematic_break] = ACTIONS(1912), - [sym__list_marker_minus] = ACTIONS(1912), - [sym__list_marker_plus] = ACTIONS(1912), - [sym__list_marker_star] = ACTIONS(1912), - [sym__list_marker_parenthesis] = ACTIONS(1912), - [sym__list_marker_dot] = ACTIONS(1912), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_example] = ACTIONS(1912), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1912), - [sym__fenced_code_block_start_backtick] = ACTIONS(1912), - [sym__fenced_code_block_start_tilde] = ACTIONS(1912), - [sym__blank_line_start] = ACTIONS(1912), - [sym_minus_metadata] = ACTIONS(1912), - [sym__pipe_table_start] = ACTIONS(1912), - [sym__fenced_div_start] = ACTIONS(1912), - [sym__fenced_div_end] = ACTIONS(1912), - [sym_ref_id_specifier] = ACTIONS(1912), - [sym__display_math_state_track_marker] = ACTIONS(1912), - [sym__inline_math_state_track_marker] = ACTIONS(1912), - [sym__code_span_start] = ACTIONS(1912), - [sym__html_comment] = ACTIONS(1912), - [sym_raw_specifier] = ACTIONS(1912), - [sym__autolink] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1914), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_PERCENT] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_DOT] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_QMARK] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_BSLASH] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym__] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1914), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1914), + [sym__escaped_characters] = ACTIONS(1914), + [sym__word] = ACTIONS(1914), + [sym__soft_line_ending] = ACTIONS(1914), + [sym__block_close] = ACTIONS(1914), + [sym__block_quote_start] = ACTIONS(1914), + [sym__indented_chunk_start] = ACTIONS(1914), + [sym_atx_h1_marker] = ACTIONS(1914), + [sym_atx_h2_marker] = ACTIONS(1914), + [sym_atx_h3_marker] = ACTIONS(1914), + [sym_atx_h4_marker] = ACTIONS(1914), + [sym_atx_h5_marker] = ACTIONS(1914), + [sym_atx_h6_marker] = ACTIONS(1914), + [sym__thematic_break] = ACTIONS(1914), + [sym__list_marker_minus] = ACTIONS(1914), + [sym__list_marker_plus] = ACTIONS(1914), + [sym__list_marker_star] = ACTIONS(1914), + [sym__list_marker_parenthesis] = ACTIONS(1914), + [sym__list_marker_dot] = ACTIONS(1914), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_example] = ACTIONS(1914), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1914), + [sym__fenced_code_block_start_backtick] = ACTIONS(1914), + [sym__fenced_code_block_start_tilde] = ACTIONS(1914), + [sym__blank_line_start] = ACTIONS(1914), + [sym_minus_metadata] = ACTIONS(1914), + [sym__pipe_table_start] = ACTIONS(1914), + [sym__fenced_div_start] = ACTIONS(1914), + [sym__fenced_div_end] = ACTIONS(1914), + [sym_ref_id_specifier] = ACTIONS(1914), + [sym__display_math_state_track_marker] = ACTIONS(1914), + [sym__inline_math_state_track_marker] = ACTIONS(1914), + [sym__code_span_start] = ACTIONS(1914), + [sym__html_comment] = ACTIONS(1914), + [sym_raw_specifier] = ACTIONS(1914), + [sym__autolink] = ACTIONS(1914), }, [STATE(300)] = { [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1512), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1510), - [anon_sym_AT] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_BSLASH] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym__] = ACTIONS(1510), - [anon_sym_BQUOTE] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1510), - [sym__escaped_characters] = ACTIONS(1510), - [sym__word] = ACTIONS(1510), - [sym__soft_line_ending] = ACTIONS(1510), - [sym__block_close] = ACTIONS(1510), - [sym__block_quote_start] = ACTIONS(1510), - [sym__indented_chunk_start] = ACTIONS(1510), - [sym_atx_h1_marker] = ACTIONS(1510), - [sym_atx_h2_marker] = ACTIONS(1510), - [sym_atx_h3_marker] = ACTIONS(1510), - [sym_atx_h4_marker] = ACTIONS(1510), - [sym_atx_h5_marker] = ACTIONS(1510), - [sym_atx_h6_marker] = ACTIONS(1510), - [sym__thematic_break] = ACTIONS(1510), - [sym__list_marker_minus] = ACTIONS(1510), - [sym__list_marker_plus] = ACTIONS(1510), - [sym__list_marker_star] = ACTIONS(1510), - [sym__list_marker_parenthesis] = ACTIONS(1510), - [sym__list_marker_dot] = ACTIONS(1510), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1510), - [sym__list_marker_example] = ACTIONS(1510), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1510), - [sym__fenced_code_block_start_backtick] = ACTIONS(1510), - [sym__fenced_code_block_start_tilde] = ACTIONS(1510), - [sym__blank_line_start] = ACTIONS(1510), - [sym_minus_metadata] = ACTIONS(1510), - [sym__pipe_table_start] = ACTIONS(1510), - [sym__fenced_div_start] = ACTIONS(1510), - [sym_ref_id_specifier] = ACTIONS(1510), - [sym__display_math_state_track_marker] = ACTIONS(1510), - [sym__inline_math_state_track_marker] = ACTIONS(1510), - [sym__code_span_start] = ACTIONS(1510), - [sym__html_comment] = ACTIONS(1510), - [sym_raw_specifier] = ACTIONS(1510), - [sym__autolink] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1510), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1512), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1512), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1512), + [sym__html_comment] = ACTIONS(1512), + [sym_raw_specifier] = ACTIONS(1512), + [sym__autolink] = ACTIONS(1512), }, [STATE(301)] = { [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [anon_sym_PERCENT] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_PLUS] = ACTIONS(1916), - [anon_sym_COMMA] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_DOT] = ACTIONS(1916), - [anon_sym_SLASH] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_QMARK] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym__] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1916), - [sym__escaped_characters] = ACTIONS(1916), - [sym__word] = ACTIONS(1916), - [sym__soft_line_ending] = ACTIONS(1916), - [sym__block_close] = ACTIONS(1916), - [sym__block_quote_start] = ACTIONS(1916), - [sym__indented_chunk_start] = ACTIONS(1916), - [sym_atx_h1_marker] = ACTIONS(1916), - [sym_atx_h2_marker] = ACTIONS(1916), - [sym_atx_h3_marker] = ACTIONS(1916), - [sym_atx_h4_marker] = ACTIONS(1916), - [sym_atx_h5_marker] = ACTIONS(1916), - [sym_atx_h6_marker] = ACTIONS(1916), - [sym__thematic_break] = ACTIONS(1916), - [sym__list_marker_minus] = ACTIONS(1916), - [sym__list_marker_plus] = ACTIONS(1916), - [sym__list_marker_star] = ACTIONS(1916), - [sym__list_marker_parenthesis] = ACTIONS(1916), - [sym__list_marker_dot] = ACTIONS(1916), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_example] = ACTIONS(1916), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1916), - [sym__fenced_code_block_start_backtick] = ACTIONS(1916), - [sym__fenced_code_block_start_tilde] = ACTIONS(1916), - [sym__blank_line_start] = ACTIONS(1916), - [sym_minus_metadata] = ACTIONS(1916), - [sym__pipe_table_start] = ACTIONS(1916), - [sym__fenced_div_start] = ACTIONS(1916), - [sym__fenced_div_end] = ACTIONS(1916), - [sym_ref_id_specifier] = ACTIONS(1916), - [sym__display_math_state_track_marker] = ACTIONS(1916), - [sym__inline_math_state_track_marker] = ACTIONS(1916), - [sym__code_span_start] = ACTIONS(1916), - [sym__html_comment] = ACTIONS(1916), - [sym_raw_specifier] = ACTIONS(1916), - [sym__autolink] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1918), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_DOT] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_QMARK] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_BQUOTE] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1918), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1918), + [sym__escaped_characters] = ACTIONS(1918), + [sym__word] = ACTIONS(1918), + [sym__soft_line_ending] = ACTIONS(1918), + [sym__block_close] = ACTIONS(1918), + [sym__block_quote_start] = ACTIONS(1918), + [sym__indented_chunk_start] = ACTIONS(1918), + [sym_atx_h1_marker] = ACTIONS(1918), + [sym_atx_h2_marker] = ACTIONS(1918), + [sym_atx_h3_marker] = ACTIONS(1918), + [sym_atx_h4_marker] = ACTIONS(1918), + [sym_atx_h5_marker] = ACTIONS(1918), + [sym_atx_h6_marker] = ACTIONS(1918), + [sym__thematic_break] = ACTIONS(1918), + [sym__list_marker_minus] = ACTIONS(1918), + [sym__list_marker_plus] = ACTIONS(1918), + [sym__list_marker_star] = ACTIONS(1918), + [sym__list_marker_parenthesis] = ACTIONS(1918), + [sym__list_marker_dot] = ACTIONS(1918), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_example] = ACTIONS(1918), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1918), + [sym__fenced_code_block_start_backtick] = ACTIONS(1918), + [sym__fenced_code_block_start_tilde] = ACTIONS(1918), + [sym__blank_line_start] = ACTIONS(1918), + [sym_minus_metadata] = ACTIONS(1918), + [sym__pipe_table_start] = ACTIONS(1918), + [sym__fenced_div_start] = ACTIONS(1918), + [sym__fenced_div_end] = ACTIONS(1918), + [sym_ref_id_specifier] = ACTIONS(1918), + [sym__display_math_state_track_marker] = ACTIONS(1918), + [sym__inline_math_state_track_marker] = ACTIONS(1918), + [sym__code_span_start] = ACTIONS(1918), + [sym__html_comment] = ACTIONS(1918), + [sym_raw_specifier] = ACTIONS(1918), + [sym__autolink] = ACTIONS(1918), }, [STATE(302)] = { [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_PERCENT] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_DOT] = ACTIONS(1920), - [anon_sym_SLASH] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_QMARK] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_BSLASH] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [anon_sym__] = ACTIONS(1920), - [anon_sym_BQUOTE] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1920), - [sym__escaped_characters] = ACTIONS(1920), - [sym__word] = ACTIONS(1920), - [sym__soft_line_ending] = ACTIONS(1920), - [sym__block_close] = ACTIONS(1920), - [sym__block_quote_start] = ACTIONS(1920), - [sym__indented_chunk_start] = ACTIONS(1920), - [sym_atx_h1_marker] = ACTIONS(1920), - [sym_atx_h2_marker] = ACTIONS(1920), - [sym_atx_h3_marker] = ACTIONS(1920), - [sym_atx_h4_marker] = ACTIONS(1920), - [sym_atx_h5_marker] = ACTIONS(1920), - [sym_atx_h6_marker] = ACTIONS(1920), - [sym__thematic_break] = ACTIONS(1920), - [sym__list_marker_minus] = ACTIONS(1920), - [sym__list_marker_plus] = ACTIONS(1920), - [sym__list_marker_star] = ACTIONS(1920), - [sym__list_marker_parenthesis] = ACTIONS(1920), - [sym__list_marker_dot] = ACTIONS(1920), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_example] = ACTIONS(1920), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1920), - [sym__fenced_code_block_start_backtick] = ACTIONS(1920), - [sym__fenced_code_block_start_tilde] = ACTIONS(1920), - [sym__blank_line_start] = ACTIONS(1920), - [sym_minus_metadata] = ACTIONS(1920), - [sym__pipe_table_start] = ACTIONS(1920), - [sym__fenced_div_start] = ACTIONS(1920), - [sym__fenced_div_end] = ACTIONS(1920), - [sym_ref_id_specifier] = ACTIONS(1920), - [sym__display_math_state_track_marker] = ACTIONS(1920), - [sym__inline_math_state_track_marker] = ACTIONS(1920), - [sym__code_span_start] = ACTIONS(1920), - [sym__html_comment] = ACTIONS(1920), - [sym_raw_specifier] = ACTIONS(1920), - [sym__autolink] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1922), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_PERCENT] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_DOT] = ACTIONS(1922), + [anon_sym_SLASH] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_QMARK] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_BSLASH] = ACTIONS(1920), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym__] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_TILDE] = ACTIONS(1922), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1922), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1922), + [sym__escaped_characters] = ACTIONS(1922), + [sym__word] = ACTIONS(1922), + [sym__soft_line_ending] = ACTIONS(1922), + [sym__block_close] = ACTIONS(1922), + [sym__block_quote_start] = ACTIONS(1922), + [sym__indented_chunk_start] = ACTIONS(1922), + [sym_atx_h1_marker] = ACTIONS(1922), + [sym_atx_h2_marker] = ACTIONS(1922), + [sym_atx_h3_marker] = ACTIONS(1922), + [sym_atx_h4_marker] = ACTIONS(1922), + [sym_atx_h5_marker] = ACTIONS(1922), + [sym_atx_h6_marker] = ACTIONS(1922), + [sym__thematic_break] = ACTIONS(1922), + [sym__list_marker_minus] = ACTIONS(1922), + [sym__list_marker_plus] = ACTIONS(1922), + [sym__list_marker_star] = ACTIONS(1922), + [sym__list_marker_parenthesis] = ACTIONS(1922), + [sym__list_marker_dot] = ACTIONS(1922), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_example] = ACTIONS(1922), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1922), + [sym__fenced_code_block_start_backtick] = ACTIONS(1922), + [sym__fenced_code_block_start_tilde] = ACTIONS(1922), + [sym__blank_line_start] = ACTIONS(1922), + [sym_minus_metadata] = ACTIONS(1922), + [sym__pipe_table_start] = ACTIONS(1922), + [sym__fenced_div_start] = ACTIONS(1922), + [sym__fenced_div_end] = ACTIONS(1922), + [sym_ref_id_specifier] = ACTIONS(1922), + [sym__display_math_state_track_marker] = ACTIONS(1922), + [sym__inline_math_state_track_marker] = ACTIONS(1922), + [sym__code_span_start] = ACTIONS(1922), + [sym__html_comment] = ACTIONS(1922), + [sym_raw_specifier] = ACTIONS(1922), + [sym__autolink] = ACTIONS(1922), }, [STATE(303)] = { [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1924), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_PERCENT] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_COMMA] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_DOT] = ACTIONS(1924), - [anon_sym_SLASH] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_QMARK] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_BSLASH] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym__] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1924), - [sym__escaped_characters] = ACTIONS(1924), - [sym__word] = ACTIONS(1924), - [sym__soft_line_ending] = ACTIONS(1924), - [sym__block_close] = ACTIONS(1924), - [sym__block_quote_start] = ACTIONS(1924), - [sym__indented_chunk_start] = ACTIONS(1924), - [sym_atx_h1_marker] = ACTIONS(1924), - [sym_atx_h2_marker] = ACTIONS(1924), - [sym_atx_h3_marker] = ACTIONS(1924), - [sym_atx_h4_marker] = ACTIONS(1924), - [sym_atx_h5_marker] = ACTIONS(1924), - [sym_atx_h6_marker] = ACTIONS(1924), - [sym__thematic_break] = ACTIONS(1924), - [sym__list_marker_minus] = ACTIONS(1924), - [sym__list_marker_plus] = ACTIONS(1924), - [sym__list_marker_star] = ACTIONS(1924), - [sym__list_marker_parenthesis] = ACTIONS(1924), - [sym__list_marker_dot] = ACTIONS(1924), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_example] = ACTIONS(1924), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1924), - [sym__fenced_code_block_start_backtick] = ACTIONS(1924), - [sym__fenced_code_block_start_tilde] = ACTIONS(1924), - [sym__blank_line_start] = ACTIONS(1924), - [sym_minus_metadata] = ACTIONS(1924), - [sym__pipe_table_start] = ACTIONS(1924), - [sym__fenced_div_start] = ACTIONS(1924), - [sym__fenced_div_end] = ACTIONS(1924), - [sym_ref_id_specifier] = ACTIONS(1924), - [sym__display_math_state_track_marker] = ACTIONS(1924), - [sym__inline_math_state_track_marker] = ACTIONS(1924), - [sym__code_span_start] = ACTIONS(1924), - [sym__html_comment] = ACTIONS(1924), - [sym_raw_specifier] = ACTIONS(1924), - [sym__autolink] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1926), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1926), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_PERCENT] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_COMMA] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_DOT] = ACTIONS(1926), + [anon_sym_SLASH] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_QMARK] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_BSLASH] = ACTIONS(1924), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym__] = ACTIONS(1926), + [anon_sym_BQUOTE] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1926), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1926), + [sym__escaped_characters] = ACTIONS(1926), + [sym__word] = ACTIONS(1926), + [sym__soft_line_ending] = ACTIONS(1926), + [sym__block_close] = ACTIONS(1926), + [sym__block_quote_start] = ACTIONS(1926), + [sym__indented_chunk_start] = ACTIONS(1926), + [sym_atx_h1_marker] = ACTIONS(1926), + [sym_atx_h2_marker] = ACTIONS(1926), + [sym_atx_h3_marker] = ACTIONS(1926), + [sym_atx_h4_marker] = ACTIONS(1926), + [sym_atx_h5_marker] = ACTIONS(1926), + [sym_atx_h6_marker] = ACTIONS(1926), + [sym__thematic_break] = ACTIONS(1926), + [sym__list_marker_minus] = ACTIONS(1926), + [sym__list_marker_plus] = ACTIONS(1926), + [sym__list_marker_star] = ACTIONS(1926), + [sym__list_marker_parenthesis] = ACTIONS(1926), + [sym__list_marker_dot] = ACTIONS(1926), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_example] = ACTIONS(1926), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1926), + [sym__fenced_code_block_start_backtick] = ACTIONS(1926), + [sym__fenced_code_block_start_tilde] = ACTIONS(1926), + [sym__blank_line_start] = ACTIONS(1926), + [sym_minus_metadata] = ACTIONS(1926), + [sym__pipe_table_start] = ACTIONS(1926), + [sym__fenced_div_start] = ACTIONS(1926), + [sym__fenced_div_end] = ACTIONS(1926), + [sym_ref_id_specifier] = ACTIONS(1926), + [sym__display_math_state_track_marker] = ACTIONS(1926), + [sym__inline_math_state_track_marker] = ACTIONS(1926), + [sym__code_span_start] = ACTIONS(1926), + [sym__html_comment] = ACTIONS(1926), + [sym_raw_specifier] = ACTIONS(1926), + [sym__autolink] = ACTIONS(1926), }, [STATE(304)] = { - [ts_builtin_sym_end] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1560), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_BSLASH] = ACTIONS(1562), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1560), - [sym__escaped_characters] = ACTIONS(1560), - [sym__word] = ACTIONS(1560), - [sym__soft_line_ending] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1562), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1562), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_DQUOTE] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1562), + [anon_sym_DOLLAR] = ACTIONS(1562), + [anon_sym_PERCENT] = ACTIONS(1562), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_LPAREN] = ACTIONS(1562), + [anon_sym_RPAREN] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1562), + [anon_sym_PLUS] = ACTIONS(1562), + [anon_sym_COMMA] = ACTIONS(1562), + [anon_sym_DASH] = ACTIONS(1562), + [anon_sym_DOT] = ACTIONS(1562), + [anon_sym_SLASH] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1562), + [anon_sym_CARET] = ACTIONS(1562), + [anon_sym__] = ACTIONS(1562), + [anon_sym_BQUOTE] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1562), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1562), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1562), + [sym__escaped_characters] = ACTIONS(1562), + [sym__word] = ACTIONS(1562), + [sym__soft_line_ending] = ACTIONS(1562), [sym_block_continuation] = ACTIONS(1928), - [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), - [sym__code_span_start] = ACTIONS(1560), - [sym__html_comment] = ACTIONS(1560), - [sym_raw_specifier] = ACTIONS(1560), - [sym__autolink] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1562), + [sym__indented_chunk_start] = ACTIONS(1562), + [sym_atx_h1_marker] = ACTIONS(1562), + [sym_atx_h2_marker] = ACTIONS(1562), + [sym_atx_h3_marker] = ACTIONS(1562), + [sym_atx_h4_marker] = ACTIONS(1562), + [sym_atx_h5_marker] = ACTIONS(1562), + [sym_atx_h6_marker] = ACTIONS(1562), + [sym__thematic_break] = ACTIONS(1562), + [sym__list_marker_minus] = ACTIONS(1562), + [sym__list_marker_plus] = ACTIONS(1562), + [sym__list_marker_star] = ACTIONS(1562), + [sym__list_marker_parenthesis] = ACTIONS(1562), + [sym__list_marker_dot] = ACTIONS(1562), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1562), + [sym__list_marker_example] = ACTIONS(1562), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1562), + [sym__fenced_code_block_start_backtick] = ACTIONS(1562), + [sym__fenced_code_block_start_tilde] = ACTIONS(1562), + [sym__blank_line_start] = ACTIONS(1562), + [sym_minus_metadata] = ACTIONS(1562), + [sym__pipe_table_start] = ACTIONS(1562), + [sym__fenced_div_start] = ACTIONS(1562), + [sym_ref_id_specifier] = ACTIONS(1562), + [sym__display_math_state_track_marker] = ACTIONS(1562), + [sym__inline_math_state_track_marker] = ACTIONS(1562), + [sym__code_span_start] = ACTIONS(1562), + [sym__html_comment] = ACTIONS(1562), + [sym_raw_specifier] = ACTIONS(1562), + [sym__autolink] = ACTIONS(1562), }, [STATE(305)] = { [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_DOLLAR] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_DOT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_QMARK] = ACTIONS(1930), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_BSLASH] = ACTIONS(1932), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1930), - [anon_sym__] = ACTIONS(1930), - [anon_sym_BQUOTE] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1930), - [sym__escaped_characters] = ACTIONS(1930), - [sym__word] = ACTIONS(1930), - [sym__soft_line_ending] = ACTIONS(1930), - [sym__block_close] = ACTIONS(1930), - [sym__block_quote_start] = ACTIONS(1930), - [sym__indented_chunk_start] = ACTIONS(1930), - [sym_atx_h1_marker] = ACTIONS(1930), - [sym_atx_h2_marker] = ACTIONS(1930), - [sym_atx_h3_marker] = ACTIONS(1930), - [sym_atx_h4_marker] = ACTIONS(1930), - [sym_atx_h5_marker] = ACTIONS(1930), - [sym_atx_h6_marker] = ACTIONS(1930), - [sym__thematic_break] = ACTIONS(1930), - [sym__list_marker_minus] = ACTIONS(1930), - [sym__list_marker_plus] = ACTIONS(1930), - [sym__list_marker_star] = ACTIONS(1930), - [sym__list_marker_parenthesis] = ACTIONS(1930), - [sym__list_marker_dot] = ACTIONS(1930), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_example] = ACTIONS(1930), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1930), - [sym__fenced_code_block_start_backtick] = ACTIONS(1930), - [sym__fenced_code_block_start_tilde] = ACTIONS(1930), - [sym__blank_line_start] = ACTIONS(1930), - [sym_minus_metadata] = ACTIONS(1930), - [sym__pipe_table_start] = ACTIONS(1930), - [sym__fenced_div_start] = ACTIONS(1930), - [sym__fenced_div_end] = ACTIONS(1930), - [sym_ref_id_specifier] = ACTIONS(1930), - [sym__display_math_state_track_marker] = ACTIONS(1930), - [sym__inline_math_state_track_marker] = ACTIONS(1930), - [sym__code_span_start] = ACTIONS(1930), - [sym__html_comment] = ACTIONS(1930), - [sym_raw_specifier] = ACTIONS(1930), - [sym__autolink] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1932), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_DOLLAR] = ACTIONS(1932), + [anon_sym_PERCENT] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_SLASH] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_BSLASH] = ACTIONS(1930), + [anon_sym_RBRACK] = ACTIONS(1932), + [anon_sym_CARET] = ACTIONS(1932), + [anon_sym__] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_TILDE] = ACTIONS(1932), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1932), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1932), + [sym__escaped_characters] = ACTIONS(1932), + [sym__word] = ACTIONS(1932), + [sym__soft_line_ending] = ACTIONS(1932), + [sym__block_close] = ACTIONS(1932), + [sym__block_quote_start] = ACTIONS(1932), + [sym__indented_chunk_start] = ACTIONS(1932), + [sym_atx_h1_marker] = ACTIONS(1932), + [sym_atx_h2_marker] = ACTIONS(1932), + [sym_atx_h3_marker] = ACTIONS(1932), + [sym_atx_h4_marker] = ACTIONS(1932), + [sym_atx_h5_marker] = ACTIONS(1932), + [sym_atx_h6_marker] = ACTIONS(1932), + [sym__thematic_break] = ACTIONS(1932), + [sym__list_marker_minus] = ACTIONS(1932), + [sym__list_marker_plus] = ACTIONS(1932), + [sym__list_marker_star] = ACTIONS(1932), + [sym__list_marker_parenthesis] = ACTIONS(1932), + [sym__list_marker_dot] = ACTIONS(1932), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_example] = ACTIONS(1932), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1932), + [sym__fenced_code_block_start_backtick] = ACTIONS(1932), + [sym__fenced_code_block_start_tilde] = ACTIONS(1932), + [sym__blank_line_start] = ACTIONS(1932), + [sym_minus_metadata] = ACTIONS(1932), + [sym__pipe_table_start] = ACTIONS(1932), + [sym__fenced_div_start] = ACTIONS(1932), + [sym__fenced_div_end] = ACTIONS(1932), + [sym_ref_id_specifier] = ACTIONS(1932), + [sym__display_math_state_track_marker] = ACTIONS(1932), + [sym__inline_math_state_track_marker] = ACTIONS(1932), + [sym__code_span_start] = ACTIONS(1932), + [sym__html_comment] = ACTIONS(1932), + [sym_raw_specifier] = ACTIONS(1932), + [sym__autolink] = ACTIONS(1932), }, [STATE(306)] = { - [ts_builtin_sym_end] = ACTIONS(1566), + [ts_builtin_sym_end] = ACTIONS(1568), [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_BSLASH] = ACTIONS(1568), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1566), - [sym__escaped_characters] = ACTIONS(1566), - [sym__word] = ACTIONS(1566), - [sym__soft_line_ending] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1568), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1568), + [anon_sym_EQ] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_DQUOTE] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_DOLLAR] = ACTIONS(1568), + [anon_sym_PERCENT] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_RPAREN] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_PLUS] = ACTIONS(1568), + [anon_sym_COMMA] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_DOT] = ACTIONS(1568), + [anon_sym_SLASH] = ACTIONS(1568), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1568), + [anon_sym_CARET] = ACTIONS(1568), + [anon_sym__] = ACTIONS(1568), + [anon_sym_BQUOTE] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_TILDE] = ACTIONS(1568), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1568), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1568), + [sym__escaped_characters] = ACTIONS(1568), + [sym__word] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), [sym_block_continuation] = ACTIONS(1934), - [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), - [sym__code_span_start] = ACTIONS(1566), - [sym__html_comment] = ACTIONS(1566), - [sym_raw_specifier] = ACTIONS(1566), - [sym__autolink] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1568), + [sym__indented_chunk_start] = ACTIONS(1568), + [sym_atx_h1_marker] = ACTIONS(1568), + [sym_atx_h2_marker] = ACTIONS(1568), + [sym_atx_h3_marker] = ACTIONS(1568), + [sym_atx_h4_marker] = ACTIONS(1568), + [sym_atx_h5_marker] = ACTIONS(1568), + [sym_atx_h6_marker] = ACTIONS(1568), + [sym__thematic_break] = ACTIONS(1568), + [sym__list_marker_minus] = ACTIONS(1568), + [sym__list_marker_plus] = ACTIONS(1568), + [sym__list_marker_star] = ACTIONS(1568), + [sym__list_marker_parenthesis] = ACTIONS(1568), + [sym__list_marker_dot] = ACTIONS(1568), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1568), + [sym__list_marker_example] = ACTIONS(1568), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1568), + [sym__fenced_code_block_start_backtick] = ACTIONS(1568), + [sym__fenced_code_block_start_tilde] = ACTIONS(1568), + [sym__blank_line_start] = ACTIONS(1568), + [sym_minus_metadata] = ACTIONS(1568), + [sym__pipe_table_start] = ACTIONS(1568), + [sym__fenced_div_start] = ACTIONS(1568), + [sym_ref_id_specifier] = ACTIONS(1568), + [sym__display_math_state_track_marker] = ACTIONS(1568), + [sym__inline_math_state_track_marker] = ACTIONS(1568), + [sym__code_span_start] = ACTIONS(1568), + [sym__html_comment] = ACTIONS(1568), + [sym_raw_specifier] = ACTIONS(1568), + [sym__autolink] = ACTIONS(1568), }, [STATE(307)] = { [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_RBRACE] = ACTIONS(1620), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1620), - [anon_sym_AT] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_BSLASH] = ACTIONS(1622), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1620), - [sym__escaped_characters] = ACTIONS(1620), - [sym__word] = ACTIONS(1620), - [sym__soft_line_ending] = ACTIONS(1620), - [sym__block_close] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1622), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1622), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1622), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1622), + [sym__escaped_characters] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_close] = ACTIONS(1622), [sym_block_continuation] = ACTIONS(1936), - [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), - [sym__code_span_start] = ACTIONS(1620), - [sym__html_comment] = ACTIONS(1620), - [sym_raw_specifier] = ACTIONS(1620), - [sym__autolink] = ACTIONS(1620), + [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), + [sym__code_span_start] = ACTIONS(1622), + [sym__html_comment] = ACTIONS(1622), + [sym_raw_specifier] = ACTIONS(1622), + [sym__autolink] = ACTIONS(1622), }, [STATE(308)] = { [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1938), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_DOT] = ACTIONS(1938), - [anon_sym_SLASH] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_QMARK] = ACTIONS(1938), - [anon_sym_AT] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_BSLASH] = ACTIONS(1940), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_CARET] = ACTIONS(1938), - [anon_sym__] = ACTIONS(1938), - [anon_sym_BQUOTE] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1938), - [sym__escaped_characters] = ACTIONS(1938), - [sym__word] = ACTIONS(1938), - [sym__soft_line_ending] = ACTIONS(1938), - [sym__block_close] = ACTIONS(1938), - [sym__block_quote_start] = ACTIONS(1938), - [sym__indented_chunk_start] = ACTIONS(1938), - [sym_atx_h1_marker] = ACTIONS(1938), - [sym_atx_h2_marker] = ACTIONS(1938), - [sym_atx_h3_marker] = ACTIONS(1938), - [sym_atx_h4_marker] = ACTIONS(1938), - [sym_atx_h5_marker] = ACTIONS(1938), - [sym_atx_h6_marker] = ACTIONS(1938), - [sym__thematic_break] = ACTIONS(1938), - [sym__list_marker_minus] = ACTIONS(1938), - [sym__list_marker_plus] = ACTIONS(1938), - [sym__list_marker_star] = ACTIONS(1938), - [sym__list_marker_parenthesis] = ACTIONS(1938), - [sym__list_marker_dot] = ACTIONS(1938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_example] = ACTIONS(1938), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1938), - [sym__fenced_code_block_start_backtick] = ACTIONS(1938), - [sym__fenced_code_block_start_tilde] = ACTIONS(1938), - [sym__blank_line_start] = ACTIONS(1938), - [sym_minus_metadata] = ACTIONS(1938), - [sym__pipe_table_start] = ACTIONS(1938), - [sym__fenced_div_start] = ACTIONS(1938), - [sym__fenced_div_end] = ACTIONS(1938), - [sym_ref_id_specifier] = ACTIONS(1938), - [sym__display_math_state_track_marker] = ACTIONS(1938), - [sym__inline_math_state_track_marker] = ACTIONS(1938), - [sym__code_span_start] = ACTIONS(1938), - [sym__html_comment] = ACTIONS(1938), - [sym_raw_specifier] = ACTIONS(1938), - [sym__autolink] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1940), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_PERCENT] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_DOT] = ACTIONS(1940), + [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(1940), + [anon_sym_AT] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1938), + [anon_sym_RBRACK] = ACTIONS(1940), + [anon_sym_CARET] = ACTIONS(1940), + [anon_sym__] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_TILDE] = ACTIONS(1940), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1940), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1940), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1940), + [sym__escaped_characters] = ACTIONS(1940), + [sym__word] = ACTIONS(1940), + [sym__soft_line_ending] = ACTIONS(1940), + [sym__block_close] = ACTIONS(1940), + [sym__block_quote_start] = ACTIONS(1940), + [sym__indented_chunk_start] = ACTIONS(1940), + [sym_atx_h1_marker] = ACTIONS(1940), + [sym_atx_h2_marker] = ACTIONS(1940), + [sym_atx_h3_marker] = ACTIONS(1940), + [sym_atx_h4_marker] = ACTIONS(1940), + [sym_atx_h5_marker] = ACTIONS(1940), + [sym_atx_h6_marker] = ACTIONS(1940), + [sym__thematic_break] = ACTIONS(1940), + [sym__list_marker_minus] = ACTIONS(1940), + [sym__list_marker_plus] = ACTIONS(1940), + [sym__list_marker_star] = ACTIONS(1940), + [sym__list_marker_parenthesis] = ACTIONS(1940), + [sym__list_marker_dot] = ACTIONS(1940), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_example] = ACTIONS(1940), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1940), + [sym__fenced_code_block_start_backtick] = ACTIONS(1940), + [sym__fenced_code_block_start_tilde] = ACTIONS(1940), + [sym__blank_line_start] = ACTIONS(1940), + [sym_minus_metadata] = ACTIONS(1940), + [sym__pipe_table_start] = ACTIONS(1940), + [sym__fenced_div_start] = ACTIONS(1940), + [sym__fenced_div_end] = ACTIONS(1940), + [sym_ref_id_specifier] = ACTIONS(1940), + [sym__display_math_state_track_marker] = ACTIONS(1940), + [sym__inline_math_state_track_marker] = ACTIONS(1940), + [sym__code_span_start] = ACTIONS(1940), + [sym__html_comment] = ACTIONS(1940), + [sym_raw_specifier] = ACTIONS(1940), + [sym__autolink] = ACTIONS(1940), }, [STATE(309)] = { [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DQUOTE] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_DOLLAR] = ACTIONS(1626), - [anon_sym_PERCENT] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_BSLASH] = ACTIONS(1628), - [anon_sym_RBRACK] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1626), - [anon_sym__] = ACTIONS(1626), - [anon_sym_BQUOTE] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1626), - [sym__escaped_characters] = ACTIONS(1626), - [sym__word] = ACTIONS(1626), - [sym__soft_line_ending] = ACTIONS(1626), - [sym__block_close] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1628), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1628), + [anon_sym_AT] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym__] = ACTIONS(1628), + [anon_sym_BQUOTE] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1628), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1628), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1628), + [sym__escaped_characters] = ACTIONS(1628), + [sym__word] = ACTIONS(1628), + [sym__soft_line_ending] = ACTIONS(1628), + [sym__block_close] = ACTIONS(1628), [sym_block_continuation] = ACTIONS(1942), - [sym__block_quote_start] = ACTIONS(1626), - [sym__indented_chunk_start] = ACTIONS(1626), - [sym_atx_h1_marker] = ACTIONS(1626), - [sym_atx_h2_marker] = ACTIONS(1626), - [sym_atx_h3_marker] = ACTIONS(1626), - [sym_atx_h4_marker] = ACTIONS(1626), - [sym_atx_h5_marker] = ACTIONS(1626), - [sym_atx_h6_marker] = ACTIONS(1626), - [sym__thematic_break] = ACTIONS(1626), - [sym__list_marker_minus] = ACTIONS(1626), - [sym__list_marker_plus] = ACTIONS(1626), - [sym__list_marker_star] = ACTIONS(1626), - [sym__list_marker_parenthesis] = ACTIONS(1626), - [sym__list_marker_dot] = ACTIONS(1626), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1626), - [sym__list_marker_example] = ACTIONS(1626), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1626), - [sym__fenced_code_block_start_backtick] = ACTIONS(1626), - [sym__fenced_code_block_start_tilde] = ACTIONS(1626), - [sym__blank_line_start] = ACTIONS(1626), - [sym_minus_metadata] = ACTIONS(1626), - [sym__pipe_table_start] = ACTIONS(1626), - [sym__fenced_div_start] = ACTIONS(1626), - [sym_ref_id_specifier] = ACTIONS(1626), - [sym__display_math_state_track_marker] = ACTIONS(1626), - [sym__inline_math_state_track_marker] = ACTIONS(1626), - [sym__code_span_start] = ACTIONS(1626), - [sym__html_comment] = ACTIONS(1626), - [sym_raw_specifier] = ACTIONS(1626), - [sym__autolink] = ACTIONS(1626), + [sym__block_quote_start] = ACTIONS(1628), + [sym__indented_chunk_start] = ACTIONS(1628), + [sym_atx_h1_marker] = ACTIONS(1628), + [sym_atx_h2_marker] = ACTIONS(1628), + [sym_atx_h3_marker] = ACTIONS(1628), + [sym_atx_h4_marker] = ACTIONS(1628), + [sym_atx_h5_marker] = ACTIONS(1628), + [sym_atx_h6_marker] = ACTIONS(1628), + [sym__thematic_break] = ACTIONS(1628), + [sym__list_marker_minus] = ACTIONS(1628), + [sym__list_marker_plus] = ACTIONS(1628), + [sym__list_marker_star] = ACTIONS(1628), + [sym__list_marker_parenthesis] = ACTIONS(1628), + [sym__list_marker_dot] = ACTIONS(1628), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_example] = ACTIONS(1628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1628), + [sym__fenced_code_block_start_backtick] = ACTIONS(1628), + [sym__fenced_code_block_start_tilde] = ACTIONS(1628), + [sym__blank_line_start] = ACTIONS(1628), + [sym_minus_metadata] = ACTIONS(1628), + [sym__pipe_table_start] = ACTIONS(1628), + [sym__fenced_div_start] = ACTIONS(1628), + [sym_ref_id_specifier] = ACTIONS(1628), + [sym__display_math_state_track_marker] = ACTIONS(1628), + [sym__inline_math_state_track_marker] = ACTIONS(1628), + [sym__code_span_start] = ACTIONS(1628), + [sym__html_comment] = ACTIONS(1628), + [sym_raw_specifier] = ACTIONS(1628), + [sym__autolink] = ACTIONS(1628), }, [STATE(310)] = { [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1944), - [anon_sym_EQ] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_BSLASH] = ACTIONS(1946), - [anon_sym_RBRACK] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym__] = ACTIONS(1944), - [anon_sym_BQUOTE] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1944), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1944), - [sym__escaped_characters] = ACTIONS(1944), - [sym__word] = ACTIONS(1944), - [sym__soft_line_ending] = ACTIONS(1944), - [sym__block_close] = ACTIONS(1944), - [sym__block_quote_start] = ACTIONS(1944), - [sym__indented_chunk_start] = ACTIONS(1944), - [sym_atx_h1_marker] = ACTIONS(1944), - [sym_atx_h2_marker] = ACTIONS(1944), - [sym_atx_h3_marker] = ACTIONS(1944), - [sym_atx_h4_marker] = ACTIONS(1944), - [sym_atx_h5_marker] = ACTIONS(1944), - [sym_atx_h6_marker] = ACTIONS(1944), - [sym__thematic_break] = ACTIONS(1944), - [sym__list_marker_minus] = ACTIONS(1944), - [sym__list_marker_plus] = ACTIONS(1944), - [sym__list_marker_star] = ACTIONS(1944), - [sym__list_marker_parenthesis] = ACTIONS(1944), - [sym__list_marker_dot] = ACTIONS(1944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_example] = ACTIONS(1944), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1944), - [sym__fenced_code_block_start_backtick] = ACTIONS(1944), - [sym__fenced_code_block_start_tilde] = ACTIONS(1944), - [sym__blank_line_start] = ACTIONS(1944), - [sym_minus_metadata] = ACTIONS(1944), - [sym__pipe_table_start] = ACTIONS(1944), - [sym__fenced_div_start] = ACTIONS(1944), - [sym__fenced_div_end] = ACTIONS(1944), - [sym_ref_id_specifier] = ACTIONS(1944), - [sym__display_math_state_track_marker] = ACTIONS(1944), - [sym__inline_math_state_track_marker] = ACTIONS(1944), - [sym__code_span_start] = ACTIONS(1944), - [sym__html_comment] = ACTIONS(1944), - [sym_raw_specifier] = ACTIONS(1944), - [sym__autolink] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1946), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_DOT] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_QMARK] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_BSLASH] = ACTIONS(1944), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym__] = ACTIONS(1946), + [anon_sym_BQUOTE] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1946), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1946), + [sym__escaped_characters] = ACTIONS(1946), + [sym__word] = ACTIONS(1946), + [sym__soft_line_ending] = ACTIONS(1946), + [sym__block_close] = ACTIONS(1946), + [sym__block_quote_start] = ACTIONS(1946), + [sym__indented_chunk_start] = ACTIONS(1946), + [sym_atx_h1_marker] = ACTIONS(1946), + [sym_atx_h2_marker] = ACTIONS(1946), + [sym_atx_h3_marker] = ACTIONS(1946), + [sym_atx_h4_marker] = ACTIONS(1946), + [sym_atx_h5_marker] = ACTIONS(1946), + [sym_atx_h6_marker] = ACTIONS(1946), + [sym__thematic_break] = ACTIONS(1946), + [sym__list_marker_minus] = ACTIONS(1946), + [sym__list_marker_plus] = ACTIONS(1946), + [sym__list_marker_star] = ACTIONS(1946), + [sym__list_marker_parenthesis] = ACTIONS(1946), + [sym__list_marker_dot] = ACTIONS(1946), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_example] = ACTIONS(1946), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1946), + [sym__fenced_code_block_start_backtick] = ACTIONS(1946), + [sym__fenced_code_block_start_tilde] = ACTIONS(1946), + [sym__blank_line_start] = ACTIONS(1946), + [sym_minus_metadata] = ACTIONS(1946), + [sym__pipe_table_start] = ACTIONS(1946), + [sym__fenced_div_start] = ACTIONS(1946), + [sym__fenced_div_end] = ACTIONS(1946), + [sym_ref_id_specifier] = ACTIONS(1946), + [sym__display_math_state_track_marker] = ACTIONS(1946), + [sym__inline_math_state_track_marker] = ACTIONS(1946), + [sym__code_span_start] = ACTIONS(1946), + [sym__html_comment] = ACTIONS(1946), + [sym_raw_specifier] = ACTIONS(1946), + [sym__autolink] = ACTIONS(1946), }, [STATE(311)] = { [anon_sym_LBRACE] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1608), - [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1608), - [anon_sym_QMARK] = ACTIONS(1608), - [anon_sym_AT] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_BSLASH] = ACTIONS(1610), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1608), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1608), - [sym__html_comment] = ACTIONS(1608), - [sym_raw_specifier] = ACTIONS(1608), - [sym__autolink] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1610), + [aux_sym__commonmark_whitespace_token1] = 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_COLON] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1610), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1610), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1610), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1610), + [sym__html_comment] = ACTIONS(1610), + [sym_raw_specifier] = ACTIONS(1610), + [sym__autolink] = ACTIONS(1610), }, [STATE(312)] = { [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1948), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1948), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_PERCENT] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_COMMA] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(1948), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_BSLASH] = ACTIONS(1950), - [anon_sym_RBRACK] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym__] = ACTIONS(1948), - [anon_sym_BQUOTE] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1948), - [sym__escaped_characters] = ACTIONS(1948), - [sym__word] = ACTIONS(1948), - [sym__soft_line_ending] = ACTIONS(1948), - [sym__block_close] = ACTIONS(1948), - [sym__block_quote_start] = ACTIONS(1948), - [sym__indented_chunk_start] = ACTIONS(1948), - [sym_atx_h1_marker] = ACTIONS(1948), - [sym_atx_h2_marker] = ACTIONS(1948), - [sym_atx_h3_marker] = ACTIONS(1948), - [sym_atx_h4_marker] = ACTIONS(1948), - [sym_atx_h5_marker] = ACTIONS(1948), - [sym_atx_h6_marker] = ACTIONS(1948), - [sym__thematic_break] = ACTIONS(1948), - [sym__list_marker_minus] = ACTIONS(1948), - [sym__list_marker_plus] = ACTIONS(1948), - [sym__list_marker_star] = ACTIONS(1948), - [sym__list_marker_parenthesis] = ACTIONS(1948), - [sym__list_marker_dot] = ACTIONS(1948), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_example] = ACTIONS(1948), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1948), - [sym__fenced_code_block_start_backtick] = ACTIONS(1948), - [sym__fenced_code_block_start_tilde] = ACTIONS(1948), - [sym__blank_line_start] = ACTIONS(1948), - [sym_minus_metadata] = ACTIONS(1948), - [sym__pipe_table_start] = ACTIONS(1948), - [sym__fenced_div_start] = ACTIONS(1948), - [sym__fenced_div_end] = ACTIONS(1948), - [sym_ref_id_specifier] = ACTIONS(1948), - [sym__display_math_state_track_marker] = ACTIONS(1948), - [sym__inline_math_state_track_marker] = ACTIONS(1948), - [sym__code_span_start] = ACTIONS(1948), - [sym__html_comment] = ACTIONS(1948), - [sym_raw_specifier] = ACTIONS(1948), - [sym__autolink] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1950), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1950), + [anon_sym_COMMA] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_DOT] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_QMARK] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_BSLASH] = ACTIONS(1948), + [anon_sym_RBRACK] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym__] = ACTIONS(1950), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1950), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1950), + [sym__escaped_characters] = ACTIONS(1950), + [sym__word] = ACTIONS(1950), + [sym__soft_line_ending] = ACTIONS(1950), + [sym__block_close] = ACTIONS(1950), + [sym__block_quote_start] = ACTIONS(1950), + [sym__indented_chunk_start] = ACTIONS(1950), + [sym_atx_h1_marker] = ACTIONS(1950), + [sym_atx_h2_marker] = ACTIONS(1950), + [sym_atx_h3_marker] = ACTIONS(1950), + [sym_atx_h4_marker] = ACTIONS(1950), + [sym_atx_h5_marker] = ACTIONS(1950), + [sym_atx_h6_marker] = ACTIONS(1950), + [sym__thematic_break] = ACTIONS(1950), + [sym__list_marker_minus] = ACTIONS(1950), + [sym__list_marker_plus] = ACTIONS(1950), + [sym__list_marker_star] = ACTIONS(1950), + [sym__list_marker_parenthesis] = ACTIONS(1950), + [sym__list_marker_dot] = ACTIONS(1950), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_example] = ACTIONS(1950), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1950), + [sym__fenced_code_block_start_backtick] = ACTIONS(1950), + [sym__fenced_code_block_start_tilde] = ACTIONS(1950), + [sym__blank_line_start] = ACTIONS(1950), + [sym_minus_metadata] = ACTIONS(1950), + [sym__pipe_table_start] = ACTIONS(1950), + [sym__fenced_div_start] = ACTIONS(1950), + [sym__fenced_div_end] = ACTIONS(1950), + [sym_ref_id_specifier] = ACTIONS(1950), + [sym__display_math_state_track_marker] = ACTIONS(1950), + [sym__inline_math_state_track_marker] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1950), + [sym__html_comment] = ACTIONS(1950), + [sym_raw_specifier] = ACTIONS(1950), + [sym__autolink] = ACTIONS(1950), }, [STATE(313)] = { - [ts_builtin_sym_end] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1574), [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_BSLASH] = ACTIONS(1574), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1572), - [sym__escaped_characters] = ACTIONS(1572), - [sym__word] = ACTIONS(1572), - [sym__soft_line_ending] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1574), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1574), + [sym__escaped_characters] = ACTIONS(1574), + [sym__word] = ACTIONS(1574), + [sym__soft_line_ending] = ACTIONS(1574), [sym_block_continuation] = ACTIONS(1952), - [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), - [sym__code_span_start] = ACTIONS(1572), - [sym__html_comment] = ACTIONS(1572), - [sym_raw_specifier] = ACTIONS(1572), - [sym__autolink] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1574), + [sym__indented_chunk_start] = ACTIONS(1574), + [sym_atx_h1_marker] = ACTIONS(1574), + [sym_atx_h2_marker] = ACTIONS(1574), + [sym_atx_h3_marker] = ACTIONS(1574), + [sym_atx_h4_marker] = ACTIONS(1574), + [sym_atx_h5_marker] = ACTIONS(1574), + [sym_atx_h6_marker] = ACTIONS(1574), + [sym__thematic_break] = ACTIONS(1574), + [sym__list_marker_minus] = ACTIONS(1574), + [sym__list_marker_plus] = ACTIONS(1574), + [sym__list_marker_star] = ACTIONS(1574), + [sym__list_marker_parenthesis] = ACTIONS(1574), + [sym__list_marker_dot] = ACTIONS(1574), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_example] = ACTIONS(1574), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1574), + [sym__fenced_code_block_start_backtick] = ACTIONS(1574), + [sym__fenced_code_block_start_tilde] = ACTIONS(1574), + [sym__blank_line_start] = ACTIONS(1574), + [sym_minus_metadata] = ACTIONS(1574), + [sym__pipe_table_start] = ACTIONS(1574), + [sym__fenced_div_start] = ACTIONS(1574), + [sym_ref_id_specifier] = ACTIONS(1574), + [sym__display_math_state_track_marker] = ACTIONS(1574), + [sym__inline_math_state_track_marker] = ACTIONS(1574), + [sym__code_span_start] = ACTIONS(1574), + [sym__html_comment] = ACTIONS(1574), + [sym_raw_specifier] = ACTIONS(1574), + [sym__autolink] = ACTIONS(1574), }, [STATE(314)] = { - [ts_builtin_sym_end] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1532), [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_BSLASH] = ACTIONS(1532), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1530), - [sym__escaped_characters] = ACTIONS(1530), - [sym__word] = ACTIONS(1530), - [sym__soft_line_ending] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_BQUOTE] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1532), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1532), + [sym__escaped_characters] = ACTIONS(1532), + [sym__word] = ACTIONS(1532), + [sym__soft_line_ending] = ACTIONS(1532), [sym_block_continuation] = ACTIONS(1954), - [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), - [sym__code_span_start] = ACTIONS(1530), - [sym__html_comment] = ACTIONS(1530), - [sym_raw_specifier] = ACTIONS(1530), - [sym__autolink] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1532), + [sym__indented_chunk_start] = ACTIONS(1532), + [sym_atx_h1_marker] = ACTIONS(1532), + [sym_atx_h2_marker] = ACTIONS(1532), + [sym_atx_h3_marker] = ACTIONS(1532), + [sym_atx_h4_marker] = ACTIONS(1532), + [sym_atx_h5_marker] = ACTIONS(1532), + [sym_atx_h6_marker] = ACTIONS(1532), + [sym__thematic_break] = ACTIONS(1532), + [sym__list_marker_minus] = ACTIONS(1532), + [sym__list_marker_plus] = ACTIONS(1532), + [sym__list_marker_star] = ACTIONS(1532), + [sym__list_marker_parenthesis] = ACTIONS(1532), + [sym__list_marker_dot] = ACTIONS(1532), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_example] = ACTIONS(1532), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1532), + [sym__fenced_code_block_start_backtick] = ACTIONS(1532), + [sym__fenced_code_block_start_tilde] = ACTIONS(1532), + [sym__blank_line_start] = ACTIONS(1532), + [sym_minus_metadata] = ACTIONS(1532), + [sym__pipe_table_start] = ACTIONS(1532), + [sym__fenced_div_start] = ACTIONS(1532), + [sym_ref_id_specifier] = ACTIONS(1532), + [sym__display_math_state_track_marker] = ACTIONS(1532), + [sym__inline_math_state_track_marker] = ACTIONS(1532), + [sym__code_span_start] = ACTIONS(1532), + [sym__html_comment] = ACTIONS(1532), + [sym_raw_specifier] = ACTIONS(1532), + [sym__autolink] = ACTIONS(1532), }, [STATE(315)] = { [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1956), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1956), - [anon_sym_PERCENT] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_BSLASH] = ACTIONS(1958), - [anon_sym_RBRACK] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1956), - [anon_sym__] = ACTIONS(1956), - [anon_sym_BQUOTE] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1956), - [sym__escaped_characters] = ACTIONS(1956), - [sym__word] = ACTIONS(1956), - [sym__soft_line_ending] = ACTIONS(1956), - [sym__block_close] = ACTIONS(1956), - [sym__block_quote_start] = ACTIONS(1956), - [sym__indented_chunk_start] = ACTIONS(1956), - [sym_atx_h1_marker] = ACTIONS(1956), - [sym_atx_h2_marker] = ACTIONS(1956), - [sym_atx_h3_marker] = ACTIONS(1956), - [sym_atx_h4_marker] = ACTIONS(1956), - [sym_atx_h5_marker] = ACTIONS(1956), - [sym_atx_h6_marker] = ACTIONS(1956), - [sym__thematic_break] = ACTIONS(1956), - [sym__list_marker_minus] = ACTIONS(1956), - [sym__list_marker_plus] = ACTIONS(1956), - [sym__list_marker_star] = ACTIONS(1956), - [sym__list_marker_parenthesis] = ACTIONS(1956), - [sym__list_marker_dot] = ACTIONS(1956), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_example] = ACTIONS(1956), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1956), - [sym__fenced_code_block_start_backtick] = ACTIONS(1956), - [sym__fenced_code_block_start_tilde] = ACTIONS(1956), - [sym__blank_line_start] = ACTIONS(1956), - [sym_minus_metadata] = ACTIONS(1956), - [sym__pipe_table_start] = ACTIONS(1956), - [sym__fenced_div_start] = ACTIONS(1956), - [sym__fenced_div_end] = ACTIONS(1956), - [sym_ref_id_specifier] = ACTIONS(1956), - [sym__display_math_state_track_marker] = ACTIONS(1956), - [sym__inline_math_state_track_marker] = ACTIONS(1956), - [sym__code_span_start] = ACTIONS(1956), - [sym__html_comment] = ACTIONS(1956), - [sym_raw_specifier] = ACTIONS(1956), - [sym__autolink] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1958), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_PLUS] = ACTIONS(1958), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_DOT] = ACTIONS(1958), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_QMARK] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_BSLASH] = ACTIONS(1956), + [anon_sym_RBRACK] = ACTIONS(1958), + [anon_sym_CARET] = ACTIONS(1958), + [anon_sym__] = ACTIONS(1958), + [anon_sym_BQUOTE] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1958), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1958), + [sym__escaped_characters] = ACTIONS(1958), + [sym__word] = ACTIONS(1958), + [sym__soft_line_ending] = ACTIONS(1958), + [sym__block_close] = ACTIONS(1958), + [sym__block_quote_start] = ACTIONS(1958), + [sym__indented_chunk_start] = ACTIONS(1958), + [sym_atx_h1_marker] = ACTIONS(1958), + [sym_atx_h2_marker] = ACTIONS(1958), + [sym_atx_h3_marker] = ACTIONS(1958), + [sym_atx_h4_marker] = ACTIONS(1958), + [sym_atx_h5_marker] = ACTIONS(1958), + [sym_atx_h6_marker] = ACTIONS(1958), + [sym__thematic_break] = ACTIONS(1958), + [sym__list_marker_minus] = ACTIONS(1958), + [sym__list_marker_plus] = ACTIONS(1958), + [sym__list_marker_star] = ACTIONS(1958), + [sym__list_marker_parenthesis] = ACTIONS(1958), + [sym__list_marker_dot] = ACTIONS(1958), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_example] = ACTIONS(1958), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1958), + [sym__fenced_code_block_start_backtick] = ACTIONS(1958), + [sym__fenced_code_block_start_tilde] = ACTIONS(1958), + [sym__blank_line_start] = ACTIONS(1958), + [sym_minus_metadata] = ACTIONS(1958), + [sym__pipe_table_start] = ACTIONS(1958), + [sym__fenced_div_start] = ACTIONS(1958), + [sym__fenced_div_end] = ACTIONS(1958), + [sym_ref_id_specifier] = ACTIONS(1958), + [sym__display_math_state_track_marker] = ACTIONS(1958), + [sym__inline_math_state_track_marker] = ACTIONS(1958), + [sym__code_span_start] = ACTIONS(1958), + [sym__html_comment] = ACTIONS(1958), + [sym_raw_specifier] = ACTIONS(1958), + [sym__autolink] = ACTIONS(1958), }, [STATE(316)] = { [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1960), - [anon_sym_EQ] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_RPAREN] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_COMMA] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_DOT] = ACTIONS(1960), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_QMARK] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_BSLASH] = ACTIONS(1962), - [anon_sym_RBRACK] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym__] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1960), - [sym__escaped_characters] = ACTIONS(1960), - [sym__word] = ACTIONS(1960), - [sym__soft_line_ending] = ACTIONS(1960), - [sym__block_close] = ACTIONS(1960), - [sym__block_quote_start] = ACTIONS(1960), - [sym__indented_chunk_start] = ACTIONS(1960), - [sym_atx_h1_marker] = ACTIONS(1960), - [sym_atx_h2_marker] = ACTIONS(1960), - [sym_atx_h3_marker] = ACTIONS(1960), - [sym_atx_h4_marker] = ACTIONS(1960), - [sym_atx_h5_marker] = ACTIONS(1960), - [sym_atx_h6_marker] = ACTIONS(1960), - [sym__thematic_break] = ACTIONS(1960), - [sym__list_marker_minus] = ACTIONS(1960), - [sym__list_marker_plus] = ACTIONS(1960), - [sym__list_marker_star] = ACTIONS(1960), - [sym__list_marker_parenthesis] = ACTIONS(1960), - [sym__list_marker_dot] = ACTIONS(1960), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_example] = ACTIONS(1960), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1960), - [sym__fenced_code_block_start_backtick] = ACTIONS(1960), - [sym__fenced_code_block_start_tilde] = ACTIONS(1960), - [sym__blank_line_start] = ACTIONS(1960), - [sym_minus_metadata] = ACTIONS(1960), - [sym__pipe_table_start] = ACTIONS(1960), - [sym__fenced_div_start] = ACTIONS(1960), - [sym__fenced_div_end] = ACTIONS(1960), - [sym_ref_id_specifier] = ACTIONS(1960), - [sym__display_math_state_track_marker] = ACTIONS(1960), - [sym__inline_math_state_track_marker] = ACTIONS(1960), - [sym__code_span_start] = ACTIONS(1960), - [sym__html_comment] = ACTIONS(1960), - [sym_raw_specifier] = ACTIONS(1960), - [sym__autolink] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1962), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1962), + [anon_sym_EQ] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_PERCENT] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_PLUS] = ACTIONS(1962), + [anon_sym_COMMA] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_DOT] = ACTIONS(1962), + [anon_sym_SLASH] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_QMARK] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_BSLASH] = ACTIONS(1960), + [anon_sym_RBRACK] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1962), + [anon_sym__] = ACTIONS(1962), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1962), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1962), + [sym__escaped_characters] = ACTIONS(1962), + [sym__word] = ACTIONS(1962), + [sym__soft_line_ending] = ACTIONS(1962), + [sym__block_close] = ACTIONS(1962), + [sym__block_quote_start] = ACTIONS(1962), + [sym__indented_chunk_start] = ACTIONS(1962), + [sym_atx_h1_marker] = ACTIONS(1962), + [sym_atx_h2_marker] = ACTIONS(1962), + [sym_atx_h3_marker] = ACTIONS(1962), + [sym_atx_h4_marker] = ACTIONS(1962), + [sym_atx_h5_marker] = ACTIONS(1962), + [sym_atx_h6_marker] = ACTIONS(1962), + [sym__thematic_break] = ACTIONS(1962), + [sym__list_marker_minus] = ACTIONS(1962), + [sym__list_marker_plus] = ACTIONS(1962), + [sym__list_marker_star] = ACTIONS(1962), + [sym__list_marker_parenthesis] = ACTIONS(1962), + [sym__list_marker_dot] = ACTIONS(1962), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_example] = ACTIONS(1962), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1962), + [sym__fenced_code_block_start_backtick] = ACTIONS(1962), + [sym__fenced_code_block_start_tilde] = ACTIONS(1962), + [sym__blank_line_start] = ACTIONS(1962), + [sym_minus_metadata] = ACTIONS(1962), + [sym__pipe_table_start] = ACTIONS(1962), + [sym__fenced_div_start] = ACTIONS(1962), + [sym__fenced_div_end] = ACTIONS(1962), + [sym_ref_id_specifier] = ACTIONS(1962), + [sym__display_math_state_track_marker] = ACTIONS(1962), + [sym__inline_math_state_track_marker] = ACTIONS(1962), + [sym__code_span_start] = ACTIONS(1962), + [sym__html_comment] = ACTIONS(1962), + [sym_raw_specifier] = ACTIONS(1962), + [sym__autolink] = ACTIONS(1962), }, [STATE(317)] = { [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1964), - [anon_sym_EQ] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1964), - [anon_sym_PERCENT] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_BSLASH] = ACTIONS(1966), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1964), - [anon_sym__] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1964), - [sym__escaped_characters] = ACTIONS(1964), - [sym__word] = ACTIONS(1964), - [sym__soft_line_ending] = ACTIONS(1964), - [sym__block_close] = ACTIONS(1964), - [sym__block_quote_start] = ACTIONS(1964), - [sym__indented_chunk_start] = ACTIONS(1964), - [sym_atx_h1_marker] = ACTIONS(1964), - [sym_atx_h2_marker] = ACTIONS(1964), - [sym_atx_h3_marker] = ACTIONS(1964), - [sym_atx_h4_marker] = ACTIONS(1964), - [sym_atx_h5_marker] = ACTIONS(1964), - [sym_atx_h6_marker] = ACTIONS(1964), - [sym__thematic_break] = ACTIONS(1964), - [sym__list_marker_minus] = ACTIONS(1964), - [sym__list_marker_plus] = ACTIONS(1964), - [sym__list_marker_star] = ACTIONS(1964), - [sym__list_marker_parenthesis] = ACTIONS(1964), - [sym__list_marker_dot] = ACTIONS(1964), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_example] = ACTIONS(1964), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1964), - [sym__fenced_code_block_start_backtick] = ACTIONS(1964), - [sym__fenced_code_block_start_tilde] = ACTIONS(1964), - [sym__blank_line_start] = ACTIONS(1964), - [sym_minus_metadata] = ACTIONS(1964), - [sym__pipe_table_start] = ACTIONS(1964), - [sym__fenced_div_start] = ACTIONS(1964), - [sym__fenced_div_end] = ACTIONS(1964), - [sym_ref_id_specifier] = ACTIONS(1964), - [sym__display_math_state_track_marker] = ACTIONS(1964), - [sym__inline_math_state_track_marker] = ACTIONS(1964), - [sym__code_span_start] = ACTIONS(1964), - [sym__html_comment] = ACTIONS(1964), - [sym_raw_specifier] = ACTIONS(1964), - [sym__autolink] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1966), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1966), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_COMMA] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_DOT] = ACTIONS(1966), + [anon_sym_SLASH] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_QMARK] = ACTIONS(1966), + [anon_sym_AT] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_BSLASH] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym__] = ACTIONS(1966), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1966), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1966), + [sym__escaped_characters] = ACTIONS(1966), + [sym__word] = ACTIONS(1966), + [sym__soft_line_ending] = ACTIONS(1966), + [sym__block_close] = ACTIONS(1966), + [sym__block_quote_start] = ACTIONS(1966), + [sym__indented_chunk_start] = ACTIONS(1966), + [sym_atx_h1_marker] = ACTIONS(1966), + [sym_atx_h2_marker] = ACTIONS(1966), + [sym_atx_h3_marker] = ACTIONS(1966), + [sym_atx_h4_marker] = ACTIONS(1966), + [sym_atx_h5_marker] = ACTIONS(1966), + [sym_atx_h6_marker] = ACTIONS(1966), + [sym__thematic_break] = ACTIONS(1966), + [sym__list_marker_minus] = ACTIONS(1966), + [sym__list_marker_plus] = ACTIONS(1966), + [sym__list_marker_star] = ACTIONS(1966), + [sym__list_marker_parenthesis] = ACTIONS(1966), + [sym__list_marker_dot] = ACTIONS(1966), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_example] = ACTIONS(1966), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1966), + [sym__fenced_code_block_start_backtick] = ACTIONS(1966), + [sym__fenced_code_block_start_tilde] = ACTIONS(1966), + [sym__blank_line_start] = ACTIONS(1966), + [sym_minus_metadata] = ACTIONS(1966), + [sym__pipe_table_start] = ACTIONS(1966), + [sym__fenced_div_start] = ACTIONS(1966), + [sym__fenced_div_end] = ACTIONS(1966), + [sym_ref_id_specifier] = ACTIONS(1966), + [sym__display_math_state_track_marker] = ACTIONS(1966), + [sym__inline_math_state_track_marker] = ACTIONS(1966), + [sym__code_span_start] = ACTIONS(1966), + [sym__html_comment] = ACTIONS(1966), + [sym_raw_specifier] = ACTIONS(1966), + [sym__autolink] = ACTIONS(1966), }, [STATE(318)] = { [anon_sym_LBRACE] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1968), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(1968), - [anon_sym_PERCENT] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1968), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1968), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_QMARK] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_BSLASH] = ACTIONS(1970), - [anon_sym_RBRACK] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1968), - [anon_sym__] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1968), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1968), - [sym__escaped_characters] = ACTIONS(1968), - [sym__word] = ACTIONS(1968), - [sym__soft_line_ending] = ACTIONS(1968), - [sym_block_continuation] = ACTIONS(1968), - [sym__block_quote_start] = ACTIONS(1968), - [sym__indented_chunk_start] = ACTIONS(1968), - [sym_atx_h1_marker] = ACTIONS(1968), - [sym_atx_h2_marker] = ACTIONS(1968), - [sym_atx_h3_marker] = ACTIONS(1968), - [sym_atx_h4_marker] = ACTIONS(1968), - [sym_atx_h5_marker] = ACTIONS(1968), - [sym_atx_h6_marker] = ACTIONS(1968), - [sym__thematic_break] = ACTIONS(1968), - [sym__list_marker_minus] = ACTIONS(1968), - [sym__list_marker_plus] = ACTIONS(1968), - [sym__list_marker_star] = ACTIONS(1968), - [sym__list_marker_parenthesis] = ACTIONS(1968), - [sym__list_marker_dot] = ACTIONS(1968), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1968), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1968), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1968), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1968), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1968), - [sym__list_marker_example] = ACTIONS(1968), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1968), - [sym__fenced_code_block_start_backtick] = ACTIONS(1968), - [sym__fenced_code_block_start_tilde] = ACTIONS(1968), - [sym__blank_line_start] = ACTIONS(1968), - [sym_minus_metadata] = ACTIONS(1968), - [sym__pipe_table_start] = ACTIONS(1968), - [sym__fenced_div_start] = ACTIONS(1968), - [sym_ref_id_specifier] = ACTIONS(1968), - [sym__display_math_state_track_marker] = ACTIONS(1968), - [sym__inline_math_state_track_marker] = ACTIONS(1968), - [sym__code_span_start] = ACTIONS(1968), - [sym__html_comment] = ACTIONS(1968), - [sym_raw_specifier] = ACTIONS(1968), - [sym__autolink] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1970), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_QMARK] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_BSLASH] = ACTIONS(1968), + [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym__] = ACTIONS(1970), + [anon_sym_BQUOTE] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1970), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1970), + [sym__escaped_characters] = ACTIONS(1970), + [sym__word] = ACTIONS(1970), + [sym__soft_line_ending] = ACTIONS(1970), + [sym_block_continuation] = ACTIONS(1970), + [sym__block_quote_start] = ACTIONS(1970), + [sym__indented_chunk_start] = ACTIONS(1970), + [sym_atx_h1_marker] = ACTIONS(1970), + [sym_atx_h2_marker] = ACTIONS(1970), + [sym_atx_h3_marker] = ACTIONS(1970), + [sym_atx_h4_marker] = ACTIONS(1970), + [sym_atx_h5_marker] = ACTIONS(1970), + [sym_atx_h6_marker] = ACTIONS(1970), + [sym__thematic_break] = ACTIONS(1970), + [sym__list_marker_minus] = ACTIONS(1970), + [sym__list_marker_plus] = ACTIONS(1970), + [sym__list_marker_star] = ACTIONS(1970), + [sym__list_marker_parenthesis] = ACTIONS(1970), + [sym__list_marker_dot] = ACTIONS(1970), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1970), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1970), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1970), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1970), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1970), + [sym__list_marker_example] = ACTIONS(1970), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1970), + [sym__fenced_code_block_start_backtick] = ACTIONS(1970), + [sym__fenced_code_block_start_tilde] = ACTIONS(1970), + [sym__blank_line_start] = ACTIONS(1970), + [sym_minus_metadata] = ACTIONS(1970), + [sym__pipe_table_start] = ACTIONS(1970), + [sym__fenced_div_start] = ACTIONS(1970), + [sym_ref_id_specifier] = ACTIONS(1970), + [sym__display_math_state_track_marker] = ACTIONS(1970), + [sym__inline_math_state_track_marker] = ACTIONS(1970), + [sym__code_span_start] = ACTIONS(1970), + [sym__html_comment] = ACTIONS(1970), + [sym_raw_specifier] = ACTIONS(1970), + [sym__autolink] = ACTIONS(1970), }, [STATE(319)] = { - [ts_builtin_sym_end] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1580), [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1578), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_BSLASH] = ACTIONS(1580), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1578), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1578), - [sym__html_comment] = ACTIONS(1578), - [sym_raw_specifier] = ACTIONS(1578), - [sym__autolink] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1580), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1580), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1580), + [sym__html_comment] = ACTIONS(1580), + [sym_raw_specifier] = ACTIONS(1580), + [sym__autolink] = ACTIONS(1580), }, [STATE(320)] = { - [ts_builtin_sym_end] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1586), [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_BSLASH] = ACTIONS(1586), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1584), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1584), - [sym__html_comment] = ACTIONS(1584), - [sym_raw_specifier] = ACTIONS(1584), - [sym__autolink] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1586), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1586), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1586), + [sym__html_comment] = ACTIONS(1586), + [sym_raw_specifier] = ACTIONS(1586), + [sym__autolink] = ACTIONS(1586), }, [STATE(321)] = { - [ts_builtin_sym_end] = ACTIONS(1892), + [ts_builtin_sym_end] = ACTIONS(1894), [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1892), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_PERCENT] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_QMARK] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_BSLASH] = ACTIONS(1894), - [anon_sym_RBRACK] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1892), - [anon_sym__] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1892), - [sym__escaped_characters] = ACTIONS(1892), - [sym__word] = ACTIONS(1892), - [sym__soft_line_ending] = ACTIONS(1892), - [sym__block_quote_start] = ACTIONS(1892), - [sym__indented_chunk_start] = ACTIONS(1892), - [sym_atx_h1_marker] = ACTIONS(1892), - [sym_atx_h2_marker] = ACTIONS(1892), - [sym_atx_h3_marker] = ACTIONS(1892), - [sym_atx_h4_marker] = ACTIONS(1892), - [sym_atx_h5_marker] = ACTIONS(1892), - [sym_atx_h6_marker] = ACTIONS(1892), - [sym__thematic_break] = ACTIONS(1892), - [sym__list_marker_minus] = ACTIONS(1892), - [sym__list_marker_plus] = ACTIONS(1892), - [sym__list_marker_star] = ACTIONS(1892), - [sym__list_marker_parenthesis] = ACTIONS(1892), - [sym__list_marker_dot] = ACTIONS(1892), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_example] = ACTIONS(1892), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1892), - [sym__fenced_code_block_start_backtick] = ACTIONS(1892), - [sym__fenced_code_block_start_tilde] = ACTIONS(1892), - [sym__blank_line_start] = ACTIONS(1892), - [sym_minus_metadata] = ACTIONS(1892), - [sym__pipe_table_start] = ACTIONS(1892), - [sym__fenced_div_start] = ACTIONS(1892), - [sym_ref_id_specifier] = ACTIONS(1892), - [sym__display_math_state_track_marker] = ACTIONS(1892), - [sym__inline_math_state_track_marker] = ACTIONS(1892), - [sym__code_span_start] = ACTIONS(1892), - [sym__html_comment] = ACTIONS(1892), - [sym_raw_specifier] = ACTIONS(1892), - [sym__autolink] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1894), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_COMMA] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_QMARK] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1894), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1894), + [sym__escaped_characters] = ACTIONS(1894), + [sym__word] = ACTIONS(1894), + [sym__soft_line_ending] = ACTIONS(1894), + [sym__block_quote_start] = ACTIONS(1894), + [sym__indented_chunk_start] = ACTIONS(1894), + [sym_atx_h1_marker] = ACTIONS(1894), + [sym_atx_h2_marker] = ACTIONS(1894), + [sym_atx_h3_marker] = ACTIONS(1894), + [sym_atx_h4_marker] = ACTIONS(1894), + [sym_atx_h5_marker] = ACTIONS(1894), + [sym_atx_h6_marker] = ACTIONS(1894), + [sym__thematic_break] = ACTIONS(1894), + [sym__list_marker_minus] = ACTIONS(1894), + [sym__list_marker_plus] = ACTIONS(1894), + [sym__list_marker_star] = ACTIONS(1894), + [sym__list_marker_parenthesis] = ACTIONS(1894), + [sym__list_marker_dot] = ACTIONS(1894), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_example] = ACTIONS(1894), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1894), + [sym__fenced_code_block_start_backtick] = ACTIONS(1894), + [sym__fenced_code_block_start_tilde] = ACTIONS(1894), + [sym__blank_line_start] = ACTIONS(1894), + [sym_minus_metadata] = ACTIONS(1894), + [sym__pipe_table_start] = ACTIONS(1894), + [sym__fenced_div_start] = ACTIONS(1894), + [sym_ref_id_specifier] = ACTIONS(1894), + [sym__display_math_state_track_marker] = ACTIONS(1894), + [sym__inline_math_state_track_marker] = ACTIONS(1894), + [sym__code_span_start] = ACTIONS(1894), + [sym__html_comment] = ACTIONS(1894), + [sym_raw_specifier] = ACTIONS(1894), + [sym__autolink] = ACTIONS(1894), }, [STATE(322)] = { - [ts_builtin_sym_end] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1592), [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_BSLASH] = ACTIONS(1592), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1590), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1590), - [sym__html_comment] = ACTIONS(1590), - [sym_raw_specifier] = ACTIONS(1590), - [sym__autolink] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1592), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1592), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1592), + [sym__html_comment] = ACTIONS(1592), + [sym_raw_specifier] = ACTIONS(1592), + [sym__autolink] = ACTIONS(1592), }, [STATE(323)] = { - [ts_builtin_sym_end] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1598), [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_BSLASH] = ACTIONS(1598), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1596), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1596), - [sym__html_comment] = ACTIONS(1596), - [sym_raw_specifier] = ACTIONS(1596), - [sym__autolink] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1598), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1598), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1598), + [sym__html_comment] = ACTIONS(1598), + [sym_raw_specifier] = ACTIONS(1598), + [sym__autolink] = ACTIONS(1598), }, [STATE(324)] = { - [ts_builtin_sym_end] = ACTIONS(1602), + [ts_builtin_sym_end] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1604), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1602), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1602), - [sym__html_comment] = ACTIONS(1602), - [sym_raw_specifier] = ACTIONS(1602), - [sym__autolink] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1604), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1604), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1604), + [sym__html_comment] = ACTIONS(1604), + [sym_raw_specifier] = ACTIONS(1604), + [sym__autolink] = ACTIONS(1604), }, [STATE(325)] = { - [ts_builtin_sym_end] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1728), [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1726), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_BSLASH] = ACTIONS(1728), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1726), - [sym__escaped_characters] = ACTIONS(1726), - [sym__word] = ACTIONS(1726), - [sym__soft_line_ending] = 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), - [sym__code_span_start] = ACTIONS(1726), - [sym__html_comment] = ACTIONS(1726), - [sym_raw_specifier] = ACTIONS(1726), - [sym__autolink] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1728), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_BSLASH] = ACTIONS(1726), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1728), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1728), + [sym__escaped_characters] = ACTIONS(1728), + [sym__word] = ACTIONS(1728), + [sym__soft_line_ending] = 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), + [sym__code_span_start] = ACTIONS(1728), + [sym__html_comment] = ACTIONS(1728), + [sym_raw_specifier] = ACTIONS(1728), + [sym__autolink] = ACTIONS(1728), }, [STATE(326)] = { - [ts_builtin_sym_end] = ACTIONS(1730), + [ts_builtin_sym_end] = ACTIONS(1732), [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1730), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_BSLASH] = ACTIONS(1732), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_CARET] = ACTIONS(1730), - [anon_sym__] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1730), - [sym__escaped_characters] = ACTIONS(1730), - [sym__word] = ACTIONS(1730), - [sym__soft_line_ending] = 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), - [sym__code_span_start] = ACTIONS(1730), - [sym__html_comment] = ACTIONS(1730), - [sym_raw_specifier] = ACTIONS(1730), - [sym__autolink] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1732), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_BSLASH] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1732), + [anon_sym_CARET] = ACTIONS(1732), + [anon_sym__] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1732), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1732), + [sym__escaped_characters] = ACTIONS(1732), + [sym__word] = ACTIONS(1732), + [sym__soft_line_ending] = ACTIONS(1732), + [sym__block_quote_start] = ACTIONS(1732), + [sym__indented_chunk_start] = ACTIONS(1732), + [sym_atx_h1_marker] = ACTIONS(1732), + [sym_atx_h2_marker] = ACTIONS(1732), + [sym_atx_h3_marker] = ACTIONS(1732), + [sym_atx_h4_marker] = ACTIONS(1732), + [sym_atx_h5_marker] = ACTIONS(1732), + [sym_atx_h6_marker] = ACTIONS(1732), + [sym__thematic_break] = ACTIONS(1732), + [sym__list_marker_minus] = ACTIONS(1732), + [sym__list_marker_plus] = ACTIONS(1732), + [sym__list_marker_star] = ACTIONS(1732), + [sym__list_marker_parenthesis] = ACTIONS(1732), + [sym__list_marker_dot] = ACTIONS(1732), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_example] = ACTIONS(1732), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1732), + [sym__fenced_code_block_start_backtick] = ACTIONS(1732), + [sym__fenced_code_block_start_tilde] = ACTIONS(1732), + [sym__blank_line_start] = ACTIONS(1732), + [sym_minus_metadata] = ACTIONS(1732), + [sym__pipe_table_start] = ACTIONS(1732), + [sym__fenced_div_start] = ACTIONS(1732), + [sym_ref_id_specifier] = ACTIONS(1732), + [sym__display_math_state_track_marker] = ACTIONS(1732), + [sym__inline_math_state_track_marker] = ACTIONS(1732), + [sym__code_span_start] = ACTIONS(1732), + [sym__html_comment] = ACTIONS(1732), + [sym_raw_specifier] = ACTIONS(1732), + [sym__autolink] = ACTIONS(1732), }, [STATE(327)] = { - [ts_builtin_sym_end] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(1736), [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_BSLASH] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_CARET] = ACTIONS(1734), - [anon_sym__] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1734), - [sym__escaped_characters] = ACTIONS(1734), - [sym__word] = ACTIONS(1734), - [sym__soft_line_ending] = ACTIONS(1734), - [sym__block_quote_start] = ACTIONS(1734), - [sym__indented_chunk_start] = ACTIONS(1734), - [sym_atx_h1_marker] = ACTIONS(1734), - [sym_atx_h2_marker] = ACTIONS(1734), - [sym_atx_h3_marker] = ACTIONS(1734), - [sym_atx_h4_marker] = ACTIONS(1734), - [sym_atx_h5_marker] = ACTIONS(1734), - [sym_atx_h6_marker] = ACTIONS(1734), - [sym__thematic_break] = ACTIONS(1734), - [sym__list_marker_minus] = ACTIONS(1734), - [sym__list_marker_plus] = ACTIONS(1734), - [sym__list_marker_star] = ACTIONS(1734), - [sym__list_marker_parenthesis] = ACTIONS(1734), - [sym__list_marker_dot] = ACTIONS(1734), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_example] = ACTIONS(1734), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1734), - [sym__fenced_code_block_start_backtick] = ACTIONS(1734), - [sym__fenced_code_block_start_tilde] = ACTIONS(1734), - [sym__blank_line_start] = ACTIONS(1734), - [sym_minus_metadata] = ACTIONS(1734), - [sym__pipe_table_start] = ACTIONS(1734), - [sym__fenced_div_start] = ACTIONS(1734), - [sym_ref_id_specifier] = ACTIONS(1734), - [sym__display_math_state_track_marker] = ACTIONS(1734), - [sym__inline_math_state_track_marker] = ACTIONS(1734), - [sym__code_span_start] = ACTIONS(1734), - [sym__html_comment] = ACTIONS(1734), - [sym_raw_specifier] = ACTIONS(1734), - [sym__autolink] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1736), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1736), + [anon_sym_EQ] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_SLASH] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_QMARK] = ACTIONS(1736), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_BSLASH] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_CARET] = ACTIONS(1736), + [anon_sym__] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1736), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1736), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1736), + [sym__escaped_characters] = ACTIONS(1736), + [sym__word] = ACTIONS(1736), + [sym__soft_line_ending] = ACTIONS(1736), + [sym__block_quote_start] = ACTIONS(1736), + [sym__indented_chunk_start] = ACTIONS(1736), + [sym_atx_h1_marker] = ACTIONS(1736), + [sym_atx_h2_marker] = ACTIONS(1736), + [sym_atx_h3_marker] = ACTIONS(1736), + [sym_atx_h4_marker] = ACTIONS(1736), + [sym_atx_h5_marker] = ACTIONS(1736), + [sym_atx_h6_marker] = ACTIONS(1736), + [sym__thematic_break] = ACTIONS(1736), + [sym__list_marker_minus] = ACTIONS(1736), + [sym__list_marker_plus] = ACTIONS(1736), + [sym__list_marker_star] = ACTIONS(1736), + [sym__list_marker_parenthesis] = ACTIONS(1736), + [sym__list_marker_dot] = ACTIONS(1736), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_example] = ACTIONS(1736), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1736), + [sym__fenced_code_block_start_backtick] = ACTIONS(1736), + [sym__fenced_code_block_start_tilde] = ACTIONS(1736), + [sym__blank_line_start] = ACTIONS(1736), + [sym_minus_metadata] = ACTIONS(1736), + [sym__pipe_table_start] = ACTIONS(1736), + [sym__fenced_div_start] = ACTIONS(1736), + [sym_ref_id_specifier] = ACTIONS(1736), + [sym__display_math_state_track_marker] = ACTIONS(1736), + [sym__inline_math_state_track_marker] = ACTIONS(1736), + [sym__code_span_start] = ACTIONS(1736), + [sym__html_comment] = ACTIONS(1736), + [sym_raw_specifier] = ACTIONS(1736), + [sym__autolink] = ACTIONS(1736), }, [STATE(328)] = { - [ts_builtin_sym_end] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1740), [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_PERCENT] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_QMARK] = ACTIONS(1738), - [anon_sym_AT] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_BSLASH] = ACTIONS(1740), - [anon_sym_RBRACK] = ACTIONS(1738), - [anon_sym_CARET] = ACTIONS(1738), - [anon_sym__] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1738), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1738), - [sym__escaped_characters] = ACTIONS(1738), - [sym__word] = ACTIONS(1738), - [sym__soft_line_ending] = ACTIONS(1738), - [sym__block_quote_start] = ACTIONS(1738), - [sym__indented_chunk_start] = ACTIONS(1738), - [sym_atx_h1_marker] = ACTIONS(1738), - [sym_atx_h2_marker] = ACTIONS(1738), - [sym_atx_h3_marker] = ACTIONS(1738), - [sym_atx_h4_marker] = ACTIONS(1738), - [sym_atx_h5_marker] = ACTIONS(1738), - [sym_atx_h6_marker] = ACTIONS(1738), - [sym__thematic_break] = ACTIONS(1738), - [sym__list_marker_minus] = ACTIONS(1738), - [sym__list_marker_plus] = ACTIONS(1738), - [sym__list_marker_star] = ACTIONS(1738), - [sym__list_marker_parenthesis] = ACTIONS(1738), - [sym__list_marker_dot] = ACTIONS(1738), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_example] = ACTIONS(1738), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1738), - [sym__fenced_code_block_start_backtick] = ACTIONS(1738), - [sym__fenced_code_block_start_tilde] = ACTIONS(1738), - [sym__blank_line_start] = ACTIONS(1738), - [sym_minus_metadata] = ACTIONS(1738), - [sym__pipe_table_start] = ACTIONS(1738), - [sym__fenced_div_start] = ACTIONS(1738), - [sym_ref_id_specifier] = ACTIONS(1738), - [sym__display_math_state_track_marker] = ACTIONS(1738), - [sym__inline_math_state_track_marker] = ACTIONS(1738), - [sym__code_span_start] = ACTIONS(1738), - [sym__html_comment] = ACTIONS(1738), - [sym_raw_specifier] = ACTIONS(1738), - [sym__autolink] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1740), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1740), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1740), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_SLASH] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_QMARK] = ACTIONS(1740), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_BSLASH] = ACTIONS(1738), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_CARET] = ACTIONS(1740), + [anon_sym__] = ACTIONS(1740), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1740), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1740), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1740), + [sym__escaped_characters] = ACTIONS(1740), + [sym__word] = ACTIONS(1740), + [sym__soft_line_ending] = ACTIONS(1740), + [sym__block_quote_start] = ACTIONS(1740), + [sym__indented_chunk_start] = ACTIONS(1740), + [sym_atx_h1_marker] = ACTIONS(1740), + [sym_atx_h2_marker] = ACTIONS(1740), + [sym_atx_h3_marker] = ACTIONS(1740), + [sym_atx_h4_marker] = ACTIONS(1740), + [sym_atx_h5_marker] = ACTIONS(1740), + [sym_atx_h6_marker] = ACTIONS(1740), + [sym__thematic_break] = ACTIONS(1740), + [sym__list_marker_minus] = ACTIONS(1740), + [sym__list_marker_plus] = ACTIONS(1740), + [sym__list_marker_star] = ACTIONS(1740), + [sym__list_marker_parenthesis] = ACTIONS(1740), + [sym__list_marker_dot] = ACTIONS(1740), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_example] = ACTIONS(1740), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1740), + [sym__fenced_code_block_start_backtick] = ACTIONS(1740), + [sym__fenced_code_block_start_tilde] = ACTIONS(1740), + [sym__blank_line_start] = ACTIONS(1740), + [sym_minus_metadata] = ACTIONS(1740), + [sym__pipe_table_start] = ACTIONS(1740), + [sym__fenced_div_start] = ACTIONS(1740), + [sym_ref_id_specifier] = ACTIONS(1740), + [sym__display_math_state_track_marker] = ACTIONS(1740), + [sym__inline_math_state_track_marker] = ACTIONS(1740), + [sym__code_span_start] = ACTIONS(1740), + [sym__html_comment] = ACTIONS(1740), + [sym_raw_specifier] = ACTIONS(1740), + [sym__autolink] = ACTIONS(1740), }, [STATE(329)] = { - [ts_builtin_sym_end] = ACTIONS(1896), + [ts_builtin_sym_end] = ACTIONS(1898), [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_PERCENT] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(1896), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_BSLASH] = ACTIONS(1898), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1896), - [anon_sym__] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1896), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1896), - [sym__escaped_characters] = ACTIONS(1896), - [sym__word] = ACTIONS(1896), - [sym__soft_line_ending] = ACTIONS(1896), - [sym__block_quote_start] = ACTIONS(1896), - [sym__indented_chunk_start] = ACTIONS(1896), - [sym_atx_h1_marker] = ACTIONS(1896), - [sym_atx_h2_marker] = ACTIONS(1896), - [sym_atx_h3_marker] = ACTIONS(1896), - [sym_atx_h4_marker] = ACTIONS(1896), - [sym_atx_h5_marker] = ACTIONS(1896), - [sym_atx_h6_marker] = ACTIONS(1896), - [sym__thematic_break] = ACTIONS(1896), - [sym__list_marker_minus] = ACTIONS(1896), - [sym__list_marker_plus] = ACTIONS(1896), - [sym__list_marker_star] = ACTIONS(1896), - [sym__list_marker_parenthesis] = ACTIONS(1896), - [sym__list_marker_dot] = ACTIONS(1896), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_example] = ACTIONS(1896), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1896), - [sym__fenced_code_block_start_backtick] = ACTIONS(1896), - [sym__fenced_code_block_start_tilde] = ACTIONS(1896), - [sym__blank_line_start] = ACTIONS(1896), - [sym_minus_metadata] = ACTIONS(1896), - [sym__pipe_table_start] = ACTIONS(1896), - [sym__fenced_div_start] = ACTIONS(1896), - [sym_ref_id_specifier] = ACTIONS(1896), - [sym__display_math_state_track_marker] = ACTIONS(1896), - [sym__inline_math_state_track_marker] = ACTIONS(1896), - [sym__code_span_start] = ACTIONS(1896), - [sym__html_comment] = ACTIONS(1896), - [sym_raw_specifier] = ACTIONS(1896), - [sym__autolink] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1898), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_PERCENT] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_DOT] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_BSLASH] = ACTIONS(1896), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1898), + [anon_sym__] = ACTIONS(1898), + [anon_sym_BQUOTE] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1898), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1898), + [sym__escaped_characters] = ACTIONS(1898), + [sym__word] = ACTIONS(1898), + [sym__soft_line_ending] = ACTIONS(1898), + [sym__block_quote_start] = ACTIONS(1898), + [sym__indented_chunk_start] = ACTIONS(1898), + [sym_atx_h1_marker] = ACTIONS(1898), + [sym_atx_h2_marker] = ACTIONS(1898), + [sym_atx_h3_marker] = ACTIONS(1898), + [sym_atx_h4_marker] = ACTIONS(1898), + [sym_atx_h5_marker] = ACTIONS(1898), + [sym_atx_h6_marker] = ACTIONS(1898), + [sym__thematic_break] = ACTIONS(1898), + [sym__list_marker_minus] = ACTIONS(1898), + [sym__list_marker_plus] = ACTIONS(1898), + [sym__list_marker_star] = ACTIONS(1898), + [sym__list_marker_parenthesis] = ACTIONS(1898), + [sym__list_marker_dot] = ACTIONS(1898), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_example] = ACTIONS(1898), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1898), + [sym__fenced_code_block_start_backtick] = ACTIONS(1898), + [sym__fenced_code_block_start_tilde] = ACTIONS(1898), + [sym__blank_line_start] = ACTIONS(1898), + [sym_minus_metadata] = ACTIONS(1898), + [sym__pipe_table_start] = ACTIONS(1898), + [sym__fenced_div_start] = ACTIONS(1898), + [sym_ref_id_specifier] = ACTIONS(1898), + [sym__display_math_state_track_marker] = ACTIONS(1898), + [sym__inline_math_state_track_marker] = ACTIONS(1898), + [sym__code_span_start] = ACTIONS(1898), + [sym__html_comment] = ACTIONS(1898), + [sym_raw_specifier] = ACTIONS(1898), + [sym__autolink] = ACTIONS(1898), }, [STATE(330)] = { - [ts_builtin_sym_end] = ACTIONS(1742), + [ts_builtin_sym_end] = ACTIONS(1744), [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_QMARK] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_BSLASH] = ACTIONS(1744), - [anon_sym_RBRACK] = ACTIONS(1742), - [anon_sym_CARET] = ACTIONS(1742), - [anon_sym__] = ACTIONS(1742), - [anon_sym_BQUOTE] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_TILDE] = ACTIONS(1742), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1742), - [sym__escaped_characters] = ACTIONS(1742), - [sym__word] = ACTIONS(1742), - [sym__soft_line_ending] = ACTIONS(1742), - [sym__block_quote_start] = ACTIONS(1742), - [sym__indented_chunk_start] = ACTIONS(1742), - [sym_atx_h1_marker] = ACTIONS(1742), - [sym_atx_h2_marker] = ACTIONS(1742), - [sym_atx_h3_marker] = ACTIONS(1742), - [sym_atx_h4_marker] = ACTIONS(1742), - [sym_atx_h5_marker] = ACTIONS(1742), - [sym_atx_h6_marker] = ACTIONS(1742), - [sym__thematic_break] = ACTIONS(1742), - [sym__list_marker_minus] = ACTIONS(1742), - [sym__list_marker_plus] = ACTIONS(1742), - [sym__list_marker_star] = ACTIONS(1742), - [sym__list_marker_parenthesis] = ACTIONS(1742), - [sym__list_marker_dot] = ACTIONS(1742), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_example] = ACTIONS(1742), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1742), - [sym__fenced_code_block_start_backtick] = ACTIONS(1742), - [sym__fenced_code_block_start_tilde] = ACTIONS(1742), - [sym__blank_line_start] = ACTIONS(1742), - [sym_minus_metadata] = ACTIONS(1742), - [sym__pipe_table_start] = ACTIONS(1742), - [sym__fenced_div_start] = ACTIONS(1742), - [sym_ref_id_specifier] = ACTIONS(1742), - [sym__display_math_state_track_marker] = ACTIONS(1742), - [sym__inline_math_state_track_marker] = ACTIONS(1742), - [sym__code_span_start] = ACTIONS(1742), - [sym__html_comment] = ACTIONS(1742), - [sym_raw_specifier] = ACTIONS(1742), - [sym__autolink] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1744), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_BSLASH] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(1744), + [anon_sym_CARET] = ACTIONS(1744), + [anon_sym__] = ACTIONS(1744), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1744), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1744), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1744), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1744), + [sym__escaped_characters] = ACTIONS(1744), + [sym__word] = ACTIONS(1744), + [sym__soft_line_ending] = ACTIONS(1744), + [sym__block_quote_start] = ACTIONS(1744), + [sym__indented_chunk_start] = ACTIONS(1744), + [sym_atx_h1_marker] = ACTIONS(1744), + [sym_atx_h2_marker] = ACTIONS(1744), + [sym_atx_h3_marker] = ACTIONS(1744), + [sym_atx_h4_marker] = ACTIONS(1744), + [sym_atx_h5_marker] = ACTIONS(1744), + [sym_atx_h6_marker] = ACTIONS(1744), + [sym__thematic_break] = ACTIONS(1744), + [sym__list_marker_minus] = ACTIONS(1744), + [sym__list_marker_plus] = ACTIONS(1744), + [sym__list_marker_star] = ACTIONS(1744), + [sym__list_marker_parenthesis] = ACTIONS(1744), + [sym__list_marker_dot] = ACTIONS(1744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_example] = ACTIONS(1744), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1744), + [sym__fenced_code_block_start_backtick] = ACTIONS(1744), + [sym__fenced_code_block_start_tilde] = ACTIONS(1744), + [sym__blank_line_start] = ACTIONS(1744), + [sym_minus_metadata] = ACTIONS(1744), + [sym__pipe_table_start] = ACTIONS(1744), + [sym__fenced_div_start] = ACTIONS(1744), + [sym_ref_id_specifier] = ACTIONS(1744), + [sym__display_math_state_track_marker] = ACTIONS(1744), + [sym__inline_math_state_track_marker] = ACTIONS(1744), + [sym__code_span_start] = ACTIONS(1744), + [sym__html_comment] = ACTIONS(1744), + [sym_raw_specifier] = ACTIONS(1744), + [sym__autolink] = ACTIONS(1744), }, [STATE(331)] = { - [ts_builtin_sym_end] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1748), [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_PERCENT] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_BSLASH] = ACTIONS(1748), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_CARET] = ACTIONS(1746), - [anon_sym__] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1746), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1746), - [sym__escaped_characters] = ACTIONS(1746), - [sym__word] = ACTIONS(1746), - [sym__soft_line_ending] = ACTIONS(1746), - [sym__block_quote_start] = ACTIONS(1746), - [sym__indented_chunk_start] = ACTIONS(1746), - [sym_atx_h1_marker] = ACTIONS(1746), - [sym_atx_h2_marker] = ACTIONS(1746), - [sym_atx_h3_marker] = ACTIONS(1746), - [sym_atx_h4_marker] = ACTIONS(1746), - [sym_atx_h5_marker] = ACTIONS(1746), - [sym_atx_h6_marker] = ACTIONS(1746), - [sym__thematic_break] = ACTIONS(1746), - [sym__list_marker_minus] = ACTIONS(1746), - [sym__list_marker_plus] = ACTIONS(1746), - [sym__list_marker_star] = ACTIONS(1746), - [sym__list_marker_parenthesis] = ACTIONS(1746), - [sym__list_marker_dot] = ACTIONS(1746), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_example] = ACTIONS(1746), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1746), - [sym__fenced_code_block_start_backtick] = ACTIONS(1746), - [sym__fenced_code_block_start_tilde] = ACTIONS(1746), - [sym__blank_line_start] = ACTIONS(1746), - [sym_minus_metadata] = ACTIONS(1746), - [sym__pipe_table_start] = ACTIONS(1746), - [sym__fenced_div_start] = ACTIONS(1746), - [sym_ref_id_specifier] = ACTIONS(1746), - [sym__display_math_state_track_marker] = ACTIONS(1746), - [sym__inline_math_state_track_marker] = ACTIONS(1746), - [sym__code_span_start] = ACTIONS(1746), - [sym__html_comment] = ACTIONS(1746), - [sym_raw_specifier] = ACTIONS(1746), - [sym__autolink] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1748), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1748), + [anon_sym_PERCENT] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_DOT] = ACTIONS(1748), + [anon_sym_SLASH] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_BSLASH] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_CARET] = ACTIONS(1748), + [anon_sym__] = ACTIONS(1748), + [anon_sym_BQUOTE] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1748), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1748), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1748), + [sym__escaped_characters] = ACTIONS(1748), + [sym__word] = ACTIONS(1748), + [sym__soft_line_ending] = ACTIONS(1748), + [sym__block_quote_start] = ACTIONS(1748), + [sym__indented_chunk_start] = ACTIONS(1748), + [sym_atx_h1_marker] = ACTIONS(1748), + [sym_atx_h2_marker] = ACTIONS(1748), + [sym_atx_h3_marker] = ACTIONS(1748), + [sym_atx_h4_marker] = ACTIONS(1748), + [sym_atx_h5_marker] = ACTIONS(1748), + [sym_atx_h6_marker] = ACTIONS(1748), + [sym__thematic_break] = ACTIONS(1748), + [sym__list_marker_minus] = ACTIONS(1748), + [sym__list_marker_plus] = ACTIONS(1748), + [sym__list_marker_star] = ACTIONS(1748), + [sym__list_marker_parenthesis] = ACTIONS(1748), + [sym__list_marker_dot] = ACTIONS(1748), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_example] = ACTIONS(1748), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1748), + [sym__fenced_code_block_start_backtick] = ACTIONS(1748), + [sym__fenced_code_block_start_tilde] = ACTIONS(1748), + [sym__blank_line_start] = ACTIONS(1748), + [sym_minus_metadata] = ACTIONS(1748), + [sym__pipe_table_start] = ACTIONS(1748), + [sym__fenced_div_start] = ACTIONS(1748), + [sym_ref_id_specifier] = ACTIONS(1748), + [sym__display_math_state_track_marker] = ACTIONS(1748), + [sym__inline_math_state_track_marker] = ACTIONS(1748), + [sym__code_span_start] = ACTIONS(1748), + [sym__html_comment] = ACTIONS(1748), + [sym_raw_specifier] = ACTIONS(1748), + [sym__autolink] = ACTIONS(1748), }, [STATE(332)] = { - [ts_builtin_sym_end] = ACTIONS(1750), + [ts_builtin_sym_end] = ACTIONS(1752), [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_AT] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_RBRACK] = ACTIONS(1750), - [anon_sym_CARET] = ACTIONS(1750), - [anon_sym__] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1750), - [sym__escaped_characters] = ACTIONS(1750), - [sym__word] = ACTIONS(1750), - [sym__soft_line_ending] = ACTIONS(1750), - [sym__block_quote_start] = ACTIONS(1750), - [sym__indented_chunk_start] = ACTIONS(1750), - [sym_atx_h1_marker] = ACTIONS(1750), - [sym_atx_h2_marker] = ACTIONS(1750), - [sym_atx_h3_marker] = ACTIONS(1750), - [sym_atx_h4_marker] = ACTIONS(1750), - [sym_atx_h5_marker] = ACTIONS(1750), - [sym_atx_h6_marker] = ACTIONS(1750), - [sym__thematic_break] = ACTIONS(1750), - [sym__list_marker_minus] = ACTIONS(1750), - [sym__list_marker_plus] = ACTIONS(1750), - [sym__list_marker_star] = ACTIONS(1750), - [sym__list_marker_parenthesis] = ACTIONS(1750), - [sym__list_marker_dot] = ACTIONS(1750), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_example] = ACTIONS(1750), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1750), - [sym__fenced_code_block_start_backtick] = ACTIONS(1750), - [sym__fenced_code_block_start_tilde] = ACTIONS(1750), - [sym__blank_line_start] = ACTIONS(1750), - [sym_minus_metadata] = ACTIONS(1750), - [sym__pipe_table_start] = ACTIONS(1750), - [sym__fenced_div_start] = ACTIONS(1750), - [sym_ref_id_specifier] = ACTIONS(1750), - [sym__display_math_state_track_marker] = ACTIONS(1750), - [sym__inline_math_state_track_marker] = ACTIONS(1750), - [sym__code_span_start] = ACTIONS(1750), - [sym__html_comment] = ACTIONS(1750), - [sym_raw_specifier] = ACTIONS(1750), - [sym__autolink] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1752), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_DQUOTE] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_QMARK] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_BSLASH] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym__] = ACTIONS(1752), + [anon_sym_BQUOTE] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1752), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1752), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1752), + [sym__escaped_characters] = ACTIONS(1752), + [sym__word] = ACTIONS(1752), + [sym__soft_line_ending] = ACTIONS(1752), + [sym__block_quote_start] = ACTIONS(1752), + [sym__indented_chunk_start] = ACTIONS(1752), + [sym_atx_h1_marker] = ACTIONS(1752), + [sym_atx_h2_marker] = ACTIONS(1752), + [sym_atx_h3_marker] = ACTIONS(1752), + [sym_atx_h4_marker] = ACTIONS(1752), + [sym_atx_h5_marker] = ACTIONS(1752), + [sym_atx_h6_marker] = ACTIONS(1752), + [sym__thematic_break] = ACTIONS(1752), + [sym__list_marker_minus] = ACTIONS(1752), + [sym__list_marker_plus] = ACTIONS(1752), + [sym__list_marker_star] = ACTIONS(1752), + [sym__list_marker_parenthesis] = ACTIONS(1752), + [sym__list_marker_dot] = ACTIONS(1752), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_example] = ACTIONS(1752), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1752), + [sym__fenced_code_block_start_backtick] = ACTIONS(1752), + [sym__fenced_code_block_start_tilde] = ACTIONS(1752), + [sym__blank_line_start] = ACTIONS(1752), + [sym_minus_metadata] = ACTIONS(1752), + [sym__pipe_table_start] = ACTIONS(1752), + [sym__fenced_div_start] = ACTIONS(1752), + [sym_ref_id_specifier] = ACTIONS(1752), + [sym__display_math_state_track_marker] = ACTIONS(1752), + [sym__inline_math_state_track_marker] = ACTIONS(1752), + [sym__code_span_start] = ACTIONS(1752), + [sym__html_comment] = ACTIONS(1752), + [sym_raw_specifier] = ACTIONS(1752), + [sym__autolink] = ACTIONS(1752), }, [STATE(333)] = { - [ts_builtin_sym_end] = ACTIONS(1754), + [ts_builtin_sym_end] = ACTIONS(1756), [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1754), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SLASH] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_QMARK] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_BSLASH] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1754), - [anon_sym__] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1754), - [sym__escaped_characters] = ACTIONS(1754), - [sym__word] = ACTIONS(1754), - [sym__soft_line_ending] = ACTIONS(1754), - [sym__block_quote_start] = ACTIONS(1754), - [sym__indented_chunk_start] = ACTIONS(1754), - [sym_atx_h1_marker] = ACTIONS(1754), - [sym_atx_h2_marker] = ACTIONS(1754), - [sym_atx_h3_marker] = ACTIONS(1754), - [sym_atx_h4_marker] = ACTIONS(1754), - [sym_atx_h5_marker] = ACTIONS(1754), - [sym_atx_h6_marker] = ACTIONS(1754), - [sym__thematic_break] = ACTIONS(1754), - [sym__list_marker_minus] = ACTIONS(1754), - [sym__list_marker_plus] = ACTIONS(1754), - [sym__list_marker_star] = ACTIONS(1754), - [sym__list_marker_parenthesis] = ACTIONS(1754), - [sym__list_marker_dot] = ACTIONS(1754), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_example] = ACTIONS(1754), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1754), - [sym__fenced_code_block_start_backtick] = ACTIONS(1754), - [sym__fenced_code_block_start_tilde] = ACTIONS(1754), - [sym__blank_line_start] = ACTIONS(1754), - [sym_minus_metadata] = ACTIONS(1754), - [sym__pipe_table_start] = ACTIONS(1754), - [sym__fenced_div_start] = ACTIONS(1754), - [sym_ref_id_specifier] = ACTIONS(1754), - [sym__display_math_state_track_marker] = ACTIONS(1754), - [sym__inline_math_state_track_marker] = ACTIONS(1754), - [sym__code_span_start] = ACTIONS(1754), - [sym__html_comment] = ACTIONS(1754), - [sym_raw_specifier] = ACTIONS(1754), - [sym__autolink] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1756), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_SQUOTE] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_QMARK] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_BSLASH] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym__] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_TILDE] = ACTIONS(1756), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1756), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1756), + [sym__escaped_characters] = ACTIONS(1756), + [sym__word] = ACTIONS(1756), + [sym__soft_line_ending] = ACTIONS(1756), + [sym__block_quote_start] = ACTIONS(1756), + [sym__indented_chunk_start] = ACTIONS(1756), + [sym_atx_h1_marker] = ACTIONS(1756), + [sym_atx_h2_marker] = ACTIONS(1756), + [sym_atx_h3_marker] = ACTIONS(1756), + [sym_atx_h4_marker] = ACTIONS(1756), + [sym_atx_h5_marker] = ACTIONS(1756), + [sym_atx_h6_marker] = ACTIONS(1756), + [sym__thematic_break] = ACTIONS(1756), + [sym__list_marker_minus] = ACTIONS(1756), + [sym__list_marker_plus] = ACTIONS(1756), + [sym__list_marker_star] = ACTIONS(1756), + [sym__list_marker_parenthesis] = ACTIONS(1756), + [sym__list_marker_dot] = ACTIONS(1756), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_example] = ACTIONS(1756), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1756), + [sym__fenced_code_block_start_backtick] = ACTIONS(1756), + [sym__fenced_code_block_start_tilde] = ACTIONS(1756), + [sym__blank_line_start] = ACTIONS(1756), + [sym_minus_metadata] = ACTIONS(1756), + [sym__pipe_table_start] = ACTIONS(1756), + [sym__fenced_div_start] = ACTIONS(1756), + [sym_ref_id_specifier] = ACTIONS(1756), + [sym__display_math_state_track_marker] = ACTIONS(1756), + [sym__inline_math_state_track_marker] = ACTIONS(1756), + [sym__code_span_start] = ACTIONS(1756), + [sym__html_comment] = ACTIONS(1756), + [sym_raw_specifier] = ACTIONS(1756), + [sym__autolink] = ACTIONS(1756), }, [STATE(334)] = { - [ts_builtin_sym_end] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1760), [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1758), - [anon_sym_EQ] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_QMARK] = ACTIONS(1758), - [anon_sym_AT] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_BSLASH] = ACTIONS(1760), - [anon_sym_RBRACK] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym__] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1758), - [sym__escaped_characters] = ACTIONS(1758), - [sym__word] = ACTIONS(1758), - [sym__soft_line_ending] = ACTIONS(1758), - [sym__block_quote_start] = ACTIONS(1758), - [sym__indented_chunk_start] = ACTIONS(1758), - [sym_atx_h1_marker] = ACTIONS(1758), - [sym_atx_h2_marker] = ACTIONS(1758), - [sym_atx_h3_marker] = ACTIONS(1758), - [sym_atx_h4_marker] = ACTIONS(1758), - [sym_atx_h5_marker] = ACTIONS(1758), - [sym_atx_h6_marker] = ACTIONS(1758), - [sym__thematic_break] = ACTIONS(1758), - [sym__list_marker_minus] = ACTIONS(1758), - [sym__list_marker_plus] = ACTIONS(1758), - [sym__list_marker_star] = ACTIONS(1758), - [sym__list_marker_parenthesis] = ACTIONS(1758), - [sym__list_marker_dot] = ACTIONS(1758), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_example] = ACTIONS(1758), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1758), - [sym__fenced_code_block_start_backtick] = ACTIONS(1758), - [sym__fenced_code_block_start_tilde] = ACTIONS(1758), - [sym__blank_line_start] = ACTIONS(1758), - [sym_minus_metadata] = ACTIONS(1758), - [sym__pipe_table_start] = ACTIONS(1758), - [sym__fenced_div_start] = ACTIONS(1758), - [sym_ref_id_specifier] = ACTIONS(1758), - [sym__display_math_state_track_marker] = ACTIONS(1758), - [sym__inline_math_state_track_marker] = ACTIONS(1758), - [sym__code_span_start] = ACTIONS(1758), - [sym__html_comment] = ACTIONS(1758), - [sym_raw_specifier] = ACTIONS(1758), - [sym__autolink] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1760), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym__] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1760), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1760), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1760), + [sym__escaped_characters] = ACTIONS(1760), + [sym__word] = ACTIONS(1760), + [sym__soft_line_ending] = ACTIONS(1760), + [sym__block_quote_start] = ACTIONS(1760), + [sym__indented_chunk_start] = ACTIONS(1760), + [sym_atx_h1_marker] = ACTIONS(1760), + [sym_atx_h2_marker] = ACTIONS(1760), + [sym_atx_h3_marker] = ACTIONS(1760), + [sym_atx_h4_marker] = ACTIONS(1760), + [sym_atx_h5_marker] = ACTIONS(1760), + [sym_atx_h6_marker] = ACTIONS(1760), + [sym__thematic_break] = ACTIONS(1760), + [sym__list_marker_minus] = ACTIONS(1760), + [sym__list_marker_plus] = ACTIONS(1760), + [sym__list_marker_star] = ACTIONS(1760), + [sym__list_marker_parenthesis] = ACTIONS(1760), + [sym__list_marker_dot] = ACTIONS(1760), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_example] = ACTIONS(1760), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1760), + [sym__fenced_code_block_start_backtick] = ACTIONS(1760), + [sym__fenced_code_block_start_tilde] = ACTIONS(1760), + [sym__blank_line_start] = ACTIONS(1760), + [sym_minus_metadata] = ACTIONS(1760), + [sym__pipe_table_start] = ACTIONS(1760), + [sym__fenced_div_start] = ACTIONS(1760), + [sym_ref_id_specifier] = ACTIONS(1760), + [sym__display_math_state_track_marker] = ACTIONS(1760), + [sym__inline_math_state_track_marker] = ACTIONS(1760), + [sym__code_span_start] = ACTIONS(1760), + [sym__html_comment] = ACTIONS(1760), + [sym_raw_specifier] = ACTIONS(1760), + [sym__autolink] = ACTIONS(1760), }, [STATE(335)] = { - [ts_builtin_sym_end] = ACTIONS(1642), + [ts_builtin_sym_end] = ACTIONS(1644), [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1642), - [anon_sym_AT] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_BSLASH] = ACTIONS(1644), - [anon_sym_RBRACK] = ACTIONS(1642), - [anon_sym_CARET] = ACTIONS(1642), - [anon_sym__] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1642), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1642), - [sym__html_comment] = ACTIONS(1642), - [sym_raw_specifier] = ACTIONS(1642), - [sym__autolink] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1644), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1644), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1644), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1644), + [sym__html_comment] = ACTIONS(1644), + [sym_raw_specifier] = ACTIONS(1644), + [sym__autolink] = ACTIONS(1644), }, [STATE(336)] = { - [ts_builtin_sym_end] = ACTIONS(1764), + [ts_builtin_sym_end] = ACTIONS(1766), [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_BSLASH] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym__] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1764), - [sym__escaped_characters] = ACTIONS(1764), - [sym__word] = ACTIONS(1764), - [sym__soft_line_ending] = ACTIONS(1764), - [sym__block_quote_start] = ACTIONS(1764), - [sym__indented_chunk_start] = ACTIONS(1764), - [sym_atx_h1_marker] = ACTIONS(1764), - [sym_atx_h2_marker] = ACTIONS(1764), - [sym_atx_h3_marker] = ACTIONS(1764), - [sym_atx_h4_marker] = ACTIONS(1764), - [sym_atx_h5_marker] = ACTIONS(1764), - [sym_atx_h6_marker] = ACTIONS(1764), - [sym__thematic_break] = ACTIONS(1764), - [sym__list_marker_minus] = ACTIONS(1764), - [sym__list_marker_plus] = ACTIONS(1764), - [sym__list_marker_star] = ACTIONS(1764), - [sym__list_marker_parenthesis] = ACTIONS(1764), - [sym__list_marker_dot] = ACTIONS(1764), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_example] = ACTIONS(1764), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1764), - [sym__fenced_code_block_start_backtick] = ACTIONS(1764), - [sym__fenced_code_block_start_tilde] = ACTIONS(1764), - [sym__blank_line_start] = ACTIONS(1764), - [sym_minus_metadata] = ACTIONS(1764), - [sym__pipe_table_start] = ACTIONS(1764), - [sym__fenced_div_start] = ACTIONS(1764), - [sym_ref_id_specifier] = ACTIONS(1764), - [sym__display_math_state_track_marker] = ACTIONS(1764), - [sym__inline_math_state_track_marker] = ACTIONS(1764), - [sym__code_span_start] = ACTIONS(1764), - [sym__html_comment] = ACTIONS(1764), - [sym_raw_specifier] = ACTIONS(1764), - [sym__autolink] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1766), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_BSLASH] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym__] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1766), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1766), + [sym__escaped_characters] = ACTIONS(1766), + [sym__word] = ACTIONS(1766), + [sym__soft_line_ending] = ACTIONS(1766), + [sym__block_quote_start] = ACTIONS(1766), + [sym__indented_chunk_start] = ACTIONS(1766), + [sym_atx_h1_marker] = ACTIONS(1766), + [sym_atx_h2_marker] = ACTIONS(1766), + [sym_atx_h3_marker] = ACTIONS(1766), + [sym_atx_h4_marker] = ACTIONS(1766), + [sym_atx_h5_marker] = ACTIONS(1766), + [sym_atx_h6_marker] = ACTIONS(1766), + [sym__thematic_break] = ACTIONS(1766), + [sym__list_marker_minus] = ACTIONS(1766), + [sym__list_marker_plus] = ACTIONS(1766), + [sym__list_marker_star] = ACTIONS(1766), + [sym__list_marker_parenthesis] = ACTIONS(1766), + [sym__list_marker_dot] = ACTIONS(1766), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_example] = ACTIONS(1766), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1766), + [sym__fenced_code_block_start_backtick] = ACTIONS(1766), + [sym__fenced_code_block_start_tilde] = ACTIONS(1766), + [sym__blank_line_start] = ACTIONS(1766), + [sym_minus_metadata] = ACTIONS(1766), + [sym__pipe_table_start] = ACTIONS(1766), + [sym__fenced_div_start] = ACTIONS(1766), + [sym_ref_id_specifier] = ACTIONS(1766), + [sym__display_math_state_track_marker] = ACTIONS(1766), + [sym__inline_math_state_track_marker] = ACTIONS(1766), + [sym__code_span_start] = ACTIONS(1766), + [sym__html_comment] = ACTIONS(1766), + [sym_raw_specifier] = ACTIONS(1766), + [sym__autolink] = ACTIONS(1766), }, [STATE(337)] = { - [ts_builtin_sym_end] = ACTIONS(1768), + [ts_builtin_sym_end] = ACTIONS(1770), [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1768), - [anon_sym_EQ] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_DOT] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_QMARK] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_RBRACK] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym__] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1768), - [sym__escaped_characters] = ACTIONS(1768), - [sym__word] = ACTIONS(1768), - [sym__soft_line_ending] = ACTIONS(1768), - [sym__block_quote_start] = ACTIONS(1768), - [sym__indented_chunk_start] = ACTIONS(1768), - [sym_atx_h1_marker] = ACTIONS(1768), - [sym_atx_h2_marker] = ACTIONS(1768), - [sym_atx_h3_marker] = ACTIONS(1768), - [sym_atx_h4_marker] = ACTIONS(1768), - [sym_atx_h5_marker] = ACTIONS(1768), - [sym_atx_h6_marker] = ACTIONS(1768), - [sym__thematic_break] = ACTIONS(1768), - [sym__list_marker_minus] = ACTIONS(1768), - [sym__list_marker_plus] = ACTIONS(1768), - [sym__list_marker_star] = ACTIONS(1768), - [sym__list_marker_parenthesis] = ACTIONS(1768), - [sym__list_marker_dot] = ACTIONS(1768), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_example] = ACTIONS(1768), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1768), - [sym__fenced_code_block_start_backtick] = ACTIONS(1768), - [sym__fenced_code_block_start_tilde] = ACTIONS(1768), - [sym__blank_line_start] = ACTIONS(1768), - [sym_minus_metadata] = ACTIONS(1768), - [sym__pipe_table_start] = ACTIONS(1768), - [sym__fenced_div_start] = ACTIONS(1768), - [sym_ref_id_specifier] = ACTIONS(1768), - [sym__display_math_state_track_marker] = ACTIONS(1768), - [sym__inline_math_state_track_marker] = ACTIONS(1768), - [sym__code_span_start] = ACTIONS(1768), - [sym__html_comment] = ACTIONS(1768), - [sym_raw_specifier] = ACTIONS(1768), - [sym__autolink] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1770), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_BSLASH] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym__] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1770), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1770), + [sym__escaped_characters] = ACTIONS(1770), + [sym__word] = ACTIONS(1770), + [sym__soft_line_ending] = ACTIONS(1770), + [sym__block_quote_start] = ACTIONS(1770), + [sym__indented_chunk_start] = ACTIONS(1770), + [sym_atx_h1_marker] = ACTIONS(1770), + [sym_atx_h2_marker] = ACTIONS(1770), + [sym_atx_h3_marker] = ACTIONS(1770), + [sym_atx_h4_marker] = ACTIONS(1770), + [sym_atx_h5_marker] = ACTIONS(1770), + [sym_atx_h6_marker] = ACTIONS(1770), + [sym__thematic_break] = ACTIONS(1770), + [sym__list_marker_minus] = ACTIONS(1770), + [sym__list_marker_plus] = ACTIONS(1770), + [sym__list_marker_star] = ACTIONS(1770), + [sym__list_marker_parenthesis] = ACTIONS(1770), + [sym__list_marker_dot] = ACTIONS(1770), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_example] = ACTIONS(1770), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1770), + [sym__fenced_code_block_start_backtick] = ACTIONS(1770), + [sym__fenced_code_block_start_tilde] = ACTIONS(1770), + [sym__blank_line_start] = ACTIONS(1770), + [sym_minus_metadata] = ACTIONS(1770), + [sym__pipe_table_start] = ACTIONS(1770), + [sym__fenced_div_start] = ACTIONS(1770), + [sym_ref_id_specifier] = ACTIONS(1770), + [sym__display_math_state_track_marker] = ACTIONS(1770), + [sym__inline_math_state_track_marker] = ACTIONS(1770), + [sym__code_span_start] = ACTIONS(1770), + [sym__html_comment] = ACTIONS(1770), + [sym_raw_specifier] = ACTIONS(1770), + [sym__autolink] = ACTIONS(1770), }, [STATE(338)] = { - [ts_builtin_sym_end] = ACTIONS(1772), + [ts_builtin_sym_end] = ACTIONS(1774), [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_BSLASH] = ACTIONS(1774), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym__] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1772), - [sym__escaped_characters] = ACTIONS(1772), - [sym__word] = ACTIONS(1772), - [sym__soft_line_ending] = ACTIONS(1772), - [sym__block_quote_start] = ACTIONS(1772), - [sym__indented_chunk_start] = ACTIONS(1772), - [sym_atx_h1_marker] = ACTIONS(1772), - [sym_atx_h2_marker] = ACTIONS(1772), - [sym_atx_h3_marker] = ACTIONS(1772), - [sym_atx_h4_marker] = ACTIONS(1772), - [sym_atx_h5_marker] = ACTIONS(1772), - [sym_atx_h6_marker] = ACTIONS(1772), - [sym__thematic_break] = ACTIONS(1772), - [sym__list_marker_minus] = ACTIONS(1772), - [sym__list_marker_plus] = ACTIONS(1772), - [sym__list_marker_star] = ACTIONS(1772), - [sym__list_marker_parenthesis] = ACTIONS(1772), - [sym__list_marker_dot] = ACTIONS(1772), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_example] = ACTIONS(1772), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1772), - [sym__fenced_code_block_start_backtick] = ACTIONS(1772), - [sym__fenced_code_block_start_tilde] = ACTIONS(1772), - [sym__blank_line_start] = ACTIONS(1772), - [sym_minus_metadata] = ACTIONS(1772), - [sym__pipe_table_start] = ACTIONS(1772), - [sym__fenced_div_start] = ACTIONS(1772), - [sym_ref_id_specifier] = ACTIONS(1772), - [sym__display_math_state_track_marker] = ACTIONS(1772), - [sym__inline_math_state_track_marker] = ACTIONS(1772), - [sym__code_span_start] = ACTIONS(1772), - [sym__html_comment] = ACTIONS(1772), - [sym_raw_specifier] = ACTIONS(1772), - [sym__autolink] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_BSLASH] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym__] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1774), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1774), + [sym__escaped_characters] = ACTIONS(1774), + [sym__word] = ACTIONS(1774), + [sym__soft_line_ending] = ACTIONS(1774), + [sym__block_quote_start] = ACTIONS(1774), + [sym__indented_chunk_start] = ACTIONS(1774), + [sym_atx_h1_marker] = ACTIONS(1774), + [sym_atx_h2_marker] = ACTIONS(1774), + [sym_atx_h3_marker] = ACTIONS(1774), + [sym_atx_h4_marker] = ACTIONS(1774), + [sym_atx_h5_marker] = ACTIONS(1774), + [sym_atx_h6_marker] = ACTIONS(1774), + [sym__thematic_break] = ACTIONS(1774), + [sym__list_marker_minus] = ACTIONS(1774), + [sym__list_marker_plus] = ACTIONS(1774), + [sym__list_marker_star] = ACTIONS(1774), + [sym__list_marker_parenthesis] = ACTIONS(1774), + [sym__list_marker_dot] = ACTIONS(1774), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_example] = ACTIONS(1774), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1774), + [sym__fenced_code_block_start_backtick] = ACTIONS(1774), + [sym__fenced_code_block_start_tilde] = ACTIONS(1774), + [sym__blank_line_start] = ACTIONS(1774), + [sym_minus_metadata] = ACTIONS(1774), + [sym__pipe_table_start] = ACTIONS(1774), + [sym__fenced_div_start] = ACTIONS(1774), + [sym_ref_id_specifier] = ACTIONS(1774), + [sym__display_math_state_track_marker] = ACTIONS(1774), + [sym__inline_math_state_track_marker] = ACTIONS(1774), + [sym__code_span_start] = ACTIONS(1774), + [sym__html_comment] = ACTIONS(1774), + [sym_raw_specifier] = ACTIONS(1774), + [sym__autolink] = ACTIONS(1774), }, [STATE(339)] = { - [ts_builtin_sym_end] = ACTIONS(1776), + [ts_builtin_sym_end] = ACTIONS(1778), [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1776), - [anon_sym_EQ] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_BSLASH] = ACTIONS(1778), - [anon_sym_RBRACK] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym__] = ACTIONS(1776), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1776), - [sym__escaped_characters] = ACTIONS(1776), - [sym__word] = ACTIONS(1776), - [sym__soft_line_ending] = ACTIONS(1776), - [sym__block_quote_start] = ACTIONS(1776), - [sym__indented_chunk_start] = ACTIONS(1776), - [sym_atx_h1_marker] = ACTIONS(1776), - [sym_atx_h2_marker] = ACTIONS(1776), - [sym_atx_h3_marker] = ACTIONS(1776), - [sym_atx_h4_marker] = ACTIONS(1776), - [sym_atx_h5_marker] = ACTIONS(1776), - [sym_atx_h6_marker] = ACTIONS(1776), - [sym__thematic_break] = ACTIONS(1776), - [sym__list_marker_minus] = ACTIONS(1776), - [sym__list_marker_plus] = ACTIONS(1776), - [sym__list_marker_star] = ACTIONS(1776), - [sym__list_marker_parenthesis] = ACTIONS(1776), - [sym__list_marker_dot] = ACTIONS(1776), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_example] = ACTIONS(1776), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1776), - [sym__fenced_code_block_start_backtick] = ACTIONS(1776), - [sym__fenced_code_block_start_tilde] = ACTIONS(1776), - [sym__blank_line_start] = ACTIONS(1776), - [sym_minus_metadata] = ACTIONS(1776), - [sym__pipe_table_start] = ACTIONS(1776), - [sym__fenced_div_start] = ACTIONS(1776), - [sym_ref_id_specifier] = ACTIONS(1776), - [sym__display_math_state_track_marker] = ACTIONS(1776), - [sym__inline_math_state_track_marker] = ACTIONS(1776), - [sym__code_span_start] = ACTIONS(1776), - [sym__html_comment] = ACTIONS(1776), - [sym_raw_specifier] = ACTIONS(1776), - [sym__autolink] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1778), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_AT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_BSLASH] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym__] = ACTIONS(1778), + [anon_sym_BQUOTE] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1778), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1778), + [sym__escaped_characters] = ACTIONS(1778), + [sym__word] = ACTIONS(1778), + [sym__soft_line_ending] = ACTIONS(1778), + [sym__block_quote_start] = ACTIONS(1778), + [sym__indented_chunk_start] = ACTIONS(1778), + [sym_atx_h1_marker] = ACTIONS(1778), + [sym_atx_h2_marker] = ACTIONS(1778), + [sym_atx_h3_marker] = ACTIONS(1778), + [sym_atx_h4_marker] = ACTIONS(1778), + [sym_atx_h5_marker] = ACTIONS(1778), + [sym_atx_h6_marker] = ACTIONS(1778), + [sym__thematic_break] = ACTIONS(1778), + [sym__list_marker_minus] = ACTIONS(1778), + [sym__list_marker_plus] = ACTIONS(1778), + [sym__list_marker_star] = ACTIONS(1778), + [sym__list_marker_parenthesis] = ACTIONS(1778), + [sym__list_marker_dot] = ACTIONS(1778), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_example] = ACTIONS(1778), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1778), + [sym__fenced_code_block_start_backtick] = ACTIONS(1778), + [sym__fenced_code_block_start_tilde] = ACTIONS(1778), + [sym__blank_line_start] = ACTIONS(1778), + [sym_minus_metadata] = ACTIONS(1778), + [sym__pipe_table_start] = ACTIONS(1778), + [sym__fenced_div_start] = ACTIONS(1778), + [sym_ref_id_specifier] = ACTIONS(1778), + [sym__display_math_state_track_marker] = ACTIONS(1778), + [sym__inline_math_state_track_marker] = ACTIONS(1778), + [sym__code_span_start] = ACTIONS(1778), + [sym__html_comment] = ACTIONS(1778), + [sym_raw_specifier] = ACTIONS(1778), + [sym__autolink] = ACTIONS(1778), }, [STATE(340)] = { - [ts_builtin_sym_end] = ACTIONS(1780), + [ts_builtin_sym_end] = ACTIONS(1782), [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_BSLASH] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_BQUOTE] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1780), - [sym__escaped_characters] = ACTIONS(1780), - [sym__word] = ACTIONS(1780), - [sym__soft_line_ending] = ACTIONS(1780), - [sym__block_quote_start] = ACTIONS(1780), - [sym__indented_chunk_start] = ACTIONS(1780), - [sym_atx_h1_marker] = ACTIONS(1780), - [sym_atx_h2_marker] = ACTIONS(1780), - [sym_atx_h3_marker] = ACTIONS(1780), - [sym_atx_h4_marker] = ACTIONS(1780), - [sym_atx_h5_marker] = ACTIONS(1780), - [sym_atx_h6_marker] = ACTIONS(1780), - [sym__thematic_break] = ACTIONS(1780), - [sym__list_marker_minus] = ACTIONS(1780), - [sym__list_marker_plus] = ACTIONS(1780), - [sym__list_marker_star] = ACTIONS(1780), - [sym__list_marker_parenthesis] = ACTIONS(1780), - [sym__list_marker_dot] = ACTIONS(1780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_example] = ACTIONS(1780), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1780), - [sym__fenced_code_block_start_backtick] = ACTIONS(1780), - [sym__fenced_code_block_start_tilde] = ACTIONS(1780), - [sym__blank_line_start] = ACTIONS(1780), - [sym_minus_metadata] = ACTIONS(1780), - [sym__pipe_table_start] = ACTIONS(1780), - [sym__fenced_div_start] = ACTIONS(1780), - [sym_ref_id_specifier] = ACTIONS(1780), - [sym__display_math_state_track_marker] = ACTIONS(1780), - [sym__inline_math_state_track_marker] = ACTIONS(1780), - [sym__code_span_start] = ACTIONS(1780), - [sym__html_comment] = ACTIONS(1780), - [sym_raw_specifier] = ACTIONS(1780), - [sym__autolink] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1782), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_QMARK] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(1780), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym__] = ACTIONS(1782), + [anon_sym_BQUOTE] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1782), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1782), + [sym__escaped_characters] = ACTIONS(1782), + [sym__word] = ACTIONS(1782), + [sym__soft_line_ending] = ACTIONS(1782), + [sym__block_quote_start] = ACTIONS(1782), + [sym__indented_chunk_start] = ACTIONS(1782), + [sym_atx_h1_marker] = ACTIONS(1782), + [sym_atx_h2_marker] = ACTIONS(1782), + [sym_atx_h3_marker] = ACTIONS(1782), + [sym_atx_h4_marker] = ACTIONS(1782), + [sym_atx_h5_marker] = ACTIONS(1782), + [sym_atx_h6_marker] = ACTIONS(1782), + [sym__thematic_break] = ACTIONS(1782), + [sym__list_marker_minus] = ACTIONS(1782), + [sym__list_marker_plus] = ACTIONS(1782), + [sym__list_marker_star] = ACTIONS(1782), + [sym__list_marker_parenthesis] = ACTIONS(1782), + [sym__list_marker_dot] = ACTIONS(1782), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_example] = ACTIONS(1782), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1782), + [sym__fenced_code_block_start_backtick] = ACTIONS(1782), + [sym__fenced_code_block_start_tilde] = ACTIONS(1782), + [sym__blank_line_start] = ACTIONS(1782), + [sym_minus_metadata] = ACTIONS(1782), + [sym__pipe_table_start] = ACTIONS(1782), + [sym__fenced_div_start] = ACTIONS(1782), + [sym_ref_id_specifier] = ACTIONS(1782), + [sym__display_math_state_track_marker] = ACTIONS(1782), + [sym__inline_math_state_track_marker] = ACTIONS(1782), + [sym__code_span_start] = ACTIONS(1782), + [sym__html_comment] = ACTIONS(1782), + [sym_raw_specifier] = ACTIONS(1782), + [sym__autolink] = ACTIONS(1782), }, [STATE(341)] = { - [ts_builtin_sym_end] = ACTIONS(1784), + [ts_builtin_sym_end] = ACTIONS(1786), [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_BSLASH] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1784), - [anon_sym__] = ACTIONS(1784), - [anon_sym_BQUOTE] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1784), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1784), - [sym__escaped_characters] = ACTIONS(1784), - [sym__word] = ACTIONS(1784), - [sym__soft_line_ending] = ACTIONS(1784), - [sym__block_quote_start] = ACTIONS(1784), - [sym__indented_chunk_start] = ACTIONS(1784), - [sym_atx_h1_marker] = ACTIONS(1784), - [sym_atx_h2_marker] = ACTIONS(1784), - [sym_atx_h3_marker] = ACTIONS(1784), - [sym_atx_h4_marker] = ACTIONS(1784), - [sym_atx_h5_marker] = ACTIONS(1784), - [sym_atx_h6_marker] = ACTIONS(1784), - [sym__thematic_break] = ACTIONS(1784), - [sym__list_marker_minus] = ACTIONS(1784), - [sym__list_marker_plus] = ACTIONS(1784), - [sym__list_marker_star] = ACTIONS(1784), - [sym__list_marker_parenthesis] = ACTIONS(1784), - [sym__list_marker_dot] = ACTIONS(1784), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_example] = ACTIONS(1784), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1784), - [sym__fenced_code_block_start_backtick] = ACTIONS(1784), - [sym__fenced_code_block_start_tilde] = ACTIONS(1784), - [sym__blank_line_start] = ACTIONS(1784), - [sym_minus_metadata] = ACTIONS(1784), - [sym__pipe_table_start] = ACTIONS(1784), - [sym__fenced_div_start] = ACTIONS(1784), - [sym_ref_id_specifier] = ACTIONS(1784), - [sym__display_math_state_track_marker] = ACTIONS(1784), - [sym__inline_math_state_track_marker] = ACTIONS(1784), - [sym__code_span_start] = ACTIONS(1784), - [sym__html_comment] = ACTIONS(1784), - [sym_raw_specifier] = ACTIONS(1784), - [sym__autolink] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1786), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1786), + [anon_sym_SLASH] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1786), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_BSLASH] = ACTIONS(1784), + [anon_sym_RBRACK] = ACTIONS(1786), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym__] = ACTIONS(1786), + [anon_sym_BQUOTE] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1786), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1786), + [sym__escaped_characters] = ACTIONS(1786), + [sym__word] = ACTIONS(1786), + [sym__soft_line_ending] = ACTIONS(1786), + [sym__block_quote_start] = ACTIONS(1786), + [sym__indented_chunk_start] = ACTIONS(1786), + [sym_atx_h1_marker] = ACTIONS(1786), + [sym_atx_h2_marker] = ACTIONS(1786), + [sym_atx_h3_marker] = ACTIONS(1786), + [sym_atx_h4_marker] = ACTIONS(1786), + [sym_atx_h5_marker] = ACTIONS(1786), + [sym_atx_h6_marker] = ACTIONS(1786), + [sym__thematic_break] = ACTIONS(1786), + [sym__list_marker_minus] = ACTIONS(1786), + [sym__list_marker_plus] = ACTIONS(1786), + [sym__list_marker_star] = ACTIONS(1786), + [sym__list_marker_parenthesis] = ACTIONS(1786), + [sym__list_marker_dot] = ACTIONS(1786), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_example] = ACTIONS(1786), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1786), + [sym__fenced_code_block_start_backtick] = ACTIONS(1786), + [sym__fenced_code_block_start_tilde] = ACTIONS(1786), + [sym__blank_line_start] = ACTIONS(1786), + [sym_minus_metadata] = ACTIONS(1786), + [sym__pipe_table_start] = ACTIONS(1786), + [sym__fenced_div_start] = ACTIONS(1786), + [sym_ref_id_specifier] = ACTIONS(1786), + [sym__display_math_state_track_marker] = ACTIONS(1786), + [sym__inline_math_state_track_marker] = ACTIONS(1786), + [sym__code_span_start] = ACTIONS(1786), + [sym__html_comment] = ACTIONS(1786), + [sym_raw_specifier] = ACTIONS(1786), + [sym__autolink] = ACTIONS(1786), }, [STATE(342)] = { - [ts_builtin_sym_end] = ACTIONS(1788), + [ts_builtin_sym_end] = ACTIONS(1790), [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(1788), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_RBRACK] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym__] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1788), - [sym__escaped_characters] = ACTIONS(1788), - [sym__word] = ACTIONS(1788), - [sym__soft_line_ending] = ACTIONS(1788), - [sym__block_quote_start] = ACTIONS(1788), - [sym__indented_chunk_start] = ACTIONS(1788), - [sym_atx_h1_marker] = ACTIONS(1788), - [sym_atx_h2_marker] = ACTIONS(1788), - [sym_atx_h3_marker] = ACTIONS(1788), - [sym_atx_h4_marker] = ACTIONS(1788), - [sym_atx_h5_marker] = ACTIONS(1788), - [sym_atx_h6_marker] = ACTIONS(1788), - [sym__thematic_break] = ACTIONS(1788), - [sym__list_marker_minus] = ACTIONS(1788), - [sym__list_marker_plus] = ACTIONS(1788), - [sym__list_marker_star] = ACTIONS(1788), - [sym__list_marker_parenthesis] = ACTIONS(1788), - [sym__list_marker_dot] = ACTIONS(1788), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_example] = ACTIONS(1788), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1788), - [sym__fenced_code_block_start_backtick] = ACTIONS(1788), - [sym__fenced_code_block_start_tilde] = ACTIONS(1788), - [sym__blank_line_start] = ACTIONS(1788), - [sym_minus_metadata] = ACTIONS(1788), - [sym__pipe_table_start] = ACTIONS(1788), - [sym__fenced_div_start] = ACTIONS(1788), - [sym_ref_id_specifier] = ACTIONS(1788), - [sym__display_math_state_track_marker] = ACTIONS(1788), - [sym__inline_math_state_track_marker] = ACTIONS(1788), - [sym__code_span_start] = ACTIONS(1788), - [sym__html_comment] = ACTIONS(1788), - [sym_raw_specifier] = ACTIONS(1788), - [sym__autolink] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1790), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_QMARK] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_BSLASH] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym__] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1790), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1790), + [sym__escaped_characters] = ACTIONS(1790), + [sym__word] = ACTIONS(1790), + [sym__soft_line_ending] = ACTIONS(1790), + [sym__block_quote_start] = ACTIONS(1790), + [sym__indented_chunk_start] = ACTIONS(1790), + [sym_atx_h1_marker] = ACTIONS(1790), + [sym_atx_h2_marker] = ACTIONS(1790), + [sym_atx_h3_marker] = ACTIONS(1790), + [sym_atx_h4_marker] = ACTIONS(1790), + [sym_atx_h5_marker] = ACTIONS(1790), + [sym_atx_h6_marker] = ACTIONS(1790), + [sym__thematic_break] = ACTIONS(1790), + [sym__list_marker_minus] = ACTIONS(1790), + [sym__list_marker_plus] = ACTIONS(1790), + [sym__list_marker_star] = ACTIONS(1790), + [sym__list_marker_parenthesis] = ACTIONS(1790), + [sym__list_marker_dot] = ACTIONS(1790), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_example] = ACTIONS(1790), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1790), + [sym__fenced_code_block_start_backtick] = ACTIONS(1790), + [sym__fenced_code_block_start_tilde] = ACTIONS(1790), + [sym__blank_line_start] = ACTIONS(1790), + [sym_minus_metadata] = ACTIONS(1790), + [sym__pipe_table_start] = ACTIONS(1790), + [sym__fenced_div_start] = ACTIONS(1790), + [sym_ref_id_specifier] = ACTIONS(1790), + [sym__display_math_state_track_marker] = ACTIONS(1790), + [sym__inline_math_state_track_marker] = ACTIONS(1790), + [sym__code_span_start] = ACTIONS(1790), + [sym__html_comment] = ACTIONS(1790), + [sym_raw_specifier] = ACTIONS(1790), + [sym__autolink] = ACTIONS(1790), }, [STATE(343)] = { - [ts_builtin_sym_end] = ACTIONS(1792), + [ts_builtin_sym_end] = ACTIONS(1794), [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1792), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_BSLASH] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym__] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1792), - [sym__escaped_characters] = ACTIONS(1792), - [sym__word] = ACTIONS(1792), - [sym__soft_line_ending] = ACTIONS(1792), - [sym__block_quote_start] = ACTIONS(1792), - [sym__indented_chunk_start] = ACTIONS(1792), - [sym_atx_h1_marker] = ACTIONS(1792), - [sym_atx_h2_marker] = ACTIONS(1792), - [sym_atx_h3_marker] = ACTIONS(1792), - [sym_atx_h4_marker] = ACTIONS(1792), - [sym_atx_h5_marker] = ACTIONS(1792), - [sym_atx_h6_marker] = ACTIONS(1792), - [sym__thematic_break] = ACTIONS(1792), - [sym__list_marker_minus] = ACTIONS(1792), - [sym__list_marker_plus] = ACTIONS(1792), - [sym__list_marker_star] = ACTIONS(1792), - [sym__list_marker_parenthesis] = ACTIONS(1792), - [sym__list_marker_dot] = ACTIONS(1792), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_example] = ACTIONS(1792), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1792), - [sym__fenced_code_block_start_backtick] = ACTIONS(1792), - [sym__fenced_code_block_start_tilde] = ACTIONS(1792), - [sym__blank_line_start] = ACTIONS(1792), - [sym_minus_metadata] = ACTIONS(1792), - [sym__pipe_table_start] = ACTIONS(1792), - [sym__fenced_div_start] = ACTIONS(1792), - [sym_ref_id_specifier] = ACTIONS(1792), - [sym__display_math_state_track_marker] = ACTIONS(1792), - [sym__inline_math_state_track_marker] = ACTIONS(1792), - [sym__code_span_start] = ACTIONS(1792), - [sym__html_comment] = ACTIONS(1792), - [sym_raw_specifier] = ACTIONS(1792), - [sym__autolink] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1794), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1794), + [anon_sym_EQ] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_PERCENT] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_COMMA] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_QMARK] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_BSLASH] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1794), + [anon_sym__] = ACTIONS(1794), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1794), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1794), + [sym__escaped_characters] = ACTIONS(1794), + [sym__word] = ACTIONS(1794), + [sym__soft_line_ending] = ACTIONS(1794), + [sym__block_quote_start] = ACTIONS(1794), + [sym__indented_chunk_start] = ACTIONS(1794), + [sym_atx_h1_marker] = ACTIONS(1794), + [sym_atx_h2_marker] = ACTIONS(1794), + [sym_atx_h3_marker] = ACTIONS(1794), + [sym_atx_h4_marker] = ACTIONS(1794), + [sym_atx_h5_marker] = ACTIONS(1794), + [sym_atx_h6_marker] = ACTIONS(1794), + [sym__thematic_break] = ACTIONS(1794), + [sym__list_marker_minus] = ACTIONS(1794), + [sym__list_marker_plus] = ACTIONS(1794), + [sym__list_marker_star] = ACTIONS(1794), + [sym__list_marker_parenthesis] = ACTIONS(1794), + [sym__list_marker_dot] = ACTIONS(1794), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_example] = ACTIONS(1794), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1794), + [sym__fenced_code_block_start_backtick] = ACTIONS(1794), + [sym__fenced_code_block_start_tilde] = ACTIONS(1794), + [sym__blank_line_start] = ACTIONS(1794), + [sym_minus_metadata] = ACTIONS(1794), + [sym__pipe_table_start] = ACTIONS(1794), + [sym__fenced_div_start] = ACTIONS(1794), + [sym_ref_id_specifier] = ACTIONS(1794), + [sym__display_math_state_track_marker] = ACTIONS(1794), + [sym__inline_math_state_track_marker] = ACTIONS(1794), + [sym__code_span_start] = ACTIONS(1794), + [sym__html_comment] = ACTIONS(1794), + [sym_raw_specifier] = ACTIONS(1794), + [sym__autolink] = ACTIONS(1794), }, [STATE(344)] = { - [ts_builtin_sym_end] = ACTIONS(1796), + [ts_builtin_sym_end] = ACTIONS(1798), [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_QMARK] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_BSLASH] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym__] = ACTIONS(1796), - [anon_sym_BQUOTE] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1796), - [sym__escaped_characters] = ACTIONS(1796), - [sym__word] = ACTIONS(1796), - [sym__soft_line_ending] = ACTIONS(1796), - [sym__block_quote_start] = ACTIONS(1796), - [sym__indented_chunk_start] = ACTIONS(1796), - [sym_atx_h1_marker] = ACTIONS(1796), - [sym_atx_h2_marker] = ACTIONS(1796), - [sym_atx_h3_marker] = ACTIONS(1796), - [sym_atx_h4_marker] = ACTIONS(1796), - [sym_atx_h5_marker] = ACTIONS(1796), - [sym_atx_h6_marker] = ACTIONS(1796), - [sym__thematic_break] = ACTIONS(1796), - [sym__list_marker_minus] = ACTIONS(1796), - [sym__list_marker_plus] = ACTIONS(1796), - [sym__list_marker_star] = ACTIONS(1796), - [sym__list_marker_parenthesis] = ACTIONS(1796), - [sym__list_marker_dot] = ACTIONS(1796), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_example] = ACTIONS(1796), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1796), - [sym__fenced_code_block_start_backtick] = ACTIONS(1796), - [sym__fenced_code_block_start_tilde] = ACTIONS(1796), - [sym__blank_line_start] = ACTIONS(1796), - [sym_minus_metadata] = ACTIONS(1796), - [sym__pipe_table_start] = ACTIONS(1796), - [sym__fenced_div_start] = ACTIONS(1796), - [sym_ref_id_specifier] = ACTIONS(1796), - [sym__display_math_state_track_marker] = ACTIONS(1796), - [sym__inline_math_state_track_marker] = ACTIONS(1796), - [sym__code_span_start] = ACTIONS(1796), - [sym__html_comment] = ACTIONS(1796), - [sym_raw_specifier] = ACTIONS(1796), - [sym__autolink] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1798), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_QMARK] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_BSLASH] = ACTIONS(1796), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym__] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1798), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1798), + [sym__escaped_characters] = ACTIONS(1798), + [sym__word] = ACTIONS(1798), + [sym__soft_line_ending] = ACTIONS(1798), + [sym__block_quote_start] = ACTIONS(1798), + [sym__indented_chunk_start] = ACTIONS(1798), + [sym_atx_h1_marker] = ACTIONS(1798), + [sym_atx_h2_marker] = ACTIONS(1798), + [sym_atx_h3_marker] = ACTIONS(1798), + [sym_atx_h4_marker] = ACTIONS(1798), + [sym_atx_h5_marker] = ACTIONS(1798), + [sym_atx_h6_marker] = ACTIONS(1798), + [sym__thematic_break] = ACTIONS(1798), + [sym__list_marker_minus] = ACTIONS(1798), + [sym__list_marker_plus] = ACTIONS(1798), + [sym__list_marker_star] = ACTIONS(1798), + [sym__list_marker_parenthesis] = ACTIONS(1798), + [sym__list_marker_dot] = ACTIONS(1798), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_example] = ACTIONS(1798), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1798), + [sym__fenced_code_block_start_backtick] = ACTIONS(1798), + [sym__fenced_code_block_start_tilde] = ACTIONS(1798), + [sym__blank_line_start] = ACTIONS(1798), + [sym_minus_metadata] = ACTIONS(1798), + [sym__pipe_table_start] = ACTIONS(1798), + [sym__fenced_div_start] = ACTIONS(1798), + [sym_ref_id_specifier] = ACTIONS(1798), + [sym__display_math_state_track_marker] = ACTIONS(1798), + [sym__inline_math_state_track_marker] = ACTIONS(1798), + [sym__code_span_start] = ACTIONS(1798), + [sym__html_comment] = ACTIONS(1798), + [sym_raw_specifier] = ACTIONS(1798), + [sym__autolink] = ACTIONS(1798), }, [STATE(345)] = { - [ts_builtin_sym_end] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1802), [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_BSLASH] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym__] = ACTIONS(1800), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1800), - [sym__escaped_characters] = ACTIONS(1800), - [sym__word] = ACTIONS(1800), - [sym__soft_line_ending] = ACTIONS(1800), - [sym__block_quote_start] = ACTIONS(1800), - [sym__indented_chunk_start] = ACTIONS(1800), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1800), - [sym__list_marker_minus] = ACTIONS(1800), - [sym__list_marker_plus] = ACTIONS(1800), - [sym__list_marker_star] = ACTIONS(1800), - [sym__list_marker_parenthesis] = ACTIONS(1800), - [sym__list_marker_dot] = ACTIONS(1800), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_example] = ACTIONS(1800), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1800), - [sym__fenced_code_block_start_backtick] = ACTIONS(1800), - [sym__fenced_code_block_start_tilde] = ACTIONS(1800), - [sym__blank_line_start] = ACTIONS(1800), - [sym_minus_metadata] = ACTIONS(1800), - [sym__pipe_table_start] = ACTIONS(1800), - [sym__fenced_div_start] = ACTIONS(1800), - [sym_ref_id_specifier] = ACTIONS(1800), - [sym__display_math_state_track_marker] = ACTIONS(1800), - [sym__inline_math_state_track_marker] = ACTIONS(1800), - [sym__code_span_start] = ACTIONS(1800), - [sym__html_comment] = ACTIONS(1800), - [sym_raw_specifier] = ACTIONS(1800), - [sym__autolink] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1802), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_BSLASH] = ACTIONS(1800), + [anon_sym_RBRACK] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym__] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1802), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1802), + [sym__escaped_characters] = ACTIONS(1802), + [sym__word] = ACTIONS(1802), + [sym__soft_line_ending] = ACTIONS(1802), + [sym__block_quote_start] = ACTIONS(1802), + [sym__indented_chunk_start] = ACTIONS(1802), + [sym_atx_h1_marker] = ACTIONS(1802), + [sym_atx_h2_marker] = ACTIONS(1802), + [sym_atx_h3_marker] = ACTIONS(1802), + [sym_atx_h4_marker] = ACTIONS(1802), + [sym_atx_h5_marker] = ACTIONS(1802), + [sym_atx_h6_marker] = ACTIONS(1802), + [sym__thematic_break] = ACTIONS(1802), + [sym__list_marker_minus] = ACTIONS(1802), + [sym__list_marker_plus] = ACTIONS(1802), + [sym__list_marker_star] = ACTIONS(1802), + [sym__list_marker_parenthesis] = ACTIONS(1802), + [sym__list_marker_dot] = ACTIONS(1802), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_example] = ACTIONS(1802), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1802), + [sym__fenced_code_block_start_backtick] = ACTIONS(1802), + [sym__fenced_code_block_start_tilde] = ACTIONS(1802), + [sym__blank_line_start] = ACTIONS(1802), + [sym_minus_metadata] = ACTIONS(1802), + [sym__pipe_table_start] = ACTIONS(1802), + [sym__fenced_div_start] = ACTIONS(1802), + [sym_ref_id_specifier] = ACTIONS(1802), + [sym__display_math_state_track_marker] = ACTIONS(1802), + [sym__inline_math_state_track_marker] = ACTIONS(1802), + [sym__code_span_start] = ACTIONS(1802), + [sym__html_comment] = ACTIONS(1802), + [sym_raw_specifier] = ACTIONS(1802), + [sym__autolink] = ACTIONS(1802), }, [STATE(346)] = { - [ts_builtin_sym_end] = ACTIONS(1804), + [ts_builtin_sym_end] = ACTIONS(1806), [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1804), - [anon_sym_EQ] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1804), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(1804), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_QMARK] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_BSLASH] = ACTIONS(1806), - [anon_sym_RBRACK] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym__] = ACTIONS(1804), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1804), - [sym__escaped_characters] = ACTIONS(1804), - [sym__word] = ACTIONS(1804), - [sym__soft_line_ending] = ACTIONS(1804), - [sym__block_quote_start] = ACTIONS(1804), - [sym__indented_chunk_start] = ACTIONS(1804), - [sym_atx_h1_marker] = ACTIONS(1804), - [sym_atx_h2_marker] = ACTIONS(1804), - [sym_atx_h3_marker] = ACTIONS(1804), - [sym_atx_h4_marker] = ACTIONS(1804), - [sym_atx_h5_marker] = ACTIONS(1804), - [sym_atx_h6_marker] = ACTIONS(1804), - [sym__thematic_break] = ACTIONS(1804), - [sym__list_marker_minus] = ACTIONS(1804), - [sym__list_marker_plus] = ACTIONS(1804), - [sym__list_marker_star] = ACTIONS(1804), - [sym__list_marker_parenthesis] = ACTIONS(1804), - [sym__list_marker_dot] = ACTIONS(1804), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_example] = ACTIONS(1804), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1804), - [sym__fenced_code_block_start_backtick] = ACTIONS(1804), - [sym__fenced_code_block_start_tilde] = ACTIONS(1804), - [sym__blank_line_start] = ACTIONS(1804), - [sym_minus_metadata] = ACTIONS(1804), - [sym__pipe_table_start] = ACTIONS(1804), - [sym__fenced_div_start] = ACTIONS(1804), - [sym_ref_id_specifier] = ACTIONS(1804), - [sym__display_math_state_track_marker] = ACTIONS(1804), - [sym__inline_math_state_track_marker] = ACTIONS(1804), - [sym__code_span_start] = ACTIONS(1804), - [sym__html_comment] = ACTIONS(1804), - [sym_raw_specifier] = ACTIONS(1804), - [sym__autolink] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1806), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1806), + [anon_sym_EQ] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_DOT] = ACTIONS(1806), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_QMARK] = ACTIONS(1806), + [anon_sym_AT] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_BSLASH] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym__] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1806), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1806), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1806), + [sym__escaped_characters] = ACTIONS(1806), + [sym__word] = ACTIONS(1806), + [sym__soft_line_ending] = ACTIONS(1806), + [sym__block_quote_start] = ACTIONS(1806), + [sym__indented_chunk_start] = ACTIONS(1806), + [sym_atx_h1_marker] = ACTIONS(1806), + [sym_atx_h2_marker] = ACTIONS(1806), + [sym_atx_h3_marker] = ACTIONS(1806), + [sym_atx_h4_marker] = ACTIONS(1806), + [sym_atx_h5_marker] = ACTIONS(1806), + [sym_atx_h6_marker] = ACTIONS(1806), + [sym__thematic_break] = ACTIONS(1806), + [sym__list_marker_minus] = ACTIONS(1806), + [sym__list_marker_plus] = ACTIONS(1806), + [sym__list_marker_star] = ACTIONS(1806), + [sym__list_marker_parenthesis] = ACTIONS(1806), + [sym__list_marker_dot] = ACTIONS(1806), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_example] = ACTIONS(1806), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1806), + [sym__fenced_code_block_start_backtick] = ACTIONS(1806), + [sym__fenced_code_block_start_tilde] = ACTIONS(1806), + [sym__blank_line_start] = ACTIONS(1806), + [sym_minus_metadata] = ACTIONS(1806), + [sym__pipe_table_start] = ACTIONS(1806), + [sym__fenced_div_start] = ACTIONS(1806), + [sym_ref_id_specifier] = ACTIONS(1806), + [sym__display_math_state_track_marker] = ACTIONS(1806), + [sym__inline_math_state_track_marker] = ACTIONS(1806), + [sym__code_span_start] = ACTIONS(1806), + [sym__html_comment] = ACTIONS(1806), + [sym_raw_specifier] = ACTIONS(1806), + [sym__autolink] = ACTIONS(1806), }, [STATE(347)] = { - [ts_builtin_sym_end] = ACTIONS(1808), + [ts_builtin_sym_end] = ACTIONS(1810), [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_COMMA] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_QMARK] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_BSLASH] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1808), - [anon_sym__] = ACTIONS(1808), - [anon_sym_BQUOTE] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1808), - [sym__escaped_characters] = ACTIONS(1808), - [sym__word] = ACTIONS(1808), - [sym__soft_line_ending] = ACTIONS(1808), - [sym__block_quote_start] = ACTIONS(1808), - [sym__indented_chunk_start] = ACTIONS(1808), - [sym_atx_h1_marker] = ACTIONS(1808), - [sym_atx_h2_marker] = ACTIONS(1808), - [sym_atx_h3_marker] = ACTIONS(1808), - [sym_atx_h4_marker] = ACTIONS(1808), - [sym_atx_h5_marker] = ACTIONS(1808), - [sym_atx_h6_marker] = ACTIONS(1808), - [sym__thematic_break] = ACTIONS(1808), - [sym__list_marker_minus] = ACTIONS(1808), - [sym__list_marker_plus] = ACTIONS(1808), - [sym__list_marker_star] = ACTIONS(1808), - [sym__list_marker_parenthesis] = ACTIONS(1808), - [sym__list_marker_dot] = ACTIONS(1808), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_example] = ACTIONS(1808), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1808), - [sym__fenced_code_block_start_backtick] = ACTIONS(1808), - [sym__fenced_code_block_start_tilde] = ACTIONS(1808), - [sym__blank_line_start] = ACTIONS(1808), - [sym_minus_metadata] = ACTIONS(1808), - [sym__pipe_table_start] = ACTIONS(1808), - [sym__fenced_div_start] = ACTIONS(1808), - [sym_ref_id_specifier] = ACTIONS(1808), - [sym__display_math_state_track_marker] = ACTIONS(1808), - [sym__inline_math_state_track_marker] = ACTIONS(1808), - [sym__code_span_start] = ACTIONS(1808), - [sym__html_comment] = ACTIONS(1808), - [sym_raw_specifier] = ACTIONS(1808), - [sym__autolink] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1810), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1810), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1810), + [anon_sym_SLASH] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_BSLASH] = ACTIONS(1808), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_CARET] = ACTIONS(1810), + [anon_sym__] = ACTIONS(1810), + [anon_sym_BQUOTE] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1810), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1810), + [sym__escaped_characters] = ACTIONS(1810), + [sym__word] = ACTIONS(1810), + [sym__soft_line_ending] = ACTIONS(1810), + [sym__block_quote_start] = ACTIONS(1810), + [sym__indented_chunk_start] = ACTIONS(1810), + [sym_atx_h1_marker] = ACTIONS(1810), + [sym_atx_h2_marker] = ACTIONS(1810), + [sym_atx_h3_marker] = ACTIONS(1810), + [sym_atx_h4_marker] = ACTIONS(1810), + [sym_atx_h5_marker] = ACTIONS(1810), + [sym_atx_h6_marker] = ACTIONS(1810), + [sym__thematic_break] = ACTIONS(1810), + [sym__list_marker_minus] = ACTIONS(1810), + [sym__list_marker_plus] = ACTIONS(1810), + [sym__list_marker_star] = ACTIONS(1810), + [sym__list_marker_parenthesis] = ACTIONS(1810), + [sym__list_marker_dot] = ACTIONS(1810), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_example] = ACTIONS(1810), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1810), + [sym__fenced_code_block_start_backtick] = ACTIONS(1810), + [sym__fenced_code_block_start_tilde] = ACTIONS(1810), + [sym__blank_line_start] = ACTIONS(1810), + [sym_minus_metadata] = ACTIONS(1810), + [sym__pipe_table_start] = ACTIONS(1810), + [sym__fenced_div_start] = ACTIONS(1810), + [sym_ref_id_specifier] = ACTIONS(1810), + [sym__display_math_state_track_marker] = ACTIONS(1810), + [sym__inline_math_state_track_marker] = ACTIONS(1810), + [sym__code_span_start] = ACTIONS(1810), + [sym__html_comment] = ACTIONS(1810), + [sym_raw_specifier] = ACTIONS(1810), + [sym__autolink] = ACTIONS(1810), }, [STATE(348)] = { - [ts_builtin_sym_end] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1966), [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1964), - [anon_sym_EQ] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1964), - [anon_sym_PERCENT] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_BSLASH] = ACTIONS(1966), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1964), - [anon_sym__] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1964), - [sym__escaped_characters] = ACTIONS(1964), - [sym__word] = ACTIONS(1964), - [sym__soft_line_ending] = ACTIONS(1964), - [sym__block_quote_start] = ACTIONS(1964), - [sym__indented_chunk_start] = ACTIONS(1964), - [sym_atx_h1_marker] = ACTIONS(1964), - [sym_atx_h2_marker] = ACTIONS(1964), - [sym_atx_h3_marker] = ACTIONS(1964), - [sym_atx_h4_marker] = ACTIONS(1964), - [sym_atx_h5_marker] = ACTIONS(1964), - [sym_atx_h6_marker] = ACTIONS(1964), - [sym__thematic_break] = ACTIONS(1964), - [sym__list_marker_minus] = ACTIONS(1964), - [sym__list_marker_plus] = ACTIONS(1964), - [sym__list_marker_star] = ACTIONS(1964), - [sym__list_marker_parenthesis] = ACTIONS(1964), - [sym__list_marker_dot] = ACTIONS(1964), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_example] = ACTIONS(1964), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1964), - [sym__fenced_code_block_start_backtick] = ACTIONS(1964), - [sym__fenced_code_block_start_tilde] = ACTIONS(1964), - [sym__blank_line_start] = ACTIONS(1964), - [sym_minus_metadata] = ACTIONS(1964), - [sym__pipe_table_start] = ACTIONS(1964), - [sym__fenced_div_start] = ACTIONS(1964), - [sym_ref_id_specifier] = ACTIONS(1964), - [sym__display_math_state_track_marker] = ACTIONS(1964), - [sym__inline_math_state_track_marker] = ACTIONS(1964), - [sym__code_span_start] = ACTIONS(1964), - [sym__html_comment] = ACTIONS(1964), - [sym_raw_specifier] = ACTIONS(1964), - [sym__autolink] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1966), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1966), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_COMMA] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_DOT] = ACTIONS(1966), + [anon_sym_SLASH] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_QMARK] = ACTIONS(1966), + [anon_sym_AT] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_BSLASH] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym__] = ACTIONS(1966), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1966), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1966), + [sym__escaped_characters] = ACTIONS(1966), + [sym__word] = ACTIONS(1966), + [sym__soft_line_ending] = ACTIONS(1966), + [sym__block_quote_start] = ACTIONS(1966), + [sym__indented_chunk_start] = ACTIONS(1966), + [sym_atx_h1_marker] = ACTIONS(1966), + [sym_atx_h2_marker] = ACTIONS(1966), + [sym_atx_h3_marker] = ACTIONS(1966), + [sym_atx_h4_marker] = ACTIONS(1966), + [sym_atx_h5_marker] = ACTIONS(1966), + [sym_atx_h6_marker] = ACTIONS(1966), + [sym__thematic_break] = ACTIONS(1966), + [sym__list_marker_minus] = ACTIONS(1966), + [sym__list_marker_plus] = ACTIONS(1966), + [sym__list_marker_star] = ACTIONS(1966), + [sym__list_marker_parenthesis] = ACTIONS(1966), + [sym__list_marker_dot] = ACTIONS(1966), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_example] = ACTIONS(1966), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1966), + [sym__fenced_code_block_start_backtick] = ACTIONS(1966), + [sym__fenced_code_block_start_tilde] = ACTIONS(1966), + [sym__blank_line_start] = ACTIONS(1966), + [sym_minus_metadata] = ACTIONS(1966), + [sym__pipe_table_start] = ACTIONS(1966), + [sym__fenced_div_start] = ACTIONS(1966), + [sym_ref_id_specifier] = ACTIONS(1966), + [sym__display_math_state_track_marker] = ACTIONS(1966), + [sym__inline_math_state_track_marker] = ACTIONS(1966), + [sym__code_span_start] = ACTIONS(1966), + [sym__html_comment] = ACTIONS(1966), + [sym_raw_specifier] = ACTIONS(1966), + [sym__autolink] = ACTIONS(1966), }, [STATE(349)] = { [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_RBRACE] = ACTIONS(1676), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1676), - [anon_sym_EQ] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_PERCENT] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_DOT] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_QMARK] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_BSLASH] = ACTIONS(1678), - [anon_sym_RBRACK] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1676), - [anon_sym__] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1676), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1676), - [sym__escaped_characters] = ACTIONS(1676), - [sym__word] = ACTIONS(1676), - [sym__soft_line_ending] = ACTIONS(1676), - [sym__block_close] = ACTIONS(1676), - [sym__block_quote_start] = ACTIONS(1676), - [sym__indented_chunk_start] = ACTIONS(1676), - [sym_atx_h1_marker] = ACTIONS(1676), - [sym_atx_h2_marker] = ACTIONS(1676), - [sym_atx_h3_marker] = ACTIONS(1676), - [sym_atx_h4_marker] = ACTIONS(1676), - [sym_atx_h5_marker] = ACTIONS(1676), - [sym_atx_h6_marker] = ACTIONS(1676), - [sym__thematic_break] = ACTIONS(1676), - [sym__list_marker_minus] = ACTIONS(1676), - [sym__list_marker_plus] = ACTIONS(1676), - [sym__list_marker_star] = ACTIONS(1676), - [sym__list_marker_parenthesis] = ACTIONS(1676), - [sym__list_marker_dot] = ACTIONS(1676), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_example] = ACTIONS(1676), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1676), - [sym__fenced_code_block_start_backtick] = ACTIONS(1676), - [sym__fenced_code_block_start_tilde] = ACTIONS(1676), - [sym__blank_line_start] = ACTIONS(1676), - [sym_minus_metadata] = ACTIONS(1676), - [sym__pipe_table_start] = ACTIONS(1676), - [sym__fenced_div_start] = ACTIONS(1676), - [sym_ref_id_specifier] = ACTIONS(1676), - [sym__display_math_state_track_marker] = ACTIONS(1676), - [sym__inline_math_state_track_marker] = ACTIONS(1676), - [sym__code_span_start] = ACTIONS(1676), - [sym__html_comment] = ACTIONS(1676), - [sym_raw_specifier] = ACTIONS(1676), - [sym__autolink] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1678), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1678), + [anon_sym_EQ] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_PERCENT] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym__] = ACTIONS(1678), + [anon_sym_BQUOTE] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1678), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1678), + [sym__escaped_characters] = ACTIONS(1678), + [sym__word] = ACTIONS(1678), + [sym__soft_line_ending] = ACTIONS(1678), + [sym__block_close] = ACTIONS(1678), + [sym__block_quote_start] = ACTIONS(1678), + [sym__indented_chunk_start] = ACTIONS(1678), + [sym_atx_h1_marker] = ACTIONS(1678), + [sym_atx_h2_marker] = ACTIONS(1678), + [sym_atx_h3_marker] = ACTIONS(1678), + [sym_atx_h4_marker] = ACTIONS(1678), + [sym_atx_h5_marker] = ACTIONS(1678), + [sym_atx_h6_marker] = ACTIONS(1678), + [sym__thematic_break] = ACTIONS(1678), + [sym__list_marker_minus] = ACTIONS(1678), + [sym__list_marker_plus] = ACTIONS(1678), + [sym__list_marker_star] = ACTIONS(1678), + [sym__list_marker_parenthesis] = ACTIONS(1678), + [sym__list_marker_dot] = ACTIONS(1678), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_example] = ACTIONS(1678), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1678), + [sym__fenced_code_block_start_backtick] = ACTIONS(1678), + [sym__fenced_code_block_start_tilde] = ACTIONS(1678), + [sym__blank_line_start] = ACTIONS(1678), + [sym_minus_metadata] = ACTIONS(1678), + [sym__pipe_table_start] = ACTIONS(1678), + [sym__fenced_div_start] = ACTIONS(1678), + [sym_ref_id_specifier] = ACTIONS(1678), + [sym__display_math_state_track_marker] = ACTIONS(1678), + [sym__inline_math_state_track_marker] = ACTIONS(1678), + [sym__code_span_start] = ACTIONS(1678), + [sym__html_comment] = ACTIONS(1678), + [sym_raw_specifier] = ACTIONS(1678), + [sym__autolink] = ACTIONS(1678), }, [STATE(350)] = { [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1680), - [anon_sym_EQ] = ACTIONS(1680), - [anon_sym_SQUOTE] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_DQUOTE] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1680), - [anon_sym_PERCENT] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_RPAREN] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_COMMA] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_DOT] = ACTIONS(1680), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_QMARK] = ACTIONS(1680), - [anon_sym_AT] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_BSLASH] = ACTIONS(1682), - [anon_sym_RBRACK] = ACTIONS(1680), - [anon_sym_CARET] = ACTIONS(1680), - [anon_sym__] = ACTIONS(1680), - [anon_sym_BQUOTE] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1680), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1680), - [sym__escaped_characters] = ACTIONS(1680), - [sym__word] = ACTIONS(1680), - [sym__soft_line_ending] = ACTIONS(1680), - [sym__block_close] = ACTIONS(1680), - [sym__block_quote_start] = ACTIONS(1680), - [sym__indented_chunk_start] = ACTIONS(1680), - [sym_atx_h1_marker] = ACTIONS(1680), - [sym_atx_h2_marker] = ACTIONS(1680), - [sym_atx_h3_marker] = ACTIONS(1680), - [sym_atx_h4_marker] = ACTIONS(1680), - [sym_atx_h5_marker] = ACTIONS(1680), - [sym_atx_h6_marker] = ACTIONS(1680), - [sym__thematic_break] = ACTIONS(1680), - [sym__list_marker_minus] = ACTIONS(1680), - [sym__list_marker_plus] = ACTIONS(1680), - [sym__list_marker_star] = ACTIONS(1680), - [sym__list_marker_parenthesis] = ACTIONS(1680), - [sym__list_marker_dot] = ACTIONS(1680), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1680), - [sym__list_marker_example] = ACTIONS(1680), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1680), - [sym__fenced_code_block_start_backtick] = ACTIONS(1680), - [sym__fenced_code_block_start_tilde] = ACTIONS(1680), - [sym__blank_line_start] = ACTIONS(1680), - [sym_minus_metadata] = ACTIONS(1680), - [sym__pipe_table_start] = ACTIONS(1680), - [sym__fenced_div_start] = ACTIONS(1680), - [sym_ref_id_specifier] = ACTIONS(1680), - [sym__display_math_state_track_marker] = ACTIONS(1680), - [sym__inline_math_state_track_marker] = ACTIONS(1680), - [sym__code_span_start] = ACTIONS(1680), - [sym__html_comment] = ACTIONS(1680), - [sym_raw_specifier] = ACTIONS(1680), - [sym__autolink] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1682), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_BSLASH] = ACTIONS(1680), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1682), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1682), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1682), + [sym__html_comment] = ACTIONS(1682), + [sym_raw_specifier] = ACTIONS(1682), + [sym__autolink] = ACTIONS(1682), }, [STATE(351)] = { - [ts_builtin_sym_end] = ACTIONS(1902), + [ts_builtin_sym_end] = ACTIONS(1904), [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_COMMA] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_DOT] = ACTIONS(1902), - [anon_sym_SLASH] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_QMARK] = ACTIONS(1902), - [anon_sym_AT] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_BSLASH] = ACTIONS(1904), - [anon_sym_RBRACK] = ACTIONS(1902), - [anon_sym_CARET] = ACTIONS(1902), - [anon_sym__] = ACTIONS(1902), - [anon_sym_BQUOTE] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1902), - [sym__escaped_characters] = ACTIONS(1902), - [sym__word] = ACTIONS(1902), - [sym__soft_line_ending] = ACTIONS(1902), - [sym__block_quote_start] = ACTIONS(1902), - [sym__indented_chunk_start] = ACTIONS(1902), - [sym_atx_h1_marker] = ACTIONS(1902), - [sym_atx_h2_marker] = ACTIONS(1902), - [sym_atx_h3_marker] = ACTIONS(1902), - [sym_atx_h4_marker] = ACTIONS(1902), - [sym_atx_h5_marker] = ACTIONS(1902), - [sym_atx_h6_marker] = ACTIONS(1902), - [sym__thematic_break] = ACTIONS(1902), - [sym__list_marker_minus] = ACTIONS(1902), - [sym__list_marker_plus] = ACTIONS(1902), - [sym__list_marker_star] = ACTIONS(1902), - [sym__list_marker_parenthesis] = ACTIONS(1902), - [sym__list_marker_dot] = ACTIONS(1902), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_example] = ACTIONS(1902), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1902), - [sym__fenced_code_block_start_backtick] = ACTIONS(1902), - [sym__fenced_code_block_start_tilde] = ACTIONS(1902), - [sym__blank_line_start] = ACTIONS(1902), - [sym_minus_metadata] = ACTIONS(1902), - [sym__pipe_table_start] = ACTIONS(1902), - [sym__fenced_div_start] = ACTIONS(1902), - [sym_ref_id_specifier] = ACTIONS(1902), - [sym__display_math_state_track_marker] = ACTIONS(1902), - [sym__inline_math_state_track_marker] = ACTIONS(1902), - [sym__code_span_start] = ACTIONS(1902), - [sym__html_comment] = ACTIONS(1902), - [sym_raw_specifier] = ACTIONS(1902), - [sym__autolink] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1904), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1904), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_DOLLAR] = ACTIONS(1904), + [anon_sym_PERCENT] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(1904), + [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_QMARK] = ACTIONS(1904), + [anon_sym_AT] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_BSLASH] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1904), + [anon_sym_CARET] = ACTIONS(1904), + [anon_sym__] = ACTIONS(1904), + [anon_sym_BQUOTE] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1904), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1904), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1904), + [sym__escaped_characters] = ACTIONS(1904), + [sym__word] = ACTIONS(1904), + [sym__soft_line_ending] = ACTIONS(1904), + [sym__block_quote_start] = ACTIONS(1904), + [sym__indented_chunk_start] = ACTIONS(1904), + [sym_atx_h1_marker] = ACTIONS(1904), + [sym_atx_h2_marker] = ACTIONS(1904), + [sym_atx_h3_marker] = ACTIONS(1904), + [sym_atx_h4_marker] = ACTIONS(1904), + [sym_atx_h5_marker] = ACTIONS(1904), + [sym_atx_h6_marker] = ACTIONS(1904), + [sym__thematic_break] = ACTIONS(1904), + [sym__list_marker_minus] = ACTIONS(1904), + [sym__list_marker_plus] = ACTIONS(1904), + [sym__list_marker_star] = ACTIONS(1904), + [sym__list_marker_parenthesis] = ACTIONS(1904), + [sym__list_marker_dot] = ACTIONS(1904), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_example] = ACTIONS(1904), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1904), + [sym__fenced_code_block_start_backtick] = ACTIONS(1904), + [sym__fenced_code_block_start_tilde] = ACTIONS(1904), + [sym__blank_line_start] = ACTIONS(1904), + [sym_minus_metadata] = ACTIONS(1904), + [sym__pipe_table_start] = ACTIONS(1904), + [sym__fenced_div_start] = ACTIONS(1904), + [sym_ref_id_specifier] = ACTIONS(1904), + [sym__display_math_state_track_marker] = ACTIONS(1904), + [sym__inline_math_state_track_marker] = ACTIONS(1904), + [sym__code_span_start] = ACTIONS(1904), + [sym__html_comment] = ACTIONS(1904), + [sym_raw_specifier] = ACTIONS(1904), + [sym__autolink] = ACTIONS(1904), }, [STATE(352)] = { - [ts_builtin_sym_end] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1908), [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_RPAREN] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_COMMA] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_DOT] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_QMARK] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_BSLASH] = ACTIONS(1908), - [anon_sym_RBRACK] = ACTIONS(1906), - [anon_sym_CARET] = ACTIONS(1906), - [anon_sym__] = ACTIONS(1906), - [anon_sym_BQUOTE] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1906), - [sym__escaped_characters] = ACTIONS(1906), - [sym__word] = ACTIONS(1906), - [sym__soft_line_ending] = ACTIONS(1906), - [sym__block_quote_start] = ACTIONS(1906), - [sym__indented_chunk_start] = ACTIONS(1906), - [sym_atx_h1_marker] = ACTIONS(1906), - [sym_atx_h2_marker] = ACTIONS(1906), - [sym_atx_h3_marker] = ACTIONS(1906), - [sym_atx_h4_marker] = ACTIONS(1906), - [sym_atx_h5_marker] = ACTIONS(1906), - [sym_atx_h6_marker] = ACTIONS(1906), - [sym__thematic_break] = ACTIONS(1906), - [sym__list_marker_minus] = ACTIONS(1906), - [sym__list_marker_plus] = ACTIONS(1906), - [sym__list_marker_star] = ACTIONS(1906), - [sym__list_marker_parenthesis] = ACTIONS(1906), - [sym__list_marker_dot] = ACTIONS(1906), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_example] = ACTIONS(1906), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1906), - [sym__fenced_code_block_start_backtick] = ACTIONS(1906), - [sym__fenced_code_block_start_tilde] = ACTIONS(1906), - [sym__blank_line_start] = ACTIONS(1906), - [sym_minus_metadata] = ACTIONS(1906), - [sym__pipe_table_start] = ACTIONS(1906), - [sym__fenced_div_start] = ACTIONS(1906), - [sym_ref_id_specifier] = ACTIONS(1906), - [sym__display_math_state_track_marker] = ACTIONS(1906), - [sym__inline_math_state_track_marker] = ACTIONS(1906), - [sym__code_span_start] = ACTIONS(1906), - [sym__html_comment] = ACTIONS(1906), - [sym_raw_specifier] = ACTIONS(1906), - [sym__autolink] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1908), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1908), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_BSLASH] = ACTIONS(1906), + [anon_sym_RBRACK] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1908), + [anon_sym__] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1908), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1908), + [sym__escaped_characters] = ACTIONS(1908), + [sym__word] = ACTIONS(1908), + [sym__soft_line_ending] = ACTIONS(1908), + [sym__block_quote_start] = ACTIONS(1908), + [sym__indented_chunk_start] = ACTIONS(1908), + [sym_atx_h1_marker] = ACTIONS(1908), + [sym_atx_h2_marker] = ACTIONS(1908), + [sym_atx_h3_marker] = ACTIONS(1908), + [sym_atx_h4_marker] = ACTIONS(1908), + [sym_atx_h5_marker] = ACTIONS(1908), + [sym_atx_h6_marker] = ACTIONS(1908), + [sym__thematic_break] = ACTIONS(1908), + [sym__list_marker_minus] = ACTIONS(1908), + [sym__list_marker_plus] = ACTIONS(1908), + [sym__list_marker_star] = ACTIONS(1908), + [sym__list_marker_parenthesis] = ACTIONS(1908), + [sym__list_marker_dot] = ACTIONS(1908), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_example] = ACTIONS(1908), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1908), + [sym__fenced_code_block_start_backtick] = ACTIONS(1908), + [sym__fenced_code_block_start_tilde] = ACTIONS(1908), + [sym__blank_line_start] = ACTIONS(1908), + [sym_minus_metadata] = ACTIONS(1908), + [sym__pipe_table_start] = ACTIONS(1908), + [sym__fenced_div_start] = ACTIONS(1908), + [sym_ref_id_specifier] = ACTIONS(1908), + [sym__display_math_state_track_marker] = ACTIONS(1908), + [sym__inline_math_state_track_marker] = ACTIONS(1908), + [sym__code_span_start] = ACTIONS(1908), + [sym__html_comment] = ACTIONS(1908), + [sym_raw_specifier] = ACTIONS(1908), + [sym__autolink] = ACTIONS(1908), }, [STATE(353)] = { [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_BSLASH] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym__] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1820), - [sym__escaped_characters] = ACTIONS(1820), - [sym__word] = ACTIONS(1820), - [sym__soft_line_ending] = ACTIONS(1820), - [sym__block_close] = ACTIONS(1820), - [sym__block_quote_start] = ACTIONS(1820), - [sym__indented_chunk_start] = ACTIONS(1820), - [sym_atx_h1_marker] = ACTIONS(1820), - [sym_atx_h2_marker] = ACTIONS(1820), - [sym_atx_h3_marker] = ACTIONS(1820), - [sym_atx_h4_marker] = ACTIONS(1820), - [sym_atx_h5_marker] = ACTIONS(1820), - [sym_atx_h6_marker] = ACTIONS(1820), - [sym__thematic_break] = ACTIONS(1820), - [sym__list_marker_minus] = ACTIONS(1820), - [sym__list_marker_plus] = ACTIONS(1820), - [sym__list_marker_star] = ACTIONS(1820), - [sym__list_marker_parenthesis] = ACTIONS(1820), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1820), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1820), - [sym__fenced_code_block_start_backtick] = ACTIONS(1820), - [sym__fenced_code_block_start_tilde] = ACTIONS(1820), - [sym__blank_line_start] = ACTIONS(1820), - [sym_minus_metadata] = ACTIONS(1820), - [sym__pipe_table_start] = ACTIONS(1820), - [sym__fenced_div_start] = ACTIONS(1820), - [sym_ref_id_specifier] = ACTIONS(1820), - [sym__display_math_state_track_marker] = ACTIONS(1820), - [sym__inline_math_state_track_marker] = ACTIONS(1820), - [sym__code_span_start] = ACTIONS(1820), - [sym__html_comment] = ACTIONS(1820), - [sym_raw_specifier] = ACTIONS(1820), - [sym__autolink] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_BSLASH] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1822), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1822), + [sym__escaped_characters] = ACTIONS(1822), + [sym__word] = ACTIONS(1822), + [sym__soft_line_ending] = ACTIONS(1822), + [sym__block_close] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_example] = ACTIONS(1822), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym_minus_metadata] = ACTIONS(1822), + [sym__pipe_table_start] = ACTIONS(1822), + [sym__fenced_div_start] = ACTIONS(1822), + [sym_ref_id_specifier] = ACTIONS(1822), + [sym__display_math_state_track_marker] = ACTIONS(1822), + [sym__inline_math_state_track_marker] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__html_comment] = ACTIONS(1822), + [sym_raw_specifier] = ACTIONS(1822), + [sym__autolink] = ACTIONS(1822), }, [STATE(354)] = { [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_BSLASH] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym__] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1820), - [sym__escaped_characters] = ACTIONS(1820), - [sym__word] = ACTIONS(1820), - [sym__soft_line_ending] = ACTIONS(1820), - [sym__block_close] = ACTIONS(1820), - [sym__block_quote_start] = ACTIONS(1820), - [sym__indented_chunk_start] = ACTIONS(1820), - [sym_atx_h1_marker] = ACTIONS(1820), - [sym_atx_h2_marker] = ACTIONS(1820), - [sym_atx_h3_marker] = ACTIONS(1820), - [sym_atx_h4_marker] = ACTIONS(1820), - [sym_atx_h5_marker] = ACTIONS(1820), - [sym_atx_h6_marker] = ACTIONS(1820), - [sym__thematic_break] = ACTIONS(1820), - [sym__list_marker_minus] = ACTIONS(1820), - [sym__list_marker_plus] = ACTIONS(1820), - [sym__list_marker_star] = ACTIONS(1820), - [sym__list_marker_parenthesis] = ACTIONS(1820), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1820), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1820), - [sym__fenced_code_block_start_backtick] = ACTIONS(1820), - [sym__fenced_code_block_start_tilde] = ACTIONS(1820), - [sym__blank_line_start] = ACTIONS(1820), - [sym_minus_metadata] = ACTIONS(1820), - [sym__pipe_table_start] = ACTIONS(1820), - [sym__fenced_div_start] = ACTIONS(1820), - [sym_ref_id_specifier] = ACTIONS(1820), - [sym__display_math_state_track_marker] = ACTIONS(1820), - [sym__inline_math_state_track_marker] = ACTIONS(1820), - [sym__code_span_start] = ACTIONS(1820), - [sym__html_comment] = ACTIONS(1820), - [sym_raw_specifier] = ACTIONS(1820), - [sym__autolink] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_BSLASH] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1822), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1822), + [sym__escaped_characters] = ACTIONS(1822), + [sym__word] = ACTIONS(1822), + [sym__soft_line_ending] = ACTIONS(1822), + [sym__block_close] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_example] = ACTIONS(1822), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym_minus_metadata] = ACTIONS(1822), + [sym__pipe_table_start] = ACTIONS(1822), + [sym__fenced_div_start] = ACTIONS(1822), + [sym_ref_id_specifier] = ACTIONS(1822), + [sym__display_math_state_track_marker] = ACTIONS(1822), + [sym__inline_math_state_track_marker] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__html_comment] = ACTIONS(1822), + [sym_raw_specifier] = ACTIONS(1822), + [sym__autolink] = ACTIONS(1822), }, [STATE(355)] = { - [ts_builtin_sym_end] = ACTIONS(1916), + [ts_builtin_sym_end] = ACTIONS(1918), [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [anon_sym_PERCENT] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_PLUS] = ACTIONS(1916), - [anon_sym_COMMA] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_DOT] = ACTIONS(1916), - [anon_sym_SLASH] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_QMARK] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym__] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1916), - [sym__escaped_characters] = ACTIONS(1916), - [sym__word] = ACTIONS(1916), - [sym__soft_line_ending] = ACTIONS(1916), - [sym__block_quote_start] = ACTIONS(1916), - [sym__indented_chunk_start] = ACTIONS(1916), - [sym_atx_h1_marker] = ACTIONS(1916), - [sym_atx_h2_marker] = ACTIONS(1916), - [sym_atx_h3_marker] = ACTIONS(1916), - [sym_atx_h4_marker] = ACTIONS(1916), - [sym_atx_h5_marker] = ACTIONS(1916), - [sym_atx_h6_marker] = ACTIONS(1916), - [sym__thematic_break] = ACTIONS(1916), - [sym__list_marker_minus] = ACTIONS(1916), - [sym__list_marker_plus] = ACTIONS(1916), - [sym__list_marker_star] = ACTIONS(1916), - [sym__list_marker_parenthesis] = ACTIONS(1916), - [sym__list_marker_dot] = ACTIONS(1916), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_example] = ACTIONS(1916), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1916), - [sym__fenced_code_block_start_backtick] = ACTIONS(1916), - [sym__fenced_code_block_start_tilde] = ACTIONS(1916), - [sym__blank_line_start] = ACTIONS(1916), - [sym_minus_metadata] = ACTIONS(1916), - [sym__pipe_table_start] = ACTIONS(1916), - [sym__fenced_div_start] = ACTIONS(1916), - [sym_ref_id_specifier] = ACTIONS(1916), - [sym__display_math_state_track_marker] = ACTIONS(1916), - [sym__inline_math_state_track_marker] = ACTIONS(1916), - [sym__code_span_start] = ACTIONS(1916), - [sym__html_comment] = ACTIONS(1916), - [sym_raw_specifier] = ACTIONS(1916), - [sym__autolink] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1918), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_DOT] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_QMARK] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_BQUOTE] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1918), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1918), + [sym__escaped_characters] = ACTIONS(1918), + [sym__word] = ACTIONS(1918), + [sym__soft_line_ending] = ACTIONS(1918), + [sym__block_quote_start] = ACTIONS(1918), + [sym__indented_chunk_start] = ACTIONS(1918), + [sym_atx_h1_marker] = ACTIONS(1918), + [sym_atx_h2_marker] = ACTIONS(1918), + [sym_atx_h3_marker] = ACTIONS(1918), + [sym_atx_h4_marker] = ACTIONS(1918), + [sym_atx_h5_marker] = ACTIONS(1918), + [sym_atx_h6_marker] = ACTIONS(1918), + [sym__thematic_break] = ACTIONS(1918), + [sym__list_marker_minus] = ACTIONS(1918), + [sym__list_marker_plus] = ACTIONS(1918), + [sym__list_marker_star] = ACTIONS(1918), + [sym__list_marker_parenthesis] = ACTIONS(1918), + [sym__list_marker_dot] = ACTIONS(1918), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_example] = ACTIONS(1918), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1918), + [sym__fenced_code_block_start_backtick] = ACTIONS(1918), + [sym__fenced_code_block_start_tilde] = ACTIONS(1918), + [sym__blank_line_start] = ACTIONS(1918), + [sym_minus_metadata] = ACTIONS(1918), + [sym__pipe_table_start] = ACTIONS(1918), + [sym__fenced_div_start] = ACTIONS(1918), + [sym_ref_id_specifier] = ACTIONS(1918), + [sym__display_math_state_track_marker] = ACTIONS(1918), + [sym__inline_math_state_track_marker] = ACTIONS(1918), + [sym__code_span_start] = ACTIONS(1918), + [sym__html_comment] = ACTIONS(1918), + [sym_raw_specifier] = ACTIONS(1918), + [sym__autolink] = ACTIONS(1918), }, [STATE(356)] = { - [ts_builtin_sym_end] = ACTIONS(1920), + [ts_builtin_sym_end] = ACTIONS(1922), [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_PERCENT] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_DOT] = ACTIONS(1920), - [anon_sym_SLASH] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_QMARK] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_BSLASH] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [anon_sym__] = ACTIONS(1920), - [anon_sym_BQUOTE] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1920), - [sym__escaped_characters] = ACTIONS(1920), - [sym__word] = ACTIONS(1920), - [sym__soft_line_ending] = ACTIONS(1920), - [sym__block_quote_start] = ACTIONS(1920), - [sym__indented_chunk_start] = ACTIONS(1920), - [sym_atx_h1_marker] = ACTIONS(1920), - [sym_atx_h2_marker] = ACTIONS(1920), - [sym_atx_h3_marker] = ACTIONS(1920), - [sym_atx_h4_marker] = ACTIONS(1920), - [sym_atx_h5_marker] = ACTIONS(1920), - [sym_atx_h6_marker] = ACTIONS(1920), - [sym__thematic_break] = ACTIONS(1920), - [sym__list_marker_minus] = ACTIONS(1920), - [sym__list_marker_plus] = ACTIONS(1920), - [sym__list_marker_star] = ACTIONS(1920), - [sym__list_marker_parenthesis] = ACTIONS(1920), - [sym__list_marker_dot] = ACTIONS(1920), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_example] = ACTIONS(1920), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1920), - [sym__fenced_code_block_start_backtick] = ACTIONS(1920), - [sym__fenced_code_block_start_tilde] = ACTIONS(1920), - [sym__blank_line_start] = ACTIONS(1920), - [sym_minus_metadata] = ACTIONS(1920), - [sym__pipe_table_start] = ACTIONS(1920), - [sym__fenced_div_start] = ACTIONS(1920), - [sym_ref_id_specifier] = ACTIONS(1920), - [sym__display_math_state_track_marker] = ACTIONS(1920), - [sym__inline_math_state_track_marker] = ACTIONS(1920), - [sym__code_span_start] = ACTIONS(1920), - [sym__html_comment] = ACTIONS(1920), - [sym_raw_specifier] = ACTIONS(1920), - [sym__autolink] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1922), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_PERCENT] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_DOT] = ACTIONS(1922), + [anon_sym_SLASH] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_QMARK] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_BSLASH] = ACTIONS(1920), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym__] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_TILDE] = ACTIONS(1922), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1922), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1922), + [sym__escaped_characters] = ACTIONS(1922), + [sym__word] = ACTIONS(1922), + [sym__soft_line_ending] = ACTIONS(1922), + [sym__block_quote_start] = ACTIONS(1922), + [sym__indented_chunk_start] = ACTIONS(1922), + [sym_atx_h1_marker] = ACTIONS(1922), + [sym_atx_h2_marker] = ACTIONS(1922), + [sym_atx_h3_marker] = ACTIONS(1922), + [sym_atx_h4_marker] = ACTIONS(1922), + [sym_atx_h5_marker] = ACTIONS(1922), + [sym_atx_h6_marker] = ACTIONS(1922), + [sym__thematic_break] = ACTIONS(1922), + [sym__list_marker_minus] = ACTIONS(1922), + [sym__list_marker_plus] = ACTIONS(1922), + [sym__list_marker_star] = ACTIONS(1922), + [sym__list_marker_parenthesis] = ACTIONS(1922), + [sym__list_marker_dot] = ACTIONS(1922), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_example] = ACTIONS(1922), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1922), + [sym__fenced_code_block_start_backtick] = ACTIONS(1922), + [sym__fenced_code_block_start_tilde] = ACTIONS(1922), + [sym__blank_line_start] = ACTIONS(1922), + [sym_minus_metadata] = ACTIONS(1922), + [sym__pipe_table_start] = ACTIONS(1922), + [sym__fenced_div_start] = ACTIONS(1922), + [sym_ref_id_specifier] = ACTIONS(1922), + [sym__display_math_state_track_marker] = ACTIONS(1922), + [sym__inline_math_state_track_marker] = ACTIONS(1922), + [sym__code_span_start] = ACTIONS(1922), + [sym__html_comment] = ACTIONS(1922), + [sym_raw_specifier] = ACTIONS(1922), + [sym__autolink] = ACTIONS(1922), }, [STATE(357)] = { [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1850), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_COMMA] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_SLASH] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_BSLASH] = ACTIONS(1852), - [anon_sym_RBRACK] = ACTIONS(1850), - [anon_sym_CARET] = ACTIONS(1850), - [anon_sym__] = ACTIONS(1850), - [anon_sym_BQUOTE] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1850), - [sym__escaped_characters] = ACTIONS(1850), - [sym__word] = ACTIONS(1850), - [sym__soft_line_ending] = ACTIONS(1850), - [sym__block_close] = ACTIONS(1850), - [sym__block_quote_start] = ACTIONS(1850), - [sym__indented_chunk_start] = ACTIONS(1850), - [sym_atx_h1_marker] = ACTIONS(1850), - [sym_atx_h2_marker] = ACTIONS(1850), - [sym_atx_h3_marker] = ACTIONS(1850), - [sym_atx_h4_marker] = ACTIONS(1850), - [sym_atx_h5_marker] = ACTIONS(1850), - [sym_atx_h6_marker] = ACTIONS(1850), - [sym__thematic_break] = ACTIONS(1850), - [sym__list_marker_minus] = ACTIONS(1850), - [sym__list_marker_plus] = ACTIONS(1850), - [sym__list_marker_star] = ACTIONS(1850), - [sym__list_marker_parenthesis] = ACTIONS(1850), - [sym__list_marker_dot] = ACTIONS(1850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_example] = ACTIONS(1850), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1850), - [sym__fenced_code_block_start_backtick] = ACTIONS(1850), - [sym__fenced_code_block_start_tilde] = ACTIONS(1850), - [sym__blank_line_start] = ACTIONS(1850), - [sym_minus_metadata] = ACTIONS(1850), - [sym__pipe_table_start] = ACTIONS(1850), - [sym__fenced_div_start] = ACTIONS(1850), - [sym_ref_id_specifier] = ACTIONS(1850), - [sym__display_math_state_track_marker] = ACTIONS(1850), - [sym__inline_math_state_track_marker] = ACTIONS(1850), - [sym__code_span_start] = ACTIONS(1850), - [sym__html_comment] = ACTIONS(1850), - [sym_raw_specifier] = ACTIONS(1850), - [sym__autolink] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1852), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_DOLLAR] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_QMARK] = ACTIONS(1852), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_BSLASH] = ACTIONS(1850), + [anon_sym_RBRACK] = ACTIONS(1852), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym__] = ACTIONS(1852), + [anon_sym_BQUOTE] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1852), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1852), + [sym__escaped_characters] = ACTIONS(1852), + [sym__word] = ACTIONS(1852), + [sym__soft_line_ending] = ACTIONS(1852), + [sym__block_close] = ACTIONS(1852), + [sym__block_quote_start] = ACTIONS(1852), + [sym__indented_chunk_start] = ACTIONS(1852), + [sym_atx_h1_marker] = ACTIONS(1852), + [sym_atx_h2_marker] = ACTIONS(1852), + [sym_atx_h3_marker] = ACTIONS(1852), + [sym_atx_h4_marker] = ACTIONS(1852), + [sym_atx_h5_marker] = ACTIONS(1852), + [sym_atx_h6_marker] = ACTIONS(1852), + [sym__thematic_break] = ACTIONS(1852), + [sym__list_marker_minus] = ACTIONS(1852), + [sym__list_marker_plus] = ACTIONS(1852), + [sym__list_marker_star] = ACTIONS(1852), + [sym__list_marker_parenthesis] = ACTIONS(1852), + [sym__list_marker_dot] = ACTIONS(1852), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_example] = ACTIONS(1852), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1852), + [sym__fenced_code_block_start_backtick] = ACTIONS(1852), + [sym__fenced_code_block_start_tilde] = ACTIONS(1852), + [sym__blank_line_start] = ACTIONS(1852), + [sym_minus_metadata] = ACTIONS(1852), + [sym__pipe_table_start] = ACTIONS(1852), + [sym__fenced_div_start] = ACTIONS(1852), + [sym_ref_id_specifier] = ACTIONS(1852), + [sym__display_math_state_track_marker] = ACTIONS(1852), + [sym__inline_math_state_track_marker] = ACTIONS(1852), + [sym__code_span_start] = ACTIONS(1852), + [sym__html_comment] = ACTIONS(1852), + [sym_raw_specifier] = ACTIONS(1852), + [sym__autolink] = ACTIONS(1852), }, [STATE(358)] = { [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1888), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_PERCENT] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(1888), - [anon_sym_SLASH] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym__] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1888), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1888), - [sym__escaped_characters] = ACTIONS(1888), - [sym__word] = ACTIONS(1888), - [sym__soft_line_ending] = ACTIONS(1888), - [sym__block_close] = ACTIONS(1888), - [sym__block_quote_start] = ACTIONS(1888), - [sym__indented_chunk_start] = ACTIONS(1888), - [sym_atx_h1_marker] = ACTIONS(1888), - [sym_atx_h2_marker] = ACTIONS(1888), - [sym_atx_h3_marker] = ACTIONS(1888), - [sym_atx_h4_marker] = ACTIONS(1888), - [sym_atx_h5_marker] = ACTIONS(1888), - [sym_atx_h6_marker] = ACTIONS(1888), - [sym__thematic_break] = ACTIONS(1888), - [sym__list_marker_minus] = ACTIONS(1888), - [sym__list_marker_plus] = ACTIONS(1888), - [sym__list_marker_star] = ACTIONS(1888), - [sym__list_marker_parenthesis] = ACTIONS(1888), - [sym__list_marker_dot] = ACTIONS(1888), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_example] = ACTIONS(1888), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1888), - [sym__fenced_code_block_start_backtick] = ACTIONS(1888), - [sym__fenced_code_block_start_tilde] = ACTIONS(1888), - [sym__blank_line_start] = ACTIONS(1888), - [sym_minus_metadata] = ACTIONS(1888), - [sym__pipe_table_start] = ACTIONS(1888), - [sym__fenced_div_start] = ACTIONS(1888), - [sym_ref_id_specifier] = ACTIONS(1888), - [sym__display_math_state_track_marker] = ACTIONS(1888), - [sym__inline_math_state_track_marker] = ACTIONS(1888), - [sym__code_span_start] = ACTIONS(1888), - [sym__html_comment] = ACTIONS(1888), - [sym_raw_specifier] = ACTIONS(1888), - [sym__autolink] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_PERCENT] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_QMARK] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_BSLASH] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym__] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1890), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1890), + [sym__escaped_characters] = ACTIONS(1890), + [sym__word] = ACTIONS(1890), + [sym__soft_line_ending] = ACTIONS(1890), + [sym__block_close] = ACTIONS(1890), + [sym__block_quote_start] = ACTIONS(1890), + [sym__indented_chunk_start] = ACTIONS(1890), + [sym_atx_h1_marker] = ACTIONS(1890), + [sym_atx_h2_marker] = ACTIONS(1890), + [sym_atx_h3_marker] = ACTIONS(1890), + [sym_atx_h4_marker] = ACTIONS(1890), + [sym_atx_h5_marker] = ACTIONS(1890), + [sym_atx_h6_marker] = ACTIONS(1890), + [sym__thematic_break] = ACTIONS(1890), + [sym__list_marker_minus] = ACTIONS(1890), + [sym__list_marker_plus] = ACTIONS(1890), + [sym__list_marker_star] = ACTIONS(1890), + [sym__list_marker_parenthesis] = ACTIONS(1890), + [sym__list_marker_dot] = ACTIONS(1890), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_example] = ACTIONS(1890), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1890), + [sym__fenced_code_block_start_backtick] = ACTIONS(1890), + [sym__fenced_code_block_start_tilde] = ACTIONS(1890), + [sym__blank_line_start] = ACTIONS(1890), + [sym_minus_metadata] = ACTIONS(1890), + [sym__pipe_table_start] = ACTIONS(1890), + [sym__fenced_div_start] = ACTIONS(1890), + [sym_ref_id_specifier] = ACTIONS(1890), + [sym__display_math_state_track_marker] = ACTIONS(1890), + [sym__inline_math_state_track_marker] = ACTIONS(1890), + [sym__code_span_start] = ACTIONS(1890), + [sym__html_comment] = ACTIONS(1890), + [sym_raw_specifier] = ACTIONS(1890), + [sym__autolink] = ACTIONS(1890), }, [STATE(359)] = { [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1892), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_PERCENT] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1892), - [anon_sym_SLASH] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_QMARK] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_BSLASH] = ACTIONS(1894), - [anon_sym_RBRACK] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1892), - [anon_sym__] = ACTIONS(1892), - [anon_sym_BQUOTE] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1892), - [sym__escaped_characters] = ACTIONS(1892), - [sym__word] = ACTIONS(1892), - [sym__soft_line_ending] = ACTIONS(1892), - [sym__block_close] = ACTIONS(1892), - [sym__block_quote_start] = ACTIONS(1892), - [sym__indented_chunk_start] = ACTIONS(1892), - [sym_atx_h1_marker] = ACTIONS(1892), - [sym_atx_h2_marker] = ACTIONS(1892), - [sym_atx_h3_marker] = ACTIONS(1892), - [sym_atx_h4_marker] = ACTIONS(1892), - [sym_atx_h5_marker] = ACTIONS(1892), - [sym_atx_h6_marker] = ACTIONS(1892), - [sym__thematic_break] = ACTIONS(1892), - [sym__list_marker_minus] = ACTIONS(1892), - [sym__list_marker_plus] = ACTIONS(1892), - [sym__list_marker_star] = ACTIONS(1892), - [sym__list_marker_parenthesis] = ACTIONS(1892), - [sym__list_marker_dot] = ACTIONS(1892), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1892), - [sym__list_marker_example] = ACTIONS(1892), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1892), - [sym__fenced_code_block_start_backtick] = ACTIONS(1892), - [sym__fenced_code_block_start_tilde] = ACTIONS(1892), - [sym__blank_line_start] = ACTIONS(1892), - [sym_minus_metadata] = ACTIONS(1892), - [sym__pipe_table_start] = ACTIONS(1892), - [sym__fenced_div_start] = ACTIONS(1892), - [sym_ref_id_specifier] = ACTIONS(1892), - [sym__display_math_state_track_marker] = ACTIONS(1892), - [sym__inline_math_state_track_marker] = ACTIONS(1892), - [sym__code_span_start] = ACTIONS(1892), - [sym__html_comment] = ACTIONS(1892), - [sym_raw_specifier] = ACTIONS(1892), - [sym__autolink] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1894), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1894), + [anon_sym_EQ] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_DOLLAR] = ACTIONS(1894), + [anon_sym_PERCENT] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_PLUS] = ACTIONS(1894), + [anon_sym_COMMA] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_DOT] = ACTIONS(1894), + [anon_sym_SLASH] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_QMARK] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_BSLASH] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym__] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1894), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1894), + [sym__escaped_characters] = ACTIONS(1894), + [sym__word] = ACTIONS(1894), + [sym__soft_line_ending] = ACTIONS(1894), + [sym__block_close] = ACTIONS(1894), + [sym__block_quote_start] = ACTIONS(1894), + [sym__indented_chunk_start] = ACTIONS(1894), + [sym_atx_h1_marker] = ACTIONS(1894), + [sym_atx_h2_marker] = ACTIONS(1894), + [sym_atx_h3_marker] = ACTIONS(1894), + [sym_atx_h4_marker] = ACTIONS(1894), + [sym_atx_h5_marker] = ACTIONS(1894), + [sym_atx_h6_marker] = ACTIONS(1894), + [sym__thematic_break] = ACTIONS(1894), + [sym__list_marker_minus] = ACTIONS(1894), + [sym__list_marker_plus] = ACTIONS(1894), + [sym__list_marker_star] = ACTIONS(1894), + [sym__list_marker_parenthesis] = ACTIONS(1894), + [sym__list_marker_dot] = ACTIONS(1894), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1894), + [sym__list_marker_example] = ACTIONS(1894), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1894), + [sym__fenced_code_block_start_backtick] = ACTIONS(1894), + [sym__fenced_code_block_start_tilde] = ACTIONS(1894), + [sym__blank_line_start] = ACTIONS(1894), + [sym_minus_metadata] = ACTIONS(1894), + [sym__pipe_table_start] = ACTIONS(1894), + [sym__fenced_div_start] = ACTIONS(1894), + [sym_ref_id_specifier] = ACTIONS(1894), + [sym__display_math_state_track_marker] = ACTIONS(1894), + [sym__inline_math_state_track_marker] = ACTIONS(1894), + [sym__code_span_start] = ACTIONS(1894), + [sym__html_comment] = ACTIONS(1894), + [sym_raw_specifier] = ACTIONS(1894), + [sym__autolink] = ACTIONS(1894), }, [STATE(360)] = { [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_PERCENT] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(1896), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_BSLASH] = ACTIONS(1898), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1896), - [anon_sym__] = ACTIONS(1896), - [anon_sym_BQUOTE] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1896), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1896), - [sym__escaped_characters] = ACTIONS(1896), - [sym__word] = ACTIONS(1896), - [sym__soft_line_ending] = ACTIONS(1896), - [sym__block_close] = ACTIONS(1896), - [sym__block_quote_start] = ACTIONS(1896), - [sym__indented_chunk_start] = ACTIONS(1896), - [sym_atx_h1_marker] = ACTIONS(1896), - [sym_atx_h2_marker] = ACTIONS(1896), - [sym_atx_h3_marker] = ACTIONS(1896), - [sym_atx_h4_marker] = ACTIONS(1896), - [sym_atx_h5_marker] = ACTIONS(1896), - [sym_atx_h6_marker] = ACTIONS(1896), - [sym__thematic_break] = ACTIONS(1896), - [sym__list_marker_minus] = ACTIONS(1896), - [sym__list_marker_plus] = ACTIONS(1896), - [sym__list_marker_star] = ACTIONS(1896), - [sym__list_marker_parenthesis] = ACTIONS(1896), - [sym__list_marker_dot] = ACTIONS(1896), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1896), - [sym__list_marker_example] = ACTIONS(1896), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1896), - [sym__fenced_code_block_start_backtick] = ACTIONS(1896), - [sym__fenced_code_block_start_tilde] = ACTIONS(1896), - [sym__blank_line_start] = ACTIONS(1896), - [sym_minus_metadata] = ACTIONS(1896), - [sym__pipe_table_start] = ACTIONS(1896), - [sym__fenced_div_start] = ACTIONS(1896), - [sym_ref_id_specifier] = ACTIONS(1896), - [sym__display_math_state_track_marker] = ACTIONS(1896), - [sym__inline_math_state_track_marker] = ACTIONS(1896), - [sym__code_span_start] = ACTIONS(1896), - [sym__html_comment] = ACTIONS(1896), - [sym_raw_specifier] = ACTIONS(1896), - [sym__autolink] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1898), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1898), + [anon_sym_EQ] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_PERCENT] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_PLUS] = ACTIONS(1898), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_DOT] = ACTIONS(1898), + [anon_sym_SLASH] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_QMARK] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_BSLASH] = ACTIONS(1896), + [anon_sym_RBRACK] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1898), + [anon_sym__] = ACTIONS(1898), + [anon_sym_BQUOTE] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1898), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1898), + [sym__escaped_characters] = ACTIONS(1898), + [sym__word] = ACTIONS(1898), + [sym__soft_line_ending] = ACTIONS(1898), + [sym__block_close] = ACTIONS(1898), + [sym__block_quote_start] = ACTIONS(1898), + [sym__indented_chunk_start] = ACTIONS(1898), + [sym_atx_h1_marker] = ACTIONS(1898), + [sym_atx_h2_marker] = ACTIONS(1898), + [sym_atx_h3_marker] = ACTIONS(1898), + [sym_atx_h4_marker] = ACTIONS(1898), + [sym_atx_h5_marker] = ACTIONS(1898), + [sym_atx_h6_marker] = ACTIONS(1898), + [sym__thematic_break] = ACTIONS(1898), + [sym__list_marker_minus] = ACTIONS(1898), + [sym__list_marker_plus] = ACTIONS(1898), + [sym__list_marker_star] = ACTIONS(1898), + [sym__list_marker_parenthesis] = ACTIONS(1898), + [sym__list_marker_dot] = ACTIONS(1898), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1898), + [sym__list_marker_example] = ACTIONS(1898), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1898), + [sym__fenced_code_block_start_backtick] = ACTIONS(1898), + [sym__fenced_code_block_start_tilde] = ACTIONS(1898), + [sym__blank_line_start] = ACTIONS(1898), + [sym_minus_metadata] = ACTIONS(1898), + [sym__pipe_table_start] = ACTIONS(1898), + [sym__fenced_div_start] = ACTIONS(1898), + [sym_ref_id_specifier] = ACTIONS(1898), + [sym__display_math_state_track_marker] = ACTIONS(1898), + [sym__inline_math_state_track_marker] = ACTIONS(1898), + [sym__code_span_start] = ACTIONS(1898), + [sym__html_comment] = ACTIONS(1898), + [sym_raw_specifier] = ACTIONS(1898), + [sym__autolink] = ACTIONS(1898), }, [STATE(361)] = { [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_COMMA] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_DOT] = ACTIONS(1902), - [anon_sym_SLASH] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_QMARK] = ACTIONS(1902), - [anon_sym_AT] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_BSLASH] = ACTIONS(1904), - [anon_sym_RBRACK] = ACTIONS(1902), - [anon_sym_CARET] = ACTIONS(1902), - [anon_sym__] = ACTIONS(1902), - [anon_sym_BQUOTE] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1902), - [sym__escaped_characters] = ACTIONS(1902), - [sym__word] = ACTIONS(1902), - [sym__soft_line_ending] = ACTIONS(1902), - [sym__block_close] = ACTIONS(1902), - [sym__block_quote_start] = ACTIONS(1902), - [sym__indented_chunk_start] = ACTIONS(1902), - [sym_atx_h1_marker] = ACTIONS(1902), - [sym_atx_h2_marker] = ACTIONS(1902), - [sym_atx_h3_marker] = ACTIONS(1902), - [sym_atx_h4_marker] = ACTIONS(1902), - [sym_atx_h5_marker] = ACTIONS(1902), - [sym_atx_h6_marker] = ACTIONS(1902), - [sym__thematic_break] = ACTIONS(1902), - [sym__list_marker_minus] = ACTIONS(1902), - [sym__list_marker_plus] = ACTIONS(1902), - [sym__list_marker_star] = ACTIONS(1902), - [sym__list_marker_parenthesis] = ACTIONS(1902), - [sym__list_marker_dot] = ACTIONS(1902), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1902), - [sym__list_marker_example] = ACTIONS(1902), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1902), - [sym__fenced_code_block_start_backtick] = ACTIONS(1902), - [sym__fenced_code_block_start_tilde] = ACTIONS(1902), - [sym__blank_line_start] = ACTIONS(1902), - [sym_minus_metadata] = ACTIONS(1902), - [sym__pipe_table_start] = ACTIONS(1902), - [sym__fenced_div_start] = ACTIONS(1902), - [sym_ref_id_specifier] = ACTIONS(1902), - [sym__display_math_state_track_marker] = ACTIONS(1902), - [sym__inline_math_state_track_marker] = ACTIONS(1902), - [sym__code_span_start] = ACTIONS(1902), - [sym__html_comment] = ACTIONS(1902), - [sym_raw_specifier] = ACTIONS(1902), - [sym__autolink] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1904), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1904), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_DQUOTE] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_DOLLAR] = ACTIONS(1904), + [anon_sym_PERCENT] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_RPAREN] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_COMMA] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_DOT] = ACTIONS(1904), + [anon_sym_SLASH] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_QMARK] = ACTIONS(1904), + [anon_sym_AT] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_BSLASH] = ACTIONS(1902), + [anon_sym_RBRACK] = ACTIONS(1904), + [anon_sym_CARET] = ACTIONS(1904), + [anon_sym__] = ACTIONS(1904), + [anon_sym_BQUOTE] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_TILDE] = ACTIONS(1904), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1904), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1904), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1904), + [sym__escaped_characters] = ACTIONS(1904), + [sym__word] = ACTIONS(1904), + [sym__soft_line_ending] = ACTIONS(1904), + [sym__block_close] = ACTIONS(1904), + [sym__block_quote_start] = ACTIONS(1904), + [sym__indented_chunk_start] = ACTIONS(1904), + [sym_atx_h1_marker] = ACTIONS(1904), + [sym_atx_h2_marker] = ACTIONS(1904), + [sym_atx_h3_marker] = ACTIONS(1904), + [sym_atx_h4_marker] = ACTIONS(1904), + [sym_atx_h5_marker] = ACTIONS(1904), + [sym_atx_h6_marker] = ACTIONS(1904), + [sym__thematic_break] = ACTIONS(1904), + [sym__list_marker_minus] = ACTIONS(1904), + [sym__list_marker_plus] = ACTIONS(1904), + [sym__list_marker_star] = ACTIONS(1904), + [sym__list_marker_parenthesis] = ACTIONS(1904), + [sym__list_marker_dot] = ACTIONS(1904), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1904), + [sym__list_marker_example] = ACTIONS(1904), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1904), + [sym__fenced_code_block_start_backtick] = ACTIONS(1904), + [sym__fenced_code_block_start_tilde] = ACTIONS(1904), + [sym__blank_line_start] = ACTIONS(1904), + [sym_minus_metadata] = ACTIONS(1904), + [sym__pipe_table_start] = ACTIONS(1904), + [sym__fenced_div_start] = ACTIONS(1904), + [sym_ref_id_specifier] = ACTIONS(1904), + [sym__display_math_state_track_marker] = ACTIONS(1904), + [sym__inline_math_state_track_marker] = ACTIONS(1904), + [sym__code_span_start] = ACTIONS(1904), + [sym__html_comment] = ACTIONS(1904), + [sym_raw_specifier] = ACTIONS(1904), + [sym__autolink] = ACTIONS(1904), }, [STATE(362)] = { [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_RPAREN] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_COMMA] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_DOT] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_QMARK] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_BSLASH] = ACTIONS(1908), - [anon_sym_RBRACK] = ACTIONS(1906), - [anon_sym_CARET] = ACTIONS(1906), - [anon_sym__] = ACTIONS(1906), - [anon_sym_BQUOTE] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1906), - [sym__escaped_characters] = ACTIONS(1906), - [sym__word] = ACTIONS(1906), - [sym__soft_line_ending] = ACTIONS(1906), - [sym__block_close] = ACTIONS(1906), - [sym__block_quote_start] = ACTIONS(1906), - [sym__indented_chunk_start] = ACTIONS(1906), - [sym_atx_h1_marker] = ACTIONS(1906), - [sym_atx_h2_marker] = ACTIONS(1906), - [sym_atx_h3_marker] = ACTIONS(1906), - [sym_atx_h4_marker] = ACTIONS(1906), - [sym_atx_h5_marker] = ACTIONS(1906), - [sym_atx_h6_marker] = ACTIONS(1906), - [sym__thematic_break] = ACTIONS(1906), - [sym__list_marker_minus] = ACTIONS(1906), - [sym__list_marker_plus] = ACTIONS(1906), - [sym__list_marker_star] = ACTIONS(1906), - [sym__list_marker_parenthesis] = ACTIONS(1906), - [sym__list_marker_dot] = ACTIONS(1906), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1906), - [sym__list_marker_example] = ACTIONS(1906), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1906), - [sym__fenced_code_block_start_backtick] = ACTIONS(1906), - [sym__fenced_code_block_start_tilde] = ACTIONS(1906), - [sym__blank_line_start] = ACTIONS(1906), - [sym_minus_metadata] = ACTIONS(1906), - [sym__pipe_table_start] = ACTIONS(1906), - [sym__fenced_div_start] = ACTIONS(1906), - [sym_ref_id_specifier] = ACTIONS(1906), - [sym__display_math_state_track_marker] = ACTIONS(1906), - [sym__inline_math_state_track_marker] = ACTIONS(1906), - [sym__code_span_start] = ACTIONS(1906), - [sym__html_comment] = ACTIONS(1906), - [sym_raw_specifier] = ACTIONS(1906), - [sym__autolink] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1908), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1908), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_DQUOTE] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_DOT] = ACTIONS(1908), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_BSLASH] = ACTIONS(1906), + [anon_sym_RBRACK] = ACTIONS(1908), + [anon_sym_CARET] = ACTIONS(1908), + [anon_sym__] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_TILDE] = ACTIONS(1908), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1908), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1908), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1908), + [sym__escaped_characters] = ACTIONS(1908), + [sym__word] = ACTIONS(1908), + [sym__soft_line_ending] = ACTIONS(1908), + [sym__block_close] = ACTIONS(1908), + [sym__block_quote_start] = ACTIONS(1908), + [sym__indented_chunk_start] = ACTIONS(1908), + [sym_atx_h1_marker] = ACTIONS(1908), + [sym_atx_h2_marker] = ACTIONS(1908), + [sym_atx_h3_marker] = ACTIONS(1908), + [sym_atx_h4_marker] = ACTIONS(1908), + [sym_atx_h5_marker] = ACTIONS(1908), + [sym_atx_h6_marker] = ACTIONS(1908), + [sym__thematic_break] = ACTIONS(1908), + [sym__list_marker_minus] = ACTIONS(1908), + [sym__list_marker_plus] = ACTIONS(1908), + [sym__list_marker_star] = ACTIONS(1908), + [sym__list_marker_parenthesis] = ACTIONS(1908), + [sym__list_marker_dot] = ACTIONS(1908), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1908), + [sym__list_marker_example] = ACTIONS(1908), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1908), + [sym__fenced_code_block_start_backtick] = ACTIONS(1908), + [sym__fenced_code_block_start_tilde] = ACTIONS(1908), + [sym__blank_line_start] = ACTIONS(1908), + [sym_minus_metadata] = ACTIONS(1908), + [sym__pipe_table_start] = ACTIONS(1908), + [sym__fenced_div_start] = ACTIONS(1908), + [sym_ref_id_specifier] = ACTIONS(1908), + [sym__display_math_state_track_marker] = ACTIONS(1908), + [sym__inline_math_state_track_marker] = ACTIONS(1908), + [sym__code_span_start] = ACTIONS(1908), + [sym__html_comment] = ACTIONS(1908), + [sym_raw_specifier] = ACTIONS(1908), + [sym__autolink] = ACTIONS(1908), }, [STATE(363)] = { [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1916), - [anon_sym_PERCENT] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_PLUS] = ACTIONS(1916), - [anon_sym_COMMA] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_DOT] = ACTIONS(1916), - [anon_sym_SLASH] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_QMARK] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [anon_sym_BSLASH] = ACTIONS(1918), - [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym__] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1916), - [sym__escaped_characters] = ACTIONS(1916), - [sym__word] = ACTIONS(1916), - [sym__soft_line_ending] = ACTIONS(1916), - [sym__block_close] = ACTIONS(1916), - [sym__block_quote_start] = ACTIONS(1916), - [sym__indented_chunk_start] = ACTIONS(1916), - [sym_atx_h1_marker] = ACTIONS(1916), - [sym_atx_h2_marker] = ACTIONS(1916), - [sym_atx_h3_marker] = ACTIONS(1916), - [sym_atx_h4_marker] = ACTIONS(1916), - [sym_atx_h5_marker] = ACTIONS(1916), - [sym_atx_h6_marker] = ACTIONS(1916), - [sym__thematic_break] = ACTIONS(1916), - [sym__list_marker_minus] = ACTIONS(1916), - [sym__list_marker_plus] = ACTIONS(1916), - [sym__list_marker_star] = ACTIONS(1916), - [sym__list_marker_parenthesis] = ACTIONS(1916), - [sym__list_marker_dot] = ACTIONS(1916), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1916), - [sym__list_marker_example] = ACTIONS(1916), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1916), - [sym__fenced_code_block_start_backtick] = ACTIONS(1916), - [sym__fenced_code_block_start_tilde] = ACTIONS(1916), - [sym__blank_line_start] = ACTIONS(1916), - [sym_minus_metadata] = ACTIONS(1916), - [sym__pipe_table_start] = ACTIONS(1916), - [sym__fenced_div_start] = ACTIONS(1916), - [sym_ref_id_specifier] = ACTIONS(1916), - [sym__display_math_state_track_marker] = ACTIONS(1916), - [sym__inline_math_state_track_marker] = ACTIONS(1916), - [sym__code_span_start] = ACTIONS(1916), - [sym__html_comment] = ACTIONS(1916), - [sym_raw_specifier] = ACTIONS(1916), - [sym__autolink] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1918), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1918), + [anon_sym_EQ] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_DOLLAR] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_DOT] = ACTIONS(1918), + [anon_sym_SLASH] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_QMARK] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_BSLASH] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym__] = ACTIONS(1918), + [anon_sym_BQUOTE] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1918), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1918), + [sym__escaped_characters] = ACTIONS(1918), + [sym__word] = ACTIONS(1918), + [sym__soft_line_ending] = ACTIONS(1918), + [sym__block_close] = ACTIONS(1918), + [sym__block_quote_start] = ACTIONS(1918), + [sym__indented_chunk_start] = ACTIONS(1918), + [sym_atx_h1_marker] = ACTIONS(1918), + [sym_atx_h2_marker] = ACTIONS(1918), + [sym_atx_h3_marker] = ACTIONS(1918), + [sym_atx_h4_marker] = ACTIONS(1918), + [sym_atx_h5_marker] = ACTIONS(1918), + [sym_atx_h6_marker] = ACTIONS(1918), + [sym__thematic_break] = ACTIONS(1918), + [sym__list_marker_minus] = ACTIONS(1918), + [sym__list_marker_plus] = ACTIONS(1918), + [sym__list_marker_star] = ACTIONS(1918), + [sym__list_marker_parenthesis] = ACTIONS(1918), + [sym__list_marker_dot] = ACTIONS(1918), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1918), + [sym__list_marker_example] = ACTIONS(1918), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1918), + [sym__fenced_code_block_start_backtick] = ACTIONS(1918), + [sym__fenced_code_block_start_tilde] = ACTIONS(1918), + [sym__blank_line_start] = ACTIONS(1918), + [sym_minus_metadata] = ACTIONS(1918), + [sym__pipe_table_start] = ACTIONS(1918), + [sym__fenced_div_start] = ACTIONS(1918), + [sym_ref_id_specifier] = ACTIONS(1918), + [sym__display_math_state_track_marker] = ACTIONS(1918), + [sym__inline_math_state_track_marker] = ACTIONS(1918), + [sym__code_span_start] = ACTIONS(1918), + [sym__html_comment] = ACTIONS(1918), + [sym_raw_specifier] = ACTIONS(1918), + [sym__autolink] = ACTIONS(1918), }, [STATE(364)] = { [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [anon_sym_POUND] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_PERCENT] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_DOT] = ACTIONS(1920), - [anon_sym_SLASH] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_QMARK] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_BSLASH] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [anon_sym__] = ACTIONS(1920), - [anon_sym_BQUOTE] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1920), - [sym__escaped_characters] = ACTIONS(1920), - [sym__word] = ACTIONS(1920), - [sym__soft_line_ending] = ACTIONS(1920), - [sym__block_close] = ACTIONS(1920), - [sym__block_quote_start] = ACTIONS(1920), - [sym__indented_chunk_start] = ACTIONS(1920), - [sym_atx_h1_marker] = ACTIONS(1920), - [sym_atx_h2_marker] = ACTIONS(1920), - [sym_atx_h3_marker] = ACTIONS(1920), - [sym_atx_h4_marker] = ACTIONS(1920), - [sym_atx_h5_marker] = ACTIONS(1920), - [sym_atx_h6_marker] = ACTIONS(1920), - [sym__thematic_break] = ACTIONS(1920), - [sym__list_marker_minus] = ACTIONS(1920), - [sym__list_marker_plus] = ACTIONS(1920), - [sym__list_marker_star] = ACTIONS(1920), - [sym__list_marker_parenthesis] = ACTIONS(1920), - [sym__list_marker_dot] = ACTIONS(1920), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1920), - [sym__list_marker_example] = ACTIONS(1920), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1920), - [sym__fenced_code_block_start_backtick] = ACTIONS(1920), - [sym__fenced_code_block_start_tilde] = ACTIONS(1920), - [sym__blank_line_start] = ACTIONS(1920), - [sym_minus_metadata] = ACTIONS(1920), - [sym__pipe_table_start] = ACTIONS(1920), - [sym__fenced_div_start] = ACTIONS(1920), - [sym_ref_id_specifier] = ACTIONS(1920), - [sym__display_math_state_track_marker] = ACTIONS(1920), - [sym__inline_math_state_track_marker] = ACTIONS(1920), - [sym__code_span_start] = ACTIONS(1920), - [sym__html_comment] = ACTIONS(1920), - [sym_raw_specifier] = ACTIONS(1920), - [sym__autolink] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1922), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_DOLLAR] = ACTIONS(1922), + [anon_sym_PERCENT] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_PLUS] = ACTIONS(1922), + [anon_sym_COMMA] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_DOT] = ACTIONS(1922), + [anon_sym_SLASH] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_QMARK] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_BSLASH] = ACTIONS(1920), + [anon_sym_RBRACK] = ACTIONS(1922), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym__] = ACTIONS(1922), + [anon_sym_BQUOTE] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_TILDE] = ACTIONS(1922), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1922), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1922), + [sym__escaped_characters] = ACTIONS(1922), + [sym__word] = ACTIONS(1922), + [sym__soft_line_ending] = ACTIONS(1922), + [sym__block_close] = ACTIONS(1922), + [sym__block_quote_start] = ACTIONS(1922), + [sym__indented_chunk_start] = ACTIONS(1922), + [sym_atx_h1_marker] = ACTIONS(1922), + [sym_atx_h2_marker] = ACTIONS(1922), + [sym_atx_h3_marker] = ACTIONS(1922), + [sym_atx_h4_marker] = ACTIONS(1922), + [sym_atx_h5_marker] = ACTIONS(1922), + [sym_atx_h6_marker] = ACTIONS(1922), + [sym__thematic_break] = ACTIONS(1922), + [sym__list_marker_minus] = ACTIONS(1922), + [sym__list_marker_plus] = ACTIONS(1922), + [sym__list_marker_star] = ACTIONS(1922), + [sym__list_marker_parenthesis] = ACTIONS(1922), + [sym__list_marker_dot] = ACTIONS(1922), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1922), + [sym__list_marker_example] = ACTIONS(1922), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1922), + [sym__fenced_code_block_start_backtick] = ACTIONS(1922), + [sym__fenced_code_block_start_tilde] = ACTIONS(1922), + [sym__blank_line_start] = ACTIONS(1922), + [sym_minus_metadata] = ACTIONS(1922), + [sym__pipe_table_start] = ACTIONS(1922), + [sym__fenced_div_start] = ACTIONS(1922), + [sym_ref_id_specifier] = ACTIONS(1922), + [sym__display_math_state_track_marker] = ACTIONS(1922), + [sym__inline_math_state_track_marker] = ACTIONS(1922), + [sym__code_span_start] = ACTIONS(1922), + [sym__html_comment] = ACTIONS(1922), + [sym_raw_specifier] = ACTIONS(1922), + [sym__autolink] = ACTIONS(1922), }, [STATE(365)] = { [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1924), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_PERCENT] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_COMMA] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_DOT] = ACTIONS(1924), - [anon_sym_SLASH] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_QMARK] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_BSLASH] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym__] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1924), - [sym__escaped_characters] = ACTIONS(1924), - [sym__word] = ACTIONS(1924), - [sym__soft_line_ending] = ACTIONS(1924), - [sym__block_close] = ACTIONS(1924), - [sym__block_quote_start] = ACTIONS(1924), - [sym__indented_chunk_start] = ACTIONS(1924), - [sym_atx_h1_marker] = ACTIONS(1924), - [sym_atx_h2_marker] = ACTIONS(1924), - [sym_atx_h3_marker] = ACTIONS(1924), - [sym_atx_h4_marker] = ACTIONS(1924), - [sym_atx_h5_marker] = ACTIONS(1924), - [sym_atx_h6_marker] = ACTIONS(1924), - [sym__thematic_break] = ACTIONS(1924), - [sym__list_marker_minus] = ACTIONS(1924), - [sym__list_marker_plus] = ACTIONS(1924), - [sym__list_marker_star] = ACTIONS(1924), - [sym__list_marker_parenthesis] = ACTIONS(1924), - [sym__list_marker_dot] = ACTIONS(1924), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_example] = ACTIONS(1924), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1924), - [sym__fenced_code_block_start_backtick] = ACTIONS(1924), - [sym__fenced_code_block_start_tilde] = ACTIONS(1924), - [sym__blank_line_start] = ACTIONS(1924), - [sym_minus_metadata] = ACTIONS(1924), - [sym__pipe_table_start] = ACTIONS(1924), - [sym__fenced_div_start] = ACTIONS(1924), - [sym_ref_id_specifier] = ACTIONS(1924), - [sym__display_math_state_track_marker] = ACTIONS(1924), - [sym__inline_math_state_track_marker] = ACTIONS(1924), - [sym__code_span_start] = ACTIONS(1924), - [sym__html_comment] = ACTIONS(1924), - [sym_raw_specifier] = ACTIONS(1924), - [sym__autolink] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1926), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1926), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_PERCENT] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_COMMA] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_DOT] = ACTIONS(1926), + [anon_sym_SLASH] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_QMARK] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_BSLASH] = ACTIONS(1924), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym__] = ACTIONS(1926), + [anon_sym_BQUOTE] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1926), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1926), + [sym__escaped_characters] = ACTIONS(1926), + [sym__word] = ACTIONS(1926), + [sym__soft_line_ending] = ACTIONS(1926), + [sym__block_close] = ACTIONS(1926), + [sym__block_quote_start] = ACTIONS(1926), + [sym__indented_chunk_start] = ACTIONS(1926), + [sym_atx_h1_marker] = ACTIONS(1926), + [sym_atx_h2_marker] = ACTIONS(1926), + [sym_atx_h3_marker] = ACTIONS(1926), + [sym_atx_h4_marker] = ACTIONS(1926), + [sym_atx_h5_marker] = ACTIONS(1926), + [sym_atx_h6_marker] = ACTIONS(1926), + [sym__thematic_break] = ACTIONS(1926), + [sym__list_marker_minus] = ACTIONS(1926), + [sym__list_marker_plus] = ACTIONS(1926), + [sym__list_marker_star] = ACTIONS(1926), + [sym__list_marker_parenthesis] = ACTIONS(1926), + [sym__list_marker_dot] = ACTIONS(1926), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_example] = ACTIONS(1926), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1926), + [sym__fenced_code_block_start_backtick] = ACTIONS(1926), + [sym__fenced_code_block_start_tilde] = ACTIONS(1926), + [sym__blank_line_start] = ACTIONS(1926), + [sym_minus_metadata] = ACTIONS(1926), + [sym__pipe_table_start] = ACTIONS(1926), + [sym__fenced_div_start] = ACTIONS(1926), + [sym_ref_id_specifier] = ACTIONS(1926), + [sym__display_math_state_track_marker] = ACTIONS(1926), + [sym__inline_math_state_track_marker] = ACTIONS(1926), + [sym__code_span_start] = ACTIONS(1926), + [sym__html_comment] = ACTIONS(1926), + [sym_raw_specifier] = ACTIONS(1926), + [sym__autolink] = ACTIONS(1926), }, [STATE(366)] = { [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_DOLLAR] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_DOT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_QMARK] = ACTIONS(1930), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_BSLASH] = ACTIONS(1932), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1930), - [anon_sym__] = ACTIONS(1930), - [anon_sym_BQUOTE] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1930), - [sym__escaped_characters] = ACTIONS(1930), - [sym__word] = ACTIONS(1930), - [sym__soft_line_ending] = ACTIONS(1930), - [sym__block_close] = ACTIONS(1930), - [sym__block_quote_start] = ACTIONS(1930), - [sym__indented_chunk_start] = ACTIONS(1930), - [sym_atx_h1_marker] = ACTIONS(1930), - [sym_atx_h2_marker] = ACTIONS(1930), - [sym_atx_h3_marker] = ACTIONS(1930), - [sym_atx_h4_marker] = ACTIONS(1930), - [sym_atx_h5_marker] = ACTIONS(1930), - [sym_atx_h6_marker] = ACTIONS(1930), - [sym__thematic_break] = ACTIONS(1930), - [sym__list_marker_minus] = ACTIONS(1930), - [sym__list_marker_plus] = ACTIONS(1930), - [sym__list_marker_star] = ACTIONS(1930), - [sym__list_marker_parenthesis] = ACTIONS(1930), - [sym__list_marker_dot] = ACTIONS(1930), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_example] = ACTIONS(1930), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1930), - [sym__fenced_code_block_start_backtick] = ACTIONS(1930), - [sym__fenced_code_block_start_tilde] = ACTIONS(1930), - [sym__blank_line_start] = ACTIONS(1930), - [sym_minus_metadata] = ACTIONS(1930), - [sym__pipe_table_start] = ACTIONS(1930), - [sym__fenced_div_start] = ACTIONS(1930), - [sym_ref_id_specifier] = ACTIONS(1930), - [sym__display_math_state_track_marker] = ACTIONS(1930), - [sym__inline_math_state_track_marker] = ACTIONS(1930), - [sym__code_span_start] = ACTIONS(1930), - [sym__html_comment] = ACTIONS(1930), - [sym_raw_specifier] = ACTIONS(1930), - [sym__autolink] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1932), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_DOLLAR] = ACTIONS(1932), + [anon_sym_PERCENT] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_SLASH] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_BSLASH] = ACTIONS(1930), + [anon_sym_RBRACK] = ACTIONS(1932), + [anon_sym_CARET] = ACTIONS(1932), + [anon_sym__] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_TILDE] = ACTIONS(1932), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1932), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1932), + [sym__escaped_characters] = ACTIONS(1932), + [sym__word] = ACTIONS(1932), + [sym__soft_line_ending] = ACTIONS(1932), + [sym__block_close] = ACTIONS(1932), + [sym__block_quote_start] = ACTIONS(1932), + [sym__indented_chunk_start] = ACTIONS(1932), + [sym_atx_h1_marker] = ACTIONS(1932), + [sym_atx_h2_marker] = ACTIONS(1932), + [sym_atx_h3_marker] = ACTIONS(1932), + [sym_atx_h4_marker] = ACTIONS(1932), + [sym_atx_h5_marker] = ACTIONS(1932), + [sym_atx_h6_marker] = ACTIONS(1932), + [sym__thematic_break] = ACTIONS(1932), + [sym__list_marker_minus] = ACTIONS(1932), + [sym__list_marker_plus] = ACTIONS(1932), + [sym__list_marker_star] = ACTIONS(1932), + [sym__list_marker_parenthesis] = ACTIONS(1932), + [sym__list_marker_dot] = ACTIONS(1932), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_example] = ACTIONS(1932), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1932), + [sym__fenced_code_block_start_backtick] = ACTIONS(1932), + [sym__fenced_code_block_start_tilde] = ACTIONS(1932), + [sym__blank_line_start] = ACTIONS(1932), + [sym_minus_metadata] = ACTIONS(1932), + [sym__pipe_table_start] = ACTIONS(1932), + [sym__fenced_div_start] = ACTIONS(1932), + [sym_ref_id_specifier] = ACTIONS(1932), + [sym__display_math_state_track_marker] = ACTIONS(1932), + [sym__inline_math_state_track_marker] = ACTIONS(1932), + [sym__code_span_start] = ACTIONS(1932), + [sym__html_comment] = ACTIONS(1932), + [sym_raw_specifier] = ACTIONS(1932), + [sym__autolink] = ACTIONS(1932), }, [STATE(367)] = { [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1944), - [anon_sym_EQ] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_BSLASH] = ACTIONS(1946), - [anon_sym_RBRACK] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym__] = ACTIONS(1944), - [anon_sym_BQUOTE] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1944), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1944), - [sym__escaped_characters] = ACTIONS(1944), - [sym__word] = ACTIONS(1944), - [sym__soft_line_ending] = ACTIONS(1944), - [sym__block_close] = ACTIONS(1944), - [sym__block_quote_start] = ACTIONS(1944), - [sym__indented_chunk_start] = ACTIONS(1944), - [sym_atx_h1_marker] = ACTIONS(1944), - [sym_atx_h2_marker] = ACTIONS(1944), - [sym_atx_h3_marker] = ACTIONS(1944), - [sym_atx_h4_marker] = ACTIONS(1944), - [sym_atx_h5_marker] = ACTIONS(1944), - [sym_atx_h6_marker] = ACTIONS(1944), - [sym__thematic_break] = ACTIONS(1944), - [sym__list_marker_minus] = ACTIONS(1944), - [sym__list_marker_plus] = ACTIONS(1944), - [sym__list_marker_star] = ACTIONS(1944), - [sym__list_marker_parenthesis] = ACTIONS(1944), - [sym__list_marker_dot] = ACTIONS(1944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_example] = ACTIONS(1944), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1944), - [sym__fenced_code_block_start_backtick] = ACTIONS(1944), - [sym__fenced_code_block_start_tilde] = ACTIONS(1944), - [sym__blank_line_start] = ACTIONS(1944), - [sym_minus_metadata] = ACTIONS(1944), - [sym__pipe_table_start] = ACTIONS(1944), - [sym__fenced_div_start] = ACTIONS(1944), - [sym_ref_id_specifier] = ACTIONS(1944), - [sym__display_math_state_track_marker] = ACTIONS(1944), - [sym__inline_math_state_track_marker] = ACTIONS(1944), - [sym__code_span_start] = ACTIONS(1944), - [sym__html_comment] = ACTIONS(1944), - [sym_raw_specifier] = ACTIONS(1944), - [sym__autolink] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1946), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_DOT] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_QMARK] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_BSLASH] = ACTIONS(1944), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym__] = ACTIONS(1946), + [anon_sym_BQUOTE] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1946), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1946), + [sym__escaped_characters] = ACTIONS(1946), + [sym__word] = ACTIONS(1946), + [sym__soft_line_ending] = ACTIONS(1946), + [sym__block_close] = ACTIONS(1946), + [sym__block_quote_start] = ACTIONS(1946), + [sym__indented_chunk_start] = ACTIONS(1946), + [sym_atx_h1_marker] = ACTIONS(1946), + [sym_atx_h2_marker] = ACTIONS(1946), + [sym_atx_h3_marker] = ACTIONS(1946), + [sym_atx_h4_marker] = ACTIONS(1946), + [sym_atx_h5_marker] = ACTIONS(1946), + [sym_atx_h6_marker] = ACTIONS(1946), + [sym__thematic_break] = ACTIONS(1946), + [sym__list_marker_minus] = ACTIONS(1946), + [sym__list_marker_plus] = ACTIONS(1946), + [sym__list_marker_star] = ACTIONS(1946), + [sym__list_marker_parenthesis] = ACTIONS(1946), + [sym__list_marker_dot] = ACTIONS(1946), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_example] = ACTIONS(1946), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1946), + [sym__fenced_code_block_start_backtick] = ACTIONS(1946), + [sym__fenced_code_block_start_tilde] = ACTIONS(1946), + [sym__blank_line_start] = ACTIONS(1946), + [sym_minus_metadata] = ACTIONS(1946), + [sym__pipe_table_start] = ACTIONS(1946), + [sym__fenced_div_start] = ACTIONS(1946), + [sym_ref_id_specifier] = ACTIONS(1946), + [sym__display_math_state_track_marker] = ACTIONS(1946), + [sym__inline_math_state_track_marker] = ACTIONS(1946), + [sym__code_span_start] = ACTIONS(1946), + [sym__html_comment] = ACTIONS(1946), + [sym_raw_specifier] = ACTIONS(1946), + [sym__autolink] = ACTIONS(1946), }, [STATE(368)] = { [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1960), - [anon_sym_EQ] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_RPAREN] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_COMMA] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_DOT] = ACTIONS(1960), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_QMARK] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_BSLASH] = ACTIONS(1962), - [anon_sym_RBRACK] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym__] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1960), - [sym__escaped_characters] = ACTIONS(1960), - [sym__word] = ACTIONS(1960), - [sym__soft_line_ending] = ACTIONS(1960), - [sym__block_close] = ACTIONS(1960), - [sym__block_quote_start] = ACTIONS(1960), - [sym__indented_chunk_start] = ACTIONS(1960), - [sym_atx_h1_marker] = ACTIONS(1960), - [sym_atx_h2_marker] = ACTIONS(1960), - [sym_atx_h3_marker] = ACTIONS(1960), - [sym_atx_h4_marker] = ACTIONS(1960), - [sym_atx_h5_marker] = ACTIONS(1960), - [sym_atx_h6_marker] = ACTIONS(1960), - [sym__thematic_break] = ACTIONS(1960), - [sym__list_marker_minus] = ACTIONS(1960), - [sym__list_marker_plus] = ACTIONS(1960), - [sym__list_marker_star] = ACTIONS(1960), - [sym__list_marker_parenthesis] = ACTIONS(1960), - [sym__list_marker_dot] = ACTIONS(1960), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_example] = ACTIONS(1960), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1960), - [sym__fenced_code_block_start_backtick] = ACTIONS(1960), - [sym__fenced_code_block_start_tilde] = ACTIONS(1960), - [sym__blank_line_start] = ACTIONS(1960), - [sym_minus_metadata] = ACTIONS(1960), - [sym__pipe_table_start] = ACTIONS(1960), - [sym__fenced_div_start] = ACTIONS(1960), - [sym_ref_id_specifier] = ACTIONS(1960), - [sym__display_math_state_track_marker] = ACTIONS(1960), - [sym__inline_math_state_track_marker] = ACTIONS(1960), - [sym__code_span_start] = ACTIONS(1960), - [sym__html_comment] = ACTIONS(1960), - [sym_raw_specifier] = ACTIONS(1960), - [sym__autolink] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1962), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1962), + [anon_sym_EQ] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_PERCENT] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_PLUS] = ACTIONS(1962), + [anon_sym_COMMA] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_DOT] = ACTIONS(1962), + [anon_sym_SLASH] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_QMARK] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_BSLASH] = ACTIONS(1960), + [anon_sym_RBRACK] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1962), + [anon_sym__] = ACTIONS(1962), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1962), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1962), + [sym__escaped_characters] = ACTIONS(1962), + [sym__word] = ACTIONS(1962), + [sym__soft_line_ending] = ACTIONS(1962), + [sym__block_close] = ACTIONS(1962), + [sym__block_quote_start] = ACTIONS(1962), + [sym__indented_chunk_start] = ACTIONS(1962), + [sym_atx_h1_marker] = ACTIONS(1962), + [sym_atx_h2_marker] = ACTIONS(1962), + [sym_atx_h3_marker] = ACTIONS(1962), + [sym_atx_h4_marker] = ACTIONS(1962), + [sym_atx_h5_marker] = ACTIONS(1962), + [sym_atx_h6_marker] = ACTIONS(1962), + [sym__thematic_break] = ACTIONS(1962), + [sym__list_marker_minus] = ACTIONS(1962), + [sym__list_marker_plus] = ACTIONS(1962), + [sym__list_marker_star] = ACTIONS(1962), + [sym__list_marker_parenthesis] = ACTIONS(1962), + [sym__list_marker_dot] = ACTIONS(1962), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_example] = ACTIONS(1962), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1962), + [sym__fenced_code_block_start_backtick] = ACTIONS(1962), + [sym__fenced_code_block_start_tilde] = ACTIONS(1962), + [sym__blank_line_start] = ACTIONS(1962), + [sym_minus_metadata] = ACTIONS(1962), + [sym__pipe_table_start] = ACTIONS(1962), + [sym__fenced_div_start] = ACTIONS(1962), + [sym_ref_id_specifier] = ACTIONS(1962), + [sym__display_math_state_track_marker] = ACTIONS(1962), + [sym__inline_math_state_track_marker] = ACTIONS(1962), + [sym__code_span_start] = ACTIONS(1962), + [sym__html_comment] = ACTIONS(1962), + [sym_raw_specifier] = ACTIONS(1962), + [sym__autolink] = ACTIONS(1962), }, [STATE(369)] = { [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_QMARK] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1812), - [anon_sym__] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1812), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1812), - [sym__escaped_characters] = ACTIONS(1812), - [sym__word] = ACTIONS(1812), - [sym__soft_line_ending] = ACTIONS(1812), - [sym__block_close] = ACTIONS(1812), - [sym__block_quote_start] = ACTIONS(1812), - [sym__indented_chunk_start] = ACTIONS(1812), - [sym_atx_h1_marker] = ACTIONS(1812), - [sym_atx_h2_marker] = ACTIONS(1812), - [sym_atx_h3_marker] = ACTIONS(1812), - [sym_atx_h4_marker] = ACTIONS(1812), - [sym_atx_h5_marker] = ACTIONS(1812), - [sym_atx_h6_marker] = ACTIONS(1812), - [sym__thematic_break] = ACTIONS(1812), - [sym__list_marker_minus] = ACTIONS(1812), - [sym__list_marker_plus] = ACTIONS(1812), - [sym__list_marker_star] = ACTIONS(1812), - [sym__list_marker_parenthesis] = ACTIONS(1812), - [sym__list_marker_dot] = ACTIONS(1812), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_example] = ACTIONS(1812), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1812), - [sym__fenced_code_block_start_backtick] = ACTIONS(1812), - [sym__fenced_code_block_start_tilde] = ACTIONS(1812), - [sym__blank_line_start] = ACTIONS(1812), - [sym_minus_metadata] = ACTIONS(1812), - [sym__pipe_table_start] = ACTIONS(1812), - [sym__fenced_div_start] = ACTIONS(1812), - [sym_ref_id_specifier] = ACTIONS(1812), - [sym__display_math_state_track_marker] = ACTIONS(1812), - [sym__inline_math_state_track_marker] = ACTIONS(1812), - [sym__code_span_start] = ACTIONS(1812), - [sym__html_comment] = ACTIONS(1812), - [sym_raw_specifier] = ACTIONS(1812), - [sym__autolink] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1814), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_DQUOTE] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_COMMA] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_QMARK] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_BSLASH] = ACTIONS(1812), + [anon_sym_RBRACK] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym__] = ACTIONS(1814), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1814), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1814), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1814), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1814), + [sym__escaped_characters] = ACTIONS(1814), + [sym__word] = ACTIONS(1814), + [sym__soft_line_ending] = ACTIONS(1814), + [sym__block_close] = ACTIONS(1814), + [sym__block_quote_start] = ACTIONS(1814), + [sym__indented_chunk_start] = ACTIONS(1814), + [sym_atx_h1_marker] = ACTIONS(1814), + [sym_atx_h2_marker] = ACTIONS(1814), + [sym_atx_h3_marker] = ACTIONS(1814), + [sym_atx_h4_marker] = ACTIONS(1814), + [sym_atx_h5_marker] = ACTIONS(1814), + [sym_atx_h6_marker] = ACTIONS(1814), + [sym__thematic_break] = ACTIONS(1814), + [sym__list_marker_minus] = ACTIONS(1814), + [sym__list_marker_plus] = ACTIONS(1814), + [sym__list_marker_star] = ACTIONS(1814), + [sym__list_marker_parenthesis] = ACTIONS(1814), + [sym__list_marker_dot] = ACTIONS(1814), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_example] = ACTIONS(1814), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1814), + [sym__fenced_code_block_start_backtick] = ACTIONS(1814), + [sym__fenced_code_block_start_tilde] = ACTIONS(1814), + [sym__blank_line_start] = ACTIONS(1814), + [sym_minus_metadata] = ACTIONS(1814), + [sym__pipe_table_start] = ACTIONS(1814), + [sym__fenced_div_start] = ACTIONS(1814), + [sym_ref_id_specifier] = ACTIONS(1814), + [sym__display_math_state_track_marker] = ACTIONS(1814), + [sym__inline_math_state_track_marker] = ACTIONS(1814), + [sym__code_span_start] = ACTIONS(1814), + [sym__html_comment] = ACTIONS(1814), + [sym_raw_specifier] = ACTIONS(1814), + [sym__autolink] = ACTIONS(1814), }, [STATE(370)] = { [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1526), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1524), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1524), - [sym__html_comment] = ACTIONS(1524), - [sym_raw_specifier] = ACTIONS(1524), - [sym__autolink] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1526), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1526), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1526), + [sym__html_comment] = ACTIONS(1526), + [sym_raw_specifier] = ACTIONS(1526), + [sym__autolink] = ACTIONS(1526), }, [STATE(371)] = { - [ts_builtin_sym_end] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1926), [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1924), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(1924), - [anon_sym_PERCENT] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_COMMA] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_DOT] = ACTIONS(1924), - [anon_sym_SLASH] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_QMARK] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_BSLASH] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym__] = ACTIONS(1924), - [anon_sym_BQUOTE] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1924), - [sym__escaped_characters] = ACTIONS(1924), - [sym__word] = ACTIONS(1924), - [sym__soft_line_ending] = ACTIONS(1924), - [sym__block_quote_start] = ACTIONS(1924), - [sym__indented_chunk_start] = ACTIONS(1924), - [sym_atx_h1_marker] = ACTIONS(1924), - [sym_atx_h2_marker] = ACTIONS(1924), - [sym_atx_h3_marker] = ACTIONS(1924), - [sym_atx_h4_marker] = ACTIONS(1924), - [sym_atx_h5_marker] = ACTIONS(1924), - [sym_atx_h6_marker] = ACTIONS(1924), - [sym__thematic_break] = ACTIONS(1924), - [sym__list_marker_minus] = ACTIONS(1924), - [sym__list_marker_plus] = ACTIONS(1924), - [sym__list_marker_star] = ACTIONS(1924), - [sym__list_marker_parenthesis] = ACTIONS(1924), - [sym__list_marker_dot] = ACTIONS(1924), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1924), - [sym__list_marker_example] = ACTIONS(1924), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1924), - [sym__fenced_code_block_start_backtick] = ACTIONS(1924), - [sym__fenced_code_block_start_tilde] = ACTIONS(1924), - [sym__blank_line_start] = ACTIONS(1924), - [sym_minus_metadata] = ACTIONS(1924), - [sym__pipe_table_start] = ACTIONS(1924), - [sym__fenced_div_start] = ACTIONS(1924), - [sym_ref_id_specifier] = ACTIONS(1924), - [sym__display_math_state_track_marker] = ACTIONS(1924), - [sym__inline_math_state_track_marker] = ACTIONS(1924), - [sym__code_span_start] = ACTIONS(1924), - [sym__html_comment] = ACTIONS(1924), - [sym_raw_specifier] = ACTIONS(1924), - [sym__autolink] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1926), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1926), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1926), + [anon_sym_PERCENT] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_COMMA] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_DOT] = ACTIONS(1926), + [anon_sym_SLASH] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_QMARK] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_BSLASH] = ACTIONS(1924), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym__] = ACTIONS(1926), + [anon_sym_BQUOTE] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1926), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1926), + [sym__escaped_characters] = ACTIONS(1926), + [sym__word] = ACTIONS(1926), + [sym__soft_line_ending] = ACTIONS(1926), + [sym__block_quote_start] = ACTIONS(1926), + [sym__indented_chunk_start] = ACTIONS(1926), + [sym_atx_h1_marker] = ACTIONS(1926), + [sym_atx_h2_marker] = ACTIONS(1926), + [sym_atx_h3_marker] = ACTIONS(1926), + [sym_atx_h4_marker] = ACTIONS(1926), + [sym_atx_h5_marker] = ACTIONS(1926), + [sym_atx_h6_marker] = ACTIONS(1926), + [sym__thematic_break] = ACTIONS(1926), + [sym__list_marker_minus] = ACTIONS(1926), + [sym__list_marker_plus] = ACTIONS(1926), + [sym__list_marker_star] = ACTIONS(1926), + [sym__list_marker_parenthesis] = ACTIONS(1926), + [sym__list_marker_dot] = ACTIONS(1926), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1926), + [sym__list_marker_example] = ACTIONS(1926), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1926), + [sym__fenced_code_block_start_backtick] = ACTIONS(1926), + [sym__fenced_code_block_start_tilde] = ACTIONS(1926), + [sym__blank_line_start] = ACTIONS(1926), + [sym_minus_metadata] = ACTIONS(1926), + [sym__pipe_table_start] = ACTIONS(1926), + [sym__fenced_div_start] = ACTIONS(1926), + [sym_ref_id_specifier] = ACTIONS(1926), + [sym__display_math_state_track_marker] = ACTIONS(1926), + [sym__inline_math_state_track_marker] = ACTIONS(1926), + [sym__code_span_start] = ACTIONS(1926), + [sym__html_comment] = ACTIONS(1926), + [sym_raw_specifier] = ACTIONS(1926), + [sym__autolink] = ACTIONS(1926), }, [STATE(372)] = { [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_BSLASH] = ACTIONS(1532), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1530), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1530), - [sym__html_comment] = ACTIONS(1530), - [sym_raw_specifier] = ACTIONS(1530), - [sym__autolink] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_BQUOTE] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1532), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1532), + [sym__escaped_characters] = ACTIONS(1532), + [sym__word] = ACTIONS(1532), + [sym__soft_line_ending] = ACTIONS(1532), + [sym__block_close] = ACTIONS(1532), + [sym__block_quote_start] = ACTIONS(1532), + [sym__indented_chunk_start] = ACTIONS(1532), + [sym_atx_h1_marker] = ACTIONS(1532), + [sym_atx_h2_marker] = ACTIONS(1532), + [sym_atx_h3_marker] = ACTIONS(1532), + [sym_atx_h4_marker] = ACTIONS(1532), + [sym_atx_h5_marker] = ACTIONS(1532), + [sym_atx_h6_marker] = ACTIONS(1532), + [sym__thematic_break] = ACTIONS(1532), + [sym__list_marker_minus] = ACTIONS(1532), + [sym__list_marker_plus] = ACTIONS(1532), + [sym__list_marker_star] = ACTIONS(1532), + [sym__list_marker_parenthesis] = ACTIONS(1532), + [sym__list_marker_dot] = ACTIONS(1532), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_example] = ACTIONS(1532), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1532), + [sym__fenced_code_block_start_backtick] = ACTIONS(1532), + [sym__fenced_code_block_start_tilde] = ACTIONS(1532), + [sym__blank_line_start] = ACTIONS(1532), + [sym_minus_metadata] = ACTIONS(1532), + [sym__pipe_table_start] = ACTIONS(1532), + [sym__fenced_div_start] = ACTIONS(1532), + [sym_ref_id_specifier] = ACTIONS(1532), + [sym__display_math_state_track_marker] = ACTIONS(1532), + [sym__inline_math_state_track_marker] = ACTIONS(1532), + [sym__code_span_start] = ACTIONS(1532), + [sym__html_comment] = ACTIONS(1532), + [sym_raw_specifier] = ACTIONS(1532), + [sym__autolink] = ACTIONS(1532), }, [STATE(373)] = { - [ts_builtin_sym_end] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1932), [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_DOLLAR] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_DOT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_QMARK] = ACTIONS(1930), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_BSLASH] = ACTIONS(1932), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1930), - [anon_sym__] = ACTIONS(1930), - [anon_sym_BQUOTE] = ACTIONS(1930), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1930), - [sym__escaped_characters] = ACTIONS(1930), - [sym__word] = ACTIONS(1930), - [sym__soft_line_ending] = ACTIONS(1930), - [sym__block_quote_start] = ACTIONS(1930), - [sym__indented_chunk_start] = ACTIONS(1930), - [sym_atx_h1_marker] = ACTIONS(1930), - [sym_atx_h2_marker] = ACTIONS(1930), - [sym_atx_h3_marker] = ACTIONS(1930), - [sym_atx_h4_marker] = ACTIONS(1930), - [sym_atx_h5_marker] = ACTIONS(1930), - [sym_atx_h6_marker] = ACTIONS(1930), - [sym__thematic_break] = ACTIONS(1930), - [sym__list_marker_minus] = ACTIONS(1930), - [sym__list_marker_plus] = ACTIONS(1930), - [sym__list_marker_star] = ACTIONS(1930), - [sym__list_marker_parenthesis] = ACTIONS(1930), - [sym__list_marker_dot] = ACTIONS(1930), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1930), - [sym__list_marker_example] = ACTIONS(1930), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1930), - [sym__fenced_code_block_start_backtick] = ACTIONS(1930), - [sym__fenced_code_block_start_tilde] = ACTIONS(1930), - [sym__blank_line_start] = ACTIONS(1930), - [sym_minus_metadata] = ACTIONS(1930), - [sym__pipe_table_start] = ACTIONS(1930), - [sym__fenced_div_start] = ACTIONS(1930), - [sym_ref_id_specifier] = ACTIONS(1930), - [sym__display_math_state_track_marker] = ACTIONS(1930), - [sym__inline_math_state_track_marker] = ACTIONS(1930), - [sym__code_span_start] = ACTIONS(1930), - [sym__html_comment] = ACTIONS(1930), - [sym_raw_specifier] = ACTIONS(1930), - [sym__autolink] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1932), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_DOLLAR] = ACTIONS(1932), + [anon_sym_PERCENT] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_RPAREN] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1932), + [anon_sym_SLASH] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_QMARK] = ACTIONS(1932), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_BSLASH] = ACTIONS(1930), + [anon_sym_RBRACK] = ACTIONS(1932), + [anon_sym_CARET] = ACTIONS(1932), + [anon_sym__] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_TILDE] = ACTIONS(1932), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1932), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1932), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1932), + [sym__escaped_characters] = ACTIONS(1932), + [sym__word] = ACTIONS(1932), + [sym__soft_line_ending] = ACTIONS(1932), + [sym__block_quote_start] = ACTIONS(1932), + [sym__indented_chunk_start] = ACTIONS(1932), + [sym_atx_h1_marker] = ACTIONS(1932), + [sym_atx_h2_marker] = ACTIONS(1932), + [sym_atx_h3_marker] = ACTIONS(1932), + [sym_atx_h4_marker] = ACTIONS(1932), + [sym_atx_h5_marker] = ACTIONS(1932), + [sym_atx_h6_marker] = ACTIONS(1932), + [sym__thematic_break] = ACTIONS(1932), + [sym__list_marker_minus] = ACTIONS(1932), + [sym__list_marker_plus] = ACTIONS(1932), + [sym__list_marker_star] = ACTIONS(1932), + [sym__list_marker_parenthesis] = ACTIONS(1932), + [sym__list_marker_dot] = ACTIONS(1932), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1932), + [sym__list_marker_example] = ACTIONS(1932), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1932), + [sym__fenced_code_block_start_backtick] = ACTIONS(1932), + [sym__fenced_code_block_start_tilde] = ACTIONS(1932), + [sym__blank_line_start] = ACTIONS(1932), + [sym_minus_metadata] = ACTIONS(1932), + [sym__pipe_table_start] = ACTIONS(1932), + [sym__fenced_div_start] = ACTIONS(1932), + [sym_ref_id_specifier] = ACTIONS(1932), + [sym__display_math_state_track_marker] = ACTIONS(1932), + [sym__inline_math_state_track_marker] = ACTIONS(1932), + [sym__code_span_start] = ACTIONS(1932), + [sym__html_comment] = ACTIONS(1932), + [sym_raw_specifier] = ACTIONS(1932), + [sym__autolink] = ACTIONS(1932), }, [STATE(374)] = { [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_QMARK] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_BSLASH] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1816), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1816), - [sym__escaped_characters] = ACTIONS(1816), - [sym__word] = ACTIONS(1816), - [sym__soft_line_ending] = ACTIONS(1816), - [sym__block_close] = ACTIONS(1816), - [sym__block_quote_start] = ACTIONS(1816), - [sym__indented_chunk_start] = ACTIONS(1816), - [sym_atx_h1_marker] = ACTIONS(1816), - [sym_atx_h2_marker] = ACTIONS(1816), - [sym_atx_h3_marker] = ACTIONS(1816), - [sym_atx_h4_marker] = ACTIONS(1816), - [sym_atx_h5_marker] = ACTIONS(1816), - [sym_atx_h6_marker] = ACTIONS(1816), - [sym__thematic_break] = ACTIONS(1816), - [sym__list_marker_minus] = ACTIONS(1816), - [sym__list_marker_plus] = ACTIONS(1816), - [sym__list_marker_star] = ACTIONS(1816), - [sym__list_marker_parenthesis] = ACTIONS(1816), - [sym__list_marker_dot] = ACTIONS(1816), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_example] = ACTIONS(1816), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1816), - [sym__fenced_code_block_start_backtick] = ACTIONS(1816), - [sym__fenced_code_block_start_tilde] = ACTIONS(1816), - [sym__blank_line_start] = ACTIONS(1816), - [sym_minus_metadata] = ACTIONS(1816), - [sym__pipe_table_start] = ACTIONS(1816), - [sym__fenced_div_start] = ACTIONS(1816), - [sym_ref_id_specifier] = ACTIONS(1816), - [sym__display_math_state_track_marker] = ACTIONS(1816), - [sym__inline_math_state_track_marker] = ACTIONS(1816), - [sym__code_span_start] = ACTIONS(1816), - [sym__html_comment] = ACTIONS(1816), - [sym_raw_specifier] = ACTIONS(1816), - [sym__autolink] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1818), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_PERCENT] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_QMARK] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_BSLASH] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1818), + [anon_sym__] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1818), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1818), + [sym__escaped_characters] = ACTIONS(1818), + [sym__word] = ACTIONS(1818), + [sym__soft_line_ending] = ACTIONS(1818), + [sym__block_close] = ACTIONS(1818), + [sym__block_quote_start] = ACTIONS(1818), + [sym__indented_chunk_start] = ACTIONS(1818), + [sym_atx_h1_marker] = ACTIONS(1818), + [sym_atx_h2_marker] = ACTIONS(1818), + [sym_atx_h3_marker] = ACTIONS(1818), + [sym_atx_h4_marker] = ACTIONS(1818), + [sym_atx_h5_marker] = ACTIONS(1818), + [sym_atx_h6_marker] = ACTIONS(1818), + [sym__thematic_break] = ACTIONS(1818), + [sym__list_marker_minus] = ACTIONS(1818), + [sym__list_marker_plus] = ACTIONS(1818), + [sym__list_marker_star] = ACTIONS(1818), + [sym__list_marker_parenthesis] = ACTIONS(1818), + [sym__list_marker_dot] = ACTIONS(1818), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_example] = ACTIONS(1818), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1818), + [sym__fenced_code_block_start_backtick] = ACTIONS(1818), + [sym__fenced_code_block_start_tilde] = ACTIONS(1818), + [sym__blank_line_start] = ACTIONS(1818), + [sym_minus_metadata] = ACTIONS(1818), + [sym__pipe_table_start] = ACTIONS(1818), + [sym__fenced_div_start] = ACTIONS(1818), + [sym_ref_id_specifier] = ACTIONS(1818), + [sym__display_math_state_track_marker] = ACTIONS(1818), + [sym__inline_math_state_track_marker] = ACTIONS(1818), + [sym__code_span_start] = ACTIONS(1818), + [sym__html_comment] = ACTIONS(1818), + [sym_raw_specifier] = ACTIONS(1818), + [sym__autolink] = ACTIONS(1818), }, [STATE(375)] = { [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1824), - [anon_sym_EQ] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_SLASH] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_QMARK] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_BSLASH] = ACTIONS(1826), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym__] = ACTIONS(1824), - [anon_sym_BQUOTE] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1824), - [sym__escaped_characters] = ACTIONS(1824), - [sym__word] = ACTIONS(1824), - [sym__soft_line_ending] = ACTIONS(1824), - [sym__block_close] = ACTIONS(1824), - [sym__block_quote_start] = ACTIONS(1824), - [sym__indented_chunk_start] = ACTIONS(1824), - [sym_atx_h1_marker] = ACTIONS(1824), - [sym_atx_h2_marker] = ACTIONS(1824), - [sym_atx_h3_marker] = ACTIONS(1824), - [sym_atx_h4_marker] = ACTIONS(1824), - [sym_atx_h5_marker] = ACTIONS(1824), - [sym_atx_h6_marker] = ACTIONS(1824), - [sym__thematic_break] = ACTIONS(1824), - [sym__list_marker_minus] = ACTIONS(1824), - [sym__list_marker_plus] = ACTIONS(1824), - [sym__list_marker_star] = ACTIONS(1824), - [sym__list_marker_parenthesis] = ACTIONS(1824), - [sym__list_marker_dot] = ACTIONS(1824), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_example] = ACTIONS(1824), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1824), - [sym__fenced_code_block_start_backtick] = ACTIONS(1824), - [sym__fenced_code_block_start_tilde] = ACTIONS(1824), - [sym__blank_line_start] = ACTIONS(1824), - [sym_minus_metadata] = ACTIONS(1824), - [sym__pipe_table_start] = ACTIONS(1824), - [sym__fenced_div_start] = ACTIONS(1824), - [sym_ref_id_specifier] = ACTIONS(1824), - [sym__display_math_state_track_marker] = ACTIONS(1824), - [sym__inline_math_state_track_marker] = ACTIONS(1824), - [sym__code_span_start] = ACTIONS(1824), - [sym__html_comment] = ACTIONS(1824), - [sym_raw_specifier] = ACTIONS(1824), - [sym__autolink] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1826), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1826), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_PERCENT] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_QMARK] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_BSLASH] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym__] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1826), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1826), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1826), + [sym__escaped_characters] = ACTIONS(1826), + [sym__word] = ACTIONS(1826), + [sym__soft_line_ending] = ACTIONS(1826), + [sym__block_close] = ACTIONS(1826), + [sym__block_quote_start] = ACTIONS(1826), + [sym__indented_chunk_start] = ACTIONS(1826), + [sym_atx_h1_marker] = ACTIONS(1826), + [sym_atx_h2_marker] = ACTIONS(1826), + [sym_atx_h3_marker] = ACTIONS(1826), + [sym_atx_h4_marker] = ACTIONS(1826), + [sym_atx_h5_marker] = ACTIONS(1826), + [sym_atx_h6_marker] = ACTIONS(1826), + [sym__thematic_break] = ACTIONS(1826), + [sym__list_marker_minus] = ACTIONS(1826), + [sym__list_marker_plus] = ACTIONS(1826), + [sym__list_marker_star] = ACTIONS(1826), + [sym__list_marker_parenthesis] = ACTIONS(1826), + [sym__list_marker_dot] = ACTIONS(1826), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_example] = ACTIONS(1826), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1826), + [sym__fenced_code_block_start_backtick] = ACTIONS(1826), + [sym__fenced_code_block_start_tilde] = ACTIONS(1826), + [sym__blank_line_start] = ACTIONS(1826), + [sym_minus_metadata] = ACTIONS(1826), + [sym__pipe_table_start] = ACTIONS(1826), + [sym__fenced_div_start] = ACTIONS(1826), + [sym_ref_id_specifier] = ACTIONS(1826), + [sym__display_math_state_track_marker] = ACTIONS(1826), + [sym__inline_math_state_track_marker] = ACTIONS(1826), + [sym__code_span_start] = ACTIONS(1826), + [sym__html_comment] = ACTIONS(1826), + [sym_raw_specifier] = ACTIONS(1826), + [sym__autolink] = ACTIONS(1826), }, [STATE(376)] = { [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_DOT] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_QMARK] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_BSLASH] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym__] = ACTIONS(1828), - [anon_sym_BQUOTE] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1828), - [sym__escaped_characters] = ACTIONS(1828), - [sym__word] = ACTIONS(1828), - [sym__soft_line_ending] = ACTIONS(1828), - [sym__block_close] = ACTIONS(1828), - [sym__block_quote_start] = ACTIONS(1828), - [sym__indented_chunk_start] = ACTIONS(1828), - [sym_atx_h1_marker] = ACTIONS(1828), - [sym_atx_h2_marker] = ACTIONS(1828), - [sym_atx_h3_marker] = ACTIONS(1828), - [sym_atx_h4_marker] = ACTIONS(1828), - [sym_atx_h5_marker] = ACTIONS(1828), - [sym_atx_h6_marker] = ACTIONS(1828), - [sym__thematic_break] = ACTIONS(1828), - [sym__list_marker_minus] = ACTIONS(1828), - [sym__list_marker_plus] = ACTIONS(1828), - [sym__list_marker_star] = ACTIONS(1828), - [sym__list_marker_parenthesis] = ACTIONS(1828), - [sym__list_marker_dot] = ACTIONS(1828), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_example] = ACTIONS(1828), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1828), - [sym__fenced_code_block_start_backtick] = ACTIONS(1828), - [sym__fenced_code_block_start_tilde] = ACTIONS(1828), - [sym__blank_line_start] = ACTIONS(1828), - [sym_minus_metadata] = ACTIONS(1828), - [sym__pipe_table_start] = ACTIONS(1828), - [sym__fenced_div_start] = ACTIONS(1828), - [sym_ref_id_specifier] = ACTIONS(1828), - [sym__display_math_state_track_marker] = ACTIONS(1828), - [sym__inline_math_state_track_marker] = ACTIONS(1828), - [sym__code_span_start] = ACTIONS(1828), - [sym__html_comment] = ACTIONS(1828), - [sym_raw_specifier] = ACTIONS(1828), - [sym__autolink] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1830), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_PERCENT] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_BSLASH] = ACTIONS(1828), + [anon_sym_RBRACK] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1830), + [anon_sym__] = ACTIONS(1830), + [anon_sym_BQUOTE] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1830), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1830), + [sym__escaped_characters] = ACTIONS(1830), + [sym__word] = ACTIONS(1830), + [sym__soft_line_ending] = ACTIONS(1830), + [sym__block_close] = ACTIONS(1830), + [sym__block_quote_start] = ACTIONS(1830), + [sym__indented_chunk_start] = ACTIONS(1830), + [sym_atx_h1_marker] = ACTIONS(1830), + [sym_atx_h2_marker] = ACTIONS(1830), + [sym_atx_h3_marker] = ACTIONS(1830), + [sym_atx_h4_marker] = ACTIONS(1830), + [sym_atx_h5_marker] = ACTIONS(1830), + [sym_atx_h6_marker] = ACTIONS(1830), + [sym__thematic_break] = ACTIONS(1830), + [sym__list_marker_minus] = ACTIONS(1830), + [sym__list_marker_plus] = ACTIONS(1830), + [sym__list_marker_star] = ACTIONS(1830), + [sym__list_marker_parenthesis] = ACTIONS(1830), + [sym__list_marker_dot] = ACTIONS(1830), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_example] = ACTIONS(1830), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1830), + [sym__fenced_code_block_start_backtick] = ACTIONS(1830), + [sym__fenced_code_block_start_tilde] = ACTIONS(1830), + [sym__blank_line_start] = ACTIONS(1830), + [sym_minus_metadata] = ACTIONS(1830), + [sym__pipe_table_start] = ACTIONS(1830), + [sym__fenced_div_start] = ACTIONS(1830), + [sym_ref_id_specifier] = ACTIONS(1830), + [sym__display_math_state_track_marker] = ACTIONS(1830), + [sym__inline_math_state_track_marker] = ACTIONS(1830), + [sym__code_span_start] = ACTIONS(1830), + [sym__html_comment] = ACTIONS(1830), + [sym_raw_specifier] = ACTIONS(1830), + [sym__autolink] = ACTIONS(1830), }, [STATE(377)] = { [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_QMARK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_BSLASH] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym__] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1834), - [sym__escaped_characters] = ACTIONS(1834), - [sym__word] = ACTIONS(1834), - [sym__soft_line_ending] = ACTIONS(1834), - [sym__block_close] = ACTIONS(1834), - [sym__block_quote_start] = ACTIONS(1834), - [sym__indented_chunk_start] = ACTIONS(1834), - [sym_atx_h1_marker] = ACTIONS(1834), - [sym_atx_h2_marker] = ACTIONS(1834), - [sym_atx_h3_marker] = ACTIONS(1834), - [sym_atx_h4_marker] = ACTIONS(1834), - [sym_atx_h5_marker] = ACTIONS(1834), - [sym_atx_h6_marker] = ACTIONS(1834), - [sym__thematic_break] = ACTIONS(1834), - [sym__list_marker_minus] = ACTIONS(1834), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1834), - [sym__list_marker_parenthesis] = ACTIONS(1834), - [sym__list_marker_dot] = ACTIONS(1834), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_example] = ACTIONS(1834), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1834), - [sym__fenced_code_block_start_backtick] = ACTIONS(1834), - [sym__fenced_code_block_start_tilde] = ACTIONS(1834), - [sym__blank_line_start] = ACTIONS(1834), - [sym_minus_metadata] = ACTIONS(1834), - [sym__pipe_table_start] = ACTIONS(1834), - [sym__fenced_div_start] = ACTIONS(1834), - [sym_ref_id_specifier] = ACTIONS(1834), - [sym__display_math_state_track_marker] = ACTIONS(1834), - [sym__inline_math_state_track_marker] = ACTIONS(1834), - [sym__code_span_start] = ACTIONS(1834), - [sym__html_comment] = ACTIONS(1834), - [sym_raw_specifier] = ACTIONS(1834), - [sym__autolink] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1836), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1836), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_QMARK] = ACTIONS(1836), + [anon_sym_AT] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_BSLASH] = ACTIONS(1834), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_CARET] = ACTIONS(1836), + [anon_sym__] = ACTIONS(1836), + [anon_sym_BQUOTE] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1836), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1836), + [sym__escaped_characters] = ACTIONS(1836), + [sym__word] = ACTIONS(1836), + [sym__soft_line_ending] = ACTIONS(1836), + [sym__block_close] = ACTIONS(1836), + [sym__block_quote_start] = ACTIONS(1836), + [sym__indented_chunk_start] = ACTIONS(1836), + [sym_atx_h1_marker] = ACTIONS(1836), + [sym_atx_h2_marker] = ACTIONS(1836), + [sym_atx_h3_marker] = ACTIONS(1836), + [sym_atx_h4_marker] = ACTIONS(1836), + [sym_atx_h5_marker] = ACTIONS(1836), + [sym_atx_h6_marker] = ACTIONS(1836), + [sym__thematic_break] = ACTIONS(1836), + [sym__list_marker_minus] = ACTIONS(1836), + [sym__list_marker_plus] = ACTIONS(1836), + [sym__list_marker_star] = ACTIONS(1836), + [sym__list_marker_parenthesis] = ACTIONS(1836), + [sym__list_marker_dot] = ACTIONS(1836), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_example] = ACTIONS(1836), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1836), + [sym__fenced_code_block_start_backtick] = ACTIONS(1836), + [sym__fenced_code_block_start_tilde] = ACTIONS(1836), + [sym__blank_line_start] = ACTIONS(1836), + [sym_minus_metadata] = ACTIONS(1836), + [sym__pipe_table_start] = ACTIONS(1836), + [sym__fenced_div_start] = ACTIONS(1836), + [sym_ref_id_specifier] = ACTIONS(1836), + [sym__display_math_state_track_marker] = ACTIONS(1836), + [sym__inline_math_state_track_marker] = ACTIONS(1836), + [sym__code_span_start] = ACTIONS(1836), + [sym__html_comment] = ACTIONS(1836), + [sym_raw_specifier] = ACTIONS(1836), + [sym__autolink] = ACTIONS(1836), }, [STATE(378)] = { [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_BSLASH] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym__] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1838), - [sym__escaped_characters] = ACTIONS(1838), - [sym__word] = ACTIONS(1838), - [sym__soft_line_ending] = ACTIONS(1838), - [sym__block_close] = ACTIONS(1838), - [sym__block_quote_start] = ACTIONS(1838), - [sym__indented_chunk_start] = ACTIONS(1838), - [sym_atx_h1_marker] = ACTIONS(1838), - [sym_atx_h2_marker] = ACTIONS(1838), - [sym_atx_h3_marker] = ACTIONS(1838), - [sym_atx_h4_marker] = ACTIONS(1838), - [sym_atx_h5_marker] = ACTIONS(1838), - [sym_atx_h6_marker] = ACTIONS(1838), - [sym__thematic_break] = ACTIONS(1838), - [sym__list_marker_minus] = ACTIONS(1838), - [sym__list_marker_plus] = ACTIONS(1838), - [sym__list_marker_star] = ACTIONS(1838), - [sym__list_marker_parenthesis] = ACTIONS(1838), - [sym__list_marker_dot] = ACTIONS(1838), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_example] = ACTIONS(1838), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1838), - [sym__fenced_code_block_start_backtick] = ACTIONS(1838), - [sym__fenced_code_block_start_tilde] = ACTIONS(1838), - [sym__blank_line_start] = ACTIONS(1838), - [sym_minus_metadata] = ACTIONS(1838), - [sym__pipe_table_start] = ACTIONS(1838), - [sym__fenced_div_start] = ACTIONS(1838), - [sym_ref_id_specifier] = ACTIONS(1838), - [sym__display_math_state_track_marker] = ACTIONS(1838), - [sym__inline_math_state_track_marker] = ACTIONS(1838), - [sym__code_span_start] = ACTIONS(1838), - [sym__html_comment] = ACTIONS(1838), - [sym_raw_specifier] = ACTIONS(1838), - [sym__autolink] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1840), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_PERCENT] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_COMMA] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(1840), + [anon_sym_SLASH] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_QMARK] = ACTIONS(1840), + [anon_sym_AT] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_BSLASH] = ACTIONS(1838), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_CARET] = ACTIONS(1840), + [anon_sym__] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_TILDE] = ACTIONS(1840), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1840), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1840), + [sym__escaped_characters] = ACTIONS(1840), + [sym__word] = ACTIONS(1840), + [sym__soft_line_ending] = ACTIONS(1840), + [sym__block_close] = ACTIONS(1840), + [sym__block_quote_start] = ACTIONS(1840), + [sym__indented_chunk_start] = ACTIONS(1840), + [sym_atx_h1_marker] = ACTIONS(1840), + [sym_atx_h2_marker] = ACTIONS(1840), + [sym_atx_h3_marker] = ACTIONS(1840), + [sym_atx_h4_marker] = ACTIONS(1840), + [sym_atx_h5_marker] = ACTIONS(1840), + [sym_atx_h6_marker] = ACTIONS(1840), + [sym__thematic_break] = ACTIONS(1840), + [sym__list_marker_minus] = ACTIONS(1840), + [sym__list_marker_plus] = ACTIONS(1840), + [sym__list_marker_star] = ACTIONS(1840), + [sym__list_marker_parenthesis] = ACTIONS(1840), + [sym__list_marker_dot] = ACTIONS(1840), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_example] = ACTIONS(1840), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1840), + [sym__fenced_code_block_start_backtick] = ACTIONS(1840), + [sym__fenced_code_block_start_tilde] = ACTIONS(1840), + [sym__blank_line_start] = ACTIONS(1840), + [sym_minus_metadata] = ACTIONS(1840), + [sym__pipe_table_start] = ACTIONS(1840), + [sym__fenced_div_start] = ACTIONS(1840), + [sym_ref_id_specifier] = ACTIONS(1840), + [sym__display_math_state_track_marker] = ACTIONS(1840), + [sym__inline_math_state_track_marker] = ACTIONS(1840), + [sym__code_span_start] = ACTIONS(1840), + [sym__html_comment] = ACTIONS(1840), + [sym_raw_specifier] = ACTIONS(1840), + [sym__autolink] = ACTIONS(1840), }, [STATE(379)] = { [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_SLASH] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_QMARK] = ACTIONS(1842), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_BSLASH] = ACTIONS(1844), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_CARET] = ACTIONS(1842), - [anon_sym__] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1842), - [sym__escaped_characters] = ACTIONS(1842), - [sym__word] = ACTIONS(1842), - [sym__soft_line_ending] = ACTIONS(1842), - [sym__block_close] = ACTIONS(1842), - [sym__block_quote_start] = ACTIONS(1842), - [sym__indented_chunk_start] = ACTIONS(1842), - [sym_atx_h1_marker] = ACTIONS(1842), - [sym_atx_h2_marker] = ACTIONS(1842), - [sym_atx_h3_marker] = ACTIONS(1842), - [sym_atx_h4_marker] = ACTIONS(1842), - [sym_atx_h5_marker] = ACTIONS(1842), - [sym_atx_h6_marker] = ACTIONS(1842), - [sym__thematic_break] = ACTIONS(1842), - [sym__list_marker_minus] = ACTIONS(1842), - [sym__list_marker_plus] = ACTIONS(1842), - [sym__list_marker_star] = ACTIONS(1842), - [sym__list_marker_parenthesis] = ACTIONS(1842), - [sym__list_marker_dot] = ACTIONS(1842), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_example] = ACTIONS(1842), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1842), - [sym__fenced_code_block_start_backtick] = ACTIONS(1842), - [sym__fenced_code_block_start_tilde] = ACTIONS(1842), - [sym__blank_line_start] = ACTIONS(1842), - [sym_minus_metadata] = ACTIONS(1842), - [sym__pipe_table_start] = ACTIONS(1842), - [sym__fenced_div_start] = ACTIONS(1842), - [sym_ref_id_specifier] = ACTIONS(1842), - [sym__display_math_state_track_marker] = ACTIONS(1842), - [sym__inline_math_state_track_marker] = ACTIONS(1842), - [sym__code_span_start] = ACTIONS(1842), - [sym__html_comment] = ACTIONS(1842), - [sym_raw_specifier] = ACTIONS(1842), - [sym__autolink] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1844), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1844), + [anon_sym_EQ] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1844), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_QMARK] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_BSLASH] = ACTIONS(1842), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym__] = ACTIONS(1844), + [anon_sym_BQUOTE] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1844), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1844), + [sym__escaped_characters] = ACTIONS(1844), + [sym__word] = ACTIONS(1844), + [sym__soft_line_ending] = ACTIONS(1844), + [sym__block_close] = ACTIONS(1844), + [sym__block_quote_start] = ACTIONS(1844), + [sym__indented_chunk_start] = ACTIONS(1844), + [sym_atx_h1_marker] = ACTIONS(1844), + [sym_atx_h2_marker] = ACTIONS(1844), + [sym_atx_h3_marker] = ACTIONS(1844), + [sym_atx_h4_marker] = ACTIONS(1844), + [sym_atx_h5_marker] = ACTIONS(1844), + [sym_atx_h6_marker] = ACTIONS(1844), + [sym__thematic_break] = ACTIONS(1844), + [sym__list_marker_minus] = ACTIONS(1844), + [sym__list_marker_plus] = ACTIONS(1844), + [sym__list_marker_star] = ACTIONS(1844), + [sym__list_marker_parenthesis] = ACTIONS(1844), + [sym__list_marker_dot] = ACTIONS(1844), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_example] = ACTIONS(1844), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1844), + [sym__fenced_code_block_start_backtick] = ACTIONS(1844), + [sym__fenced_code_block_start_tilde] = ACTIONS(1844), + [sym__blank_line_start] = ACTIONS(1844), + [sym_minus_metadata] = ACTIONS(1844), + [sym__pipe_table_start] = ACTIONS(1844), + [sym__fenced_div_start] = ACTIONS(1844), + [sym_ref_id_specifier] = ACTIONS(1844), + [sym__display_math_state_track_marker] = ACTIONS(1844), + [sym__inline_math_state_track_marker] = ACTIONS(1844), + [sym__code_span_start] = ACTIONS(1844), + [sym__html_comment] = ACTIONS(1844), + [sym_raw_specifier] = ACTIONS(1844), + [sym__autolink] = ACTIONS(1844), }, [STATE(380)] = { [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_COMMA] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_SLASH] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_QMARK] = ACTIONS(1846), - [anon_sym_AT] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_BSLASH] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1846), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym__] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1846), - [sym__escaped_characters] = ACTIONS(1846), - [sym__word] = ACTIONS(1846), - [sym__soft_line_ending] = ACTIONS(1846), - [sym__block_close] = ACTIONS(1846), - [sym__block_quote_start] = ACTIONS(1846), - [sym__indented_chunk_start] = ACTIONS(1846), - [sym_atx_h1_marker] = ACTIONS(1846), - [sym_atx_h2_marker] = ACTIONS(1846), - [sym_atx_h3_marker] = ACTIONS(1846), - [sym_atx_h4_marker] = ACTIONS(1846), - [sym_atx_h5_marker] = ACTIONS(1846), - [sym_atx_h6_marker] = ACTIONS(1846), - [sym__thematic_break] = ACTIONS(1846), - [sym__list_marker_minus] = ACTIONS(1846), - [sym__list_marker_plus] = ACTIONS(1846), - [sym__list_marker_star] = ACTIONS(1846), - [sym__list_marker_parenthesis] = ACTIONS(1846), - [sym__list_marker_dot] = ACTIONS(1846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_example] = ACTIONS(1846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1846), - [sym__fenced_code_block_start_tilde] = ACTIONS(1846), - [sym__blank_line_start] = ACTIONS(1846), - [sym_minus_metadata] = ACTIONS(1846), - [sym__pipe_table_start] = ACTIONS(1846), - [sym__fenced_div_start] = ACTIONS(1846), - [sym_ref_id_specifier] = ACTIONS(1846), - [sym__display_math_state_track_marker] = ACTIONS(1846), - [sym__inline_math_state_track_marker] = ACTIONS(1846), - [sym__code_span_start] = ACTIONS(1846), - [sym__html_comment] = ACTIONS(1846), - [sym_raw_specifier] = ACTIONS(1846), - [sym__autolink] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1848), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1848), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_QMARK] = ACTIONS(1848), + [anon_sym_AT] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_BSLASH] = ACTIONS(1846), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym__] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1848), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1848), + [sym__escaped_characters] = ACTIONS(1848), + [sym__word] = ACTIONS(1848), + [sym__soft_line_ending] = ACTIONS(1848), + [sym__block_close] = ACTIONS(1848), + [sym__block_quote_start] = ACTIONS(1848), + [sym__indented_chunk_start] = ACTIONS(1848), + [sym_atx_h1_marker] = ACTIONS(1848), + [sym_atx_h2_marker] = ACTIONS(1848), + [sym_atx_h3_marker] = ACTIONS(1848), + [sym_atx_h4_marker] = ACTIONS(1848), + [sym_atx_h5_marker] = ACTIONS(1848), + [sym_atx_h6_marker] = ACTIONS(1848), + [sym__thematic_break] = ACTIONS(1848), + [sym__list_marker_minus] = ACTIONS(1848), + [sym__list_marker_plus] = ACTIONS(1848), + [sym__list_marker_star] = ACTIONS(1848), + [sym__list_marker_parenthesis] = ACTIONS(1848), + [sym__list_marker_dot] = ACTIONS(1848), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_example] = ACTIONS(1848), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1848), + [sym__fenced_code_block_start_backtick] = ACTIONS(1848), + [sym__fenced_code_block_start_tilde] = ACTIONS(1848), + [sym__blank_line_start] = ACTIONS(1848), + [sym_minus_metadata] = ACTIONS(1848), + [sym__pipe_table_start] = ACTIONS(1848), + [sym__fenced_div_start] = ACTIONS(1848), + [sym_ref_id_specifier] = ACTIONS(1848), + [sym__display_math_state_track_marker] = ACTIONS(1848), + [sym__inline_math_state_track_marker] = ACTIONS(1848), + [sym__code_span_start] = ACTIONS(1848), + [sym__html_comment] = ACTIONS(1848), + [sym_raw_specifier] = ACTIONS(1848), + [sym__autolink] = ACTIONS(1848), }, [STATE(381)] = { [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1860), - [anon_sym_EQ] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1860), - [anon_sym_PERCENT] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_RPAREN] = ACTIONS(1860), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1860), - [anon_sym_COMMA] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_DOT] = ACTIONS(1860), - [anon_sym_SLASH] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_QMARK] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_BSLASH] = ACTIONS(1862), - [anon_sym_RBRACK] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym__] = ACTIONS(1860), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1860), - [sym__escaped_characters] = ACTIONS(1860), - [sym__word] = ACTIONS(1860), - [sym__soft_line_ending] = ACTIONS(1860), - [sym__block_close] = ACTIONS(1860), - [sym__block_quote_start] = ACTIONS(1860), - [sym__indented_chunk_start] = ACTIONS(1860), - [sym_atx_h1_marker] = ACTIONS(1860), - [sym_atx_h2_marker] = ACTIONS(1860), - [sym_atx_h3_marker] = ACTIONS(1860), - [sym_atx_h4_marker] = ACTIONS(1860), - [sym_atx_h5_marker] = ACTIONS(1860), - [sym_atx_h6_marker] = ACTIONS(1860), - [sym__thematic_break] = ACTIONS(1860), - [sym__list_marker_minus] = ACTIONS(1860), - [sym__list_marker_plus] = ACTIONS(1860), - [sym__list_marker_star] = ACTIONS(1860), - [sym__list_marker_parenthesis] = ACTIONS(1860), - [sym__list_marker_dot] = ACTIONS(1860), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_example] = ACTIONS(1860), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1860), - [sym__fenced_code_block_start_backtick] = ACTIONS(1860), - [sym__fenced_code_block_start_tilde] = ACTIONS(1860), - [sym__blank_line_start] = ACTIONS(1860), - [sym_minus_metadata] = ACTIONS(1860), - [sym__pipe_table_start] = ACTIONS(1860), - [sym__fenced_div_start] = ACTIONS(1860), - [sym_ref_id_specifier] = ACTIONS(1860), - [sym__display_math_state_track_marker] = ACTIONS(1860), - [sym__inline_math_state_track_marker] = ACTIONS(1860), - [sym__code_span_start] = ACTIONS(1860), - [sym__html_comment] = ACTIONS(1860), - [sym_raw_specifier] = ACTIONS(1860), - [sym__autolink] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1862), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_PERCENT] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_BSLASH] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym__] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1862), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1862), + [sym__escaped_characters] = ACTIONS(1862), + [sym__word] = ACTIONS(1862), + [sym__soft_line_ending] = ACTIONS(1862), + [sym__block_close] = ACTIONS(1862), + [sym__block_quote_start] = ACTIONS(1862), + [sym__indented_chunk_start] = ACTIONS(1862), + [sym_atx_h1_marker] = ACTIONS(1862), + [sym_atx_h2_marker] = ACTIONS(1862), + [sym_atx_h3_marker] = ACTIONS(1862), + [sym_atx_h4_marker] = ACTIONS(1862), + [sym_atx_h5_marker] = ACTIONS(1862), + [sym_atx_h6_marker] = ACTIONS(1862), + [sym__thematic_break] = ACTIONS(1862), + [sym__list_marker_minus] = ACTIONS(1862), + [sym__list_marker_plus] = ACTIONS(1862), + [sym__list_marker_star] = ACTIONS(1862), + [sym__list_marker_parenthesis] = ACTIONS(1862), + [sym__list_marker_dot] = ACTIONS(1862), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_example] = ACTIONS(1862), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1862), + [sym__fenced_code_block_start_backtick] = ACTIONS(1862), + [sym__fenced_code_block_start_tilde] = ACTIONS(1862), + [sym__blank_line_start] = ACTIONS(1862), + [sym_minus_metadata] = ACTIONS(1862), + [sym__pipe_table_start] = ACTIONS(1862), + [sym__fenced_div_start] = ACTIONS(1862), + [sym_ref_id_specifier] = ACTIONS(1862), + [sym__display_math_state_track_marker] = ACTIONS(1862), + [sym__inline_math_state_track_marker] = ACTIONS(1862), + [sym__code_span_start] = ACTIONS(1862), + [sym__html_comment] = ACTIONS(1862), + [sym_raw_specifier] = ACTIONS(1862), + [sym__autolink] = ACTIONS(1862), }, [STATE(382)] = { [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1880), - [anon_sym_EQ] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_COMMA] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_DOT] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_QMARK] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_BSLASH] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym__] = ACTIONS(1880), - [anon_sym_BQUOTE] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1880), - [sym__escaped_characters] = ACTIONS(1880), - [sym__word] = ACTIONS(1880), - [sym__soft_line_ending] = ACTIONS(1880), - [sym__block_close] = ACTIONS(1880), - [sym__block_quote_start] = ACTIONS(1880), - [sym__indented_chunk_start] = ACTIONS(1880), - [sym_atx_h1_marker] = ACTIONS(1880), - [sym_atx_h2_marker] = ACTIONS(1880), - [sym_atx_h3_marker] = ACTIONS(1880), - [sym_atx_h4_marker] = ACTIONS(1880), - [sym_atx_h5_marker] = ACTIONS(1880), - [sym_atx_h6_marker] = ACTIONS(1880), - [sym__thematic_break] = ACTIONS(1880), - [sym__list_marker_minus] = ACTIONS(1880), - [sym__list_marker_plus] = ACTIONS(1880), - [sym__list_marker_star] = ACTIONS(1880), - [sym__list_marker_parenthesis] = ACTIONS(1880), - [sym__list_marker_dot] = ACTIONS(1880), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_example] = ACTIONS(1880), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1880), - [sym__fenced_code_block_start_backtick] = ACTIONS(1880), - [sym__fenced_code_block_start_tilde] = ACTIONS(1880), - [sym__blank_line_start] = ACTIONS(1880), - [sym_minus_metadata] = ACTIONS(1880), - [sym__pipe_table_start] = ACTIONS(1880), - [sym__fenced_div_start] = ACTIONS(1880), - [sym_ref_id_specifier] = ACTIONS(1880), - [sym__display_math_state_track_marker] = ACTIONS(1880), - [sym__inline_math_state_track_marker] = ACTIONS(1880), - [sym__code_span_start] = ACTIONS(1880), - [sym__html_comment] = ACTIONS(1880), - [sym_raw_specifier] = ACTIONS(1880), - [sym__autolink] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1882), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1882), + [anon_sym_PERCENT] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_BSLASH] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym__] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1882), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1882), + [sym__escaped_characters] = ACTIONS(1882), + [sym__word] = ACTIONS(1882), + [sym__soft_line_ending] = ACTIONS(1882), + [sym__block_close] = ACTIONS(1882), + [sym__block_quote_start] = ACTIONS(1882), + [sym__indented_chunk_start] = ACTIONS(1882), + [sym_atx_h1_marker] = ACTIONS(1882), + [sym_atx_h2_marker] = ACTIONS(1882), + [sym_atx_h3_marker] = ACTIONS(1882), + [sym_atx_h4_marker] = ACTIONS(1882), + [sym_atx_h5_marker] = ACTIONS(1882), + [sym_atx_h6_marker] = ACTIONS(1882), + [sym__thematic_break] = ACTIONS(1882), + [sym__list_marker_minus] = ACTIONS(1882), + [sym__list_marker_plus] = ACTIONS(1882), + [sym__list_marker_star] = ACTIONS(1882), + [sym__list_marker_parenthesis] = ACTIONS(1882), + [sym__list_marker_dot] = ACTIONS(1882), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_example] = ACTIONS(1882), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1882), + [sym__fenced_code_block_start_backtick] = ACTIONS(1882), + [sym__fenced_code_block_start_tilde] = ACTIONS(1882), + [sym__blank_line_start] = ACTIONS(1882), + [sym_minus_metadata] = ACTIONS(1882), + [sym__pipe_table_start] = ACTIONS(1882), + [sym__fenced_div_start] = ACTIONS(1882), + [sym_ref_id_specifier] = ACTIONS(1882), + [sym__display_math_state_track_marker] = ACTIONS(1882), + [sym__inline_math_state_track_marker] = ACTIONS(1882), + [sym__code_span_start] = ACTIONS(1882), + [sym__html_comment] = ACTIONS(1882), + [sym_raw_specifier] = ACTIONS(1882), + [sym__autolink] = ACTIONS(1882), }, [STATE(383)] = { [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_DOT] = ACTIONS(1884), - [anon_sym_SLASH] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_QMARK] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_BSLASH] = ACTIONS(1886), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym__] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1884), - [sym__escaped_characters] = ACTIONS(1884), - [sym__word] = ACTIONS(1884), - [sym__soft_line_ending] = ACTIONS(1884), - [sym__block_close] = ACTIONS(1884), - [sym__block_quote_start] = ACTIONS(1884), - [sym__indented_chunk_start] = ACTIONS(1884), - [sym_atx_h1_marker] = ACTIONS(1884), - [sym_atx_h2_marker] = ACTIONS(1884), - [sym_atx_h3_marker] = ACTIONS(1884), - [sym_atx_h4_marker] = ACTIONS(1884), - [sym_atx_h5_marker] = ACTIONS(1884), - [sym_atx_h6_marker] = ACTIONS(1884), - [sym__thematic_break] = ACTIONS(1884), - [sym__list_marker_minus] = ACTIONS(1884), - [sym__list_marker_plus] = ACTIONS(1884), - [sym__list_marker_star] = ACTIONS(1884), - [sym__list_marker_parenthesis] = ACTIONS(1884), - [sym__list_marker_dot] = ACTIONS(1884), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_example] = ACTIONS(1884), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1884), - [sym__fenced_code_block_start_backtick] = ACTIONS(1884), - [sym__fenced_code_block_start_tilde] = ACTIONS(1884), - [sym__blank_line_start] = ACTIONS(1884), - [sym_minus_metadata] = ACTIONS(1884), - [sym__pipe_table_start] = ACTIONS(1884), - [sym__fenced_div_start] = ACTIONS(1884), - [sym_ref_id_specifier] = ACTIONS(1884), - [sym__display_math_state_track_marker] = ACTIONS(1884), - [sym__inline_math_state_track_marker] = ACTIONS(1884), - [sym__code_span_start] = ACTIONS(1884), - [sym__html_comment] = ACTIONS(1884), - [sym_raw_specifier] = ACTIONS(1884), - [sym__autolink] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1886), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_QMARK] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_BSLASH] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1886), + [anon_sym__] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1886), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1886), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1886), + [sym__escaped_characters] = ACTIONS(1886), + [sym__word] = ACTIONS(1886), + [sym__soft_line_ending] = ACTIONS(1886), + [sym__block_close] = ACTIONS(1886), + [sym__block_quote_start] = ACTIONS(1886), + [sym__indented_chunk_start] = ACTIONS(1886), + [sym_atx_h1_marker] = ACTIONS(1886), + [sym_atx_h2_marker] = ACTIONS(1886), + [sym_atx_h3_marker] = ACTIONS(1886), + [sym_atx_h4_marker] = ACTIONS(1886), + [sym_atx_h5_marker] = ACTIONS(1886), + [sym_atx_h6_marker] = ACTIONS(1886), + [sym__thematic_break] = ACTIONS(1886), + [sym__list_marker_minus] = ACTIONS(1886), + [sym__list_marker_plus] = ACTIONS(1886), + [sym__list_marker_star] = ACTIONS(1886), + [sym__list_marker_parenthesis] = ACTIONS(1886), + [sym__list_marker_dot] = ACTIONS(1886), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_example] = ACTIONS(1886), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1886), + [sym__fenced_code_block_start_backtick] = ACTIONS(1886), + [sym__fenced_code_block_start_tilde] = ACTIONS(1886), + [sym__blank_line_start] = ACTIONS(1886), + [sym_minus_metadata] = ACTIONS(1886), + [sym__pipe_table_start] = ACTIONS(1886), + [sym__fenced_div_start] = ACTIONS(1886), + [sym_ref_id_specifier] = ACTIONS(1886), + [sym__display_math_state_track_marker] = ACTIONS(1886), + [sym__inline_math_state_track_marker] = ACTIONS(1886), + [sym__code_span_start] = ACTIONS(1886), + [sym__html_comment] = ACTIONS(1886), + [sym_raw_specifier] = ACTIONS(1886), + [sym__autolink] = ACTIONS(1886), }, [STATE(384)] = { [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1912), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [anon_sym_PERCENT] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_COMMA] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(1912), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_QMARK] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_BSLASH] = ACTIONS(1914), - [anon_sym_RBRACK] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1912), - [anon_sym__] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1912), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1912), - [sym__escaped_characters] = ACTIONS(1912), - [sym__word] = ACTIONS(1912), - [sym__soft_line_ending] = ACTIONS(1912), - [sym__block_close] = ACTIONS(1912), - [sym__block_quote_start] = ACTIONS(1912), - [sym__indented_chunk_start] = ACTIONS(1912), - [sym_atx_h1_marker] = ACTIONS(1912), - [sym_atx_h2_marker] = ACTIONS(1912), - [sym_atx_h3_marker] = ACTIONS(1912), - [sym_atx_h4_marker] = ACTIONS(1912), - [sym_atx_h5_marker] = ACTIONS(1912), - [sym_atx_h6_marker] = ACTIONS(1912), - [sym__thematic_break] = ACTIONS(1912), - [sym__list_marker_minus] = ACTIONS(1912), - [sym__list_marker_plus] = ACTIONS(1912), - [sym__list_marker_star] = ACTIONS(1912), - [sym__list_marker_parenthesis] = ACTIONS(1912), - [sym__list_marker_dot] = ACTIONS(1912), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_example] = ACTIONS(1912), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1912), - [sym__fenced_code_block_start_backtick] = ACTIONS(1912), - [sym__fenced_code_block_start_tilde] = ACTIONS(1912), - [sym__blank_line_start] = ACTIONS(1912), - [sym_minus_metadata] = ACTIONS(1912), - [sym__pipe_table_start] = ACTIONS(1912), - [sym__fenced_div_start] = ACTIONS(1912), - [sym_ref_id_specifier] = ACTIONS(1912), - [sym__display_math_state_track_marker] = ACTIONS(1912), - [sym__inline_math_state_track_marker] = ACTIONS(1912), - [sym__code_span_start] = ACTIONS(1912), - [sym__html_comment] = ACTIONS(1912), - [sym_raw_specifier] = ACTIONS(1912), - [sym__autolink] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1914), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_PERCENT] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_DOT] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_QMARK] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_BSLASH] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym__] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1914), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1914), + [sym__escaped_characters] = ACTIONS(1914), + [sym__word] = ACTIONS(1914), + [sym__soft_line_ending] = ACTIONS(1914), + [sym__block_close] = ACTIONS(1914), + [sym__block_quote_start] = ACTIONS(1914), + [sym__indented_chunk_start] = ACTIONS(1914), + [sym_atx_h1_marker] = ACTIONS(1914), + [sym_atx_h2_marker] = ACTIONS(1914), + [sym_atx_h3_marker] = ACTIONS(1914), + [sym_atx_h4_marker] = ACTIONS(1914), + [sym_atx_h5_marker] = ACTIONS(1914), + [sym_atx_h6_marker] = ACTIONS(1914), + [sym__thematic_break] = ACTIONS(1914), + [sym__list_marker_minus] = ACTIONS(1914), + [sym__list_marker_plus] = ACTIONS(1914), + [sym__list_marker_star] = ACTIONS(1914), + [sym__list_marker_parenthesis] = ACTIONS(1914), + [sym__list_marker_dot] = ACTIONS(1914), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_example] = ACTIONS(1914), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1914), + [sym__fenced_code_block_start_backtick] = ACTIONS(1914), + [sym__fenced_code_block_start_tilde] = ACTIONS(1914), + [sym__blank_line_start] = ACTIONS(1914), + [sym_minus_metadata] = ACTIONS(1914), + [sym__pipe_table_start] = ACTIONS(1914), + [sym__fenced_div_start] = ACTIONS(1914), + [sym_ref_id_specifier] = ACTIONS(1914), + [sym__display_math_state_track_marker] = ACTIONS(1914), + [sym__inline_math_state_track_marker] = ACTIONS(1914), + [sym__code_span_start] = ACTIONS(1914), + [sym__html_comment] = ACTIONS(1914), + [sym_raw_specifier] = ACTIONS(1914), + [sym__autolink] = ACTIONS(1914), }, [STATE(385)] = { [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1938), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_DOT] = ACTIONS(1938), - [anon_sym_SLASH] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_QMARK] = ACTIONS(1938), - [anon_sym_AT] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_BSLASH] = ACTIONS(1940), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_CARET] = ACTIONS(1938), - [anon_sym__] = ACTIONS(1938), - [anon_sym_BQUOTE] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1938), - [sym__escaped_characters] = ACTIONS(1938), - [sym__word] = ACTIONS(1938), - [sym__soft_line_ending] = ACTIONS(1938), - [sym__block_close] = ACTIONS(1938), - [sym__block_quote_start] = ACTIONS(1938), - [sym__indented_chunk_start] = ACTIONS(1938), - [sym_atx_h1_marker] = ACTIONS(1938), - [sym_atx_h2_marker] = ACTIONS(1938), - [sym_atx_h3_marker] = ACTIONS(1938), - [sym_atx_h4_marker] = ACTIONS(1938), - [sym_atx_h5_marker] = ACTIONS(1938), - [sym_atx_h6_marker] = ACTIONS(1938), - [sym__thematic_break] = ACTIONS(1938), - [sym__list_marker_minus] = ACTIONS(1938), - [sym__list_marker_plus] = ACTIONS(1938), - [sym__list_marker_star] = ACTIONS(1938), - [sym__list_marker_parenthesis] = ACTIONS(1938), - [sym__list_marker_dot] = ACTIONS(1938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_example] = ACTIONS(1938), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1938), - [sym__fenced_code_block_start_backtick] = ACTIONS(1938), - [sym__fenced_code_block_start_tilde] = ACTIONS(1938), - [sym__blank_line_start] = ACTIONS(1938), - [sym_minus_metadata] = ACTIONS(1938), - [sym__pipe_table_start] = ACTIONS(1938), - [sym__fenced_div_start] = ACTIONS(1938), - [sym_ref_id_specifier] = ACTIONS(1938), - [sym__display_math_state_track_marker] = ACTIONS(1938), - [sym__inline_math_state_track_marker] = ACTIONS(1938), - [sym__code_span_start] = ACTIONS(1938), - [sym__html_comment] = ACTIONS(1938), - [sym_raw_specifier] = ACTIONS(1938), - [sym__autolink] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1940), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_PERCENT] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_DOT] = ACTIONS(1940), + [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(1940), + [anon_sym_AT] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1938), + [anon_sym_RBRACK] = ACTIONS(1940), + [anon_sym_CARET] = ACTIONS(1940), + [anon_sym__] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_TILDE] = ACTIONS(1940), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1940), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1940), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1940), + [sym__escaped_characters] = ACTIONS(1940), + [sym__word] = ACTIONS(1940), + [sym__soft_line_ending] = ACTIONS(1940), + [sym__block_close] = ACTIONS(1940), + [sym__block_quote_start] = ACTIONS(1940), + [sym__indented_chunk_start] = ACTIONS(1940), + [sym_atx_h1_marker] = ACTIONS(1940), + [sym_atx_h2_marker] = ACTIONS(1940), + [sym_atx_h3_marker] = ACTIONS(1940), + [sym_atx_h4_marker] = ACTIONS(1940), + [sym_atx_h5_marker] = ACTIONS(1940), + [sym_atx_h6_marker] = ACTIONS(1940), + [sym__thematic_break] = ACTIONS(1940), + [sym__list_marker_minus] = ACTIONS(1940), + [sym__list_marker_plus] = ACTIONS(1940), + [sym__list_marker_star] = ACTIONS(1940), + [sym__list_marker_parenthesis] = ACTIONS(1940), + [sym__list_marker_dot] = ACTIONS(1940), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_example] = ACTIONS(1940), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1940), + [sym__fenced_code_block_start_backtick] = ACTIONS(1940), + [sym__fenced_code_block_start_tilde] = ACTIONS(1940), + [sym__blank_line_start] = ACTIONS(1940), + [sym_minus_metadata] = ACTIONS(1940), + [sym__pipe_table_start] = ACTIONS(1940), + [sym__fenced_div_start] = ACTIONS(1940), + [sym_ref_id_specifier] = ACTIONS(1940), + [sym__display_math_state_track_marker] = ACTIONS(1940), + [sym__inline_math_state_track_marker] = ACTIONS(1940), + [sym__code_span_start] = ACTIONS(1940), + [sym__html_comment] = ACTIONS(1940), + [sym_raw_specifier] = ACTIONS(1940), + [sym__autolink] = ACTIONS(1940), }, [STATE(386)] = { [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1948), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1948), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_PERCENT] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_COMMA] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(1948), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_BSLASH] = ACTIONS(1950), - [anon_sym_RBRACK] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym__] = ACTIONS(1948), - [anon_sym_BQUOTE] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1948), - [sym__escaped_characters] = ACTIONS(1948), - [sym__word] = ACTIONS(1948), - [sym__soft_line_ending] = ACTIONS(1948), - [sym__block_close] = ACTIONS(1948), - [sym__block_quote_start] = ACTIONS(1948), - [sym__indented_chunk_start] = ACTIONS(1948), - [sym_atx_h1_marker] = ACTIONS(1948), - [sym_atx_h2_marker] = ACTIONS(1948), - [sym_atx_h3_marker] = ACTIONS(1948), - [sym_atx_h4_marker] = ACTIONS(1948), - [sym_atx_h5_marker] = ACTIONS(1948), - [sym_atx_h6_marker] = ACTIONS(1948), - [sym__thematic_break] = ACTIONS(1948), - [sym__list_marker_minus] = ACTIONS(1948), - [sym__list_marker_plus] = ACTIONS(1948), - [sym__list_marker_star] = ACTIONS(1948), - [sym__list_marker_parenthesis] = ACTIONS(1948), - [sym__list_marker_dot] = ACTIONS(1948), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_example] = ACTIONS(1948), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1948), - [sym__fenced_code_block_start_backtick] = ACTIONS(1948), - [sym__fenced_code_block_start_tilde] = ACTIONS(1948), - [sym__blank_line_start] = ACTIONS(1948), - [sym_minus_metadata] = ACTIONS(1948), - [sym__pipe_table_start] = ACTIONS(1948), - [sym__fenced_div_start] = ACTIONS(1948), - [sym_ref_id_specifier] = ACTIONS(1948), - [sym__display_math_state_track_marker] = ACTIONS(1948), - [sym__inline_math_state_track_marker] = ACTIONS(1948), - [sym__code_span_start] = ACTIONS(1948), - [sym__html_comment] = ACTIONS(1948), - [sym_raw_specifier] = ACTIONS(1948), - [sym__autolink] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1950), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1950), + [anon_sym_COMMA] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_DOT] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_QMARK] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_BSLASH] = ACTIONS(1948), + [anon_sym_RBRACK] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym__] = ACTIONS(1950), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1950), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1950), + [sym__escaped_characters] = ACTIONS(1950), + [sym__word] = ACTIONS(1950), + [sym__soft_line_ending] = ACTIONS(1950), + [sym__block_close] = ACTIONS(1950), + [sym__block_quote_start] = ACTIONS(1950), + [sym__indented_chunk_start] = ACTIONS(1950), + [sym_atx_h1_marker] = ACTIONS(1950), + [sym_atx_h2_marker] = ACTIONS(1950), + [sym_atx_h3_marker] = ACTIONS(1950), + [sym_atx_h4_marker] = ACTIONS(1950), + [sym_atx_h5_marker] = ACTIONS(1950), + [sym_atx_h6_marker] = ACTIONS(1950), + [sym__thematic_break] = ACTIONS(1950), + [sym__list_marker_minus] = ACTIONS(1950), + [sym__list_marker_plus] = ACTIONS(1950), + [sym__list_marker_star] = ACTIONS(1950), + [sym__list_marker_parenthesis] = ACTIONS(1950), + [sym__list_marker_dot] = ACTIONS(1950), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_example] = ACTIONS(1950), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1950), + [sym__fenced_code_block_start_backtick] = ACTIONS(1950), + [sym__fenced_code_block_start_tilde] = ACTIONS(1950), + [sym__blank_line_start] = ACTIONS(1950), + [sym_minus_metadata] = ACTIONS(1950), + [sym__pipe_table_start] = ACTIONS(1950), + [sym__fenced_div_start] = ACTIONS(1950), + [sym_ref_id_specifier] = ACTIONS(1950), + [sym__display_math_state_track_marker] = ACTIONS(1950), + [sym__inline_math_state_track_marker] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1950), + [sym__html_comment] = ACTIONS(1950), + [sym_raw_specifier] = ACTIONS(1950), + [sym__autolink] = ACTIONS(1950), }, [STATE(387)] = { [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1956), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1956), - [anon_sym_PERCENT] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_BSLASH] = ACTIONS(1958), - [anon_sym_RBRACK] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1956), - [anon_sym__] = ACTIONS(1956), - [anon_sym_BQUOTE] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1956), - [sym__escaped_characters] = ACTIONS(1956), - [sym__word] = ACTIONS(1956), - [sym__soft_line_ending] = ACTIONS(1956), - [sym__block_close] = ACTIONS(1956), - [sym__block_quote_start] = ACTIONS(1956), - [sym__indented_chunk_start] = ACTIONS(1956), - [sym_atx_h1_marker] = ACTIONS(1956), - [sym_atx_h2_marker] = ACTIONS(1956), - [sym_atx_h3_marker] = ACTIONS(1956), - [sym_atx_h4_marker] = ACTIONS(1956), - [sym_atx_h5_marker] = ACTIONS(1956), - [sym_atx_h6_marker] = ACTIONS(1956), - [sym__thematic_break] = ACTIONS(1956), - [sym__list_marker_minus] = ACTIONS(1956), - [sym__list_marker_plus] = ACTIONS(1956), - [sym__list_marker_star] = ACTIONS(1956), - [sym__list_marker_parenthesis] = ACTIONS(1956), - [sym__list_marker_dot] = ACTIONS(1956), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_example] = ACTIONS(1956), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1956), - [sym__fenced_code_block_start_backtick] = ACTIONS(1956), - [sym__fenced_code_block_start_tilde] = ACTIONS(1956), - [sym__blank_line_start] = ACTIONS(1956), - [sym_minus_metadata] = ACTIONS(1956), - [sym__pipe_table_start] = ACTIONS(1956), - [sym__fenced_div_start] = ACTIONS(1956), - [sym_ref_id_specifier] = ACTIONS(1956), - [sym__display_math_state_track_marker] = ACTIONS(1956), - [sym__inline_math_state_track_marker] = ACTIONS(1956), - [sym__code_span_start] = ACTIONS(1956), - [sym__html_comment] = ACTIONS(1956), - [sym_raw_specifier] = ACTIONS(1956), - [sym__autolink] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1958), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_PLUS] = ACTIONS(1958), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_DOT] = ACTIONS(1958), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_QMARK] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_BSLASH] = ACTIONS(1956), + [anon_sym_RBRACK] = ACTIONS(1958), + [anon_sym_CARET] = ACTIONS(1958), + [anon_sym__] = ACTIONS(1958), + [anon_sym_BQUOTE] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1958), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1958), + [sym__escaped_characters] = ACTIONS(1958), + [sym__word] = ACTIONS(1958), + [sym__soft_line_ending] = ACTIONS(1958), + [sym__block_close] = ACTIONS(1958), + [sym__block_quote_start] = ACTIONS(1958), + [sym__indented_chunk_start] = ACTIONS(1958), + [sym_atx_h1_marker] = ACTIONS(1958), + [sym_atx_h2_marker] = ACTIONS(1958), + [sym_atx_h3_marker] = ACTIONS(1958), + [sym_atx_h4_marker] = ACTIONS(1958), + [sym_atx_h5_marker] = ACTIONS(1958), + [sym_atx_h6_marker] = ACTIONS(1958), + [sym__thematic_break] = ACTIONS(1958), + [sym__list_marker_minus] = ACTIONS(1958), + [sym__list_marker_plus] = ACTIONS(1958), + [sym__list_marker_star] = ACTIONS(1958), + [sym__list_marker_parenthesis] = ACTIONS(1958), + [sym__list_marker_dot] = ACTIONS(1958), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_example] = ACTIONS(1958), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1958), + [sym__fenced_code_block_start_backtick] = ACTIONS(1958), + [sym__fenced_code_block_start_tilde] = ACTIONS(1958), + [sym__blank_line_start] = ACTIONS(1958), + [sym_minus_metadata] = ACTIONS(1958), + [sym__pipe_table_start] = ACTIONS(1958), + [sym__fenced_div_start] = ACTIONS(1958), + [sym_ref_id_specifier] = ACTIONS(1958), + [sym__display_math_state_track_marker] = ACTIONS(1958), + [sym__inline_math_state_track_marker] = ACTIONS(1958), + [sym__code_span_start] = ACTIONS(1958), + [sym__html_comment] = ACTIONS(1958), + [sym_raw_specifier] = ACTIONS(1958), + [sym__autolink] = ACTIONS(1958), }, [STATE(388)] = { - [ts_builtin_sym_end] = ACTIONS(1944), + [ts_builtin_sym_end] = ACTIONS(1946), [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1944), - [anon_sym_EQ] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_DOLLAR] = ACTIONS(1944), - [anon_sym_PERCENT] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_DOT] = ACTIONS(1944), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_BSLASH] = ACTIONS(1946), - [anon_sym_RBRACK] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym__] = ACTIONS(1944), - [anon_sym_BQUOTE] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1944), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1944), - [sym__escaped_characters] = ACTIONS(1944), - [sym__word] = ACTIONS(1944), - [sym__soft_line_ending] = ACTIONS(1944), - [sym__block_quote_start] = ACTIONS(1944), - [sym__indented_chunk_start] = ACTIONS(1944), - [sym_atx_h1_marker] = ACTIONS(1944), - [sym_atx_h2_marker] = ACTIONS(1944), - [sym_atx_h3_marker] = ACTIONS(1944), - [sym_atx_h4_marker] = ACTIONS(1944), - [sym_atx_h5_marker] = ACTIONS(1944), - [sym_atx_h6_marker] = ACTIONS(1944), - [sym__thematic_break] = ACTIONS(1944), - [sym__list_marker_minus] = ACTIONS(1944), - [sym__list_marker_plus] = ACTIONS(1944), - [sym__list_marker_star] = ACTIONS(1944), - [sym__list_marker_parenthesis] = ACTIONS(1944), - [sym__list_marker_dot] = ACTIONS(1944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1944), - [sym__list_marker_example] = ACTIONS(1944), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1944), - [sym__fenced_code_block_start_backtick] = ACTIONS(1944), - [sym__fenced_code_block_start_tilde] = ACTIONS(1944), - [sym__blank_line_start] = ACTIONS(1944), - [sym_minus_metadata] = ACTIONS(1944), - [sym__pipe_table_start] = ACTIONS(1944), - [sym__fenced_div_start] = ACTIONS(1944), - [sym_ref_id_specifier] = ACTIONS(1944), - [sym__display_math_state_track_marker] = ACTIONS(1944), - [sym__inline_math_state_track_marker] = ACTIONS(1944), - [sym__code_span_start] = ACTIONS(1944), - [sym__html_comment] = ACTIONS(1944), - [sym_raw_specifier] = ACTIONS(1944), - [sym__autolink] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1946), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1946), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_DOLLAR] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_RPAREN] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_COMMA] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_DOT] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_QMARK] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_BSLASH] = ACTIONS(1944), + [anon_sym_RBRACK] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym__] = ACTIONS(1946), + [anon_sym_BQUOTE] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1946), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1946), + [sym__escaped_characters] = ACTIONS(1946), + [sym__word] = ACTIONS(1946), + [sym__soft_line_ending] = ACTIONS(1946), + [sym__block_quote_start] = ACTIONS(1946), + [sym__indented_chunk_start] = ACTIONS(1946), + [sym_atx_h1_marker] = ACTIONS(1946), + [sym_atx_h2_marker] = ACTIONS(1946), + [sym_atx_h3_marker] = ACTIONS(1946), + [sym_atx_h4_marker] = ACTIONS(1946), + [sym_atx_h5_marker] = ACTIONS(1946), + [sym_atx_h6_marker] = ACTIONS(1946), + [sym__thematic_break] = ACTIONS(1946), + [sym__list_marker_minus] = ACTIONS(1946), + [sym__list_marker_plus] = ACTIONS(1946), + [sym__list_marker_star] = ACTIONS(1946), + [sym__list_marker_parenthesis] = ACTIONS(1946), + [sym__list_marker_dot] = ACTIONS(1946), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1946), + [sym__list_marker_example] = ACTIONS(1946), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1946), + [sym__fenced_code_block_start_backtick] = ACTIONS(1946), + [sym__fenced_code_block_start_tilde] = ACTIONS(1946), + [sym__blank_line_start] = ACTIONS(1946), + [sym_minus_metadata] = ACTIONS(1946), + [sym__pipe_table_start] = ACTIONS(1946), + [sym__fenced_div_start] = ACTIONS(1946), + [sym_ref_id_specifier] = ACTIONS(1946), + [sym__display_math_state_track_marker] = ACTIONS(1946), + [sym__inline_math_state_track_marker] = ACTIONS(1946), + [sym__code_span_start] = ACTIONS(1946), + [sym__html_comment] = ACTIONS(1946), + [sym_raw_specifier] = ACTIONS(1946), + [sym__autolink] = ACTIONS(1946), }, [STATE(389)] = { - [ts_builtin_sym_end] = ACTIONS(1960), + [ts_builtin_sym_end] = ACTIONS(1962), [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1960), - [anon_sym_EQ] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_PERCENT] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1960), - [anon_sym_RPAREN] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_COMMA] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_DOT] = ACTIONS(1960), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_QMARK] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_BSLASH] = ACTIONS(1962), - [anon_sym_RBRACK] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym__] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1960), - [sym__escaped_characters] = ACTIONS(1960), - [sym__word] = ACTIONS(1960), - [sym__soft_line_ending] = ACTIONS(1960), - [sym__block_quote_start] = ACTIONS(1960), - [sym__indented_chunk_start] = ACTIONS(1960), - [sym_atx_h1_marker] = ACTIONS(1960), - [sym_atx_h2_marker] = ACTIONS(1960), - [sym_atx_h3_marker] = ACTIONS(1960), - [sym_atx_h4_marker] = ACTIONS(1960), - [sym_atx_h5_marker] = ACTIONS(1960), - [sym_atx_h6_marker] = ACTIONS(1960), - [sym__thematic_break] = ACTIONS(1960), - [sym__list_marker_minus] = ACTIONS(1960), - [sym__list_marker_plus] = ACTIONS(1960), - [sym__list_marker_star] = ACTIONS(1960), - [sym__list_marker_parenthesis] = ACTIONS(1960), - [sym__list_marker_dot] = ACTIONS(1960), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1960), - [sym__list_marker_example] = ACTIONS(1960), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1960), - [sym__fenced_code_block_start_backtick] = ACTIONS(1960), - [sym__fenced_code_block_start_tilde] = ACTIONS(1960), - [sym__blank_line_start] = ACTIONS(1960), - [sym_minus_metadata] = ACTIONS(1960), - [sym__pipe_table_start] = ACTIONS(1960), - [sym__fenced_div_start] = ACTIONS(1960), - [sym_ref_id_specifier] = ACTIONS(1960), - [sym__display_math_state_track_marker] = ACTIONS(1960), - [sym__inline_math_state_track_marker] = ACTIONS(1960), - [sym__code_span_start] = ACTIONS(1960), - [sym__html_comment] = ACTIONS(1960), - [sym_raw_specifier] = ACTIONS(1960), - [sym__autolink] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1962), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1962), + [anon_sym_EQ] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_DOLLAR] = ACTIONS(1962), + [anon_sym_PERCENT] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_RPAREN] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_PLUS] = ACTIONS(1962), + [anon_sym_COMMA] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_DOT] = ACTIONS(1962), + [anon_sym_SLASH] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_QMARK] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_BSLASH] = ACTIONS(1960), + [anon_sym_RBRACK] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1962), + [anon_sym__] = ACTIONS(1962), + [anon_sym_BQUOTE] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1962), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1962), + [sym__escaped_characters] = ACTIONS(1962), + [sym__word] = ACTIONS(1962), + [sym__soft_line_ending] = ACTIONS(1962), + [sym__block_quote_start] = ACTIONS(1962), + [sym__indented_chunk_start] = ACTIONS(1962), + [sym_atx_h1_marker] = ACTIONS(1962), + [sym_atx_h2_marker] = ACTIONS(1962), + [sym_atx_h3_marker] = ACTIONS(1962), + [sym_atx_h4_marker] = ACTIONS(1962), + [sym_atx_h5_marker] = ACTIONS(1962), + [sym_atx_h6_marker] = ACTIONS(1962), + [sym__thematic_break] = ACTIONS(1962), + [sym__list_marker_minus] = ACTIONS(1962), + [sym__list_marker_plus] = ACTIONS(1962), + [sym__list_marker_star] = ACTIONS(1962), + [sym__list_marker_parenthesis] = ACTIONS(1962), + [sym__list_marker_dot] = ACTIONS(1962), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1962), + [sym__list_marker_example] = ACTIONS(1962), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1962), + [sym__fenced_code_block_start_backtick] = ACTIONS(1962), + [sym__fenced_code_block_start_tilde] = ACTIONS(1962), + [sym__blank_line_start] = ACTIONS(1962), + [sym_minus_metadata] = ACTIONS(1962), + [sym__pipe_table_start] = ACTIONS(1962), + [sym__fenced_div_start] = ACTIONS(1962), + [sym_ref_id_specifier] = ACTIONS(1962), + [sym__display_math_state_track_marker] = ACTIONS(1962), + [sym__inline_math_state_track_marker] = ACTIONS(1962), + [sym__code_span_start] = ACTIONS(1962), + [sym__html_comment] = ACTIONS(1962), + [sym_raw_specifier] = ACTIONS(1962), + [sym__autolink] = ACTIONS(1962), }, [STATE(390)] = { - [ts_builtin_sym_end] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1814), [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1812), - [anon_sym_PERCENT] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_DOT] = ACTIONS(1812), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_QMARK] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_BSLASH] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1812), - [anon_sym__] = ACTIONS(1812), - [anon_sym_BQUOTE] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1812), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1812), - [sym__escaped_characters] = ACTIONS(1812), - [sym__word] = ACTIONS(1812), - [sym__soft_line_ending] = ACTIONS(1812), - [sym__block_quote_start] = ACTIONS(1812), - [sym__indented_chunk_start] = ACTIONS(1812), - [sym_atx_h1_marker] = ACTIONS(1812), - [sym_atx_h2_marker] = ACTIONS(1812), - [sym_atx_h3_marker] = ACTIONS(1812), - [sym_atx_h4_marker] = ACTIONS(1812), - [sym_atx_h5_marker] = ACTIONS(1812), - [sym_atx_h6_marker] = ACTIONS(1812), - [sym__thematic_break] = ACTIONS(1812), - [sym__list_marker_minus] = ACTIONS(1812), - [sym__list_marker_plus] = ACTIONS(1812), - [sym__list_marker_star] = ACTIONS(1812), - [sym__list_marker_parenthesis] = ACTIONS(1812), - [sym__list_marker_dot] = ACTIONS(1812), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1812), - [sym__list_marker_example] = ACTIONS(1812), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1812), - [sym__fenced_code_block_start_backtick] = ACTIONS(1812), - [sym__fenced_code_block_start_tilde] = ACTIONS(1812), - [sym__blank_line_start] = ACTIONS(1812), - [sym_minus_metadata] = ACTIONS(1812), - [sym__pipe_table_start] = ACTIONS(1812), - [sym__fenced_div_start] = ACTIONS(1812), - [sym_ref_id_specifier] = ACTIONS(1812), - [sym__display_math_state_track_marker] = ACTIONS(1812), - [sym__inline_math_state_track_marker] = ACTIONS(1812), - [sym__code_span_start] = ACTIONS(1812), - [sym__html_comment] = ACTIONS(1812), - [sym_raw_specifier] = ACTIONS(1812), - [sym__autolink] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1814), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1814), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_DQUOTE] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR] = ACTIONS(1814), + [anon_sym_PERCENT] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_RPAREN] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_COMMA] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_DOT] = ACTIONS(1814), + [anon_sym_SLASH] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_QMARK] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1812), + [anon_sym_BSLASH] = ACTIONS(1812), + [anon_sym_RBRACK] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym__] = ACTIONS(1814), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1814), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1814), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1814), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1814), + [sym__escaped_characters] = ACTIONS(1814), + [sym__word] = ACTIONS(1814), + [sym__soft_line_ending] = ACTIONS(1814), + [sym__block_quote_start] = ACTIONS(1814), + [sym__indented_chunk_start] = ACTIONS(1814), + [sym_atx_h1_marker] = ACTIONS(1814), + [sym_atx_h2_marker] = ACTIONS(1814), + [sym_atx_h3_marker] = ACTIONS(1814), + [sym_atx_h4_marker] = ACTIONS(1814), + [sym_atx_h5_marker] = ACTIONS(1814), + [sym_atx_h6_marker] = ACTIONS(1814), + [sym__thematic_break] = ACTIONS(1814), + [sym__list_marker_minus] = ACTIONS(1814), + [sym__list_marker_plus] = ACTIONS(1814), + [sym__list_marker_star] = ACTIONS(1814), + [sym__list_marker_parenthesis] = ACTIONS(1814), + [sym__list_marker_dot] = ACTIONS(1814), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1814), + [sym__list_marker_example] = ACTIONS(1814), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1814), + [sym__fenced_code_block_start_backtick] = ACTIONS(1814), + [sym__fenced_code_block_start_tilde] = ACTIONS(1814), + [sym__blank_line_start] = ACTIONS(1814), + [sym_minus_metadata] = ACTIONS(1814), + [sym__pipe_table_start] = ACTIONS(1814), + [sym__fenced_div_start] = ACTIONS(1814), + [sym_ref_id_specifier] = ACTIONS(1814), + [sym__display_math_state_track_marker] = ACTIONS(1814), + [sym__inline_math_state_track_marker] = ACTIONS(1814), + [sym__code_span_start] = ACTIONS(1814), + [sym__html_comment] = ACTIONS(1814), + [sym_raw_specifier] = ACTIONS(1814), + [sym__autolink] = ACTIONS(1814), }, [STATE(391)] = { [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1656), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PERCENT] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_COMMA] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_BSLASH] = ACTIONS(1658), - [anon_sym_RBRACK] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1656), - [sym__escaped_characters] = ACTIONS(1656), - [sym__word] = ACTIONS(1656), - [sym__soft_line_ending] = ACTIONS(1656), - [sym__block_close] = ACTIONS(1656), - [sym__block_quote_start] = ACTIONS(1656), - [sym__indented_chunk_start] = ACTIONS(1656), - [sym_atx_h1_marker] = ACTIONS(1656), - [sym_atx_h2_marker] = ACTIONS(1656), - [sym_atx_h3_marker] = ACTIONS(1656), - [sym_atx_h4_marker] = ACTIONS(1656), - [sym_atx_h5_marker] = ACTIONS(1656), - [sym_atx_h6_marker] = ACTIONS(1656), - [sym__thematic_break] = ACTIONS(1656), - [sym__list_marker_minus] = ACTIONS(1656), - [sym__list_marker_plus] = ACTIONS(1656), - [sym__list_marker_star] = ACTIONS(1656), - [sym__list_marker_parenthesis] = ACTIONS(1656), - [sym__list_marker_dot] = ACTIONS(1656), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_example] = ACTIONS(1656), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1656), - [sym__fenced_code_block_start_backtick] = ACTIONS(1656), - [sym__fenced_code_block_start_tilde] = ACTIONS(1656), - [sym__blank_line_start] = ACTIONS(1656), - [sym_minus_metadata] = ACTIONS(1656), - [sym__pipe_table_start] = ACTIONS(1656), - [sym__fenced_div_start] = ACTIONS(1656), - [sym_ref_id_specifier] = ACTIONS(1656), - [sym__display_math_state_track_marker] = ACTIONS(1656), - [sym__inline_math_state_track_marker] = ACTIONS(1656), - [sym__code_span_start] = ACTIONS(1656), - [sym__html_comment] = ACTIONS(1656), - [sym_raw_specifier] = ACTIONS(1656), - [sym__autolink] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1658), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1658), + [anon_sym_EQ] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_BANG] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1658), + [anon_sym_PERCENT] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1658), + [anon_sym_COMMA] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(1658), + [anon_sym_SLASH] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_QMARK] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_BSLASH] = ACTIONS(1656), + [anon_sym_RBRACK] = ACTIONS(1658), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym__] = ACTIONS(1658), + [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_TILDE] = ACTIONS(1658), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1658), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1658), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1658), + [sym__escaped_characters] = ACTIONS(1658), + [sym__word] = ACTIONS(1658), + [sym__soft_line_ending] = ACTIONS(1658), + [sym__block_close] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(1658), + [sym__indented_chunk_start] = ACTIONS(1658), + [sym_atx_h1_marker] = ACTIONS(1658), + [sym_atx_h2_marker] = ACTIONS(1658), + [sym_atx_h3_marker] = ACTIONS(1658), + [sym_atx_h4_marker] = ACTIONS(1658), + [sym_atx_h5_marker] = ACTIONS(1658), + [sym_atx_h6_marker] = ACTIONS(1658), + [sym__thematic_break] = ACTIONS(1658), + [sym__list_marker_minus] = ACTIONS(1658), + [sym__list_marker_plus] = ACTIONS(1658), + [sym__list_marker_star] = ACTIONS(1658), + [sym__list_marker_parenthesis] = ACTIONS(1658), + [sym__list_marker_dot] = ACTIONS(1658), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_example] = ACTIONS(1658), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1658), + [sym__fenced_code_block_start_backtick] = ACTIONS(1658), + [sym__fenced_code_block_start_tilde] = ACTIONS(1658), + [sym__blank_line_start] = ACTIONS(1658), + [sym_minus_metadata] = ACTIONS(1658), + [sym__pipe_table_start] = ACTIONS(1658), + [sym__fenced_div_start] = ACTIONS(1658), + [sym_ref_id_specifier] = ACTIONS(1658), + [sym__display_math_state_track_marker] = ACTIONS(1658), + [sym__inline_math_state_track_marker] = ACTIONS(1658), + [sym__code_span_start] = ACTIONS(1658), + [sym__html_comment] = ACTIONS(1658), + [sym_raw_specifier] = ACTIONS(1658), + [sym__autolink] = ACTIONS(1658), }, [STATE(392)] = { [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1660), - [anon_sym_EQ] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_DQUOTE] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_PERCENT] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_RPAREN] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_COMMA] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_DOT] = ACTIONS(1660), - [anon_sym_SLASH] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_QMARK] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_BSLASH] = ACTIONS(1662), - [anon_sym_RBRACK] = ACTIONS(1660), - [anon_sym_CARET] = ACTIONS(1660), - [anon_sym__] = ACTIONS(1660), - [anon_sym_BQUOTE] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_TILDE] = ACTIONS(1660), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1660), - [sym__escaped_characters] = ACTIONS(1660), - [sym__word] = ACTIONS(1660), - [sym__soft_line_ending] = ACTIONS(1660), - [sym__block_close] = ACTIONS(1660), - [sym__block_quote_start] = ACTIONS(1660), - [sym__indented_chunk_start] = ACTIONS(1660), - [sym_atx_h1_marker] = ACTIONS(1660), - [sym_atx_h2_marker] = ACTIONS(1660), - [sym_atx_h3_marker] = ACTIONS(1660), - [sym_atx_h4_marker] = ACTIONS(1660), - [sym_atx_h5_marker] = ACTIONS(1660), - [sym_atx_h6_marker] = ACTIONS(1660), - [sym__thematic_break] = ACTIONS(1660), - [sym__list_marker_minus] = ACTIONS(1660), - [sym__list_marker_plus] = ACTIONS(1660), - [sym__list_marker_star] = ACTIONS(1660), - [sym__list_marker_parenthesis] = ACTIONS(1660), - [sym__list_marker_dot] = ACTIONS(1660), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_example] = ACTIONS(1660), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1660), - [sym__fenced_code_block_start_backtick] = ACTIONS(1660), - [sym__fenced_code_block_start_tilde] = ACTIONS(1660), - [sym__blank_line_start] = ACTIONS(1660), - [sym_minus_metadata] = ACTIONS(1660), - [sym__pipe_table_start] = ACTIONS(1660), - [sym__fenced_div_start] = ACTIONS(1660), - [sym_ref_id_specifier] = ACTIONS(1660), - [sym__display_math_state_track_marker] = ACTIONS(1660), - [sym__inline_math_state_track_marker] = ACTIONS(1660), - [sym__code_span_start] = ACTIONS(1660), - [sym__html_comment] = ACTIONS(1660), - [sym_raw_specifier] = ACTIONS(1660), - [sym__autolink] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1662), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1662), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1662), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1662), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1662), + [sym__html_comment] = ACTIONS(1662), + [sym_raw_specifier] = ACTIONS(1662), + [sym__autolink] = ACTIONS(1662), }, [STATE(393)] = { [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1664), - [anon_sym_EQ] = ACTIONS(1664), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PERCENT] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_QMARK] = ACTIONS(1664), - [anon_sym_AT] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_BSLASH] = ACTIONS(1666), - [anon_sym_RBRACK] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1664), - [anon_sym__] = ACTIONS(1664), - [anon_sym_BQUOTE] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1664), - [sym__escaped_characters] = ACTIONS(1664), - [sym__word] = ACTIONS(1664), - [sym__soft_line_ending] = ACTIONS(1664), - [sym__block_close] = ACTIONS(1664), - [sym__block_quote_start] = ACTIONS(1664), - [sym__indented_chunk_start] = ACTIONS(1664), - [sym_atx_h1_marker] = ACTIONS(1664), - [sym_atx_h2_marker] = ACTIONS(1664), - [sym_atx_h3_marker] = ACTIONS(1664), - [sym_atx_h4_marker] = ACTIONS(1664), - [sym_atx_h5_marker] = ACTIONS(1664), - [sym_atx_h6_marker] = ACTIONS(1664), - [sym__thematic_break] = ACTIONS(1664), - [sym__list_marker_minus] = ACTIONS(1664), - [sym__list_marker_plus] = ACTIONS(1664), - [sym__list_marker_star] = ACTIONS(1664), - [sym__list_marker_parenthesis] = ACTIONS(1664), - [sym__list_marker_dot] = ACTIONS(1664), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_example] = ACTIONS(1664), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1664), - [sym__fenced_code_block_start_backtick] = ACTIONS(1664), - [sym__fenced_code_block_start_tilde] = ACTIONS(1664), - [sym__blank_line_start] = ACTIONS(1664), - [sym_minus_metadata] = ACTIONS(1664), - [sym__pipe_table_start] = ACTIONS(1664), - [sym__fenced_div_start] = ACTIONS(1664), - [sym_ref_id_specifier] = ACTIONS(1664), - [sym__display_math_state_track_marker] = ACTIONS(1664), - [sym__inline_math_state_track_marker] = ACTIONS(1664), - [sym__code_span_start] = ACTIONS(1664), - [sym__html_comment] = ACTIONS(1664), - [sym_raw_specifier] = ACTIONS(1664), - [sym__autolink] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1666), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1666), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1666), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1666), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1666), + [sym__html_comment] = ACTIONS(1666), + [sym_raw_specifier] = ACTIONS(1666), + [sym__autolink] = ACTIONS(1666), }, [STATE(394)] = { - [ts_builtin_sym_end] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_BSLASH] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym__] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1820), - [sym__escaped_characters] = ACTIONS(1820), - [sym__word] = ACTIONS(1820), - [sym__soft_line_ending] = ACTIONS(1820), - [sym__block_quote_start] = ACTIONS(1820), - [sym__indented_chunk_start] = ACTIONS(1820), - [sym_atx_h1_marker] = ACTIONS(1820), - [sym_atx_h2_marker] = ACTIONS(1820), - [sym_atx_h3_marker] = ACTIONS(1820), - [sym_atx_h4_marker] = ACTIONS(1820), - [sym_atx_h5_marker] = ACTIONS(1820), - [sym_atx_h6_marker] = ACTIONS(1820), - [sym__thematic_break] = ACTIONS(1820), - [sym__list_marker_minus] = ACTIONS(1820), - [sym__list_marker_plus] = ACTIONS(1820), - [sym__list_marker_star] = ACTIONS(1820), - [sym__list_marker_parenthesis] = ACTIONS(1820), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1820), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1820), - [sym__fenced_code_block_start_backtick] = ACTIONS(1820), - [sym__fenced_code_block_start_tilde] = ACTIONS(1820), - [sym__blank_line_start] = ACTIONS(1820), - [sym_minus_metadata] = ACTIONS(1820), - [sym__pipe_table_start] = ACTIONS(1820), - [sym__fenced_div_start] = ACTIONS(1820), - [sym_ref_id_specifier] = ACTIONS(1820), - [sym__display_math_state_track_marker] = ACTIONS(1820), - [sym__inline_math_state_track_marker] = ACTIONS(1820), - [sym__code_span_start] = ACTIONS(1820), - [sym__html_comment] = ACTIONS(1820), - [sym_raw_specifier] = ACTIONS(1820), - [sym__autolink] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_BSLASH] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1822), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1822), + [sym__escaped_characters] = ACTIONS(1822), + [sym__word] = ACTIONS(1822), + [sym__soft_line_ending] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_example] = ACTIONS(1822), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym_minus_metadata] = ACTIONS(1822), + [sym__pipe_table_start] = ACTIONS(1822), + [sym__fenced_div_start] = ACTIONS(1822), + [sym_ref_id_specifier] = ACTIONS(1822), + [sym__display_math_state_track_marker] = ACTIONS(1822), + [sym__inline_math_state_track_marker] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__html_comment] = ACTIONS(1822), + [sym_raw_specifier] = ACTIONS(1822), + [sym__autolink] = ACTIONS(1822), }, [STATE(395)] = { - [ts_builtin_sym_end] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(1822), [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_PERCENT] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_DOT] = ACTIONS(1820), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_BSLASH] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym__] = ACTIONS(1820), - [anon_sym_BQUOTE] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1820), - [sym__escaped_characters] = ACTIONS(1820), - [sym__word] = ACTIONS(1820), - [sym__soft_line_ending] = ACTIONS(1820), - [sym__block_quote_start] = ACTIONS(1820), - [sym__indented_chunk_start] = ACTIONS(1820), - [sym_atx_h1_marker] = ACTIONS(1820), - [sym_atx_h2_marker] = ACTIONS(1820), - [sym_atx_h3_marker] = ACTIONS(1820), - [sym_atx_h4_marker] = ACTIONS(1820), - [sym_atx_h5_marker] = ACTIONS(1820), - [sym_atx_h6_marker] = ACTIONS(1820), - [sym__thematic_break] = ACTIONS(1820), - [sym__list_marker_minus] = ACTIONS(1820), - [sym__list_marker_plus] = ACTIONS(1820), - [sym__list_marker_star] = ACTIONS(1820), - [sym__list_marker_parenthesis] = ACTIONS(1820), - [sym__list_marker_dot] = ACTIONS(1820), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1820), - [sym__list_marker_example] = ACTIONS(1820), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1820), - [sym__fenced_code_block_start_backtick] = ACTIONS(1820), - [sym__fenced_code_block_start_tilde] = ACTIONS(1820), - [sym__blank_line_start] = ACTIONS(1820), - [sym_minus_metadata] = ACTIONS(1820), - [sym__pipe_table_start] = ACTIONS(1820), - [sym__fenced_div_start] = ACTIONS(1820), - [sym_ref_id_specifier] = ACTIONS(1820), - [sym__display_math_state_track_marker] = ACTIONS(1820), - [sym__inline_math_state_track_marker] = ACTIONS(1820), - [sym__code_span_start] = ACTIONS(1820), - [sym__html_comment] = ACTIONS(1820), - [sym_raw_specifier] = ACTIONS(1820), - [sym__autolink] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1822), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1822), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_DOLLAR] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_RPAREN] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_COMMA] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_DOT] = ACTIONS(1822), + [anon_sym_SLASH] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_QMARK] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1820), + [anon_sym_BSLASH] = ACTIONS(1820), + [anon_sym_RBRACK] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym__] = ACTIONS(1822), + [anon_sym_BQUOTE] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1822), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1822), + [sym__escaped_characters] = ACTIONS(1822), + [sym__word] = ACTIONS(1822), + [sym__soft_line_ending] = ACTIONS(1822), + [sym__block_quote_start] = ACTIONS(1822), + [sym__indented_chunk_start] = ACTIONS(1822), + [sym_atx_h1_marker] = ACTIONS(1822), + [sym_atx_h2_marker] = ACTIONS(1822), + [sym_atx_h3_marker] = ACTIONS(1822), + [sym_atx_h4_marker] = ACTIONS(1822), + [sym_atx_h5_marker] = ACTIONS(1822), + [sym_atx_h6_marker] = ACTIONS(1822), + [sym__thematic_break] = ACTIONS(1822), + [sym__list_marker_minus] = ACTIONS(1822), + [sym__list_marker_plus] = ACTIONS(1822), + [sym__list_marker_star] = ACTIONS(1822), + [sym__list_marker_parenthesis] = ACTIONS(1822), + [sym__list_marker_dot] = ACTIONS(1822), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1822), + [sym__list_marker_example] = ACTIONS(1822), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1822), + [sym__fenced_code_block_start_backtick] = ACTIONS(1822), + [sym__fenced_code_block_start_tilde] = ACTIONS(1822), + [sym__blank_line_start] = ACTIONS(1822), + [sym_minus_metadata] = ACTIONS(1822), + [sym__pipe_table_start] = ACTIONS(1822), + [sym__fenced_div_start] = ACTIONS(1822), + [sym_ref_id_specifier] = ACTIONS(1822), + [sym__display_math_state_track_marker] = ACTIONS(1822), + [sym__inline_math_state_track_marker] = ACTIONS(1822), + [sym__code_span_start] = ACTIONS(1822), + [sym__html_comment] = ACTIONS(1822), + [sym_raw_specifier] = ACTIONS(1822), + [sym__autolink] = ACTIONS(1822), }, [STATE(396)] = { [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_BSLASH] = ACTIONS(1574), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1572), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1572), - [sym__html_comment] = ACTIONS(1572), - [sym_raw_specifier] = ACTIONS(1572), - [sym__autolink] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1574), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1574), + [sym__escaped_characters] = ACTIONS(1574), + [sym__word] = ACTIONS(1574), + [sym__soft_line_ending] = ACTIONS(1574), + [sym__block_close] = ACTIONS(1574), + [sym__block_quote_start] = ACTIONS(1574), + [sym__indented_chunk_start] = ACTIONS(1574), + [sym_atx_h1_marker] = ACTIONS(1574), + [sym_atx_h2_marker] = ACTIONS(1574), + [sym_atx_h3_marker] = ACTIONS(1574), + [sym_atx_h4_marker] = ACTIONS(1574), + [sym_atx_h5_marker] = ACTIONS(1574), + [sym_atx_h6_marker] = ACTIONS(1574), + [sym__thematic_break] = ACTIONS(1574), + [sym__list_marker_minus] = ACTIONS(1574), + [sym__list_marker_plus] = ACTIONS(1574), + [sym__list_marker_star] = ACTIONS(1574), + [sym__list_marker_parenthesis] = ACTIONS(1574), + [sym__list_marker_dot] = ACTIONS(1574), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_example] = ACTIONS(1574), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1574), + [sym__fenced_code_block_start_backtick] = ACTIONS(1574), + [sym__fenced_code_block_start_tilde] = ACTIONS(1574), + [sym__blank_line_start] = ACTIONS(1574), + [sym_minus_metadata] = ACTIONS(1574), + [sym__pipe_table_start] = ACTIONS(1574), + [sym__fenced_div_start] = ACTIONS(1574), + [sym_ref_id_specifier] = ACTIONS(1574), + [sym__display_math_state_track_marker] = ACTIONS(1574), + [sym__inline_math_state_track_marker] = ACTIONS(1574), + [sym__code_span_start] = ACTIONS(1574), + [sym__html_comment] = ACTIONS(1574), + [sym_raw_specifier] = ACTIONS(1574), + [sym__autolink] = ACTIONS(1574), }, [STATE(397)] = { [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1972), - [anon_sym_EQ] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1972), - [anon_sym_PERCENT] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_COMMA] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_DOT] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_QMARK] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_BSLASH] = ACTIONS(1974), - [anon_sym_RBRACK] = ACTIONS(1972), - [anon_sym_CARET] = ACTIONS(1972), - [anon_sym__] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1972), - [sym__escaped_characters] = ACTIONS(1972), - [sym__word] = ACTIONS(1972), - [sym__soft_line_ending] = ACTIONS(1972), - [sym_block_continuation] = ACTIONS(1972), - [sym__block_quote_start] = ACTIONS(1972), - [sym__indented_chunk_start] = ACTIONS(1972), - [sym_atx_h1_marker] = ACTIONS(1972), - [sym_atx_h2_marker] = ACTIONS(1972), - [sym_atx_h3_marker] = ACTIONS(1972), - [sym_atx_h4_marker] = ACTIONS(1972), - [sym_atx_h5_marker] = ACTIONS(1972), - [sym_atx_h6_marker] = ACTIONS(1972), - [sym__thematic_break] = ACTIONS(1972), - [sym__list_marker_minus] = ACTIONS(1972), - [sym__list_marker_plus] = ACTIONS(1972), - [sym__list_marker_star] = ACTIONS(1972), - [sym__list_marker_parenthesis] = ACTIONS(1972), - [sym__list_marker_dot] = ACTIONS(1972), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1972), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1972), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1972), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1972), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1972), - [sym__list_marker_example] = ACTIONS(1972), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1972), - [sym__fenced_code_block_start_backtick] = ACTIONS(1972), - [sym__fenced_code_block_start_tilde] = ACTIONS(1972), - [sym__blank_line_start] = ACTIONS(1972), - [sym_minus_metadata] = ACTIONS(1972), - [sym__pipe_table_start] = ACTIONS(1972), - [sym__fenced_div_start] = ACTIONS(1972), - [sym_ref_id_specifier] = ACTIONS(1972), - [sym__display_math_state_track_marker] = ACTIONS(1972), - [sym__inline_math_state_track_marker] = ACTIONS(1972), - [sym__code_span_start] = ACTIONS(1972), - [sym__html_comment] = ACTIONS(1972), - [sym_raw_specifier] = ACTIONS(1972), - [sym__autolink] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1974), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1974), + [anon_sym_EQ] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [anon_sym_PERCENT] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_DOT] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_QMARK] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_BSLASH] = ACTIONS(1972), + [anon_sym_RBRACK] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym__] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1974), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1974), + [sym__escaped_characters] = ACTIONS(1974), + [sym__word] = ACTIONS(1974), + [sym__soft_line_ending] = ACTIONS(1974), + [sym_block_continuation] = ACTIONS(1974), + [sym__block_quote_start] = ACTIONS(1974), + [sym__indented_chunk_start] = ACTIONS(1974), + [sym_atx_h1_marker] = ACTIONS(1974), + [sym_atx_h2_marker] = ACTIONS(1974), + [sym_atx_h3_marker] = ACTIONS(1974), + [sym_atx_h4_marker] = ACTIONS(1974), + [sym_atx_h5_marker] = ACTIONS(1974), + [sym_atx_h6_marker] = ACTIONS(1974), + [sym__thematic_break] = ACTIONS(1974), + [sym__list_marker_minus] = ACTIONS(1974), + [sym__list_marker_plus] = ACTIONS(1974), + [sym__list_marker_star] = ACTIONS(1974), + [sym__list_marker_parenthesis] = ACTIONS(1974), + [sym__list_marker_dot] = ACTIONS(1974), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1974), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1974), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1974), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1974), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1974), + [sym__list_marker_example] = ACTIONS(1974), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1974), + [sym__fenced_code_block_start_backtick] = ACTIONS(1974), + [sym__fenced_code_block_start_tilde] = ACTIONS(1974), + [sym__blank_line_start] = ACTIONS(1974), + [sym_minus_metadata] = ACTIONS(1974), + [sym__pipe_table_start] = ACTIONS(1974), + [sym__fenced_div_start] = ACTIONS(1974), + [sym_ref_id_specifier] = ACTIONS(1974), + [sym__display_math_state_track_marker] = ACTIONS(1974), + [sym__inline_math_state_track_marker] = ACTIONS(1974), + [sym__code_span_start] = ACTIONS(1974), + [sym__html_comment] = ACTIONS(1974), + [sym_raw_specifier] = ACTIONS(1974), + [sym__autolink] = ACTIONS(1974), }, [STATE(398)] = { [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_DQUOTE] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_RPAREN] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_QMARK] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_BSLASH] = ACTIONS(1688), - [anon_sym_RBRACK] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1686), - [anon_sym__] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1686), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1686), - [sym__escaped_characters] = ACTIONS(1686), - [sym__word] = ACTIONS(1686), - [sym__soft_line_ending] = ACTIONS(1686), - [sym__block_close] = ACTIONS(1686), - [sym__block_quote_start] = ACTIONS(1686), - [sym__indented_chunk_start] = ACTIONS(1686), - [sym_atx_h1_marker] = ACTIONS(1686), - [sym_atx_h2_marker] = ACTIONS(1686), - [sym_atx_h3_marker] = ACTIONS(1686), - [sym_atx_h4_marker] = ACTIONS(1686), - [sym_atx_h5_marker] = ACTIONS(1686), - [sym_atx_h6_marker] = ACTIONS(1686), - [sym__thematic_break] = ACTIONS(1686), - [sym__list_marker_minus] = ACTIONS(1686), - [sym__list_marker_plus] = ACTIONS(1686), - [sym__list_marker_star] = ACTIONS(1686), - [sym__list_marker_parenthesis] = ACTIONS(1686), - [sym__list_marker_dot] = ACTIONS(1686), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_example] = ACTIONS(1686), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1686), - [sym__fenced_code_block_start_backtick] = ACTIONS(1686), - [sym__fenced_code_block_start_tilde] = ACTIONS(1686), - [sym__blank_line_start] = ACTIONS(1686), - [sym_minus_metadata] = ACTIONS(1686), - [sym__pipe_table_start] = ACTIONS(1686), - [sym__fenced_div_start] = ACTIONS(1686), - [sym_ref_id_specifier] = ACTIONS(1686), - [sym__display_math_state_track_marker] = ACTIONS(1686), - [sym__inline_math_state_track_marker] = ACTIONS(1686), - [sym__code_span_start] = ACTIONS(1686), - [sym__html_comment] = ACTIONS(1686), - [sym_raw_specifier] = ACTIONS(1686), - [sym__autolink] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_QMARK] = ACTIONS(1688), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_RBRACK] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1688), + [anon_sym__] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1688), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1688), + [sym__escaped_characters] = ACTIONS(1688), + [sym__word] = ACTIONS(1688), + [sym__soft_line_ending] = ACTIONS(1688), + [sym__block_close] = ACTIONS(1688), + [sym__block_quote_start] = ACTIONS(1688), + [sym__indented_chunk_start] = ACTIONS(1688), + [sym_atx_h1_marker] = ACTIONS(1688), + [sym_atx_h2_marker] = ACTIONS(1688), + [sym_atx_h3_marker] = ACTIONS(1688), + [sym_atx_h4_marker] = ACTIONS(1688), + [sym_atx_h5_marker] = ACTIONS(1688), + [sym_atx_h6_marker] = ACTIONS(1688), + [sym__thematic_break] = ACTIONS(1688), + [sym__list_marker_minus] = ACTIONS(1688), + [sym__list_marker_plus] = ACTIONS(1688), + [sym__list_marker_star] = ACTIONS(1688), + [sym__list_marker_parenthesis] = ACTIONS(1688), + [sym__list_marker_dot] = ACTIONS(1688), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_example] = ACTIONS(1688), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1688), + [sym__fenced_code_block_start_backtick] = ACTIONS(1688), + [sym__fenced_code_block_start_tilde] = ACTIONS(1688), + [sym__blank_line_start] = ACTIONS(1688), + [sym_minus_metadata] = ACTIONS(1688), + [sym__pipe_table_start] = ACTIONS(1688), + [sym__fenced_div_start] = ACTIONS(1688), + [sym_ref_id_specifier] = ACTIONS(1688), + [sym__display_math_state_track_marker] = ACTIONS(1688), + [sym__inline_math_state_track_marker] = ACTIONS(1688), + [sym__code_span_start] = ACTIONS(1688), + [sym__html_comment] = ACTIONS(1688), + [sym_raw_specifier] = ACTIONS(1688), + [sym__autolink] = ACTIONS(1688), }, [STATE(399)] = { [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1690), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PERCENT] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_DOT] = ACTIONS(1690), - [anon_sym_SLASH] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_BSLASH] = ACTIONS(1692), - [anon_sym_RBRACK] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym__] = ACTIONS(1690), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1690), - [sym__escaped_characters] = ACTIONS(1690), - [sym__word] = ACTIONS(1690), - [sym__soft_line_ending] = ACTIONS(1690), - [sym__block_close] = ACTIONS(1690), - [sym__block_quote_start] = ACTIONS(1690), - [sym__indented_chunk_start] = ACTIONS(1690), - [sym_atx_h1_marker] = ACTIONS(1690), - [sym_atx_h2_marker] = ACTIONS(1690), - [sym_atx_h3_marker] = ACTIONS(1690), - [sym_atx_h4_marker] = ACTIONS(1690), - [sym_atx_h5_marker] = ACTIONS(1690), - [sym_atx_h6_marker] = ACTIONS(1690), - [sym__thematic_break] = ACTIONS(1690), - [sym__list_marker_minus] = ACTIONS(1690), - [sym__list_marker_plus] = ACTIONS(1690), - [sym__list_marker_star] = ACTIONS(1690), - [sym__list_marker_parenthesis] = ACTIONS(1690), - [sym__list_marker_dot] = ACTIONS(1690), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_example] = ACTIONS(1690), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1690), - [sym__fenced_code_block_start_backtick] = ACTIONS(1690), - [sym__fenced_code_block_start_tilde] = ACTIONS(1690), - [sym__blank_line_start] = ACTIONS(1690), - [sym_minus_metadata] = ACTIONS(1690), - [sym__pipe_table_start] = ACTIONS(1690), - [sym__fenced_div_start] = ACTIONS(1690), - [sym_ref_id_specifier] = ACTIONS(1690), - [sym__display_math_state_track_marker] = ACTIONS(1690), - [sym__inline_math_state_track_marker] = ACTIONS(1690), - [sym__code_span_start] = ACTIONS(1690), - [sym__html_comment] = ACTIONS(1690), - [sym_raw_specifier] = ACTIONS(1690), - [sym__autolink] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1692), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1692), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PERCENT] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_COMMA] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_DOT] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [anon_sym_RBRACK] = ACTIONS(1692), + [anon_sym_CARET] = ACTIONS(1692), + [anon_sym__] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1692), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1692), + [sym__escaped_characters] = ACTIONS(1692), + [sym__word] = ACTIONS(1692), + [sym__soft_line_ending] = ACTIONS(1692), + [sym__block_close] = ACTIONS(1692), + [sym__block_quote_start] = ACTIONS(1692), + [sym__indented_chunk_start] = ACTIONS(1692), + [sym_atx_h1_marker] = ACTIONS(1692), + [sym_atx_h2_marker] = ACTIONS(1692), + [sym_atx_h3_marker] = ACTIONS(1692), + [sym_atx_h4_marker] = ACTIONS(1692), + [sym_atx_h5_marker] = ACTIONS(1692), + [sym_atx_h6_marker] = ACTIONS(1692), + [sym__thematic_break] = ACTIONS(1692), + [sym__list_marker_minus] = ACTIONS(1692), + [sym__list_marker_plus] = ACTIONS(1692), + [sym__list_marker_star] = ACTIONS(1692), + [sym__list_marker_parenthesis] = ACTIONS(1692), + [sym__list_marker_dot] = ACTIONS(1692), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_example] = ACTIONS(1692), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1692), + [sym__fenced_code_block_start_backtick] = ACTIONS(1692), + [sym__fenced_code_block_start_tilde] = ACTIONS(1692), + [sym__blank_line_start] = ACTIONS(1692), + [sym_minus_metadata] = ACTIONS(1692), + [sym__pipe_table_start] = ACTIONS(1692), + [sym__fenced_div_start] = ACTIONS(1692), + [sym_ref_id_specifier] = ACTIONS(1692), + [sym__display_math_state_track_marker] = ACTIONS(1692), + [sym__inline_math_state_track_marker] = ACTIONS(1692), + [sym__code_span_start] = ACTIONS(1692), + [sym__html_comment] = ACTIONS(1692), + [sym_raw_specifier] = ACTIONS(1692), + [sym__autolink] = ACTIONS(1692), }, [STATE(400)] = { [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_COMMA] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_BSLASH] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1694), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1694), - [sym__escaped_characters] = ACTIONS(1694), - [sym__word] = ACTIONS(1694), - [sym__soft_line_ending] = ACTIONS(1694), - [sym__block_close] = ACTIONS(1694), - [sym__block_quote_start] = ACTIONS(1694), - [sym__indented_chunk_start] = ACTIONS(1694), - [sym_atx_h1_marker] = ACTIONS(1694), - [sym_atx_h2_marker] = ACTIONS(1694), - [sym_atx_h3_marker] = ACTIONS(1694), - [sym_atx_h4_marker] = ACTIONS(1694), - [sym_atx_h5_marker] = ACTIONS(1694), - [sym_atx_h6_marker] = ACTIONS(1694), - [sym__thematic_break] = ACTIONS(1694), - [sym__list_marker_minus] = ACTIONS(1694), - [sym__list_marker_plus] = ACTIONS(1694), - [sym__list_marker_star] = ACTIONS(1694), - [sym__list_marker_parenthesis] = ACTIONS(1694), - [sym__list_marker_dot] = ACTIONS(1694), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_example] = ACTIONS(1694), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1694), - [sym__fenced_code_block_start_backtick] = ACTIONS(1694), - [sym__fenced_code_block_start_tilde] = ACTIONS(1694), - [sym__blank_line_start] = ACTIONS(1694), - [sym_minus_metadata] = ACTIONS(1694), - [sym__pipe_table_start] = ACTIONS(1694), - [sym__fenced_div_start] = ACTIONS(1694), - [sym_ref_id_specifier] = ACTIONS(1694), - [sym__display_math_state_track_marker] = ACTIONS(1694), - [sym__inline_math_state_track_marker] = ACTIONS(1694), - [sym__code_span_start] = ACTIONS(1694), - [sym__html_comment] = ACTIONS(1694), - [sym_raw_specifier] = ACTIONS(1694), - [sym__autolink] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1696), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_BSLASH] = ACTIONS(1694), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1696), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1696), + [sym__escaped_characters] = ACTIONS(1696), + [sym__word] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_close] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_example] = ACTIONS(1696), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym_minus_metadata] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + [sym__fenced_div_start] = ACTIONS(1696), + [sym_ref_id_specifier] = ACTIONS(1696), + [sym__display_math_state_track_marker] = ACTIONS(1696), + [sym__inline_math_state_track_marker] = ACTIONS(1696), + [sym__code_span_start] = ACTIONS(1696), + [sym__html_comment] = ACTIONS(1696), + [sym_raw_specifier] = ACTIONS(1696), + [sym__autolink] = ACTIONS(1696), }, [STATE(401)] = { [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1698), - [anon_sym_SQUOTE] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(1698), - [anon_sym_SLASH] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_QMARK] = ACTIONS(1698), - [anon_sym_AT] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_BSLASH] = ACTIONS(1700), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym__] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_TILDE] = ACTIONS(1698), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1698), - [sym__escaped_characters] = ACTIONS(1698), - [sym__word] = ACTIONS(1698), - [sym__soft_line_ending] = ACTIONS(1698), - [sym__block_close] = ACTIONS(1698), - [sym__block_quote_start] = ACTIONS(1698), - [sym__indented_chunk_start] = ACTIONS(1698), - [sym_atx_h1_marker] = ACTIONS(1698), - [sym_atx_h2_marker] = ACTIONS(1698), - [sym_atx_h3_marker] = ACTIONS(1698), - [sym_atx_h4_marker] = ACTIONS(1698), - [sym_atx_h5_marker] = ACTIONS(1698), - [sym_atx_h6_marker] = ACTIONS(1698), - [sym__thematic_break] = ACTIONS(1698), - [sym__list_marker_minus] = ACTIONS(1698), - [sym__list_marker_plus] = ACTIONS(1698), - [sym__list_marker_star] = ACTIONS(1698), - [sym__list_marker_parenthesis] = ACTIONS(1698), - [sym__list_marker_dot] = ACTIONS(1698), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_example] = ACTIONS(1698), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1698), - [sym__fenced_code_block_start_backtick] = ACTIONS(1698), - [sym__fenced_code_block_start_tilde] = ACTIONS(1698), - [sym__blank_line_start] = ACTIONS(1698), - [sym_minus_metadata] = ACTIONS(1698), - [sym__pipe_table_start] = ACTIONS(1698), - [sym__fenced_div_start] = ACTIONS(1698), - [sym_ref_id_specifier] = ACTIONS(1698), - [sym__display_math_state_track_marker] = ACTIONS(1698), - [sym__inline_math_state_track_marker] = ACTIONS(1698), - [sym__code_span_start] = ACTIONS(1698), - [sym__html_comment] = ACTIONS(1698), - [sym_raw_specifier] = ACTIONS(1698), - [sym__autolink] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1700), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1700), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PERCENT] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DOT] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_AT] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_BSLASH] = ACTIONS(1698), + [anon_sym_RBRACK] = ACTIONS(1700), + [anon_sym_CARET] = ACTIONS(1700), + [anon_sym__] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1700), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1700), + [sym__escaped_characters] = ACTIONS(1700), + [sym__word] = ACTIONS(1700), + [sym__soft_line_ending] = ACTIONS(1700), + [sym__block_close] = ACTIONS(1700), + [sym__block_quote_start] = ACTIONS(1700), + [sym__indented_chunk_start] = ACTIONS(1700), + [sym_atx_h1_marker] = ACTIONS(1700), + [sym_atx_h2_marker] = ACTIONS(1700), + [sym_atx_h3_marker] = ACTIONS(1700), + [sym_atx_h4_marker] = ACTIONS(1700), + [sym_atx_h5_marker] = ACTIONS(1700), + [sym_atx_h6_marker] = ACTIONS(1700), + [sym__thematic_break] = ACTIONS(1700), + [sym__list_marker_minus] = ACTIONS(1700), + [sym__list_marker_plus] = ACTIONS(1700), + [sym__list_marker_star] = ACTIONS(1700), + [sym__list_marker_parenthesis] = ACTIONS(1700), + [sym__list_marker_dot] = ACTIONS(1700), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_example] = ACTIONS(1700), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1700), + [sym__fenced_code_block_start_backtick] = ACTIONS(1700), + [sym__fenced_code_block_start_tilde] = ACTIONS(1700), + [sym__blank_line_start] = ACTIONS(1700), + [sym_minus_metadata] = ACTIONS(1700), + [sym__pipe_table_start] = ACTIONS(1700), + [sym__fenced_div_start] = ACTIONS(1700), + [sym_ref_id_specifier] = ACTIONS(1700), + [sym__display_math_state_track_marker] = ACTIONS(1700), + [sym__inline_math_state_track_marker] = ACTIONS(1700), + [sym__code_span_start] = ACTIONS(1700), + [sym__html_comment] = ACTIONS(1700), + [sym_raw_specifier] = ACTIONS(1700), + [sym__autolink] = ACTIONS(1700), }, [STATE(402)] = { [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_BSLASH] = ACTIONS(1704), - [anon_sym_RBRACK] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym__] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1702), - [sym__escaped_characters] = ACTIONS(1702), - [sym__word] = ACTIONS(1702), - [sym__soft_line_ending] = ACTIONS(1702), - [sym__block_close] = ACTIONS(1702), - [sym__block_quote_start] = ACTIONS(1702), - [sym__indented_chunk_start] = ACTIONS(1702), - [sym_atx_h1_marker] = ACTIONS(1702), - [sym_atx_h2_marker] = ACTIONS(1702), - [sym_atx_h3_marker] = ACTIONS(1702), - [sym_atx_h4_marker] = ACTIONS(1702), - [sym_atx_h5_marker] = ACTIONS(1702), - [sym_atx_h6_marker] = ACTIONS(1702), - [sym__thematic_break] = ACTIONS(1702), - [sym__list_marker_minus] = ACTIONS(1702), - [sym__list_marker_plus] = ACTIONS(1702), - [sym__list_marker_star] = ACTIONS(1702), - [sym__list_marker_parenthesis] = ACTIONS(1702), - [sym__list_marker_dot] = ACTIONS(1702), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_example] = ACTIONS(1702), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1702), - [sym__fenced_code_block_start_backtick] = ACTIONS(1702), - [sym__fenced_code_block_start_tilde] = ACTIONS(1702), - [sym__blank_line_start] = ACTIONS(1702), - [sym_minus_metadata] = ACTIONS(1702), - [sym__pipe_table_start] = ACTIONS(1702), - [sym__fenced_div_start] = ACTIONS(1702), - [sym_ref_id_specifier] = ACTIONS(1702), - [sym__display_math_state_track_marker] = ACTIONS(1702), - [sym__inline_math_state_track_marker] = ACTIONS(1702), - [sym__code_span_start] = ACTIONS(1702), - [sym__html_comment] = ACTIONS(1702), - [sym_raw_specifier] = ACTIONS(1702), - [sym__autolink] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1704), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_POUND] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PERCENT] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_CARET] = ACTIONS(1704), + [anon_sym__] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1704), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1704), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1704), + [sym__escaped_characters] = ACTIONS(1704), + [sym__word] = ACTIONS(1704), + [sym__soft_line_ending] = ACTIONS(1704), + [sym__block_close] = ACTIONS(1704), + [sym__block_quote_start] = ACTIONS(1704), + [sym__indented_chunk_start] = ACTIONS(1704), + [sym_atx_h1_marker] = ACTIONS(1704), + [sym_atx_h2_marker] = ACTIONS(1704), + [sym_atx_h3_marker] = ACTIONS(1704), + [sym_atx_h4_marker] = ACTIONS(1704), + [sym_atx_h5_marker] = ACTIONS(1704), + [sym_atx_h6_marker] = ACTIONS(1704), + [sym__thematic_break] = ACTIONS(1704), + [sym__list_marker_minus] = ACTIONS(1704), + [sym__list_marker_plus] = ACTIONS(1704), + [sym__list_marker_star] = ACTIONS(1704), + [sym__list_marker_parenthesis] = ACTIONS(1704), + [sym__list_marker_dot] = ACTIONS(1704), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_example] = ACTIONS(1704), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1704), + [sym__fenced_code_block_start_backtick] = ACTIONS(1704), + [sym__fenced_code_block_start_tilde] = ACTIONS(1704), + [sym__blank_line_start] = ACTIONS(1704), + [sym_minus_metadata] = ACTIONS(1704), + [sym__pipe_table_start] = ACTIONS(1704), + [sym__fenced_div_start] = ACTIONS(1704), + [sym_ref_id_specifier] = ACTIONS(1704), + [sym__display_math_state_track_marker] = ACTIONS(1704), + [sym__inline_math_state_track_marker] = ACTIONS(1704), + [sym__code_span_start] = ACTIONS(1704), + [sym__html_comment] = ACTIONS(1704), + [sym_raw_specifier] = ACTIONS(1704), + [sym__autolink] = ACTIONS(1704), }, [STATE(403)] = { [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PERCENT] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1706), - [anon_sym_COMMA] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SLASH] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_AT] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_BSLASH] = ACTIONS(1708), - [anon_sym_RBRACK] = ACTIONS(1706), - [anon_sym_CARET] = ACTIONS(1706), - [anon_sym__] = ACTIONS(1706), - [anon_sym_BQUOTE] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1706), - [sym__escaped_characters] = ACTIONS(1706), - [sym__word] = ACTIONS(1706), - [sym__soft_line_ending] = ACTIONS(1706), - [sym__block_close] = ACTIONS(1706), - [sym__block_quote_start] = ACTIONS(1706), - [sym__indented_chunk_start] = ACTIONS(1706), - [sym_atx_h1_marker] = ACTIONS(1706), - [sym_atx_h2_marker] = ACTIONS(1706), - [sym_atx_h3_marker] = ACTIONS(1706), - [sym_atx_h4_marker] = ACTIONS(1706), - [sym_atx_h5_marker] = ACTIONS(1706), - [sym_atx_h6_marker] = ACTIONS(1706), - [sym__thematic_break] = ACTIONS(1706), - [sym__list_marker_minus] = ACTIONS(1706), - [sym__list_marker_plus] = ACTIONS(1706), - [sym__list_marker_star] = ACTIONS(1706), - [sym__list_marker_parenthesis] = ACTIONS(1706), - [sym__list_marker_dot] = ACTIONS(1706), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_example] = ACTIONS(1706), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1706), - [sym__fenced_code_block_start_backtick] = ACTIONS(1706), - [sym__fenced_code_block_start_tilde] = ACTIONS(1706), - [sym__blank_line_start] = ACTIONS(1706), - [sym_minus_metadata] = ACTIONS(1706), - [sym__pipe_table_start] = ACTIONS(1706), - [sym__fenced_div_start] = ACTIONS(1706), - [sym_ref_id_specifier] = ACTIONS(1706), - [sym__display_math_state_track_marker] = ACTIONS(1706), - [sym__inline_math_state_track_marker] = ACTIONS(1706), - [sym__code_span_start] = ACTIONS(1706), - [sym__html_comment] = ACTIONS(1706), - [sym_raw_specifier] = ACTIONS(1706), - [sym__autolink] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1708), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_BSLASH] = ACTIONS(1706), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym__] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1708), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1708), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1708), + [sym__escaped_characters] = ACTIONS(1708), + [sym__word] = ACTIONS(1708), + [sym__soft_line_ending] = ACTIONS(1708), + [sym__block_close] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1708), + [sym__indented_chunk_start] = ACTIONS(1708), + [sym_atx_h1_marker] = ACTIONS(1708), + [sym_atx_h2_marker] = ACTIONS(1708), + [sym_atx_h3_marker] = ACTIONS(1708), + [sym_atx_h4_marker] = ACTIONS(1708), + [sym_atx_h5_marker] = ACTIONS(1708), + [sym_atx_h6_marker] = ACTIONS(1708), + [sym__thematic_break] = ACTIONS(1708), + [sym__list_marker_minus] = ACTIONS(1708), + [sym__list_marker_plus] = ACTIONS(1708), + [sym__list_marker_star] = ACTIONS(1708), + [sym__list_marker_parenthesis] = ACTIONS(1708), + [sym__list_marker_dot] = ACTIONS(1708), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_example] = ACTIONS(1708), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1708), + [sym__fenced_code_block_start_backtick] = ACTIONS(1708), + [sym__fenced_code_block_start_tilde] = ACTIONS(1708), + [sym__blank_line_start] = ACTIONS(1708), + [sym_minus_metadata] = ACTIONS(1708), + [sym__pipe_table_start] = ACTIONS(1708), + [sym__fenced_div_start] = ACTIONS(1708), + [sym_ref_id_specifier] = ACTIONS(1708), + [sym__display_math_state_track_marker] = ACTIONS(1708), + [sym__inline_math_state_track_marker] = ACTIONS(1708), + [sym__code_span_start] = ACTIONS(1708), + [sym__html_comment] = ACTIONS(1708), + [sym_raw_specifier] = ACTIONS(1708), + [sym__autolink] = ACTIONS(1708), }, [STATE(404)] = { [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1710), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_DQUOTE] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_PERCENT] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_COMMA] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_DOT] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_QMARK] = ACTIONS(1710), - [anon_sym_AT] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_BSLASH] = ACTIONS(1712), - [anon_sym_RBRACK] = ACTIONS(1710), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym__] = ACTIONS(1710), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1710), - [sym__escaped_characters] = ACTIONS(1710), - [sym__word] = ACTIONS(1710), - [sym__soft_line_ending] = ACTIONS(1710), - [sym__block_close] = ACTIONS(1710), - [sym__block_quote_start] = ACTIONS(1710), - [sym__indented_chunk_start] = ACTIONS(1710), - [sym_atx_h1_marker] = ACTIONS(1710), - [sym_atx_h2_marker] = ACTIONS(1710), - [sym_atx_h3_marker] = ACTIONS(1710), - [sym_atx_h4_marker] = ACTIONS(1710), - [sym_atx_h5_marker] = ACTIONS(1710), - [sym_atx_h6_marker] = ACTIONS(1710), - [sym__thematic_break] = ACTIONS(1710), - [sym__list_marker_minus] = ACTIONS(1710), - [sym__list_marker_plus] = ACTIONS(1710), - [sym__list_marker_star] = ACTIONS(1710), - [sym__list_marker_parenthesis] = ACTIONS(1710), - [sym__list_marker_dot] = ACTIONS(1710), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_example] = ACTIONS(1710), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1710), - [sym__fenced_code_block_start_backtick] = ACTIONS(1710), - [sym__fenced_code_block_start_tilde] = ACTIONS(1710), - [sym__blank_line_start] = ACTIONS(1710), - [sym_minus_metadata] = ACTIONS(1710), - [sym__pipe_table_start] = ACTIONS(1710), - [sym__fenced_div_start] = ACTIONS(1710), - [sym_ref_id_specifier] = ACTIONS(1710), - [sym__display_math_state_track_marker] = ACTIONS(1710), - [sym__inline_math_state_track_marker] = ACTIONS(1710), - [sym__code_span_start] = ACTIONS(1710), - [sym__html_comment] = ACTIONS(1710), - [sym_raw_specifier] = ACTIONS(1710), - [sym__autolink] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1712), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1712), + [anon_sym_EQ] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_QMARK] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BSLASH] = ACTIONS(1710), + [anon_sym_RBRACK] = ACTIONS(1712), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym__] = ACTIONS(1712), + [anon_sym_BQUOTE] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1712), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1712), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1712), + [sym__escaped_characters] = ACTIONS(1712), + [sym__word] = ACTIONS(1712), + [sym__soft_line_ending] = ACTIONS(1712), + [sym__block_close] = ACTIONS(1712), + [sym__block_quote_start] = ACTIONS(1712), + [sym__indented_chunk_start] = ACTIONS(1712), + [sym_atx_h1_marker] = ACTIONS(1712), + [sym_atx_h2_marker] = ACTIONS(1712), + [sym_atx_h3_marker] = ACTIONS(1712), + [sym_atx_h4_marker] = ACTIONS(1712), + [sym_atx_h5_marker] = ACTIONS(1712), + [sym_atx_h6_marker] = ACTIONS(1712), + [sym__thematic_break] = ACTIONS(1712), + [sym__list_marker_minus] = ACTIONS(1712), + [sym__list_marker_plus] = ACTIONS(1712), + [sym__list_marker_star] = ACTIONS(1712), + [sym__list_marker_parenthesis] = ACTIONS(1712), + [sym__list_marker_dot] = ACTIONS(1712), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_example] = ACTIONS(1712), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1712), + [sym__fenced_code_block_start_backtick] = ACTIONS(1712), + [sym__fenced_code_block_start_tilde] = ACTIONS(1712), + [sym__blank_line_start] = ACTIONS(1712), + [sym_minus_metadata] = ACTIONS(1712), + [sym__pipe_table_start] = ACTIONS(1712), + [sym__fenced_div_start] = ACTIONS(1712), + [sym_ref_id_specifier] = ACTIONS(1712), + [sym__display_math_state_track_marker] = ACTIONS(1712), + [sym__inline_math_state_track_marker] = ACTIONS(1712), + [sym__code_span_start] = ACTIONS(1712), + [sym__html_comment] = ACTIONS(1712), + [sym_raw_specifier] = ACTIONS(1712), + [sym__autolink] = ACTIONS(1712), }, [STATE(405)] = { [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_BSLASH] = ACTIONS(1716), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1714), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1714), - [sym__html_comment] = ACTIONS(1714), - [sym_raw_specifier] = ACTIONS(1714), - [sym__autolink] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1716), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1716), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1716), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1716), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1716), + [sym__html_comment] = ACTIONS(1716), + [sym_raw_specifier] = ACTIONS(1716), + [sym__autolink] = ACTIONS(1716), }, [STATE(406)] = { [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1976), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1976), - [anon_sym_EQ] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1976), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_PERCENT] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1976), - [anon_sym_RPAREN] = ACTIONS(1976), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_PLUS] = ACTIONS(1976), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1976), - [anon_sym_DOT] = ACTIONS(1976), - [anon_sym_SLASH] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_QMARK] = ACTIONS(1976), - [anon_sym_AT] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_BSLASH] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(1976), - [anon_sym_CARET] = ACTIONS(1976), - [anon_sym__] = ACTIONS(1976), - [anon_sym_BQUOTE] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_TILDE] = ACTIONS(1976), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1976), - [sym__escaped_characters] = ACTIONS(1976), - [sym__word] = ACTIONS(1976), - [sym__soft_line_ending] = ACTIONS(1976), - [sym_block_continuation] = ACTIONS(1976), - [sym__block_quote_start] = ACTIONS(1976), - [sym__indented_chunk_start] = ACTIONS(1976), - [sym_atx_h1_marker] = ACTIONS(1976), - [sym_atx_h2_marker] = ACTIONS(1976), - [sym_atx_h3_marker] = ACTIONS(1976), - [sym_atx_h4_marker] = ACTIONS(1976), - [sym_atx_h5_marker] = ACTIONS(1976), - [sym_atx_h6_marker] = ACTIONS(1976), - [sym__thematic_break] = ACTIONS(1976), - [sym__list_marker_minus] = ACTIONS(1976), - [sym__list_marker_plus] = ACTIONS(1976), - [sym__list_marker_star] = ACTIONS(1976), - [sym__list_marker_parenthesis] = ACTIONS(1976), - [sym__list_marker_dot] = ACTIONS(1976), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1976), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1976), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1976), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1976), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1976), - [sym__list_marker_example] = ACTIONS(1976), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1976), - [sym__fenced_code_block_start_backtick] = ACTIONS(1976), - [sym__fenced_code_block_start_tilde] = ACTIONS(1976), - [sym__blank_line_start] = ACTIONS(1976), - [sym_minus_metadata] = ACTIONS(1976), - [sym__pipe_table_start] = ACTIONS(1976), - [sym__fenced_div_start] = ACTIONS(1976), - [sym_ref_id_specifier] = ACTIONS(1976), - [sym__display_math_state_track_marker] = ACTIONS(1976), - [sym__inline_math_state_track_marker] = ACTIONS(1976), - [sym__code_span_start] = ACTIONS(1976), - [sym__html_comment] = ACTIONS(1976), - [sym_raw_specifier] = ACTIONS(1976), - [sym__autolink] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1978), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1978), + [anon_sym_EQ] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_PERCENT] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_PLUS] = ACTIONS(1978), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_DOT] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_QMARK] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_BSLASH] = ACTIONS(1976), + [anon_sym_RBRACK] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym__] = ACTIONS(1978), + [anon_sym_BQUOTE] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1978), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1978), + [sym__escaped_characters] = ACTIONS(1978), + [sym__word] = ACTIONS(1978), + [sym__soft_line_ending] = ACTIONS(1978), + [sym_block_continuation] = ACTIONS(1978), + [sym__block_quote_start] = ACTIONS(1978), + [sym__indented_chunk_start] = ACTIONS(1978), + [sym_atx_h1_marker] = ACTIONS(1978), + [sym_atx_h2_marker] = ACTIONS(1978), + [sym_atx_h3_marker] = ACTIONS(1978), + [sym_atx_h4_marker] = ACTIONS(1978), + [sym_atx_h5_marker] = ACTIONS(1978), + [sym_atx_h6_marker] = ACTIONS(1978), + [sym__thematic_break] = ACTIONS(1978), + [sym__list_marker_minus] = ACTIONS(1978), + [sym__list_marker_plus] = ACTIONS(1978), + [sym__list_marker_star] = ACTIONS(1978), + [sym__list_marker_parenthesis] = ACTIONS(1978), + [sym__list_marker_dot] = ACTIONS(1978), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1978), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1978), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1978), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1978), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1978), + [sym__list_marker_example] = ACTIONS(1978), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1978), + [sym__fenced_code_block_start_backtick] = ACTIONS(1978), + [sym__fenced_code_block_start_tilde] = ACTIONS(1978), + [sym__blank_line_start] = ACTIONS(1978), + [sym_minus_metadata] = ACTIONS(1978), + [sym__pipe_table_start] = ACTIONS(1978), + [sym__fenced_div_start] = ACTIONS(1978), + [sym_ref_id_specifier] = ACTIONS(1978), + [sym__display_math_state_track_marker] = ACTIONS(1978), + [sym__inline_math_state_track_marker] = ACTIONS(1978), + [sym__code_span_start] = ACTIONS(1978), + [sym__html_comment] = ACTIONS(1978), + [sym_raw_specifier] = ACTIONS(1978), + [sym__autolink] = ACTIONS(1978), }, [STATE(407)] = { [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_BSLASH] = ACTIONS(1520), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1518), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1518), - [sym__html_comment] = ACTIONS(1518), - [sym_raw_specifier] = ACTIONS(1518), - [sym__autolink] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym__] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1520), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1520), + [sym__escaped_characters] = ACTIONS(1520), + [sym__word] = ACTIONS(1520), + [sym__soft_line_ending] = ACTIONS(1520), + [sym__block_close] = ACTIONS(1520), + [sym__block_quote_start] = ACTIONS(1520), + [sym__indented_chunk_start] = ACTIONS(1520), + [sym_atx_h1_marker] = ACTIONS(1520), + [sym_atx_h2_marker] = ACTIONS(1520), + [sym_atx_h3_marker] = ACTIONS(1520), + [sym_atx_h4_marker] = ACTIONS(1520), + [sym_atx_h5_marker] = ACTIONS(1520), + [sym_atx_h6_marker] = ACTIONS(1520), + [sym__thematic_break] = ACTIONS(1520), + [sym__list_marker_minus] = ACTIONS(1520), + [sym__list_marker_plus] = ACTIONS(1520), + [sym__list_marker_star] = ACTIONS(1520), + [sym__list_marker_parenthesis] = ACTIONS(1520), + [sym__list_marker_dot] = ACTIONS(1520), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_example] = ACTIONS(1520), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1520), + [sym__fenced_code_block_start_backtick] = ACTIONS(1520), + [sym__fenced_code_block_start_tilde] = ACTIONS(1520), + [sym__blank_line_start] = ACTIONS(1520), + [sym_minus_metadata] = ACTIONS(1520), + [sym__pipe_table_start] = ACTIONS(1520), + [sym__fenced_div_start] = ACTIONS(1520), + [sym_ref_id_specifier] = ACTIONS(1520), + [sym__display_math_state_track_marker] = ACTIONS(1520), + [sym__inline_math_state_track_marker] = ACTIONS(1520), + [sym__code_span_start] = ACTIONS(1520), + [sym__html_comment] = ACTIONS(1520), + [sym_raw_specifier] = ACTIONS(1520), + [sym__autolink] = ACTIONS(1520), }, [STATE(408)] = { [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1578), - [anon_sym_AT] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_BSLASH] = ACTIONS(1580), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1578), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1578), - [sym__html_comment] = ACTIONS(1578), - [sym_raw_specifier] = ACTIONS(1578), - [sym__autolink] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1580), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1580), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1580), + [sym__html_comment] = ACTIONS(1580), + [sym_raw_specifier] = ACTIONS(1580), + [sym__autolink] = ACTIONS(1580), }, [STATE(409)] = { - [ts_builtin_sym_end] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1852), [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1850), - [anon_sym_EQ] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_COMMA] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1850), - [anon_sym_SLASH] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(1850), - [anon_sym_AT] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_BSLASH] = ACTIONS(1852), - [anon_sym_RBRACK] = ACTIONS(1850), - [anon_sym_CARET] = ACTIONS(1850), - [anon_sym__] = ACTIONS(1850), - [anon_sym_BQUOTE] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1850), - [sym__escaped_characters] = ACTIONS(1850), - [sym__word] = ACTIONS(1850), - [sym__soft_line_ending] = ACTIONS(1850), - [sym__block_quote_start] = ACTIONS(1850), - [sym__indented_chunk_start] = ACTIONS(1850), - [sym_atx_h1_marker] = ACTIONS(1850), - [sym_atx_h2_marker] = ACTIONS(1850), - [sym_atx_h3_marker] = ACTIONS(1850), - [sym_atx_h4_marker] = ACTIONS(1850), - [sym_atx_h5_marker] = ACTIONS(1850), - [sym_atx_h6_marker] = ACTIONS(1850), - [sym__thematic_break] = ACTIONS(1850), - [sym__list_marker_minus] = ACTIONS(1850), - [sym__list_marker_plus] = ACTIONS(1850), - [sym__list_marker_star] = ACTIONS(1850), - [sym__list_marker_parenthesis] = ACTIONS(1850), - [sym__list_marker_dot] = ACTIONS(1850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1850), - [sym__list_marker_example] = ACTIONS(1850), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1850), - [sym__fenced_code_block_start_backtick] = ACTIONS(1850), - [sym__fenced_code_block_start_tilde] = ACTIONS(1850), - [sym__blank_line_start] = ACTIONS(1850), - [sym_minus_metadata] = ACTIONS(1850), - [sym__pipe_table_start] = ACTIONS(1850), - [sym__fenced_div_start] = ACTIONS(1850), - [sym_ref_id_specifier] = ACTIONS(1850), - [sym__display_math_state_track_marker] = ACTIONS(1850), - [sym__inline_math_state_track_marker] = ACTIONS(1850), - [sym__code_span_start] = ACTIONS(1850), - [sym__html_comment] = ACTIONS(1850), - [sym_raw_specifier] = ACTIONS(1850), - [sym__autolink] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1852), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1852), + [anon_sym_EQ] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_DQUOTE] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_DOLLAR] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_RPAREN] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_COMMA] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_DOT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_QMARK] = ACTIONS(1852), + [anon_sym_AT] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_BSLASH] = ACTIONS(1850), + [anon_sym_RBRACK] = ACTIONS(1852), + [anon_sym_CARET] = ACTIONS(1852), + [anon_sym__] = ACTIONS(1852), + [anon_sym_BQUOTE] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_TILDE] = ACTIONS(1852), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1852), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1852), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1852), + [sym__escaped_characters] = ACTIONS(1852), + [sym__word] = ACTIONS(1852), + [sym__soft_line_ending] = ACTIONS(1852), + [sym__block_quote_start] = ACTIONS(1852), + [sym__indented_chunk_start] = ACTIONS(1852), + [sym_atx_h1_marker] = ACTIONS(1852), + [sym_atx_h2_marker] = ACTIONS(1852), + [sym_atx_h3_marker] = ACTIONS(1852), + [sym_atx_h4_marker] = ACTIONS(1852), + [sym_atx_h5_marker] = ACTIONS(1852), + [sym_atx_h6_marker] = ACTIONS(1852), + [sym__thematic_break] = ACTIONS(1852), + [sym__list_marker_minus] = ACTIONS(1852), + [sym__list_marker_plus] = ACTIONS(1852), + [sym__list_marker_star] = ACTIONS(1852), + [sym__list_marker_parenthesis] = ACTIONS(1852), + [sym__list_marker_dot] = ACTIONS(1852), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1852), + [sym__list_marker_example] = ACTIONS(1852), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1852), + [sym__fenced_code_block_start_backtick] = ACTIONS(1852), + [sym__fenced_code_block_start_tilde] = ACTIONS(1852), + [sym__blank_line_start] = ACTIONS(1852), + [sym_minus_metadata] = ACTIONS(1852), + [sym__pipe_table_start] = ACTIONS(1852), + [sym__fenced_div_start] = ACTIONS(1852), + [sym_ref_id_specifier] = ACTIONS(1852), + [sym__display_math_state_track_marker] = ACTIONS(1852), + [sym__inline_math_state_track_marker] = ACTIONS(1852), + [sym__code_span_start] = ACTIONS(1852), + [sym__html_comment] = ACTIONS(1852), + [sym_raw_specifier] = ACTIONS(1852), + [sym__autolink] = ACTIONS(1852), }, [STATE(410)] = { [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_BSLASH] = ACTIONS(1586), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1584), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1584), - [sym__html_comment] = ACTIONS(1584), - [sym_raw_specifier] = ACTIONS(1584), - [sym__autolink] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1586), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1586), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1586), + [sym__html_comment] = ACTIONS(1586), + [sym_raw_specifier] = ACTIONS(1586), + [sym__autolink] = ACTIONS(1586), }, [STATE(411)] = { [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_BSLASH] = ACTIONS(1592), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1590), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1590), - [sym__html_comment] = ACTIONS(1590), - [sym_raw_specifier] = ACTIONS(1590), - [sym__autolink] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1592), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1592), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1592), + [sym__html_comment] = ACTIONS(1592), + [sym_raw_specifier] = ACTIONS(1592), + [sym__autolink] = ACTIONS(1592), }, [STATE(412)] = { [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_BSLASH] = ACTIONS(1598), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1596), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1596), - [sym__html_comment] = ACTIONS(1596), - [sym_raw_specifier] = ACTIONS(1596), - [sym__autolink] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_BSLASH] = ACTIONS(1596), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1598), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1598), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1598), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1598), + [sym__html_comment] = ACTIONS(1598), + [sym_raw_specifier] = ACTIONS(1598), + [sym__autolink] = ACTIONS(1598), }, [STATE(413)] = { [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1980), - [anon_sym_PERCENT] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1980), - [anon_sym_RPAREN] = ACTIONS(1980), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1980), - [anon_sym_COMMA] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_DOT] = ACTIONS(1980), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_QMARK] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_BSLASH] = ACTIONS(1982), - [anon_sym_RBRACK] = ACTIONS(1980), - [anon_sym_CARET] = ACTIONS(1980), - [anon_sym__] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_TILDE] = ACTIONS(1980), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1980), - [sym__escaped_characters] = ACTIONS(1980), - [sym__word] = ACTIONS(1980), - [sym__soft_line_ending] = ACTIONS(1980), - [sym_block_continuation] = ACTIONS(1980), - [sym__block_quote_start] = ACTIONS(1980), - [sym__indented_chunk_start] = ACTIONS(1980), - [sym_atx_h1_marker] = ACTIONS(1980), - [sym_atx_h2_marker] = ACTIONS(1980), - [sym_atx_h3_marker] = ACTIONS(1980), - [sym_atx_h4_marker] = ACTIONS(1980), - [sym_atx_h5_marker] = ACTIONS(1980), - [sym_atx_h6_marker] = ACTIONS(1980), - [sym__thematic_break] = ACTIONS(1980), - [sym__list_marker_minus] = ACTIONS(1980), - [sym__list_marker_plus] = ACTIONS(1980), - [sym__list_marker_star] = ACTIONS(1980), - [sym__list_marker_parenthesis] = ACTIONS(1980), - [sym__list_marker_dot] = ACTIONS(1980), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1980), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1980), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1980), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1980), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1980), - [sym__list_marker_example] = ACTIONS(1980), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1980), - [sym__fenced_code_block_start_backtick] = ACTIONS(1980), - [sym__fenced_code_block_start_tilde] = ACTIONS(1980), - [sym__blank_line_start] = ACTIONS(1980), - [sym_minus_metadata] = ACTIONS(1980), - [sym__pipe_table_start] = ACTIONS(1980), - [sym__fenced_div_start] = ACTIONS(1980), - [sym_ref_id_specifier] = ACTIONS(1980), - [sym__display_math_state_track_marker] = ACTIONS(1980), - [sym__inline_math_state_track_marker] = ACTIONS(1980), - [sym__code_span_start] = ACTIONS(1980), - [sym__html_comment] = ACTIONS(1980), - [sym_raw_specifier] = ACTIONS(1980), - [sym__autolink] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1982), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1982), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1982), + [anon_sym_PERCENT] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_PLUS] = ACTIONS(1982), + [anon_sym_COMMA] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_DOT] = ACTIONS(1982), + [anon_sym_SLASH] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_QMARK] = ACTIONS(1982), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_BSLASH] = ACTIONS(1980), + [anon_sym_RBRACK] = ACTIONS(1982), + [anon_sym_CARET] = ACTIONS(1982), + [anon_sym__] = ACTIONS(1982), + [anon_sym_BQUOTE] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1982), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1982), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1982), + [sym__escaped_characters] = ACTIONS(1982), + [sym__word] = ACTIONS(1982), + [sym__soft_line_ending] = ACTIONS(1982), + [sym_block_continuation] = ACTIONS(1982), + [sym__block_quote_start] = ACTIONS(1982), + [sym__indented_chunk_start] = ACTIONS(1982), + [sym_atx_h1_marker] = ACTIONS(1982), + [sym_atx_h2_marker] = ACTIONS(1982), + [sym_atx_h3_marker] = ACTIONS(1982), + [sym_atx_h4_marker] = ACTIONS(1982), + [sym_atx_h5_marker] = ACTIONS(1982), + [sym_atx_h6_marker] = ACTIONS(1982), + [sym__thematic_break] = ACTIONS(1982), + [sym__list_marker_minus] = ACTIONS(1982), + [sym__list_marker_plus] = ACTIONS(1982), + [sym__list_marker_star] = ACTIONS(1982), + [sym__list_marker_parenthesis] = ACTIONS(1982), + [sym__list_marker_dot] = ACTIONS(1982), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1982), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1982), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1982), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1982), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1982), + [sym__list_marker_example] = ACTIONS(1982), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1982), + [sym__fenced_code_block_start_backtick] = ACTIONS(1982), + [sym__fenced_code_block_start_tilde] = ACTIONS(1982), + [sym__blank_line_start] = ACTIONS(1982), + [sym_minus_metadata] = ACTIONS(1982), + [sym__pipe_table_start] = ACTIONS(1982), + [sym__fenced_div_start] = ACTIONS(1982), + [sym_ref_id_specifier] = ACTIONS(1982), + [sym__display_math_state_track_marker] = ACTIONS(1982), + [sym__inline_math_state_track_marker] = ACTIONS(1982), + [sym__code_span_start] = ACTIONS(1982), + [sym__html_comment] = ACTIONS(1982), + [sym_raw_specifier] = ACTIONS(1982), + [sym__autolink] = ACTIONS(1982), }, [STATE(414)] = { [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1604), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1602), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1602), - [sym__html_comment] = ACTIONS(1602), - [sym_raw_specifier] = ACTIONS(1602), - [sym__autolink] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1604), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1604), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1604), + [sym__html_comment] = ACTIONS(1604), + [sym_raw_specifier] = ACTIONS(1604), + [sym__autolink] = ACTIONS(1604), }, [STATE(415)] = { [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1726), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_BSLASH] = ACTIONS(1728), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1726), - [sym__escaped_characters] = ACTIONS(1726), - [sym__word] = ACTIONS(1726), - [sym__soft_line_ending] = ACTIONS(1726), - [sym__block_close] = 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), - [sym__code_span_start] = ACTIONS(1726), - [sym__html_comment] = ACTIONS(1726), - [sym_raw_specifier] = ACTIONS(1726), - [sym__autolink] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1728), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_BSLASH] = ACTIONS(1726), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1728), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1728), + [sym__escaped_characters] = ACTIONS(1728), + [sym__word] = ACTIONS(1728), + [sym__soft_line_ending] = ACTIONS(1728), + [sym__block_close] = 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), + [sym__code_span_start] = ACTIONS(1728), + [sym__html_comment] = ACTIONS(1728), + [sym_raw_specifier] = ACTIONS(1728), + [sym__autolink] = ACTIONS(1728), }, [STATE(416)] = { [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1730), - [anon_sym_AT] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_BSLASH] = ACTIONS(1732), - [anon_sym_RBRACK] = ACTIONS(1730), - [anon_sym_CARET] = ACTIONS(1730), - [anon_sym__] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1730), - [sym__escaped_characters] = ACTIONS(1730), - [sym__word] = ACTIONS(1730), - [sym__soft_line_ending] = ACTIONS(1730), - [sym__block_close] = 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), - [sym__code_span_start] = ACTIONS(1730), - [sym__html_comment] = ACTIONS(1730), - [sym_raw_specifier] = ACTIONS(1730), - [sym__autolink] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1732), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1732), + [anon_sym_EQ] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PERCENT] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_RPAREN] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_COMMA] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_QMARK] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_BSLASH] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1732), + [anon_sym_CARET] = ACTIONS(1732), + [anon_sym__] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1732), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1732), + [sym__escaped_characters] = ACTIONS(1732), + [sym__word] = ACTIONS(1732), + [sym__soft_line_ending] = ACTIONS(1732), + [sym__block_close] = ACTIONS(1732), + [sym__block_quote_start] = ACTIONS(1732), + [sym__indented_chunk_start] = ACTIONS(1732), + [sym_atx_h1_marker] = ACTIONS(1732), + [sym_atx_h2_marker] = ACTIONS(1732), + [sym_atx_h3_marker] = ACTIONS(1732), + [sym_atx_h4_marker] = ACTIONS(1732), + [sym_atx_h5_marker] = ACTIONS(1732), + [sym_atx_h6_marker] = ACTIONS(1732), + [sym__thematic_break] = ACTIONS(1732), + [sym__list_marker_minus] = ACTIONS(1732), + [sym__list_marker_plus] = ACTIONS(1732), + [sym__list_marker_star] = ACTIONS(1732), + [sym__list_marker_parenthesis] = ACTIONS(1732), + [sym__list_marker_dot] = ACTIONS(1732), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1732), + [sym__list_marker_example] = ACTIONS(1732), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1732), + [sym__fenced_code_block_start_backtick] = ACTIONS(1732), + [sym__fenced_code_block_start_tilde] = ACTIONS(1732), + [sym__blank_line_start] = ACTIONS(1732), + [sym_minus_metadata] = ACTIONS(1732), + [sym__pipe_table_start] = ACTIONS(1732), + [sym__fenced_div_start] = ACTIONS(1732), + [sym_ref_id_specifier] = ACTIONS(1732), + [sym__display_math_state_track_marker] = ACTIONS(1732), + [sym__inline_math_state_track_marker] = ACTIONS(1732), + [sym__code_span_start] = ACTIONS(1732), + [sym__html_comment] = ACTIONS(1732), + [sym_raw_specifier] = ACTIONS(1732), + [sym__autolink] = ACTIONS(1732), }, [STATE(417)] = { [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_QMARK] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_BSLASH] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1734), - [anon_sym_CARET] = ACTIONS(1734), - [anon_sym__] = ACTIONS(1734), - [anon_sym_BQUOTE] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1734), - [sym__escaped_characters] = ACTIONS(1734), - [sym__word] = ACTIONS(1734), - [sym__soft_line_ending] = ACTIONS(1734), - [sym__block_close] = ACTIONS(1734), - [sym__block_quote_start] = ACTIONS(1734), - [sym__indented_chunk_start] = ACTIONS(1734), - [sym_atx_h1_marker] = ACTIONS(1734), - [sym_atx_h2_marker] = ACTIONS(1734), - [sym_atx_h3_marker] = ACTIONS(1734), - [sym_atx_h4_marker] = ACTIONS(1734), - [sym_atx_h5_marker] = ACTIONS(1734), - [sym_atx_h6_marker] = ACTIONS(1734), - [sym__thematic_break] = ACTIONS(1734), - [sym__list_marker_minus] = ACTIONS(1734), - [sym__list_marker_plus] = ACTIONS(1734), - [sym__list_marker_star] = ACTIONS(1734), - [sym__list_marker_parenthesis] = ACTIONS(1734), - [sym__list_marker_dot] = ACTIONS(1734), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1734), - [sym__list_marker_example] = ACTIONS(1734), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1734), - [sym__fenced_code_block_start_backtick] = ACTIONS(1734), - [sym__fenced_code_block_start_tilde] = ACTIONS(1734), - [sym__blank_line_start] = ACTIONS(1734), - [sym_minus_metadata] = ACTIONS(1734), - [sym__pipe_table_start] = ACTIONS(1734), - [sym__fenced_div_start] = ACTIONS(1734), - [sym_ref_id_specifier] = ACTIONS(1734), - [sym__display_math_state_track_marker] = ACTIONS(1734), - [sym__inline_math_state_track_marker] = ACTIONS(1734), - [sym__code_span_start] = ACTIONS(1734), - [sym__html_comment] = ACTIONS(1734), - [sym_raw_specifier] = ACTIONS(1734), - [sym__autolink] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1736), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1736), + [anon_sym_EQ] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_PERCENT] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_RPAREN] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_COMMA] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_DOT] = ACTIONS(1736), + [anon_sym_SLASH] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_QMARK] = ACTIONS(1736), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_BSLASH] = ACTIONS(1734), + [anon_sym_RBRACK] = ACTIONS(1736), + [anon_sym_CARET] = ACTIONS(1736), + [anon_sym__] = ACTIONS(1736), + [anon_sym_BQUOTE] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1736), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1736), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1736), + [sym__escaped_characters] = ACTIONS(1736), + [sym__word] = ACTIONS(1736), + [sym__soft_line_ending] = ACTIONS(1736), + [sym__block_close] = ACTIONS(1736), + [sym__block_quote_start] = ACTIONS(1736), + [sym__indented_chunk_start] = ACTIONS(1736), + [sym_atx_h1_marker] = ACTIONS(1736), + [sym_atx_h2_marker] = ACTIONS(1736), + [sym_atx_h3_marker] = ACTIONS(1736), + [sym_atx_h4_marker] = ACTIONS(1736), + [sym_atx_h5_marker] = ACTIONS(1736), + [sym_atx_h6_marker] = ACTIONS(1736), + [sym__thematic_break] = ACTIONS(1736), + [sym__list_marker_minus] = ACTIONS(1736), + [sym__list_marker_plus] = ACTIONS(1736), + [sym__list_marker_star] = ACTIONS(1736), + [sym__list_marker_parenthesis] = ACTIONS(1736), + [sym__list_marker_dot] = ACTIONS(1736), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1736), + [sym__list_marker_example] = ACTIONS(1736), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1736), + [sym__fenced_code_block_start_backtick] = ACTIONS(1736), + [sym__fenced_code_block_start_tilde] = ACTIONS(1736), + [sym__blank_line_start] = ACTIONS(1736), + [sym_minus_metadata] = ACTIONS(1736), + [sym__pipe_table_start] = ACTIONS(1736), + [sym__fenced_div_start] = ACTIONS(1736), + [sym_ref_id_specifier] = ACTIONS(1736), + [sym__display_math_state_track_marker] = ACTIONS(1736), + [sym__inline_math_state_track_marker] = ACTIONS(1736), + [sym__code_span_start] = ACTIONS(1736), + [sym__html_comment] = ACTIONS(1736), + [sym_raw_specifier] = ACTIONS(1736), + [sym__autolink] = ACTIONS(1736), }, [STATE(418)] = { [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_PERCENT] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_QMARK] = ACTIONS(1738), - [anon_sym_AT] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_BSLASH] = ACTIONS(1740), - [anon_sym_RBRACK] = ACTIONS(1738), - [anon_sym_CARET] = ACTIONS(1738), - [anon_sym__] = ACTIONS(1738), - [anon_sym_BQUOTE] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1738), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1738), - [sym__escaped_characters] = ACTIONS(1738), - [sym__word] = ACTIONS(1738), - [sym__soft_line_ending] = ACTIONS(1738), - [sym__block_close] = ACTIONS(1738), - [sym__block_quote_start] = ACTIONS(1738), - [sym__indented_chunk_start] = ACTIONS(1738), - [sym_atx_h1_marker] = ACTIONS(1738), - [sym_atx_h2_marker] = ACTIONS(1738), - [sym_atx_h3_marker] = ACTIONS(1738), - [sym_atx_h4_marker] = ACTIONS(1738), - [sym_atx_h5_marker] = ACTIONS(1738), - [sym_atx_h6_marker] = ACTIONS(1738), - [sym__thematic_break] = ACTIONS(1738), - [sym__list_marker_minus] = ACTIONS(1738), - [sym__list_marker_plus] = ACTIONS(1738), - [sym__list_marker_star] = ACTIONS(1738), - [sym__list_marker_parenthesis] = ACTIONS(1738), - [sym__list_marker_dot] = ACTIONS(1738), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1738), - [sym__list_marker_example] = ACTIONS(1738), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1738), - [sym__fenced_code_block_start_backtick] = ACTIONS(1738), - [sym__fenced_code_block_start_tilde] = ACTIONS(1738), - [sym__blank_line_start] = ACTIONS(1738), - [sym_minus_metadata] = ACTIONS(1738), - [sym__pipe_table_start] = ACTIONS(1738), - [sym__fenced_div_start] = ACTIONS(1738), - [sym_ref_id_specifier] = ACTIONS(1738), - [sym__display_math_state_track_marker] = ACTIONS(1738), - [sym__inline_math_state_track_marker] = ACTIONS(1738), - [sym__code_span_start] = ACTIONS(1738), - [sym__html_comment] = ACTIONS(1738), - [sym_raw_specifier] = ACTIONS(1738), - [sym__autolink] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1740), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1740), + [anon_sym_EQ] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(1740), + [anon_sym_DOLLAR] = ACTIONS(1740), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1740), + [anon_sym_SLASH] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_QMARK] = ACTIONS(1740), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_BSLASH] = ACTIONS(1738), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_CARET] = ACTIONS(1740), + [anon_sym__] = ACTIONS(1740), + [anon_sym_BQUOTE] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1740), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1740), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1740), + [sym__escaped_characters] = ACTIONS(1740), + [sym__word] = ACTIONS(1740), + [sym__soft_line_ending] = ACTIONS(1740), + [sym__block_close] = ACTIONS(1740), + [sym__block_quote_start] = ACTIONS(1740), + [sym__indented_chunk_start] = ACTIONS(1740), + [sym_atx_h1_marker] = ACTIONS(1740), + [sym_atx_h2_marker] = ACTIONS(1740), + [sym_atx_h3_marker] = ACTIONS(1740), + [sym_atx_h4_marker] = ACTIONS(1740), + [sym_atx_h5_marker] = ACTIONS(1740), + [sym_atx_h6_marker] = ACTIONS(1740), + [sym__thematic_break] = ACTIONS(1740), + [sym__list_marker_minus] = ACTIONS(1740), + [sym__list_marker_plus] = ACTIONS(1740), + [sym__list_marker_star] = ACTIONS(1740), + [sym__list_marker_parenthesis] = ACTIONS(1740), + [sym__list_marker_dot] = ACTIONS(1740), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1740), + [sym__list_marker_example] = ACTIONS(1740), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1740), + [sym__fenced_code_block_start_backtick] = ACTIONS(1740), + [sym__fenced_code_block_start_tilde] = ACTIONS(1740), + [sym__blank_line_start] = ACTIONS(1740), + [sym_minus_metadata] = ACTIONS(1740), + [sym__pipe_table_start] = ACTIONS(1740), + [sym__fenced_div_start] = ACTIONS(1740), + [sym_ref_id_specifier] = ACTIONS(1740), + [sym__display_math_state_track_marker] = ACTIONS(1740), + [sym__inline_math_state_track_marker] = ACTIONS(1740), + [sym__code_span_start] = ACTIONS(1740), + [sym__html_comment] = ACTIONS(1740), + [sym_raw_specifier] = ACTIONS(1740), + [sym__autolink] = ACTIONS(1740), }, [STATE(419)] = { [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_DOT] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_QMARK] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_BSLASH] = ACTIONS(1744), - [anon_sym_RBRACK] = ACTIONS(1742), - [anon_sym_CARET] = ACTIONS(1742), - [anon_sym__] = ACTIONS(1742), - [anon_sym_BQUOTE] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_TILDE] = ACTIONS(1742), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1742), - [sym__escaped_characters] = ACTIONS(1742), - [sym__word] = ACTIONS(1742), - [sym__soft_line_ending] = ACTIONS(1742), - [sym__block_close] = ACTIONS(1742), - [sym__block_quote_start] = ACTIONS(1742), - [sym__indented_chunk_start] = ACTIONS(1742), - [sym_atx_h1_marker] = ACTIONS(1742), - [sym_atx_h2_marker] = ACTIONS(1742), - [sym_atx_h3_marker] = ACTIONS(1742), - [sym_atx_h4_marker] = ACTIONS(1742), - [sym_atx_h5_marker] = ACTIONS(1742), - [sym_atx_h6_marker] = ACTIONS(1742), - [sym__thematic_break] = ACTIONS(1742), - [sym__list_marker_minus] = ACTIONS(1742), - [sym__list_marker_plus] = ACTIONS(1742), - [sym__list_marker_star] = ACTIONS(1742), - [sym__list_marker_parenthesis] = ACTIONS(1742), - [sym__list_marker_dot] = ACTIONS(1742), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1742), - [sym__list_marker_example] = ACTIONS(1742), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1742), - [sym__fenced_code_block_start_backtick] = ACTIONS(1742), - [sym__fenced_code_block_start_tilde] = ACTIONS(1742), - [sym__blank_line_start] = ACTIONS(1742), - [sym_minus_metadata] = ACTIONS(1742), - [sym__pipe_table_start] = ACTIONS(1742), - [sym__fenced_div_start] = ACTIONS(1742), - [sym_ref_id_specifier] = ACTIONS(1742), - [sym__display_math_state_track_marker] = ACTIONS(1742), - [sym__inline_math_state_track_marker] = ACTIONS(1742), - [sym__code_span_start] = ACTIONS(1742), - [sym__html_comment] = ACTIONS(1742), - [sym_raw_specifier] = ACTIONS(1742), - [sym__autolink] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1744), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_RPAREN] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_COMMA] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_BSLASH] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(1744), + [anon_sym_CARET] = ACTIONS(1744), + [anon_sym__] = ACTIONS(1744), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_TILDE] = ACTIONS(1744), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1744), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1744), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1744), + [sym__escaped_characters] = ACTIONS(1744), + [sym__word] = ACTIONS(1744), + [sym__soft_line_ending] = ACTIONS(1744), + [sym__block_close] = ACTIONS(1744), + [sym__block_quote_start] = ACTIONS(1744), + [sym__indented_chunk_start] = ACTIONS(1744), + [sym_atx_h1_marker] = ACTIONS(1744), + [sym_atx_h2_marker] = ACTIONS(1744), + [sym_atx_h3_marker] = ACTIONS(1744), + [sym_atx_h4_marker] = ACTIONS(1744), + [sym_atx_h5_marker] = ACTIONS(1744), + [sym_atx_h6_marker] = ACTIONS(1744), + [sym__thematic_break] = ACTIONS(1744), + [sym__list_marker_minus] = ACTIONS(1744), + [sym__list_marker_plus] = ACTIONS(1744), + [sym__list_marker_star] = ACTIONS(1744), + [sym__list_marker_parenthesis] = ACTIONS(1744), + [sym__list_marker_dot] = ACTIONS(1744), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1744), + [sym__list_marker_example] = ACTIONS(1744), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1744), + [sym__fenced_code_block_start_backtick] = ACTIONS(1744), + [sym__fenced_code_block_start_tilde] = ACTIONS(1744), + [sym__blank_line_start] = ACTIONS(1744), + [sym_minus_metadata] = ACTIONS(1744), + [sym__pipe_table_start] = ACTIONS(1744), + [sym__fenced_div_start] = ACTIONS(1744), + [sym_ref_id_specifier] = ACTIONS(1744), + [sym__display_math_state_track_marker] = ACTIONS(1744), + [sym__inline_math_state_track_marker] = ACTIONS(1744), + [sym__code_span_start] = ACTIONS(1744), + [sym__html_comment] = ACTIONS(1744), + [sym_raw_specifier] = ACTIONS(1744), + [sym__autolink] = ACTIONS(1744), }, [STATE(420)] = { [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_DOLLAR] = ACTIONS(1746), - [anon_sym_PERCENT] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_BSLASH] = ACTIONS(1748), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_CARET] = ACTIONS(1746), - [anon_sym__] = ACTIONS(1746), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_TILDE] = ACTIONS(1746), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1746), - [sym__escaped_characters] = ACTIONS(1746), - [sym__word] = ACTIONS(1746), - [sym__soft_line_ending] = ACTIONS(1746), - [sym__block_close] = ACTIONS(1746), - [sym__block_quote_start] = ACTIONS(1746), - [sym__indented_chunk_start] = ACTIONS(1746), - [sym_atx_h1_marker] = ACTIONS(1746), - [sym_atx_h2_marker] = ACTIONS(1746), - [sym_atx_h3_marker] = ACTIONS(1746), - [sym_atx_h4_marker] = ACTIONS(1746), - [sym_atx_h5_marker] = ACTIONS(1746), - [sym_atx_h6_marker] = ACTIONS(1746), - [sym__thematic_break] = ACTIONS(1746), - [sym__list_marker_minus] = ACTIONS(1746), - [sym__list_marker_plus] = ACTIONS(1746), - [sym__list_marker_star] = ACTIONS(1746), - [sym__list_marker_parenthesis] = ACTIONS(1746), - [sym__list_marker_dot] = ACTIONS(1746), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1746), - [sym__list_marker_example] = ACTIONS(1746), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1746), - [sym__fenced_code_block_start_backtick] = ACTIONS(1746), - [sym__fenced_code_block_start_tilde] = ACTIONS(1746), - [sym__blank_line_start] = ACTIONS(1746), - [sym_minus_metadata] = ACTIONS(1746), - [sym__pipe_table_start] = ACTIONS(1746), - [sym__fenced_div_start] = ACTIONS(1746), - [sym_ref_id_specifier] = ACTIONS(1746), - [sym__display_math_state_track_marker] = ACTIONS(1746), - [sym__inline_math_state_track_marker] = ACTIONS(1746), - [sym__code_span_start] = ACTIONS(1746), - [sym__html_comment] = ACTIONS(1746), - [sym_raw_specifier] = ACTIONS(1746), - [sym__autolink] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1748), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1748), + [anon_sym_EQ] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_DQUOTE] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_DOLLAR] = ACTIONS(1748), + [anon_sym_PERCENT] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_RPAREN] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_COMMA] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_DOT] = ACTIONS(1748), + [anon_sym_SLASH] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_BSLASH] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1748), + [anon_sym_CARET] = ACTIONS(1748), + [anon_sym__] = ACTIONS(1748), + [anon_sym_BQUOTE] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1748), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1748), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1748), + [sym__escaped_characters] = ACTIONS(1748), + [sym__word] = ACTIONS(1748), + [sym__soft_line_ending] = ACTIONS(1748), + [sym__block_close] = ACTIONS(1748), + [sym__block_quote_start] = ACTIONS(1748), + [sym__indented_chunk_start] = ACTIONS(1748), + [sym_atx_h1_marker] = ACTIONS(1748), + [sym_atx_h2_marker] = ACTIONS(1748), + [sym_atx_h3_marker] = ACTIONS(1748), + [sym_atx_h4_marker] = ACTIONS(1748), + [sym_atx_h5_marker] = ACTIONS(1748), + [sym_atx_h6_marker] = ACTIONS(1748), + [sym__thematic_break] = ACTIONS(1748), + [sym__list_marker_minus] = ACTIONS(1748), + [sym__list_marker_plus] = ACTIONS(1748), + [sym__list_marker_star] = ACTIONS(1748), + [sym__list_marker_parenthesis] = ACTIONS(1748), + [sym__list_marker_dot] = ACTIONS(1748), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1748), + [sym__list_marker_example] = ACTIONS(1748), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1748), + [sym__fenced_code_block_start_backtick] = ACTIONS(1748), + [sym__fenced_code_block_start_tilde] = ACTIONS(1748), + [sym__blank_line_start] = ACTIONS(1748), + [sym_minus_metadata] = ACTIONS(1748), + [sym__pipe_table_start] = ACTIONS(1748), + [sym__fenced_div_start] = ACTIONS(1748), + [sym_ref_id_specifier] = ACTIONS(1748), + [sym__display_math_state_track_marker] = ACTIONS(1748), + [sym__inline_math_state_track_marker] = ACTIONS(1748), + [sym__code_span_start] = ACTIONS(1748), + [sym__html_comment] = ACTIONS(1748), + [sym_raw_specifier] = ACTIONS(1748), + [sym__autolink] = ACTIONS(1748), }, [STATE(421)] = { [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_COMMA] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_DOT] = ACTIONS(1750), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1750), - [anon_sym_AT] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_BSLASH] = ACTIONS(1752), - [anon_sym_RBRACK] = ACTIONS(1750), - [anon_sym_CARET] = ACTIONS(1750), - [anon_sym__] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1750), - [sym__escaped_characters] = ACTIONS(1750), - [sym__word] = ACTIONS(1750), - [sym__soft_line_ending] = ACTIONS(1750), - [sym__block_close] = ACTIONS(1750), - [sym__block_quote_start] = ACTIONS(1750), - [sym__indented_chunk_start] = ACTIONS(1750), - [sym_atx_h1_marker] = ACTIONS(1750), - [sym_atx_h2_marker] = ACTIONS(1750), - [sym_atx_h3_marker] = ACTIONS(1750), - [sym_atx_h4_marker] = ACTIONS(1750), - [sym_atx_h5_marker] = ACTIONS(1750), - [sym_atx_h6_marker] = ACTIONS(1750), - [sym__thematic_break] = ACTIONS(1750), - [sym__list_marker_minus] = ACTIONS(1750), - [sym__list_marker_plus] = ACTIONS(1750), - [sym__list_marker_star] = ACTIONS(1750), - [sym__list_marker_parenthesis] = ACTIONS(1750), - [sym__list_marker_dot] = ACTIONS(1750), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1750), - [sym__list_marker_example] = ACTIONS(1750), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1750), - [sym__fenced_code_block_start_backtick] = ACTIONS(1750), - [sym__fenced_code_block_start_tilde] = ACTIONS(1750), - [sym__blank_line_start] = ACTIONS(1750), - [sym_minus_metadata] = ACTIONS(1750), - [sym__pipe_table_start] = ACTIONS(1750), - [sym__fenced_div_start] = ACTIONS(1750), - [sym_ref_id_specifier] = ACTIONS(1750), - [sym__display_math_state_track_marker] = ACTIONS(1750), - [sym__inline_math_state_track_marker] = ACTIONS(1750), - [sym__code_span_start] = ACTIONS(1750), - [sym__html_comment] = ACTIONS(1750), - [sym_raw_specifier] = ACTIONS(1750), - [sym__autolink] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1752), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1752), + [anon_sym_EQ] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_DQUOTE] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_DOLLAR] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_RPAREN] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_COMMA] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1752), + [anon_sym_SLASH] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_QMARK] = ACTIONS(1752), + [anon_sym_AT] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_BSLASH] = ACTIONS(1750), + [anon_sym_RBRACK] = ACTIONS(1752), + [anon_sym_CARET] = ACTIONS(1752), + [anon_sym__] = ACTIONS(1752), + [anon_sym_BQUOTE] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_TILDE] = ACTIONS(1752), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1752), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1752), + [sym__escaped_characters] = ACTIONS(1752), + [sym__word] = ACTIONS(1752), + [sym__soft_line_ending] = ACTIONS(1752), + [sym__block_close] = ACTIONS(1752), + [sym__block_quote_start] = ACTIONS(1752), + [sym__indented_chunk_start] = ACTIONS(1752), + [sym_atx_h1_marker] = ACTIONS(1752), + [sym_atx_h2_marker] = ACTIONS(1752), + [sym_atx_h3_marker] = ACTIONS(1752), + [sym_atx_h4_marker] = ACTIONS(1752), + [sym_atx_h5_marker] = ACTIONS(1752), + [sym_atx_h6_marker] = ACTIONS(1752), + [sym__thematic_break] = ACTIONS(1752), + [sym__list_marker_minus] = ACTIONS(1752), + [sym__list_marker_plus] = ACTIONS(1752), + [sym__list_marker_star] = ACTIONS(1752), + [sym__list_marker_parenthesis] = ACTIONS(1752), + [sym__list_marker_dot] = ACTIONS(1752), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1752), + [sym__list_marker_example] = ACTIONS(1752), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1752), + [sym__fenced_code_block_start_backtick] = ACTIONS(1752), + [sym__fenced_code_block_start_tilde] = ACTIONS(1752), + [sym__blank_line_start] = ACTIONS(1752), + [sym_minus_metadata] = ACTIONS(1752), + [sym__pipe_table_start] = ACTIONS(1752), + [sym__fenced_div_start] = ACTIONS(1752), + [sym_ref_id_specifier] = ACTIONS(1752), + [sym__display_math_state_track_marker] = ACTIONS(1752), + [sym__inline_math_state_track_marker] = ACTIONS(1752), + [sym__code_span_start] = ACTIONS(1752), + [sym__html_comment] = ACTIONS(1752), + [sym_raw_specifier] = ACTIONS(1752), + [sym__autolink] = ACTIONS(1752), }, [STATE(422)] = { [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1754), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_COMMA] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1754), - [anon_sym_SLASH] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_QMARK] = ACTIONS(1754), - [anon_sym_AT] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_BSLASH] = ACTIONS(1756), - [anon_sym_RBRACK] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1754), - [anon_sym__] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1754), - [sym__escaped_characters] = ACTIONS(1754), - [sym__word] = ACTIONS(1754), - [sym__soft_line_ending] = ACTIONS(1754), - [sym__block_close] = ACTIONS(1754), - [sym__block_quote_start] = ACTIONS(1754), - [sym__indented_chunk_start] = ACTIONS(1754), - [sym_atx_h1_marker] = ACTIONS(1754), - [sym_atx_h2_marker] = ACTIONS(1754), - [sym_atx_h3_marker] = ACTIONS(1754), - [sym_atx_h4_marker] = ACTIONS(1754), - [sym_atx_h5_marker] = ACTIONS(1754), - [sym_atx_h6_marker] = ACTIONS(1754), - [sym__thematic_break] = ACTIONS(1754), - [sym__list_marker_minus] = ACTIONS(1754), - [sym__list_marker_plus] = ACTIONS(1754), - [sym__list_marker_star] = ACTIONS(1754), - [sym__list_marker_parenthesis] = ACTIONS(1754), - [sym__list_marker_dot] = ACTIONS(1754), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1754), - [sym__list_marker_example] = ACTIONS(1754), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1754), - [sym__fenced_code_block_start_backtick] = ACTIONS(1754), - [sym__fenced_code_block_start_tilde] = ACTIONS(1754), - [sym__blank_line_start] = ACTIONS(1754), - [sym_minus_metadata] = ACTIONS(1754), - [sym__pipe_table_start] = ACTIONS(1754), - [sym__fenced_div_start] = ACTIONS(1754), - [sym_ref_id_specifier] = ACTIONS(1754), - [sym__display_math_state_track_marker] = ACTIONS(1754), - [sym__inline_math_state_track_marker] = ACTIONS(1754), - [sym__code_span_start] = ACTIONS(1754), - [sym__html_comment] = ACTIONS(1754), - [sym_raw_specifier] = ACTIONS(1754), - [sym__autolink] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1756), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(1756), + [anon_sym_SQUOTE] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_DQUOTE] = ACTIONS(1756), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1756), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_QMARK] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_BSLASH] = ACTIONS(1754), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_CARET] = ACTIONS(1756), + [anon_sym__] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_TILDE] = ACTIONS(1756), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1756), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1756), + [sym__escaped_characters] = ACTIONS(1756), + [sym__word] = ACTIONS(1756), + [sym__soft_line_ending] = ACTIONS(1756), + [sym__block_close] = ACTIONS(1756), + [sym__block_quote_start] = ACTIONS(1756), + [sym__indented_chunk_start] = ACTIONS(1756), + [sym_atx_h1_marker] = ACTIONS(1756), + [sym_atx_h2_marker] = ACTIONS(1756), + [sym_atx_h3_marker] = ACTIONS(1756), + [sym_atx_h4_marker] = ACTIONS(1756), + [sym_atx_h5_marker] = ACTIONS(1756), + [sym_atx_h6_marker] = ACTIONS(1756), + [sym__thematic_break] = ACTIONS(1756), + [sym__list_marker_minus] = ACTIONS(1756), + [sym__list_marker_plus] = ACTIONS(1756), + [sym__list_marker_star] = ACTIONS(1756), + [sym__list_marker_parenthesis] = ACTIONS(1756), + [sym__list_marker_dot] = ACTIONS(1756), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1756), + [sym__list_marker_example] = ACTIONS(1756), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1756), + [sym__fenced_code_block_start_backtick] = ACTIONS(1756), + [sym__fenced_code_block_start_tilde] = ACTIONS(1756), + [sym__blank_line_start] = ACTIONS(1756), + [sym_minus_metadata] = ACTIONS(1756), + [sym__pipe_table_start] = ACTIONS(1756), + [sym__fenced_div_start] = ACTIONS(1756), + [sym_ref_id_specifier] = ACTIONS(1756), + [sym__display_math_state_track_marker] = ACTIONS(1756), + [sym__inline_math_state_track_marker] = ACTIONS(1756), + [sym__code_span_start] = ACTIONS(1756), + [sym__html_comment] = ACTIONS(1756), + [sym_raw_specifier] = ACTIONS(1756), + [sym__autolink] = ACTIONS(1756), }, [STATE(423)] = { [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1758), - [anon_sym_EQ] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_DOT] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_QMARK] = ACTIONS(1758), - [anon_sym_AT] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_BSLASH] = ACTIONS(1760), - [anon_sym_RBRACK] = ACTIONS(1758), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym__] = ACTIONS(1758), - [anon_sym_BQUOTE] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1758), - [sym__escaped_characters] = ACTIONS(1758), - [sym__word] = ACTIONS(1758), - [sym__soft_line_ending] = ACTIONS(1758), - [sym__block_close] = ACTIONS(1758), - [sym__block_quote_start] = ACTIONS(1758), - [sym__indented_chunk_start] = ACTIONS(1758), - [sym_atx_h1_marker] = ACTIONS(1758), - [sym_atx_h2_marker] = ACTIONS(1758), - [sym_atx_h3_marker] = ACTIONS(1758), - [sym_atx_h4_marker] = ACTIONS(1758), - [sym_atx_h5_marker] = ACTIONS(1758), - [sym_atx_h6_marker] = ACTIONS(1758), - [sym__thematic_break] = ACTIONS(1758), - [sym__list_marker_minus] = ACTIONS(1758), - [sym__list_marker_plus] = ACTIONS(1758), - [sym__list_marker_star] = ACTIONS(1758), - [sym__list_marker_parenthesis] = ACTIONS(1758), - [sym__list_marker_dot] = ACTIONS(1758), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1758), - [sym__list_marker_example] = ACTIONS(1758), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1758), - [sym__fenced_code_block_start_backtick] = ACTIONS(1758), - [sym__fenced_code_block_start_tilde] = ACTIONS(1758), - [sym__blank_line_start] = ACTIONS(1758), - [sym_minus_metadata] = ACTIONS(1758), - [sym__pipe_table_start] = ACTIONS(1758), - [sym__fenced_div_start] = ACTIONS(1758), - [sym_ref_id_specifier] = ACTIONS(1758), - [sym__display_math_state_track_marker] = ACTIONS(1758), - [sym__inline_math_state_track_marker] = ACTIONS(1758), - [sym__code_span_start] = ACTIONS(1758), - [sym__html_comment] = ACTIONS(1758), - [sym_raw_specifier] = ACTIONS(1758), - [sym__autolink] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1760), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1760), + [anon_sym_EQ] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_DOLLAR] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_COMMA] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1760), + [anon_sym_SLASH] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_QMARK] = ACTIONS(1760), + [anon_sym_AT] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_BSLASH] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(1760), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym__] = ACTIONS(1760), + [anon_sym_BQUOTE] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1760), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1760), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1760), + [sym__escaped_characters] = ACTIONS(1760), + [sym__word] = ACTIONS(1760), + [sym__soft_line_ending] = ACTIONS(1760), + [sym__block_close] = ACTIONS(1760), + [sym__block_quote_start] = ACTIONS(1760), + [sym__indented_chunk_start] = ACTIONS(1760), + [sym_atx_h1_marker] = ACTIONS(1760), + [sym_atx_h2_marker] = ACTIONS(1760), + [sym_atx_h3_marker] = ACTIONS(1760), + [sym_atx_h4_marker] = ACTIONS(1760), + [sym_atx_h5_marker] = ACTIONS(1760), + [sym_atx_h6_marker] = ACTIONS(1760), + [sym__thematic_break] = ACTIONS(1760), + [sym__list_marker_minus] = ACTIONS(1760), + [sym__list_marker_plus] = ACTIONS(1760), + [sym__list_marker_star] = ACTIONS(1760), + [sym__list_marker_parenthesis] = ACTIONS(1760), + [sym__list_marker_dot] = ACTIONS(1760), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1760), + [sym__list_marker_example] = ACTIONS(1760), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1760), + [sym__fenced_code_block_start_backtick] = ACTIONS(1760), + [sym__fenced_code_block_start_tilde] = ACTIONS(1760), + [sym__blank_line_start] = ACTIONS(1760), + [sym_minus_metadata] = ACTIONS(1760), + [sym__pipe_table_start] = ACTIONS(1760), + [sym__fenced_div_start] = ACTIONS(1760), + [sym_ref_id_specifier] = ACTIONS(1760), + [sym__display_math_state_track_marker] = ACTIONS(1760), + [sym__inline_math_state_track_marker] = ACTIONS(1760), + [sym__code_span_start] = ACTIONS(1760), + [sym__html_comment] = ACTIONS(1760), + [sym_raw_specifier] = ACTIONS(1760), + [sym__autolink] = ACTIONS(1760), }, [STATE(424)] = { [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1642), - [anon_sym_AT] = ACTIONS(1642), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_BSLASH] = ACTIONS(1644), - [anon_sym_RBRACK] = ACTIONS(1642), - [anon_sym_CARET] = ACTIONS(1642), - [anon_sym__] = ACTIONS(1642), - [anon_sym_BQUOTE] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1642), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1642), - [sym__html_comment] = ACTIONS(1642), - [sym_raw_specifier] = ACTIONS(1642), - [sym__autolink] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1644), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1644), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1644), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1644), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1644), + [sym__html_comment] = ACTIONS(1644), + [sym_raw_specifier] = ACTIONS(1644), + [sym__autolink] = ACTIONS(1644), }, [STATE(425)] = { [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1764), - [anon_sym_EQ] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_DOLLAR] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_RPAREN] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_BSLASH] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym__] = ACTIONS(1764), - [anon_sym_BQUOTE] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1764), - [sym__escaped_characters] = ACTIONS(1764), - [sym__word] = ACTIONS(1764), - [sym__soft_line_ending] = ACTIONS(1764), - [sym__block_close] = ACTIONS(1764), - [sym__block_quote_start] = ACTIONS(1764), - [sym__indented_chunk_start] = ACTIONS(1764), - [sym_atx_h1_marker] = ACTIONS(1764), - [sym_atx_h2_marker] = ACTIONS(1764), - [sym_atx_h3_marker] = ACTIONS(1764), - [sym_atx_h4_marker] = ACTIONS(1764), - [sym_atx_h5_marker] = ACTIONS(1764), - [sym_atx_h6_marker] = ACTIONS(1764), - [sym__thematic_break] = ACTIONS(1764), - [sym__list_marker_minus] = ACTIONS(1764), - [sym__list_marker_plus] = ACTIONS(1764), - [sym__list_marker_star] = ACTIONS(1764), - [sym__list_marker_parenthesis] = ACTIONS(1764), - [sym__list_marker_dot] = ACTIONS(1764), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1764), - [sym__list_marker_example] = ACTIONS(1764), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1764), - [sym__fenced_code_block_start_backtick] = ACTIONS(1764), - [sym__fenced_code_block_start_tilde] = ACTIONS(1764), - [sym__blank_line_start] = ACTIONS(1764), - [sym_minus_metadata] = ACTIONS(1764), - [sym__pipe_table_start] = ACTIONS(1764), - [sym__fenced_div_start] = ACTIONS(1764), - [sym_ref_id_specifier] = ACTIONS(1764), - [sym__display_math_state_track_marker] = ACTIONS(1764), - [sym__inline_math_state_track_marker] = ACTIONS(1764), - [sym__code_span_start] = ACTIONS(1764), - [sym__html_comment] = ACTIONS(1764), - [sym_raw_specifier] = ACTIONS(1764), - [sym__autolink] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1766), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1766), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_DOLLAR] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_BSLASH] = ACTIONS(1764), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym__] = ACTIONS(1766), + [anon_sym_BQUOTE] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1766), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1766), + [sym__escaped_characters] = ACTIONS(1766), + [sym__word] = ACTIONS(1766), + [sym__soft_line_ending] = ACTIONS(1766), + [sym__block_close] = ACTIONS(1766), + [sym__block_quote_start] = ACTIONS(1766), + [sym__indented_chunk_start] = ACTIONS(1766), + [sym_atx_h1_marker] = ACTIONS(1766), + [sym_atx_h2_marker] = ACTIONS(1766), + [sym_atx_h3_marker] = ACTIONS(1766), + [sym_atx_h4_marker] = ACTIONS(1766), + [sym_atx_h5_marker] = ACTIONS(1766), + [sym_atx_h6_marker] = ACTIONS(1766), + [sym__thematic_break] = ACTIONS(1766), + [sym__list_marker_minus] = ACTIONS(1766), + [sym__list_marker_plus] = ACTIONS(1766), + [sym__list_marker_star] = ACTIONS(1766), + [sym__list_marker_parenthesis] = ACTIONS(1766), + [sym__list_marker_dot] = ACTIONS(1766), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1766), + [sym__list_marker_example] = ACTIONS(1766), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1766), + [sym__fenced_code_block_start_backtick] = ACTIONS(1766), + [sym__fenced_code_block_start_tilde] = ACTIONS(1766), + [sym__blank_line_start] = ACTIONS(1766), + [sym_minus_metadata] = ACTIONS(1766), + [sym__pipe_table_start] = ACTIONS(1766), + [sym__fenced_div_start] = ACTIONS(1766), + [sym_ref_id_specifier] = ACTIONS(1766), + [sym__display_math_state_track_marker] = ACTIONS(1766), + [sym__inline_math_state_track_marker] = ACTIONS(1766), + [sym__code_span_start] = ACTIONS(1766), + [sym__html_comment] = ACTIONS(1766), + [sym_raw_specifier] = ACTIONS(1766), + [sym__autolink] = ACTIONS(1766), }, [STATE(426)] = { [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1768), - [anon_sym_EQ] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_PERCENT] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_DOT] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_QMARK] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_BSLASH] = ACTIONS(1770), - [anon_sym_RBRACK] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym__] = ACTIONS(1768), - [anon_sym_BQUOTE] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1768), - [sym__escaped_characters] = ACTIONS(1768), - [sym__word] = ACTIONS(1768), - [sym__soft_line_ending] = ACTIONS(1768), - [sym__block_close] = ACTIONS(1768), - [sym__block_quote_start] = ACTIONS(1768), - [sym__indented_chunk_start] = ACTIONS(1768), - [sym_atx_h1_marker] = ACTIONS(1768), - [sym_atx_h2_marker] = ACTIONS(1768), - [sym_atx_h3_marker] = ACTIONS(1768), - [sym_atx_h4_marker] = ACTIONS(1768), - [sym_atx_h5_marker] = ACTIONS(1768), - [sym_atx_h6_marker] = ACTIONS(1768), - [sym__thematic_break] = ACTIONS(1768), - [sym__list_marker_minus] = ACTIONS(1768), - [sym__list_marker_plus] = ACTIONS(1768), - [sym__list_marker_star] = ACTIONS(1768), - [sym__list_marker_parenthesis] = ACTIONS(1768), - [sym__list_marker_dot] = ACTIONS(1768), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1768), - [sym__list_marker_example] = ACTIONS(1768), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1768), - [sym__fenced_code_block_start_backtick] = ACTIONS(1768), - [sym__fenced_code_block_start_tilde] = ACTIONS(1768), - [sym__blank_line_start] = ACTIONS(1768), - [sym_minus_metadata] = ACTIONS(1768), - [sym__pipe_table_start] = ACTIONS(1768), - [sym__fenced_div_start] = ACTIONS(1768), - [sym_ref_id_specifier] = ACTIONS(1768), - [sym__display_math_state_track_marker] = ACTIONS(1768), - [sym__inline_math_state_track_marker] = ACTIONS(1768), - [sym__code_span_start] = ACTIONS(1768), - [sym__html_comment] = ACTIONS(1768), - [sym_raw_specifier] = ACTIONS(1768), - [sym__autolink] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1770), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_DOLLAR] = ACTIONS(1770), + [anon_sym_PERCENT] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_RPAREN] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_COMMA] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_QMARK] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_BSLASH] = ACTIONS(1768), + [anon_sym_RBRACK] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym__] = ACTIONS(1770), + [anon_sym_BQUOTE] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1770), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1770), + [sym__escaped_characters] = ACTIONS(1770), + [sym__word] = ACTIONS(1770), + [sym__soft_line_ending] = ACTIONS(1770), + [sym__block_close] = ACTIONS(1770), + [sym__block_quote_start] = ACTIONS(1770), + [sym__indented_chunk_start] = ACTIONS(1770), + [sym_atx_h1_marker] = ACTIONS(1770), + [sym_atx_h2_marker] = ACTIONS(1770), + [sym_atx_h3_marker] = ACTIONS(1770), + [sym_atx_h4_marker] = ACTIONS(1770), + [sym_atx_h5_marker] = ACTIONS(1770), + [sym_atx_h6_marker] = ACTIONS(1770), + [sym__thematic_break] = ACTIONS(1770), + [sym__list_marker_minus] = ACTIONS(1770), + [sym__list_marker_plus] = ACTIONS(1770), + [sym__list_marker_star] = ACTIONS(1770), + [sym__list_marker_parenthesis] = ACTIONS(1770), + [sym__list_marker_dot] = ACTIONS(1770), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1770), + [sym__list_marker_example] = ACTIONS(1770), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1770), + [sym__fenced_code_block_start_backtick] = ACTIONS(1770), + [sym__fenced_code_block_start_tilde] = ACTIONS(1770), + [sym__blank_line_start] = ACTIONS(1770), + [sym_minus_metadata] = ACTIONS(1770), + [sym__pipe_table_start] = ACTIONS(1770), + [sym__fenced_div_start] = ACTIONS(1770), + [sym_ref_id_specifier] = ACTIONS(1770), + [sym__display_math_state_track_marker] = ACTIONS(1770), + [sym__inline_math_state_track_marker] = ACTIONS(1770), + [sym__code_span_start] = ACTIONS(1770), + [sym__html_comment] = ACTIONS(1770), + [sym_raw_specifier] = ACTIONS(1770), + [sym__autolink] = ACTIONS(1770), }, [STATE(427)] = { [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_DOLLAR] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_COMMA] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DOT] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_QMARK] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_BSLASH] = ACTIONS(1774), - [anon_sym_RBRACK] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym__] = ACTIONS(1772), - [anon_sym_BQUOTE] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1772), - [sym__escaped_characters] = ACTIONS(1772), - [sym__word] = ACTIONS(1772), - [sym__soft_line_ending] = ACTIONS(1772), - [sym__block_close] = ACTIONS(1772), - [sym__block_quote_start] = ACTIONS(1772), - [sym__indented_chunk_start] = ACTIONS(1772), - [sym_atx_h1_marker] = ACTIONS(1772), - [sym_atx_h2_marker] = ACTIONS(1772), - [sym_atx_h3_marker] = ACTIONS(1772), - [sym_atx_h4_marker] = ACTIONS(1772), - [sym_atx_h5_marker] = ACTIONS(1772), - [sym_atx_h6_marker] = ACTIONS(1772), - [sym__thematic_break] = ACTIONS(1772), - [sym__list_marker_minus] = ACTIONS(1772), - [sym__list_marker_plus] = ACTIONS(1772), - [sym__list_marker_star] = ACTIONS(1772), - [sym__list_marker_parenthesis] = ACTIONS(1772), - [sym__list_marker_dot] = ACTIONS(1772), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1772), - [sym__list_marker_example] = ACTIONS(1772), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1772), - [sym__fenced_code_block_start_backtick] = ACTIONS(1772), - [sym__fenced_code_block_start_tilde] = ACTIONS(1772), - [sym__blank_line_start] = ACTIONS(1772), - [sym_minus_metadata] = ACTIONS(1772), - [sym__pipe_table_start] = ACTIONS(1772), - [sym__fenced_div_start] = ACTIONS(1772), - [sym_ref_id_specifier] = ACTIONS(1772), - [sym__display_math_state_track_marker] = ACTIONS(1772), - [sym__inline_math_state_track_marker] = ACTIONS(1772), - [sym__code_span_start] = ACTIONS(1772), - [sym__html_comment] = ACTIONS(1772), - [sym_raw_specifier] = ACTIONS(1772), - [sym__autolink] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_SLASH] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_BSLASH] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym__] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1774), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1774), + [sym__escaped_characters] = ACTIONS(1774), + [sym__word] = ACTIONS(1774), + [sym__soft_line_ending] = ACTIONS(1774), + [sym__block_close] = ACTIONS(1774), + [sym__block_quote_start] = ACTIONS(1774), + [sym__indented_chunk_start] = ACTIONS(1774), + [sym_atx_h1_marker] = ACTIONS(1774), + [sym_atx_h2_marker] = ACTIONS(1774), + [sym_atx_h3_marker] = ACTIONS(1774), + [sym_atx_h4_marker] = ACTIONS(1774), + [sym_atx_h5_marker] = ACTIONS(1774), + [sym_atx_h6_marker] = ACTIONS(1774), + [sym__thematic_break] = ACTIONS(1774), + [sym__list_marker_minus] = ACTIONS(1774), + [sym__list_marker_plus] = ACTIONS(1774), + [sym__list_marker_star] = ACTIONS(1774), + [sym__list_marker_parenthesis] = ACTIONS(1774), + [sym__list_marker_dot] = ACTIONS(1774), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1774), + [sym__list_marker_example] = ACTIONS(1774), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1774), + [sym__fenced_code_block_start_backtick] = ACTIONS(1774), + [sym__fenced_code_block_start_tilde] = ACTIONS(1774), + [sym__blank_line_start] = ACTIONS(1774), + [sym_minus_metadata] = ACTIONS(1774), + [sym__pipe_table_start] = ACTIONS(1774), + [sym__fenced_div_start] = ACTIONS(1774), + [sym_ref_id_specifier] = ACTIONS(1774), + [sym__display_math_state_track_marker] = ACTIONS(1774), + [sym__inline_math_state_track_marker] = ACTIONS(1774), + [sym__code_span_start] = ACTIONS(1774), + [sym__html_comment] = ACTIONS(1774), + [sym_raw_specifier] = ACTIONS(1774), + [sym__autolink] = ACTIONS(1774), }, [STATE(428)] = { [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1776), - [anon_sym_EQ] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_RPAREN] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_COMMA] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_DOT] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_BSLASH] = ACTIONS(1778), - [anon_sym_RBRACK] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym__] = ACTIONS(1776), - [anon_sym_BQUOTE] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1776), - [sym__escaped_characters] = ACTIONS(1776), - [sym__word] = ACTIONS(1776), - [sym__soft_line_ending] = ACTIONS(1776), - [sym__block_close] = ACTIONS(1776), - [sym__block_quote_start] = ACTIONS(1776), - [sym__indented_chunk_start] = ACTIONS(1776), - [sym_atx_h1_marker] = ACTIONS(1776), - [sym_atx_h2_marker] = ACTIONS(1776), - [sym_atx_h3_marker] = ACTIONS(1776), - [sym_atx_h4_marker] = ACTIONS(1776), - [sym_atx_h5_marker] = ACTIONS(1776), - [sym_atx_h6_marker] = ACTIONS(1776), - [sym__thematic_break] = ACTIONS(1776), - [sym__list_marker_minus] = ACTIONS(1776), - [sym__list_marker_plus] = ACTIONS(1776), - [sym__list_marker_star] = ACTIONS(1776), - [sym__list_marker_parenthesis] = ACTIONS(1776), - [sym__list_marker_dot] = ACTIONS(1776), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1776), - [sym__list_marker_example] = ACTIONS(1776), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1776), - [sym__fenced_code_block_start_backtick] = ACTIONS(1776), - [sym__fenced_code_block_start_tilde] = ACTIONS(1776), - [sym__blank_line_start] = ACTIONS(1776), - [sym_minus_metadata] = ACTIONS(1776), - [sym__pipe_table_start] = ACTIONS(1776), - [sym__fenced_div_start] = ACTIONS(1776), - [sym_ref_id_specifier] = ACTIONS(1776), - [sym__display_math_state_track_marker] = ACTIONS(1776), - [sym__inline_math_state_track_marker] = ACTIONS(1776), - [sym__code_span_start] = ACTIONS(1776), - [sym__html_comment] = ACTIONS(1776), - [sym_raw_specifier] = ACTIONS(1776), - [sym__autolink] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1778), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1778), + [anon_sym_PERCENT] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_PLUS] = ACTIONS(1778), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_SLASH] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_AT] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1776), + [anon_sym_BSLASH] = ACTIONS(1776), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym__] = ACTIONS(1778), + [anon_sym_BQUOTE] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1778), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1778), + [sym__escaped_characters] = ACTIONS(1778), + [sym__word] = ACTIONS(1778), + [sym__soft_line_ending] = ACTIONS(1778), + [sym__block_close] = ACTIONS(1778), + [sym__block_quote_start] = ACTIONS(1778), + [sym__indented_chunk_start] = ACTIONS(1778), + [sym_atx_h1_marker] = ACTIONS(1778), + [sym_atx_h2_marker] = ACTIONS(1778), + [sym_atx_h3_marker] = ACTIONS(1778), + [sym_atx_h4_marker] = ACTIONS(1778), + [sym_atx_h5_marker] = ACTIONS(1778), + [sym_atx_h6_marker] = ACTIONS(1778), + [sym__thematic_break] = ACTIONS(1778), + [sym__list_marker_minus] = ACTIONS(1778), + [sym__list_marker_plus] = ACTIONS(1778), + [sym__list_marker_star] = ACTIONS(1778), + [sym__list_marker_parenthesis] = ACTIONS(1778), + [sym__list_marker_dot] = ACTIONS(1778), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1778), + [sym__list_marker_example] = ACTIONS(1778), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1778), + [sym__fenced_code_block_start_backtick] = ACTIONS(1778), + [sym__fenced_code_block_start_tilde] = ACTIONS(1778), + [sym__blank_line_start] = ACTIONS(1778), + [sym_minus_metadata] = ACTIONS(1778), + [sym__pipe_table_start] = ACTIONS(1778), + [sym__fenced_div_start] = ACTIONS(1778), + [sym_ref_id_specifier] = ACTIONS(1778), + [sym__display_math_state_track_marker] = ACTIONS(1778), + [sym__inline_math_state_track_marker] = ACTIONS(1778), + [sym__code_span_start] = ACTIONS(1778), + [sym__html_comment] = ACTIONS(1778), + [sym_raw_specifier] = ACTIONS(1778), + [sym__autolink] = ACTIONS(1778), }, [STATE(429)] = { [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1780), - [anon_sym_EQ] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1780), - [anon_sym_PERCENT] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_RPAREN] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_DOT] = ACTIONS(1780), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_QMARK] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_BSLASH] = ACTIONS(1782), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), - [anon_sym_BQUOTE] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1780), - [sym__escaped_characters] = ACTIONS(1780), - [sym__word] = ACTIONS(1780), - [sym__soft_line_ending] = ACTIONS(1780), - [sym__block_close] = ACTIONS(1780), - [sym__block_quote_start] = ACTIONS(1780), - [sym__indented_chunk_start] = ACTIONS(1780), - [sym_atx_h1_marker] = ACTIONS(1780), - [sym_atx_h2_marker] = ACTIONS(1780), - [sym_atx_h3_marker] = ACTIONS(1780), - [sym_atx_h4_marker] = ACTIONS(1780), - [sym_atx_h5_marker] = ACTIONS(1780), - [sym_atx_h6_marker] = ACTIONS(1780), - [sym__thematic_break] = ACTIONS(1780), - [sym__list_marker_minus] = ACTIONS(1780), - [sym__list_marker_plus] = ACTIONS(1780), - [sym__list_marker_star] = ACTIONS(1780), - [sym__list_marker_parenthesis] = ACTIONS(1780), - [sym__list_marker_dot] = ACTIONS(1780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1780), - [sym__list_marker_example] = ACTIONS(1780), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1780), - [sym__fenced_code_block_start_backtick] = ACTIONS(1780), - [sym__fenced_code_block_start_tilde] = ACTIONS(1780), - [sym__blank_line_start] = ACTIONS(1780), - [sym_minus_metadata] = ACTIONS(1780), - [sym__pipe_table_start] = ACTIONS(1780), - [sym__fenced_div_start] = ACTIONS(1780), - [sym_ref_id_specifier] = ACTIONS(1780), - [sym__display_math_state_track_marker] = ACTIONS(1780), - [sym__inline_math_state_track_marker] = ACTIONS(1780), - [sym__code_span_start] = ACTIONS(1780), - [sym__html_comment] = ACTIONS(1780), - [sym_raw_specifier] = ACTIONS(1780), - [sym__autolink] = ACTIONS(1780), + [anon_sym_RBRACE] = ACTIONS(1782), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1782), + [anon_sym_EQ] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1782), + [anon_sym_PERCENT] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_RPAREN] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_QMARK] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_BSLASH] = ACTIONS(1780), + [anon_sym_RBRACK] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym__] = ACTIONS(1782), + [anon_sym_BQUOTE] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1782), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1782), + [sym__escaped_characters] = ACTIONS(1782), + [sym__word] = ACTIONS(1782), + [sym__soft_line_ending] = ACTIONS(1782), + [sym__block_close] = ACTIONS(1782), + [sym__block_quote_start] = ACTIONS(1782), + [sym__indented_chunk_start] = ACTIONS(1782), + [sym_atx_h1_marker] = ACTIONS(1782), + [sym_atx_h2_marker] = ACTIONS(1782), + [sym_atx_h3_marker] = ACTIONS(1782), + [sym_atx_h4_marker] = ACTIONS(1782), + [sym_atx_h5_marker] = ACTIONS(1782), + [sym_atx_h6_marker] = ACTIONS(1782), + [sym__thematic_break] = ACTIONS(1782), + [sym__list_marker_minus] = ACTIONS(1782), + [sym__list_marker_plus] = ACTIONS(1782), + [sym__list_marker_star] = ACTIONS(1782), + [sym__list_marker_parenthesis] = ACTIONS(1782), + [sym__list_marker_dot] = ACTIONS(1782), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1782), + [sym__list_marker_example] = ACTIONS(1782), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1782), + [sym__fenced_code_block_start_backtick] = ACTIONS(1782), + [sym__fenced_code_block_start_tilde] = ACTIONS(1782), + [sym__blank_line_start] = ACTIONS(1782), + [sym_minus_metadata] = ACTIONS(1782), + [sym__pipe_table_start] = ACTIONS(1782), + [sym__fenced_div_start] = ACTIONS(1782), + [sym_ref_id_specifier] = ACTIONS(1782), + [sym__display_math_state_track_marker] = ACTIONS(1782), + [sym__inline_math_state_track_marker] = ACTIONS(1782), + [sym__code_span_start] = ACTIONS(1782), + [sym__html_comment] = ACTIONS(1782), + [sym_raw_specifier] = ACTIONS(1782), + [sym__autolink] = ACTIONS(1782), }, [STATE(430)] = { [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1784), - [anon_sym_PERCENT] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_COMMA] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_DOT] = ACTIONS(1784), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_BSLASH] = ACTIONS(1786), - [anon_sym_RBRACK] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1784), - [anon_sym__] = ACTIONS(1784), - [anon_sym_BQUOTE] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1784), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1784), - [sym__escaped_characters] = ACTIONS(1784), - [sym__word] = ACTIONS(1784), - [sym__soft_line_ending] = ACTIONS(1784), - [sym__block_close] = ACTIONS(1784), - [sym__block_quote_start] = ACTIONS(1784), - [sym__indented_chunk_start] = ACTIONS(1784), - [sym_atx_h1_marker] = ACTIONS(1784), - [sym_atx_h2_marker] = ACTIONS(1784), - [sym_atx_h3_marker] = ACTIONS(1784), - [sym_atx_h4_marker] = ACTIONS(1784), - [sym_atx_h5_marker] = ACTIONS(1784), - [sym_atx_h6_marker] = ACTIONS(1784), - [sym__thematic_break] = ACTIONS(1784), - [sym__list_marker_minus] = ACTIONS(1784), - [sym__list_marker_plus] = ACTIONS(1784), - [sym__list_marker_star] = ACTIONS(1784), - [sym__list_marker_parenthesis] = ACTIONS(1784), - [sym__list_marker_dot] = ACTIONS(1784), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1784), - [sym__list_marker_example] = ACTIONS(1784), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1784), - [sym__fenced_code_block_start_backtick] = ACTIONS(1784), - [sym__fenced_code_block_start_tilde] = ACTIONS(1784), - [sym__blank_line_start] = ACTIONS(1784), - [sym_minus_metadata] = ACTIONS(1784), - [sym__pipe_table_start] = ACTIONS(1784), - [sym__fenced_div_start] = ACTIONS(1784), - [sym_ref_id_specifier] = ACTIONS(1784), - [sym__display_math_state_track_marker] = ACTIONS(1784), - [sym__inline_math_state_track_marker] = ACTIONS(1784), - [sym__code_span_start] = ACTIONS(1784), - [sym__html_comment] = ACTIONS(1784), - [sym_raw_specifier] = ACTIONS(1784), - [sym__autolink] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1786), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1786), + [anon_sym_EQ] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_PERCENT] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_RPAREN] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_DOT] = ACTIONS(1786), + [anon_sym_SLASH] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1786), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_BSLASH] = ACTIONS(1784), + [anon_sym_RBRACK] = ACTIONS(1786), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym__] = ACTIONS(1786), + [anon_sym_BQUOTE] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1786), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1786), + [sym__escaped_characters] = ACTIONS(1786), + [sym__word] = ACTIONS(1786), + [sym__soft_line_ending] = ACTIONS(1786), + [sym__block_close] = ACTIONS(1786), + [sym__block_quote_start] = ACTIONS(1786), + [sym__indented_chunk_start] = ACTIONS(1786), + [sym_atx_h1_marker] = ACTIONS(1786), + [sym_atx_h2_marker] = ACTIONS(1786), + [sym_atx_h3_marker] = ACTIONS(1786), + [sym_atx_h4_marker] = ACTIONS(1786), + [sym_atx_h5_marker] = ACTIONS(1786), + [sym_atx_h6_marker] = ACTIONS(1786), + [sym__thematic_break] = ACTIONS(1786), + [sym__list_marker_minus] = ACTIONS(1786), + [sym__list_marker_plus] = ACTIONS(1786), + [sym__list_marker_star] = ACTIONS(1786), + [sym__list_marker_parenthesis] = ACTIONS(1786), + [sym__list_marker_dot] = ACTIONS(1786), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1786), + [sym__list_marker_example] = ACTIONS(1786), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1786), + [sym__fenced_code_block_start_backtick] = ACTIONS(1786), + [sym__fenced_code_block_start_tilde] = ACTIONS(1786), + [sym__blank_line_start] = ACTIONS(1786), + [sym_minus_metadata] = ACTIONS(1786), + [sym__pipe_table_start] = ACTIONS(1786), + [sym__fenced_div_start] = ACTIONS(1786), + [sym_ref_id_specifier] = ACTIONS(1786), + [sym__display_math_state_track_marker] = ACTIONS(1786), + [sym__inline_math_state_track_marker] = ACTIONS(1786), + [sym__code_span_start] = ACTIONS(1786), + [sym__html_comment] = ACTIONS(1786), + [sym_raw_specifier] = ACTIONS(1786), + [sym__autolink] = ACTIONS(1786), }, [STATE(431)] = { [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(1788), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_BSLASH] = ACTIONS(1790), - [anon_sym_RBRACK] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym__] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1788), - [sym__escaped_characters] = ACTIONS(1788), - [sym__word] = ACTIONS(1788), - [sym__soft_line_ending] = ACTIONS(1788), - [sym__block_close] = ACTIONS(1788), - [sym__block_quote_start] = ACTIONS(1788), - [sym__indented_chunk_start] = ACTIONS(1788), - [sym_atx_h1_marker] = ACTIONS(1788), - [sym_atx_h2_marker] = ACTIONS(1788), - [sym_atx_h3_marker] = ACTIONS(1788), - [sym_atx_h4_marker] = ACTIONS(1788), - [sym_atx_h5_marker] = ACTIONS(1788), - [sym_atx_h6_marker] = ACTIONS(1788), - [sym__thematic_break] = ACTIONS(1788), - [sym__list_marker_minus] = ACTIONS(1788), - [sym__list_marker_plus] = ACTIONS(1788), - [sym__list_marker_star] = ACTIONS(1788), - [sym__list_marker_parenthesis] = ACTIONS(1788), - [sym__list_marker_dot] = ACTIONS(1788), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1788), - [sym__list_marker_example] = ACTIONS(1788), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1788), - [sym__fenced_code_block_start_backtick] = ACTIONS(1788), - [sym__fenced_code_block_start_tilde] = ACTIONS(1788), - [sym__blank_line_start] = ACTIONS(1788), - [sym_minus_metadata] = ACTIONS(1788), - [sym__pipe_table_start] = ACTIONS(1788), - [sym__fenced_div_start] = ACTIONS(1788), - [sym_ref_id_specifier] = ACTIONS(1788), - [sym__display_math_state_track_marker] = ACTIONS(1788), - [sym__inline_math_state_track_marker] = ACTIONS(1788), - [sym__code_span_start] = ACTIONS(1788), - [sym__html_comment] = ACTIONS(1788), - [sym_raw_specifier] = ACTIONS(1788), - [sym__autolink] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1790), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1790), + [anon_sym_EQ] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_DOLLAR] = ACTIONS(1790), + [anon_sym_PERCENT] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_COMMA] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_DOT] = ACTIONS(1790), + [anon_sym_SLASH] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_QMARK] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1788), + [anon_sym_BSLASH] = ACTIONS(1788), + [anon_sym_RBRACK] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym__] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1790), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1790), + [sym__escaped_characters] = ACTIONS(1790), + [sym__word] = ACTIONS(1790), + [sym__soft_line_ending] = ACTIONS(1790), + [sym__block_close] = ACTIONS(1790), + [sym__block_quote_start] = ACTIONS(1790), + [sym__indented_chunk_start] = ACTIONS(1790), + [sym_atx_h1_marker] = ACTIONS(1790), + [sym_atx_h2_marker] = ACTIONS(1790), + [sym_atx_h3_marker] = ACTIONS(1790), + [sym_atx_h4_marker] = ACTIONS(1790), + [sym_atx_h5_marker] = ACTIONS(1790), + [sym_atx_h6_marker] = ACTIONS(1790), + [sym__thematic_break] = ACTIONS(1790), + [sym__list_marker_minus] = ACTIONS(1790), + [sym__list_marker_plus] = ACTIONS(1790), + [sym__list_marker_star] = ACTIONS(1790), + [sym__list_marker_parenthesis] = ACTIONS(1790), + [sym__list_marker_dot] = ACTIONS(1790), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1790), + [sym__list_marker_example] = ACTIONS(1790), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1790), + [sym__fenced_code_block_start_backtick] = ACTIONS(1790), + [sym__fenced_code_block_start_tilde] = ACTIONS(1790), + [sym__blank_line_start] = ACTIONS(1790), + [sym_minus_metadata] = ACTIONS(1790), + [sym__pipe_table_start] = ACTIONS(1790), + [sym__fenced_div_start] = ACTIONS(1790), + [sym_ref_id_specifier] = ACTIONS(1790), + [sym__display_math_state_track_marker] = ACTIONS(1790), + [sym__inline_math_state_track_marker] = ACTIONS(1790), + [sym__code_span_start] = ACTIONS(1790), + [sym__html_comment] = ACTIONS(1790), + [sym_raw_specifier] = ACTIONS(1790), + [sym__autolink] = ACTIONS(1790), }, [STATE(432)] = { [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1792), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1792), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_BSLASH] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym__] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1792), - [sym__escaped_characters] = ACTIONS(1792), - [sym__word] = ACTIONS(1792), - [sym__soft_line_ending] = ACTIONS(1792), - [sym__block_close] = ACTIONS(1792), - [sym__block_quote_start] = ACTIONS(1792), - [sym__indented_chunk_start] = ACTIONS(1792), - [sym_atx_h1_marker] = ACTIONS(1792), - [sym_atx_h2_marker] = ACTIONS(1792), - [sym_atx_h3_marker] = ACTIONS(1792), - [sym_atx_h4_marker] = ACTIONS(1792), - [sym_atx_h5_marker] = ACTIONS(1792), - [sym_atx_h6_marker] = ACTIONS(1792), - [sym__thematic_break] = ACTIONS(1792), - [sym__list_marker_minus] = ACTIONS(1792), - [sym__list_marker_plus] = ACTIONS(1792), - [sym__list_marker_star] = ACTIONS(1792), - [sym__list_marker_parenthesis] = ACTIONS(1792), - [sym__list_marker_dot] = ACTIONS(1792), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1792), - [sym__list_marker_example] = ACTIONS(1792), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1792), - [sym__fenced_code_block_start_backtick] = ACTIONS(1792), - [sym__fenced_code_block_start_tilde] = ACTIONS(1792), - [sym__blank_line_start] = ACTIONS(1792), - [sym_minus_metadata] = ACTIONS(1792), - [sym__pipe_table_start] = ACTIONS(1792), - [sym__fenced_div_start] = ACTIONS(1792), - [sym_ref_id_specifier] = ACTIONS(1792), - [sym__display_math_state_track_marker] = ACTIONS(1792), - [sym__inline_math_state_track_marker] = ACTIONS(1792), - [sym__code_span_start] = ACTIONS(1792), - [sym__html_comment] = ACTIONS(1792), - [sym_raw_specifier] = ACTIONS(1792), - [sym__autolink] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1794), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1794), + [anon_sym_EQ] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_PERCENT] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_COMMA] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_DOT] = ACTIONS(1794), + [anon_sym_SLASH] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_QMARK] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1792), + [anon_sym_BSLASH] = ACTIONS(1792), + [anon_sym_RBRACK] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1794), + [anon_sym__] = ACTIONS(1794), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1794), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1794), + [sym__escaped_characters] = ACTIONS(1794), + [sym__word] = ACTIONS(1794), + [sym__soft_line_ending] = ACTIONS(1794), + [sym__block_close] = ACTIONS(1794), + [sym__block_quote_start] = ACTIONS(1794), + [sym__indented_chunk_start] = ACTIONS(1794), + [sym_atx_h1_marker] = ACTIONS(1794), + [sym_atx_h2_marker] = ACTIONS(1794), + [sym_atx_h3_marker] = ACTIONS(1794), + [sym_atx_h4_marker] = ACTIONS(1794), + [sym_atx_h5_marker] = ACTIONS(1794), + [sym_atx_h6_marker] = ACTIONS(1794), + [sym__thematic_break] = ACTIONS(1794), + [sym__list_marker_minus] = ACTIONS(1794), + [sym__list_marker_plus] = ACTIONS(1794), + [sym__list_marker_star] = ACTIONS(1794), + [sym__list_marker_parenthesis] = ACTIONS(1794), + [sym__list_marker_dot] = ACTIONS(1794), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1794), + [sym__list_marker_example] = ACTIONS(1794), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1794), + [sym__fenced_code_block_start_backtick] = ACTIONS(1794), + [sym__fenced_code_block_start_tilde] = ACTIONS(1794), + [sym__blank_line_start] = ACTIONS(1794), + [sym_minus_metadata] = ACTIONS(1794), + [sym__pipe_table_start] = ACTIONS(1794), + [sym__fenced_div_start] = ACTIONS(1794), + [sym_ref_id_specifier] = ACTIONS(1794), + [sym__display_math_state_track_marker] = ACTIONS(1794), + [sym__inline_math_state_track_marker] = ACTIONS(1794), + [sym__code_span_start] = ACTIONS(1794), + [sym__html_comment] = ACTIONS(1794), + [sym_raw_specifier] = ACTIONS(1794), + [sym__autolink] = ACTIONS(1794), }, [STATE(433)] = { [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_QMARK] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_BSLASH] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym__] = ACTIONS(1796), - [anon_sym_BQUOTE] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1796), - [sym__escaped_characters] = ACTIONS(1796), - [sym__word] = ACTIONS(1796), - [sym__soft_line_ending] = ACTIONS(1796), - [sym__block_close] = ACTIONS(1796), - [sym__block_quote_start] = ACTIONS(1796), - [sym__indented_chunk_start] = ACTIONS(1796), - [sym_atx_h1_marker] = ACTIONS(1796), - [sym_atx_h2_marker] = ACTIONS(1796), - [sym_atx_h3_marker] = ACTIONS(1796), - [sym_atx_h4_marker] = ACTIONS(1796), - [sym_atx_h5_marker] = ACTIONS(1796), - [sym_atx_h6_marker] = ACTIONS(1796), - [sym__thematic_break] = ACTIONS(1796), - [sym__list_marker_minus] = ACTIONS(1796), - [sym__list_marker_plus] = ACTIONS(1796), - [sym__list_marker_star] = ACTIONS(1796), - [sym__list_marker_parenthesis] = ACTIONS(1796), - [sym__list_marker_dot] = ACTIONS(1796), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1796), - [sym__list_marker_example] = ACTIONS(1796), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1796), - [sym__fenced_code_block_start_backtick] = ACTIONS(1796), - [sym__fenced_code_block_start_tilde] = ACTIONS(1796), - [sym__blank_line_start] = ACTIONS(1796), - [sym_minus_metadata] = ACTIONS(1796), - [sym__pipe_table_start] = ACTIONS(1796), - [sym__fenced_div_start] = ACTIONS(1796), - [sym_ref_id_specifier] = ACTIONS(1796), - [sym__display_math_state_track_marker] = ACTIONS(1796), - [sym__inline_math_state_track_marker] = ACTIONS(1796), - [sym__code_span_start] = ACTIONS(1796), - [sym__html_comment] = ACTIONS(1796), - [sym_raw_specifier] = ACTIONS(1796), - [sym__autolink] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1798), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_PERCENT] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_DOT] = ACTIONS(1798), + [anon_sym_SLASH] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_QMARK] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_BSLASH] = ACTIONS(1796), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym__] = ACTIONS(1798), + [anon_sym_BQUOTE] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1798), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1798), + [sym__escaped_characters] = ACTIONS(1798), + [sym__word] = ACTIONS(1798), + [sym__soft_line_ending] = ACTIONS(1798), + [sym__block_close] = ACTIONS(1798), + [sym__block_quote_start] = ACTIONS(1798), + [sym__indented_chunk_start] = ACTIONS(1798), + [sym_atx_h1_marker] = ACTIONS(1798), + [sym_atx_h2_marker] = ACTIONS(1798), + [sym_atx_h3_marker] = ACTIONS(1798), + [sym_atx_h4_marker] = ACTIONS(1798), + [sym_atx_h5_marker] = ACTIONS(1798), + [sym_atx_h6_marker] = ACTIONS(1798), + [sym__thematic_break] = ACTIONS(1798), + [sym__list_marker_minus] = ACTIONS(1798), + [sym__list_marker_plus] = ACTIONS(1798), + [sym__list_marker_star] = ACTIONS(1798), + [sym__list_marker_parenthesis] = ACTIONS(1798), + [sym__list_marker_dot] = ACTIONS(1798), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1798), + [sym__list_marker_example] = ACTIONS(1798), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1798), + [sym__fenced_code_block_start_backtick] = ACTIONS(1798), + [sym__fenced_code_block_start_tilde] = ACTIONS(1798), + [sym__blank_line_start] = ACTIONS(1798), + [sym_minus_metadata] = ACTIONS(1798), + [sym__pipe_table_start] = ACTIONS(1798), + [sym__fenced_div_start] = ACTIONS(1798), + [sym_ref_id_specifier] = ACTIONS(1798), + [sym__display_math_state_track_marker] = ACTIONS(1798), + [sym__inline_math_state_track_marker] = ACTIONS(1798), + [sym__code_span_start] = ACTIONS(1798), + [sym__html_comment] = ACTIONS(1798), + [sym_raw_specifier] = ACTIONS(1798), + [sym__autolink] = ACTIONS(1798), }, [STATE(434)] = { [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1800), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_COMMA] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_DOT] = ACTIONS(1800), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_BSLASH] = ACTIONS(1802), - [anon_sym_RBRACK] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym__] = ACTIONS(1800), - [anon_sym_BQUOTE] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1800), - [sym__escaped_characters] = ACTIONS(1800), - [sym__word] = ACTIONS(1800), - [sym__soft_line_ending] = ACTIONS(1800), - [sym__block_close] = ACTIONS(1800), - [sym__block_quote_start] = ACTIONS(1800), - [sym__indented_chunk_start] = ACTIONS(1800), - [sym_atx_h1_marker] = ACTIONS(1800), - [sym_atx_h2_marker] = ACTIONS(1800), - [sym_atx_h3_marker] = ACTIONS(1800), - [sym_atx_h4_marker] = ACTIONS(1800), - [sym_atx_h5_marker] = ACTIONS(1800), - [sym_atx_h6_marker] = ACTIONS(1800), - [sym__thematic_break] = ACTIONS(1800), - [sym__list_marker_minus] = ACTIONS(1800), - [sym__list_marker_plus] = ACTIONS(1800), - [sym__list_marker_star] = ACTIONS(1800), - [sym__list_marker_parenthesis] = ACTIONS(1800), - [sym__list_marker_dot] = ACTIONS(1800), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1800), - [sym__list_marker_example] = ACTIONS(1800), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1800), - [sym__fenced_code_block_start_backtick] = ACTIONS(1800), - [sym__fenced_code_block_start_tilde] = ACTIONS(1800), - [sym__blank_line_start] = ACTIONS(1800), - [sym_minus_metadata] = ACTIONS(1800), - [sym__pipe_table_start] = ACTIONS(1800), - [sym__fenced_div_start] = ACTIONS(1800), - [sym_ref_id_specifier] = ACTIONS(1800), - [sym__display_math_state_track_marker] = ACTIONS(1800), - [sym__inline_math_state_track_marker] = ACTIONS(1800), - [sym__code_span_start] = ACTIONS(1800), - [sym__html_comment] = ACTIONS(1800), - [sym_raw_specifier] = ACTIONS(1800), - [sym__autolink] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1802), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_RPAREN] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_COMMA] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_DOT] = ACTIONS(1802), + [anon_sym_SLASH] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1800), + [anon_sym_BSLASH] = ACTIONS(1800), + [anon_sym_RBRACK] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym__] = ACTIONS(1802), + [anon_sym_BQUOTE] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1802), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1802), + [sym__escaped_characters] = ACTIONS(1802), + [sym__word] = ACTIONS(1802), + [sym__soft_line_ending] = ACTIONS(1802), + [sym__block_close] = ACTIONS(1802), + [sym__block_quote_start] = ACTIONS(1802), + [sym__indented_chunk_start] = ACTIONS(1802), + [sym_atx_h1_marker] = ACTIONS(1802), + [sym_atx_h2_marker] = ACTIONS(1802), + [sym_atx_h3_marker] = ACTIONS(1802), + [sym_atx_h4_marker] = ACTIONS(1802), + [sym_atx_h5_marker] = ACTIONS(1802), + [sym_atx_h6_marker] = ACTIONS(1802), + [sym__thematic_break] = ACTIONS(1802), + [sym__list_marker_minus] = ACTIONS(1802), + [sym__list_marker_plus] = ACTIONS(1802), + [sym__list_marker_star] = ACTIONS(1802), + [sym__list_marker_parenthesis] = ACTIONS(1802), + [sym__list_marker_dot] = ACTIONS(1802), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1802), + [sym__list_marker_example] = ACTIONS(1802), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1802), + [sym__fenced_code_block_start_backtick] = ACTIONS(1802), + [sym__fenced_code_block_start_tilde] = ACTIONS(1802), + [sym__blank_line_start] = ACTIONS(1802), + [sym_minus_metadata] = ACTIONS(1802), + [sym__pipe_table_start] = ACTIONS(1802), + [sym__fenced_div_start] = ACTIONS(1802), + [sym_ref_id_specifier] = ACTIONS(1802), + [sym__display_math_state_track_marker] = ACTIONS(1802), + [sym__inline_math_state_track_marker] = ACTIONS(1802), + [sym__code_span_start] = ACTIONS(1802), + [sym__html_comment] = ACTIONS(1802), + [sym_raw_specifier] = ACTIONS(1802), + [sym__autolink] = ACTIONS(1802), }, [STATE(435)] = { [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1804), - [anon_sym_EQ] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1804), - [anon_sym_DOLLAR] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOT] = ACTIONS(1804), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_QMARK] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_BSLASH] = ACTIONS(1806), - [anon_sym_RBRACK] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym__] = ACTIONS(1804), - [anon_sym_BQUOTE] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1804), - [sym__escaped_characters] = ACTIONS(1804), - [sym__word] = ACTIONS(1804), - [sym__soft_line_ending] = ACTIONS(1804), - [sym__block_close] = ACTIONS(1804), - [sym__block_quote_start] = ACTIONS(1804), - [sym__indented_chunk_start] = ACTIONS(1804), - [sym_atx_h1_marker] = ACTIONS(1804), - [sym_atx_h2_marker] = ACTIONS(1804), - [sym_atx_h3_marker] = ACTIONS(1804), - [sym_atx_h4_marker] = ACTIONS(1804), - [sym_atx_h5_marker] = ACTIONS(1804), - [sym_atx_h6_marker] = ACTIONS(1804), - [sym__thematic_break] = ACTIONS(1804), - [sym__list_marker_minus] = ACTIONS(1804), - [sym__list_marker_plus] = ACTIONS(1804), - [sym__list_marker_star] = ACTIONS(1804), - [sym__list_marker_parenthesis] = ACTIONS(1804), - [sym__list_marker_dot] = ACTIONS(1804), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1804), - [sym__list_marker_example] = ACTIONS(1804), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1804), - [sym__fenced_code_block_start_backtick] = ACTIONS(1804), - [sym__fenced_code_block_start_tilde] = ACTIONS(1804), - [sym__blank_line_start] = ACTIONS(1804), - [sym_minus_metadata] = ACTIONS(1804), - [sym__pipe_table_start] = ACTIONS(1804), - [sym__fenced_div_start] = ACTIONS(1804), - [sym_ref_id_specifier] = ACTIONS(1804), - [sym__display_math_state_track_marker] = ACTIONS(1804), - [sym__inline_math_state_track_marker] = ACTIONS(1804), - [sym__code_span_start] = ACTIONS(1804), - [sym__html_comment] = ACTIONS(1804), - [sym_raw_specifier] = ACTIONS(1804), - [sym__autolink] = ACTIONS(1804), + [anon_sym_RBRACE] = ACTIONS(1806), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1806), + [anon_sym_EQ] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_DOLLAR] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_COMMA] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_DOT] = ACTIONS(1806), + [anon_sym_SLASH] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_QMARK] = ACTIONS(1806), + [anon_sym_AT] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_BSLASH] = ACTIONS(1804), + [anon_sym_RBRACK] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym__] = ACTIONS(1806), + [anon_sym_BQUOTE] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1806), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1806), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1806), + [sym__escaped_characters] = ACTIONS(1806), + [sym__word] = ACTIONS(1806), + [sym__soft_line_ending] = ACTIONS(1806), + [sym__block_close] = ACTIONS(1806), + [sym__block_quote_start] = ACTIONS(1806), + [sym__indented_chunk_start] = ACTIONS(1806), + [sym_atx_h1_marker] = ACTIONS(1806), + [sym_atx_h2_marker] = ACTIONS(1806), + [sym_atx_h3_marker] = ACTIONS(1806), + [sym_atx_h4_marker] = ACTIONS(1806), + [sym_atx_h5_marker] = ACTIONS(1806), + [sym_atx_h6_marker] = ACTIONS(1806), + [sym__thematic_break] = ACTIONS(1806), + [sym__list_marker_minus] = ACTIONS(1806), + [sym__list_marker_plus] = ACTIONS(1806), + [sym__list_marker_star] = ACTIONS(1806), + [sym__list_marker_parenthesis] = ACTIONS(1806), + [sym__list_marker_dot] = ACTIONS(1806), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1806), + [sym__list_marker_example] = ACTIONS(1806), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1806), + [sym__fenced_code_block_start_backtick] = ACTIONS(1806), + [sym__fenced_code_block_start_tilde] = ACTIONS(1806), + [sym__blank_line_start] = ACTIONS(1806), + [sym_minus_metadata] = ACTIONS(1806), + [sym__pipe_table_start] = ACTIONS(1806), + [sym__fenced_div_start] = ACTIONS(1806), + [sym_ref_id_specifier] = ACTIONS(1806), + [sym__display_math_state_track_marker] = ACTIONS(1806), + [sym__inline_math_state_track_marker] = ACTIONS(1806), + [sym__code_span_start] = ACTIONS(1806), + [sym__html_comment] = ACTIONS(1806), + [sym_raw_specifier] = ACTIONS(1806), + [sym__autolink] = ACTIONS(1806), }, [STATE(436)] = { [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1808), - [anon_sym_DOLLAR] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_COMMA] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_QMARK] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_BSLASH] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1808), - [anon_sym__] = ACTIONS(1808), - [anon_sym_BQUOTE] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1808), - [sym__escaped_characters] = ACTIONS(1808), - [sym__word] = ACTIONS(1808), - [sym__soft_line_ending] = ACTIONS(1808), - [sym__block_close] = ACTIONS(1808), - [sym__block_quote_start] = ACTIONS(1808), - [sym__indented_chunk_start] = ACTIONS(1808), - [sym_atx_h1_marker] = ACTIONS(1808), - [sym_atx_h2_marker] = ACTIONS(1808), - [sym_atx_h3_marker] = ACTIONS(1808), - [sym_atx_h4_marker] = ACTIONS(1808), - [sym_atx_h5_marker] = ACTIONS(1808), - [sym_atx_h6_marker] = ACTIONS(1808), - [sym__thematic_break] = ACTIONS(1808), - [sym__list_marker_minus] = ACTIONS(1808), - [sym__list_marker_plus] = ACTIONS(1808), - [sym__list_marker_star] = ACTIONS(1808), - [sym__list_marker_parenthesis] = ACTIONS(1808), - [sym__list_marker_dot] = ACTIONS(1808), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1808), - [sym__list_marker_example] = ACTIONS(1808), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1808), - [sym__fenced_code_block_start_backtick] = ACTIONS(1808), - [sym__fenced_code_block_start_tilde] = ACTIONS(1808), - [sym__blank_line_start] = ACTIONS(1808), - [sym_minus_metadata] = ACTIONS(1808), - [sym__pipe_table_start] = ACTIONS(1808), - [sym__fenced_div_start] = ACTIONS(1808), - [sym_ref_id_specifier] = ACTIONS(1808), - [sym__display_math_state_track_marker] = ACTIONS(1808), - [sym__inline_math_state_track_marker] = ACTIONS(1808), - [sym__code_span_start] = ACTIONS(1808), - [sym__html_comment] = ACTIONS(1808), - [sym_raw_specifier] = ACTIONS(1808), - [sym__autolink] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1810), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_DOLLAR] = ACTIONS(1810), + [anon_sym_PERCENT] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_COMMA] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_DOT] = ACTIONS(1810), + [anon_sym_SLASH] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_QMARK] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1808), + [anon_sym_BSLASH] = ACTIONS(1808), + [anon_sym_RBRACK] = ACTIONS(1810), + [anon_sym_CARET] = ACTIONS(1810), + [anon_sym__] = ACTIONS(1810), + [anon_sym_BQUOTE] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1810), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1810), + [sym__escaped_characters] = ACTIONS(1810), + [sym__word] = ACTIONS(1810), + [sym__soft_line_ending] = ACTIONS(1810), + [sym__block_close] = ACTIONS(1810), + [sym__block_quote_start] = ACTIONS(1810), + [sym__indented_chunk_start] = ACTIONS(1810), + [sym_atx_h1_marker] = ACTIONS(1810), + [sym_atx_h2_marker] = ACTIONS(1810), + [sym_atx_h3_marker] = ACTIONS(1810), + [sym_atx_h4_marker] = ACTIONS(1810), + [sym_atx_h5_marker] = ACTIONS(1810), + [sym_atx_h6_marker] = ACTIONS(1810), + [sym__thematic_break] = ACTIONS(1810), + [sym__list_marker_minus] = ACTIONS(1810), + [sym__list_marker_plus] = ACTIONS(1810), + [sym__list_marker_star] = ACTIONS(1810), + [sym__list_marker_parenthesis] = ACTIONS(1810), + [sym__list_marker_dot] = ACTIONS(1810), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1810), + [sym__list_marker_example] = ACTIONS(1810), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1810), + [sym__fenced_code_block_start_backtick] = ACTIONS(1810), + [sym__fenced_code_block_start_tilde] = ACTIONS(1810), + [sym__blank_line_start] = ACTIONS(1810), + [sym_minus_metadata] = ACTIONS(1810), + [sym__pipe_table_start] = ACTIONS(1810), + [sym__fenced_div_start] = ACTIONS(1810), + [sym_ref_id_specifier] = ACTIONS(1810), + [sym__display_math_state_track_marker] = ACTIONS(1810), + [sym__inline_math_state_track_marker] = ACTIONS(1810), + [sym__code_span_start] = ACTIONS(1810), + [sym__html_comment] = ACTIONS(1810), + [sym_raw_specifier] = ACTIONS(1810), + [sym__autolink] = ACTIONS(1810), }, [STATE(437)] = { [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1964), - [anon_sym_EQ] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1964), - [anon_sym_DOLLAR] = ACTIONS(1964), - [anon_sym_PERCENT] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_COMMA] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1964), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_BSLASH] = ACTIONS(1966), - [anon_sym_RBRACK] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1964), - [anon_sym__] = ACTIONS(1964), - [anon_sym_BQUOTE] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1964), - [sym__escaped_characters] = ACTIONS(1964), - [sym__word] = ACTIONS(1964), - [sym__soft_line_ending] = ACTIONS(1964), - [sym__block_close] = ACTIONS(1964), - [sym__block_quote_start] = ACTIONS(1964), - [sym__indented_chunk_start] = ACTIONS(1964), - [sym_atx_h1_marker] = ACTIONS(1964), - [sym_atx_h2_marker] = ACTIONS(1964), - [sym_atx_h3_marker] = ACTIONS(1964), - [sym_atx_h4_marker] = ACTIONS(1964), - [sym_atx_h5_marker] = ACTIONS(1964), - [sym_atx_h6_marker] = ACTIONS(1964), - [sym__thematic_break] = ACTIONS(1964), - [sym__list_marker_minus] = ACTIONS(1964), - [sym__list_marker_plus] = ACTIONS(1964), - [sym__list_marker_star] = ACTIONS(1964), - [sym__list_marker_parenthesis] = ACTIONS(1964), - [sym__list_marker_dot] = ACTIONS(1964), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1964), - [sym__list_marker_example] = ACTIONS(1964), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1964), - [sym__fenced_code_block_start_backtick] = ACTIONS(1964), - [sym__fenced_code_block_start_tilde] = ACTIONS(1964), - [sym__blank_line_start] = ACTIONS(1964), - [sym_minus_metadata] = ACTIONS(1964), - [sym__pipe_table_start] = ACTIONS(1964), - [sym__fenced_div_start] = ACTIONS(1964), - [sym_ref_id_specifier] = ACTIONS(1964), - [sym__display_math_state_track_marker] = ACTIONS(1964), - [sym__inline_math_state_track_marker] = ACTIONS(1964), - [sym__code_span_start] = ACTIONS(1964), - [sym__html_comment] = ACTIONS(1964), - [sym_raw_specifier] = ACTIONS(1964), - [sym__autolink] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1966), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1966), + [anon_sym_PERCENT] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_PLUS] = ACTIONS(1966), + [anon_sym_COMMA] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_DOT] = ACTIONS(1966), + [anon_sym_SLASH] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_QMARK] = ACTIONS(1966), + [anon_sym_AT] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_BSLASH] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym__] = ACTIONS(1966), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1966), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1966), + [sym__escaped_characters] = ACTIONS(1966), + [sym__word] = ACTIONS(1966), + [sym__soft_line_ending] = ACTIONS(1966), + [sym__block_close] = ACTIONS(1966), + [sym__block_quote_start] = ACTIONS(1966), + [sym__indented_chunk_start] = ACTIONS(1966), + [sym_atx_h1_marker] = ACTIONS(1966), + [sym_atx_h2_marker] = ACTIONS(1966), + [sym_atx_h3_marker] = ACTIONS(1966), + [sym_atx_h4_marker] = ACTIONS(1966), + [sym_atx_h5_marker] = ACTIONS(1966), + [sym_atx_h6_marker] = ACTIONS(1966), + [sym__thematic_break] = ACTIONS(1966), + [sym__list_marker_minus] = ACTIONS(1966), + [sym__list_marker_plus] = ACTIONS(1966), + [sym__list_marker_star] = ACTIONS(1966), + [sym__list_marker_parenthesis] = ACTIONS(1966), + [sym__list_marker_dot] = ACTIONS(1966), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1966), + [sym__list_marker_example] = ACTIONS(1966), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1966), + [sym__fenced_code_block_start_backtick] = ACTIONS(1966), + [sym__fenced_code_block_start_tilde] = ACTIONS(1966), + [sym__blank_line_start] = ACTIONS(1966), + [sym_minus_metadata] = ACTIONS(1966), + [sym__pipe_table_start] = ACTIONS(1966), + [sym__fenced_div_start] = ACTIONS(1966), + [sym_ref_id_specifier] = ACTIONS(1966), + [sym__display_math_state_track_marker] = ACTIONS(1966), + [sym__inline_math_state_track_marker] = ACTIONS(1966), + [sym__code_span_start] = ACTIONS(1966), + [sym__html_comment] = ACTIONS(1966), + [sym_raw_specifier] = ACTIONS(1966), + [sym__autolink] = ACTIONS(1966), }, [STATE(438)] = { [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1984), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_COMMA] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(1984), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_BSLASH] = ACTIONS(1986), - [anon_sym_RBRACK] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym__] = ACTIONS(1984), - [anon_sym_BQUOTE] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1984), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1984), - [sym__escaped_characters] = ACTIONS(1984), - [sym__word] = ACTIONS(1984), - [sym__soft_line_ending] = ACTIONS(1984), - [sym_block_continuation] = ACTIONS(1984), - [sym__block_quote_start] = ACTIONS(1984), - [sym__indented_chunk_start] = ACTIONS(1984), - [sym_atx_h1_marker] = ACTIONS(1984), - [sym_atx_h2_marker] = ACTIONS(1984), - [sym_atx_h3_marker] = ACTIONS(1984), - [sym_atx_h4_marker] = ACTIONS(1984), - [sym_atx_h5_marker] = ACTIONS(1984), - [sym_atx_h6_marker] = ACTIONS(1984), - [sym__thematic_break] = ACTIONS(1984), - [sym__list_marker_minus] = ACTIONS(1984), - [sym__list_marker_plus] = ACTIONS(1984), - [sym__list_marker_star] = ACTIONS(1984), - [sym__list_marker_parenthesis] = ACTIONS(1984), - [sym__list_marker_dot] = ACTIONS(1984), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1984), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1984), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1984), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1984), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1984), - [sym__list_marker_example] = ACTIONS(1984), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1984), - [sym__fenced_code_block_start_backtick] = ACTIONS(1984), - [sym__fenced_code_block_start_tilde] = ACTIONS(1984), - [sym__blank_line_start] = ACTIONS(1984), - [sym_minus_metadata] = ACTIONS(1984), - [sym__pipe_table_start] = ACTIONS(1984), - [sym__fenced_div_start] = ACTIONS(1984), - [sym_ref_id_specifier] = ACTIONS(1984), - [sym__display_math_state_track_marker] = ACTIONS(1984), - [sym__inline_math_state_track_marker] = ACTIONS(1984), - [sym__code_span_start] = ACTIONS(1984), - [sym__html_comment] = ACTIONS(1984), - [sym_raw_specifier] = ACTIONS(1984), - [sym__autolink] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1986), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1986), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1986), + [anon_sym_PERCENT] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_RPAREN] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_PLUS] = ACTIONS(1986), + [anon_sym_COMMA] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_DOT] = ACTIONS(1986), + [anon_sym_SLASH] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_QMARK] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_BSLASH] = ACTIONS(1984), + [anon_sym_RBRACK] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1986), + [anon_sym__] = ACTIONS(1986), + [anon_sym_BQUOTE] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1986), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1986), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1986), + [sym__escaped_characters] = ACTIONS(1986), + [sym__word] = ACTIONS(1986), + [sym__soft_line_ending] = ACTIONS(1986), + [sym_block_continuation] = ACTIONS(1986), + [sym__block_quote_start] = ACTIONS(1986), + [sym__indented_chunk_start] = ACTIONS(1986), + [sym_atx_h1_marker] = ACTIONS(1986), + [sym_atx_h2_marker] = ACTIONS(1986), + [sym_atx_h3_marker] = ACTIONS(1986), + [sym_atx_h4_marker] = ACTIONS(1986), + [sym_atx_h5_marker] = ACTIONS(1986), + [sym_atx_h6_marker] = ACTIONS(1986), + [sym__thematic_break] = ACTIONS(1986), + [sym__list_marker_minus] = ACTIONS(1986), + [sym__list_marker_plus] = ACTIONS(1986), + [sym__list_marker_star] = ACTIONS(1986), + [sym__list_marker_parenthesis] = ACTIONS(1986), + [sym__list_marker_dot] = ACTIONS(1986), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1986), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1986), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1986), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1986), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1986), + [sym__list_marker_example] = ACTIONS(1986), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1986), + [sym__fenced_code_block_start_backtick] = ACTIONS(1986), + [sym__fenced_code_block_start_tilde] = ACTIONS(1986), + [sym__blank_line_start] = ACTIONS(1986), + [sym_minus_metadata] = ACTIONS(1986), + [sym__pipe_table_start] = ACTIONS(1986), + [sym__fenced_div_start] = ACTIONS(1986), + [sym_ref_id_specifier] = ACTIONS(1986), + [sym__display_math_state_track_marker] = ACTIONS(1986), + [sym__inline_math_state_track_marker] = ACTIONS(1986), + [sym__code_span_start] = ACTIONS(1986), + [sym__html_comment] = ACTIONS(1986), + [sym_raw_specifier] = ACTIONS(1986), + [sym__autolink] = ACTIONS(1986), }, [STATE(439)] = { [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1988), - [anon_sym_EQ] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_DOLLAR] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1988), - [anon_sym_RPAREN] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_COMMA] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_DOT] = ACTIONS(1988), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_BSLASH] = ACTIONS(1990), - [anon_sym_RBRACK] = ACTIONS(1988), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym__] = ACTIONS(1988), - [anon_sym_BQUOTE] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1988), - [sym__escaped_characters] = ACTIONS(1988), - [sym__word] = ACTIONS(1988), - [sym__soft_line_ending] = ACTIONS(1988), - [sym_block_continuation] = ACTIONS(1988), - [sym__block_quote_start] = ACTIONS(1988), - [sym__indented_chunk_start] = ACTIONS(1988), - [sym_atx_h1_marker] = ACTIONS(1988), - [sym_atx_h2_marker] = ACTIONS(1988), - [sym_atx_h3_marker] = ACTIONS(1988), - [sym_atx_h4_marker] = ACTIONS(1988), - [sym_atx_h5_marker] = ACTIONS(1988), - [sym_atx_h6_marker] = ACTIONS(1988), - [sym__thematic_break] = ACTIONS(1988), - [sym__list_marker_minus] = ACTIONS(1988), - [sym__list_marker_plus] = ACTIONS(1988), - [sym__list_marker_star] = ACTIONS(1988), - [sym__list_marker_parenthesis] = ACTIONS(1988), - [sym__list_marker_dot] = ACTIONS(1988), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1988), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1988), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1988), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1988), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1988), - [sym__list_marker_example] = ACTIONS(1988), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1988), - [sym__fenced_code_block_start_backtick] = ACTIONS(1988), - [sym__fenced_code_block_start_tilde] = ACTIONS(1988), - [sym__blank_line_start] = ACTIONS(1988), - [sym_minus_metadata] = ACTIONS(1988), - [sym__pipe_table_start] = ACTIONS(1988), - [sym__fenced_div_start] = ACTIONS(1988), - [sym_ref_id_specifier] = ACTIONS(1988), - [sym__display_math_state_track_marker] = ACTIONS(1988), - [sym__inline_math_state_track_marker] = ACTIONS(1988), - [sym__code_span_start] = ACTIONS(1988), - [sym__html_comment] = ACTIONS(1988), - [sym_raw_specifier] = ACTIONS(1988), - [sym__autolink] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1990), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1990), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(1990), + [anon_sym_PERCENT] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_RPAREN] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_COMMA] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(1990), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_QMARK] = ACTIONS(1990), + [anon_sym_AT] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_BSLASH] = ACTIONS(1988), + [anon_sym_RBRACK] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym__] = ACTIONS(1990), + [anon_sym_BQUOTE] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1990), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1990), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1990), + [sym__escaped_characters] = ACTIONS(1990), + [sym__word] = ACTIONS(1990), + [sym__soft_line_ending] = ACTIONS(1990), + [sym_block_continuation] = ACTIONS(1990), + [sym__block_quote_start] = ACTIONS(1990), + [sym__indented_chunk_start] = ACTIONS(1990), + [sym_atx_h1_marker] = ACTIONS(1990), + [sym_atx_h2_marker] = ACTIONS(1990), + [sym_atx_h3_marker] = ACTIONS(1990), + [sym_atx_h4_marker] = ACTIONS(1990), + [sym_atx_h5_marker] = ACTIONS(1990), + [sym_atx_h6_marker] = ACTIONS(1990), + [sym__thematic_break] = ACTIONS(1990), + [sym__list_marker_minus] = ACTIONS(1990), + [sym__list_marker_plus] = ACTIONS(1990), + [sym__list_marker_star] = ACTIONS(1990), + [sym__list_marker_parenthesis] = ACTIONS(1990), + [sym__list_marker_dot] = ACTIONS(1990), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1990), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1990), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1990), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1990), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1990), + [sym__list_marker_example] = ACTIONS(1990), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1990), + [sym__fenced_code_block_start_backtick] = ACTIONS(1990), + [sym__fenced_code_block_start_tilde] = ACTIONS(1990), + [sym__blank_line_start] = ACTIONS(1990), + [sym_minus_metadata] = ACTIONS(1990), + [sym__pipe_table_start] = ACTIONS(1990), + [sym__fenced_div_start] = ACTIONS(1990), + [sym_ref_id_specifier] = ACTIONS(1990), + [sym__display_math_state_track_marker] = ACTIONS(1990), + [sym__inline_math_state_track_marker] = ACTIONS(1990), + [sym__code_span_start] = ACTIONS(1990), + [sym__html_comment] = ACTIONS(1990), + [sym_raw_specifier] = ACTIONS(1990), + [sym__autolink] = ACTIONS(1990), }, [STATE(440)] = { - [ts_builtin_sym_end] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1526), [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1526), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1524), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1524), - [sym__html_comment] = ACTIONS(1524), - [sym_raw_specifier] = ACTIONS(1524), - [sym__autolink] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_BSLASH] = ACTIONS(1524), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1526), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1526), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1526), + [sym__html_comment] = ACTIONS(1526), + [sym_raw_specifier] = ACTIONS(1526), + [sym__autolink] = ACTIONS(1526), }, [STATE(441)] = { - [ts_builtin_sym_end] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1532), [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_BSLASH] = ACTIONS(1532), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1530), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1530), - [sym__html_comment] = ACTIONS(1530), - [sym_raw_specifier] = ACTIONS(1530), - [sym__autolink] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1532), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_SLASH] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1532), + [anon_sym_BQUOTE] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1532), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1532), + [sym__escaped_characters] = ACTIONS(1532), + [sym__word] = ACTIONS(1532), + [sym__soft_line_ending] = ACTIONS(1532), + [sym__block_quote_start] = ACTIONS(1532), + [sym__indented_chunk_start] = ACTIONS(1532), + [sym_atx_h1_marker] = ACTIONS(1532), + [sym_atx_h2_marker] = ACTIONS(1532), + [sym_atx_h3_marker] = ACTIONS(1532), + [sym_atx_h4_marker] = ACTIONS(1532), + [sym_atx_h5_marker] = ACTIONS(1532), + [sym_atx_h6_marker] = ACTIONS(1532), + [sym__thematic_break] = ACTIONS(1532), + [sym__list_marker_minus] = ACTIONS(1532), + [sym__list_marker_plus] = ACTIONS(1532), + [sym__list_marker_star] = ACTIONS(1532), + [sym__list_marker_parenthesis] = ACTIONS(1532), + [sym__list_marker_dot] = ACTIONS(1532), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1532), + [sym__list_marker_example] = ACTIONS(1532), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1532), + [sym__fenced_code_block_start_backtick] = ACTIONS(1532), + [sym__fenced_code_block_start_tilde] = ACTIONS(1532), + [sym__blank_line_start] = ACTIONS(1532), + [sym_minus_metadata] = ACTIONS(1532), + [sym__pipe_table_start] = ACTIONS(1532), + [sym__fenced_div_start] = ACTIONS(1532), + [sym_ref_id_specifier] = ACTIONS(1532), + [sym__display_math_state_track_marker] = ACTIONS(1532), + [sym__inline_math_state_track_marker] = ACTIONS(1532), + [sym__code_span_start] = ACTIONS(1532), + [sym__html_comment] = ACTIONS(1532), + [sym_raw_specifier] = ACTIONS(1532), + [sym__autolink] = ACTIONS(1532), }, [STATE(442)] = { - [ts_builtin_sym_end] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1494), [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1494), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1492), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1492), - [sym__html_comment] = ACTIONS(1492), - [sym_raw_specifier] = ACTIONS(1492), - [sym__autolink] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1494), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1494), + [sym__escaped_characters] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + [sym__code_span_start] = ACTIONS(1494), + [sym__html_comment] = ACTIONS(1494), + [sym_raw_specifier] = ACTIONS(1494), + [sym__autolink] = ACTIONS(1494), }, [STATE(443)] = { - [ts_builtin_sym_end] = ACTIONS(1816), + [ts_builtin_sym_end] = ACTIONS(1818), [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_RPAREN] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_COMMA] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_QMARK] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_BSLASH] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_BQUOTE] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1816), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1816), - [sym__escaped_characters] = ACTIONS(1816), - [sym__word] = ACTIONS(1816), - [sym__soft_line_ending] = ACTIONS(1816), - [sym__block_quote_start] = ACTIONS(1816), - [sym__indented_chunk_start] = ACTIONS(1816), - [sym_atx_h1_marker] = ACTIONS(1816), - [sym_atx_h2_marker] = ACTIONS(1816), - [sym_atx_h3_marker] = ACTIONS(1816), - [sym_atx_h4_marker] = ACTIONS(1816), - [sym_atx_h5_marker] = ACTIONS(1816), - [sym_atx_h6_marker] = ACTIONS(1816), - [sym__thematic_break] = ACTIONS(1816), - [sym__list_marker_minus] = ACTIONS(1816), - [sym__list_marker_plus] = ACTIONS(1816), - [sym__list_marker_star] = ACTIONS(1816), - [sym__list_marker_parenthesis] = ACTIONS(1816), - [sym__list_marker_dot] = ACTIONS(1816), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1816), - [sym__list_marker_example] = ACTIONS(1816), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1816), - [sym__fenced_code_block_start_backtick] = ACTIONS(1816), - [sym__fenced_code_block_start_tilde] = ACTIONS(1816), - [sym__blank_line_start] = ACTIONS(1816), - [sym_minus_metadata] = ACTIONS(1816), - [sym__pipe_table_start] = ACTIONS(1816), - [sym__fenced_div_start] = ACTIONS(1816), - [sym_ref_id_specifier] = ACTIONS(1816), - [sym__display_math_state_track_marker] = ACTIONS(1816), - [sym__inline_math_state_track_marker] = ACTIONS(1816), - [sym__code_span_start] = ACTIONS(1816), - [sym__html_comment] = ACTIONS(1816), - [sym_raw_specifier] = ACTIONS(1816), - [sym__autolink] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1818), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1818), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_DOLLAR] = ACTIONS(1818), + [anon_sym_PERCENT] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_RPAREN] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_COMMA] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_DOT] = ACTIONS(1818), + [anon_sym_SLASH] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_QMARK] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_BSLASH] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1818), + [anon_sym__] = ACTIONS(1818), + [anon_sym_BQUOTE] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1818), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1818), + [sym__escaped_characters] = ACTIONS(1818), + [sym__word] = ACTIONS(1818), + [sym__soft_line_ending] = ACTIONS(1818), + [sym__block_quote_start] = ACTIONS(1818), + [sym__indented_chunk_start] = ACTIONS(1818), + [sym_atx_h1_marker] = ACTIONS(1818), + [sym_atx_h2_marker] = ACTIONS(1818), + [sym_atx_h3_marker] = ACTIONS(1818), + [sym_atx_h4_marker] = ACTIONS(1818), + [sym_atx_h5_marker] = ACTIONS(1818), + [sym_atx_h6_marker] = ACTIONS(1818), + [sym__thematic_break] = ACTIONS(1818), + [sym__list_marker_minus] = ACTIONS(1818), + [sym__list_marker_plus] = ACTIONS(1818), + [sym__list_marker_star] = ACTIONS(1818), + [sym__list_marker_parenthesis] = ACTIONS(1818), + [sym__list_marker_dot] = ACTIONS(1818), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1818), + [sym__list_marker_example] = ACTIONS(1818), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1818), + [sym__fenced_code_block_start_backtick] = ACTIONS(1818), + [sym__fenced_code_block_start_tilde] = ACTIONS(1818), + [sym__blank_line_start] = ACTIONS(1818), + [sym_minus_metadata] = ACTIONS(1818), + [sym__pipe_table_start] = ACTIONS(1818), + [sym__fenced_div_start] = ACTIONS(1818), + [sym_ref_id_specifier] = ACTIONS(1818), + [sym__display_math_state_track_marker] = ACTIONS(1818), + [sym__inline_math_state_track_marker] = ACTIONS(1818), + [sym__code_span_start] = ACTIONS(1818), + [sym__html_comment] = ACTIONS(1818), + [sym_raw_specifier] = ACTIONS(1818), + [sym__autolink] = ACTIONS(1818), }, [STATE(444)] = { - [ts_builtin_sym_end] = ACTIONS(1824), + [ts_builtin_sym_end] = ACTIONS(1826), [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1824), - [anon_sym_EQ] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_DOLLAR] = ACTIONS(1824), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_SLASH] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_QMARK] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_BSLASH] = ACTIONS(1826), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym__] = ACTIONS(1824), - [anon_sym_BQUOTE] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1824), - [sym__escaped_characters] = ACTIONS(1824), - [sym__word] = ACTIONS(1824), - [sym__soft_line_ending] = ACTIONS(1824), - [sym__block_quote_start] = ACTIONS(1824), - [sym__indented_chunk_start] = ACTIONS(1824), - [sym_atx_h1_marker] = ACTIONS(1824), - [sym_atx_h2_marker] = ACTIONS(1824), - [sym_atx_h3_marker] = ACTIONS(1824), - [sym_atx_h4_marker] = ACTIONS(1824), - [sym_atx_h5_marker] = ACTIONS(1824), - [sym_atx_h6_marker] = ACTIONS(1824), - [sym__thematic_break] = ACTIONS(1824), - [sym__list_marker_minus] = ACTIONS(1824), - [sym__list_marker_plus] = ACTIONS(1824), - [sym__list_marker_star] = ACTIONS(1824), - [sym__list_marker_parenthesis] = ACTIONS(1824), - [sym__list_marker_dot] = ACTIONS(1824), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1824), - [sym__list_marker_example] = ACTIONS(1824), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1824), - [sym__fenced_code_block_start_backtick] = ACTIONS(1824), - [sym__fenced_code_block_start_tilde] = ACTIONS(1824), - [sym__blank_line_start] = ACTIONS(1824), - [sym_minus_metadata] = ACTIONS(1824), - [sym__pipe_table_start] = ACTIONS(1824), - [sym__fenced_div_start] = ACTIONS(1824), - [sym_ref_id_specifier] = ACTIONS(1824), - [sym__display_math_state_track_marker] = ACTIONS(1824), - [sym__inline_math_state_track_marker] = ACTIONS(1824), - [sym__code_span_start] = ACTIONS(1824), - [sym__html_comment] = ACTIONS(1824), - [sym_raw_specifier] = ACTIONS(1824), - [sym__autolink] = ACTIONS(1824), + [anon_sym_RBRACE] = ACTIONS(1826), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1826), + [anon_sym_EQ] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_PERCENT] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_COMMA] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_DOT] = ACTIONS(1826), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_QMARK] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1824), + [anon_sym_BSLASH] = ACTIONS(1824), + [anon_sym_RBRACK] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym__] = ACTIONS(1826), + [anon_sym_BQUOTE] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1826), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1826), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1826), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1826), + [sym__escaped_characters] = ACTIONS(1826), + [sym__word] = ACTIONS(1826), + [sym__soft_line_ending] = ACTIONS(1826), + [sym__block_quote_start] = ACTIONS(1826), + [sym__indented_chunk_start] = ACTIONS(1826), + [sym_atx_h1_marker] = ACTIONS(1826), + [sym_atx_h2_marker] = ACTIONS(1826), + [sym_atx_h3_marker] = ACTIONS(1826), + [sym_atx_h4_marker] = ACTIONS(1826), + [sym_atx_h5_marker] = ACTIONS(1826), + [sym_atx_h6_marker] = ACTIONS(1826), + [sym__thematic_break] = ACTIONS(1826), + [sym__list_marker_minus] = ACTIONS(1826), + [sym__list_marker_plus] = ACTIONS(1826), + [sym__list_marker_star] = ACTIONS(1826), + [sym__list_marker_parenthesis] = ACTIONS(1826), + [sym__list_marker_dot] = ACTIONS(1826), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1826), + [sym__list_marker_example] = ACTIONS(1826), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1826), + [sym__fenced_code_block_start_backtick] = ACTIONS(1826), + [sym__fenced_code_block_start_tilde] = ACTIONS(1826), + [sym__blank_line_start] = ACTIONS(1826), + [sym_minus_metadata] = ACTIONS(1826), + [sym__pipe_table_start] = ACTIONS(1826), + [sym__fenced_div_start] = ACTIONS(1826), + [sym_ref_id_specifier] = ACTIONS(1826), + [sym__display_math_state_track_marker] = ACTIONS(1826), + [sym__inline_math_state_track_marker] = ACTIONS(1826), + [sym__code_span_start] = ACTIONS(1826), + [sym__html_comment] = ACTIONS(1826), + [sym_raw_specifier] = ACTIONS(1826), + [sym__autolink] = ACTIONS(1826), }, [STATE(445)] = { - [ts_builtin_sym_end] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1830), [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_PERCENT] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_DOT] = ACTIONS(1828), - [anon_sym_SLASH] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_QMARK] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_BSLASH] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym__] = ACTIONS(1828), - [anon_sym_BQUOTE] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1828), - [sym__escaped_characters] = ACTIONS(1828), - [sym__word] = ACTIONS(1828), - [sym__soft_line_ending] = ACTIONS(1828), - [sym__block_quote_start] = ACTIONS(1828), - [sym__indented_chunk_start] = ACTIONS(1828), - [sym_atx_h1_marker] = ACTIONS(1828), - [sym_atx_h2_marker] = ACTIONS(1828), - [sym_atx_h3_marker] = ACTIONS(1828), - [sym_atx_h4_marker] = ACTIONS(1828), - [sym_atx_h5_marker] = ACTIONS(1828), - [sym_atx_h6_marker] = ACTIONS(1828), - [sym__thematic_break] = ACTIONS(1828), - [sym__list_marker_minus] = ACTIONS(1828), - [sym__list_marker_plus] = ACTIONS(1828), - [sym__list_marker_star] = ACTIONS(1828), - [sym__list_marker_parenthesis] = ACTIONS(1828), - [sym__list_marker_dot] = ACTIONS(1828), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1828), - [sym__list_marker_example] = ACTIONS(1828), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1828), - [sym__fenced_code_block_start_backtick] = ACTIONS(1828), - [sym__fenced_code_block_start_tilde] = ACTIONS(1828), - [sym__blank_line_start] = ACTIONS(1828), - [sym_minus_metadata] = ACTIONS(1828), - [sym__pipe_table_start] = ACTIONS(1828), - [sym__fenced_div_start] = ACTIONS(1828), - [sym_ref_id_specifier] = ACTIONS(1828), - [sym__display_math_state_track_marker] = ACTIONS(1828), - [sym__inline_math_state_track_marker] = ACTIONS(1828), - [sym__code_span_start] = ACTIONS(1828), - [sym__html_comment] = ACTIONS(1828), - [sym_raw_specifier] = ACTIONS(1828), - [sym__autolink] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1830), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1830), + [anon_sym_EQ] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_PERCENT] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_RPAREN] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_COMMA] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_DOT] = ACTIONS(1830), + [anon_sym_SLASH] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_QMARK] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_BSLASH] = ACTIONS(1828), + [anon_sym_RBRACK] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1830), + [anon_sym__] = ACTIONS(1830), + [anon_sym_BQUOTE] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1830), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1830), + [sym__escaped_characters] = ACTIONS(1830), + [sym__word] = ACTIONS(1830), + [sym__soft_line_ending] = ACTIONS(1830), + [sym__block_quote_start] = ACTIONS(1830), + [sym__indented_chunk_start] = ACTIONS(1830), + [sym_atx_h1_marker] = ACTIONS(1830), + [sym_atx_h2_marker] = ACTIONS(1830), + [sym_atx_h3_marker] = ACTIONS(1830), + [sym_atx_h4_marker] = ACTIONS(1830), + [sym_atx_h5_marker] = ACTIONS(1830), + [sym_atx_h6_marker] = ACTIONS(1830), + [sym__thematic_break] = ACTIONS(1830), + [sym__list_marker_minus] = ACTIONS(1830), + [sym__list_marker_plus] = ACTIONS(1830), + [sym__list_marker_star] = ACTIONS(1830), + [sym__list_marker_parenthesis] = ACTIONS(1830), + [sym__list_marker_dot] = ACTIONS(1830), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1830), + [sym__list_marker_example] = ACTIONS(1830), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1830), + [sym__fenced_code_block_start_backtick] = ACTIONS(1830), + [sym__fenced_code_block_start_tilde] = ACTIONS(1830), + [sym__blank_line_start] = ACTIONS(1830), + [sym_minus_metadata] = ACTIONS(1830), + [sym__pipe_table_start] = ACTIONS(1830), + [sym__fenced_div_start] = ACTIONS(1830), + [sym_ref_id_specifier] = ACTIONS(1830), + [sym__display_math_state_track_marker] = ACTIONS(1830), + [sym__inline_math_state_track_marker] = ACTIONS(1830), + [sym__code_span_start] = ACTIONS(1830), + [sym__html_comment] = ACTIONS(1830), + [sym_raw_specifier] = ACTIONS(1830), + [sym__autolink] = ACTIONS(1830), }, [STATE(446)] = { - [ts_builtin_sym_end] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1836), [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_QMARK] = ACTIONS(1834), - [anon_sym_AT] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_BSLASH] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym__] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1834), - [sym__escaped_characters] = ACTIONS(1834), - [sym__word] = ACTIONS(1834), - [sym__soft_line_ending] = ACTIONS(1834), - [sym__block_quote_start] = ACTIONS(1834), - [sym__indented_chunk_start] = ACTIONS(1834), - [sym_atx_h1_marker] = ACTIONS(1834), - [sym_atx_h2_marker] = ACTIONS(1834), - [sym_atx_h3_marker] = ACTIONS(1834), - [sym_atx_h4_marker] = ACTIONS(1834), - [sym_atx_h5_marker] = ACTIONS(1834), - [sym_atx_h6_marker] = ACTIONS(1834), - [sym__thematic_break] = ACTIONS(1834), - [sym__list_marker_minus] = ACTIONS(1834), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1834), - [sym__list_marker_parenthesis] = ACTIONS(1834), - [sym__list_marker_dot] = ACTIONS(1834), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_example] = ACTIONS(1834), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1834), - [sym__fenced_code_block_start_backtick] = ACTIONS(1834), - [sym__fenced_code_block_start_tilde] = ACTIONS(1834), - [sym__blank_line_start] = ACTIONS(1834), - [sym_minus_metadata] = ACTIONS(1834), - [sym__pipe_table_start] = ACTIONS(1834), - [sym__fenced_div_start] = ACTIONS(1834), - [sym_ref_id_specifier] = ACTIONS(1834), - [sym__display_math_state_track_marker] = ACTIONS(1834), - [sym__inline_math_state_track_marker] = ACTIONS(1834), - [sym__code_span_start] = ACTIONS(1834), - [sym__html_comment] = ACTIONS(1834), - [sym_raw_specifier] = ACTIONS(1834), - [sym__autolink] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1836), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1836), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_DOT] = ACTIONS(1836), + [anon_sym_SLASH] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_QMARK] = ACTIONS(1836), + [anon_sym_AT] = ACTIONS(1836), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_BSLASH] = ACTIONS(1834), + [anon_sym_RBRACK] = ACTIONS(1836), + [anon_sym_CARET] = ACTIONS(1836), + [anon_sym__] = ACTIONS(1836), + [anon_sym_BQUOTE] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1836), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1836), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1836), + [sym__escaped_characters] = ACTIONS(1836), + [sym__word] = ACTIONS(1836), + [sym__soft_line_ending] = ACTIONS(1836), + [sym__block_quote_start] = ACTIONS(1836), + [sym__indented_chunk_start] = ACTIONS(1836), + [sym_atx_h1_marker] = ACTIONS(1836), + [sym_atx_h2_marker] = ACTIONS(1836), + [sym_atx_h3_marker] = ACTIONS(1836), + [sym_atx_h4_marker] = ACTIONS(1836), + [sym_atx_h5_marker] = ACTIONS(1836), + [sym_atx_h6_marker] = ACTIONS(1836), + [sym__thematic_break] = ACTIONS(1836), + [sym__list_marker_minus] = ACTIONS(1836), + [sym__list_marker_plus] = ACTIONS(1836), + [sym__list_marker_star] = ACTIONS(1836), + [sym__list_marker_parenthesis] = ACTIONS(1836), + [sym__list_marker_dot] = ACTIONS(1836), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1836), + [sym__list_marker_example] = ACTIONS(1836), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1836), + [sym__fenced_code_block_start_backtick] = ACTIONS(1836), + [sym__fenced_code_block_start_tilde] = ACTIONS(1836), + [sym__blank_line_start] = ACTIONS(1836), + [sym_minus_metadata] = ACTIONS(1836), + [sym__pipe_table_start] = ACTIONS(1836), + [sym__fenced_div_start] = ACTIONS(1836), + [sym_ref_id_specifier] = ACTIONS(1836), + [sym__display_math_state_track_marker] = ACTIONS(1836), + [sym__inline_math_state_track_marker] = ACTIONS(1836), + [sym__code_span_start] = ACTIONS(1836), + [sym__html_comment] = ACTIONS(1836), + [sym_raw_specifier] = ACTIONS(1836), + [sym__autolink] = ACTIONS(1836), }, [STATE(447)] = { - [ts_builtin_sym_end] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(1840), [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_QMARK] = ACTIONS(1838), - [anon_sym_AT] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_BSLASH] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym__] = ACTIONS(1838), - [anon_sym_BQUOTE] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1838), - [sym__escaped_characters] = ACTIONS(1838), - [sym__word] = ACTIONS(1838), - [sym__soft_line_ending] = ACTIONS(1838), - [sym__block_quote_start] = ACTIONS(1838), - [sym__indented_chunk_start] = ACTIONS(1838), - [sym_atx_h1_marker] = ACTIONS(1838), - [sym_atx_h2_marker] = ACTIONS(1838), - [sym_atx_h3_marker] = ACTIONS(1838), - [sym_atx_h4_marker] = ACTIONS(1838), - [sym_atx_h5_marker] = ACTIONS(1838), - [sym_atx_h6_marker] = ACTIONS(1838), - [sym__thematic_break] = ACTIONS(1838), - [sym__list_marker_minus] = ACTIONS(1838), - [sym__list_marker_plus] = ACTIONS(1838), - [sym__list_marker_star] = ACTIONS(1838), - [sym__list_marker_parenthesis] = ACTIONS(1838), - [sym__list_marker_dot] = ACTIONS(1838), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1838), - [sym__list_marker_example] = ACTIONS(1838), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1838), - [sym__fenced_code_block_start_backtick] = ACTIONS(1838), - [sym__fenced_code_block_start_tilde] = ACTIONS(1838), - [sym__blank_line_start] = ACTIONS(1838), - [sym_minus_metadata] = ACTIONS(1838), - [sym__pipe_table_start] = ACTIONS(1838), - [sym__fenced_div_start] = ACTIONS(1838), - [sym_ref_id_specifier] = ACTIONS(1838), - [sym__display_math_state_track_marker] = ACTIONS(1838), - [sym__inline_math_state_track_marker] = ACTIONS(1838), - [sym__code_span_start] = ACTIONS(1838), - [sym__html_comment] = ACTIONS(1838), - [sym_raw_specifier] = ACTIONS(1838), - [sym__autolink] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1840), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_PERCENT] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_LPAREN] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_COMMA] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_DOT] = ACTIONS(1840), + [anon_sym_SLASH] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_QMARK] = ACTIONS(1840), + [anon_sym_AT] = ACTIONS(1840), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_BSLASH] = ACTIONS(1838), + [anon_sym_RBRACK] = ACTIONS(1840), + [anon_sym_CARET] = ACTIONS(1840), + [anon_sym__] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_PIPE] = ACTIONS(1840), + [anon_sym_TILDE] = ACTIONS(1840), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1840), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1840), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1840), + [sym__escaped_characters] = ACTIONS(1840), + [sym__word] = ACTIONS(1840), + [sym__soft_line_ending] = ACTIONS(1840), + [sym__block_quote_start] = ACTIONS(1840), + [sym__indented_chunk_start] = ACTIONS(1840), + [sym_atx_h1_marker] = ACTIONS(1840), + [sym_atx_h2_marker] = ACTIONS(1840), + [sym_atx_h3_marker] = ACTIONS(1840), + [sym_atx_h4_marker] = ACTIONS(1840), + [sym_atx_h5_marker] = ACTIONS(1840), + [sym_atx_h6_marker] = ACTIONS(1840), + [sym__thematic_break] = ACTIONS(1840), + [sym__list_marker_minus] = ACTIONS(1840), + [sym__list_marker_plus] = ACTIONS(1840), + [sym__list_marker_star] = ACTIONS(1840), + [sym__list_marker_parenthesis] = ACTIONS(1840), + [sym__list_marker_dot] = ACTIONS(1840), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1840), + [sym__list_marker_example] = ACTIONS(1840), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1840), + [sym__fenced_code_block_start_backtick] = ACTIONS(1840), + [sym__fenced_code_block_start_tilde] = ACTIONS(1840), + [sym__blank_line_start] = ACTIONS(1840), + [sym_minus_metadata] = ACTIONS(1840), + [sym__pipe_table_start] = ACTIONS(1840), + [sym__fenced_div_start] = ACTIONS(1840), + [sym_ref_id_specifier] = ACTIONS(1840), + [sym__display_math_state_track_marker] = ACTIONS(1840), + [sym__inline_math_state_track_marker] = ACTIONS(1840), + [sym__code_span_start] = ACTIONS(1840), + [sym__html_comment] = ACTIONS(1840), + [sym_raw_specifier] = ACTIONS(1840), + [sym__autolink] = ACTIONS(1840), }, [STATE(448)] = { - [ts_builtin_sym_end] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1844), [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_DOT] = ACTIONS(1842), - [anon_sym_SLASH] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_QMARK] = ACTIONS(1842), - [anon_sym_AT] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_BSLASH] = ACTIONS(1844), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_CARET] = ACTIONS(1842), - [anon_sym__] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1842), - [sym__escaped_characters] = ACTIONS(1842), - [sym__word] = ACTIONS(1842), - [sym__soft_line_ending] = ACTIONS(1842), - [sym__block_quote_start] = ACTIONS(1842), - [sym__indented_chunk_start] = ACTIONS(1842), - [sym_atx_h1_marker] = ACTIONS(1842), - [sym_atx_h2_marker] = ACTIONS(1842), - [sym_atx_h3_marker] = ACTIONS(1842), - [sym_atx_h4_marker] = ACTIONS(1842), - [sym_atx_h5_marker] = ACTIONS(1842), - [sym_atx_h6_marker] = ACTIONS(1842), - [sym__thematic_break] = ACTIONS(1842), - [sym__list_marker_minus] = ACTIONS(1842), - [sym__list_marker_plus] = ACTIONS(1842), - [sym__list_marker_star] = ACTIONS(1842), - [sym__list_marker_parenthesis] = ACTIONS(1842), - [sym__list_marker_dot] = ACTIONS(1842), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1842), - [sym__list_marker_example] = ACTIONS(1842), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1842), - [sym__fenced_code_block_start_backtick] = ACTIONS(1842), - [sym__fenced_code_block_start_tilde] = ACTIONS(1842), - [sym__blank_line_start] = ACTIONS(1842), - [sym_minus_metadata] = ACTIONS(1842), - [sym__pipe_table_start] = ACTIONS(1842), - [sym__fenced_div_start] = ACTIONS(1842), - [sym_ref_id_specifier] = ACTIONS(1842), - [sym__display_math_state_track_marker] = ACTIONS(1842), - [sym__inline_math_state_track_marker] = ACTIONS(1842), - [sym__code_span_start] = ACTIONS(1842), - [sym__html_comment] = ACTIONS(1842), - [sym_raw_specifier] = ACTIONS(1842), - [sym__autolink] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1844), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1844), + [anon_sym_EQ] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_DQUOTE] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1844), + [anon_sym_PERCENT] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(1844), + [anon_sym_LPAREN] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_COMMA] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_DOT] = ACTIONS(1844), + [anon_sym_SLASH] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_QMARK] = ACTIONS(1844), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_BSLASH] = ACTIONS(1842), + [anon_sym_RBRACK] = ACTIONS(1844), + [anon_sym_CARET] = ACTIONS(1844), + [anon_sym__] = ACTIONS(1844), + [anon_sym_BQUOTE] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1844), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1844), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1844), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1844), + [sym__escaped_characters] = ACTIONS(1844), + [sym__word] = ACTIONS(1844), + [sym__soft_line_ending] = ACTIONS(1844), + [sym__block_quote_start] = ACTIONS(1844), + [sym__indented_chunk_start] = ACTIONS(1844), + [sym_atx_h1_marker] = ACTIONS(1844), + [sym_atx_h2_marker] = ACTIONS(1844), + [sym_atx_h3_marker] = ACTIONS(1844), + [sym_atx_h4_marker] = ACTIONS(1844), + [sym_atx_h5_marker] = ACTIONS(1844), + [sym_atx_h6_marker] = ACTIONS(1844), + [sym__thematic_break] = ACTIONS(1844), + [sym__list_marker_minus] = ACTIONS(1844), + [sym__list_marker_plus] = ACTIONS(1844), + [sym__list_marker_star] = ACTIONS(1844), + [sym__list_marker_parenthesis] = ACTIONS(1844), + [sym__list_marker_dot] = ACTIONS(1844), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1844), + [sym__list_marker_example] = ACTIONS(1844), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1844), + [sym__fenced_code_block_start_backtick] = ACTIONS(1844), + [sym__fenced_code_block_start_tilde] = ACTIONS(1844), + [sym__blank_line_start] = ACTIONS(1844), + [sym_minus_metadata] = ACTIONS(1844), + [sym__pipe_table_start] = ACTIONS(1844), + [sym__fenced_div_start] = ACTIONS(1844), + [sym_ref_id_specifier] = ACTIONS(1844), + [sym__display_math_state_track_marker] = ACTIONS(1844), + [sym__inline_math_state_track_marker] = ACTIONS(1844), + [sym__code_span_start] = ACTIONS(1844), + [sym__html_comment] = ACTIONS(1844), + [sym_raw_specifier] = ACTIONS(1844), + [sym__autolink] = ACTIONS(1844), }, [STATE(449)] = { - [ts_builtin_sym_end] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1848), [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_COMMA] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_SLASH] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_QMARK] = ACTIONS(1846), - [anon_sym_AT] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_BSLASH] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1846), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym__] = ACTIONS(1846), - [anon_sym_BQUOTE] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1846), - [sym__escaped_characters] = ACTIONS(1846), - [sym__word] = ACTIONS(1846), - [sym__soft_line_ending] = ACTIONS(1846), - [sym__block_quote_start] = ACTIONS(1846), - [sym__indented_chunk_start] = ACTIONS(1846), - [sym_atx_h1_marker] = ACTIONS(1846), - [sym_atx_h2_marker] = ACTIONS(1846), - [sym_atx_h3_marker] = ACTIONS(1846), - [sym_atx_h4_marker] = ACTIONS(1846), - [sym_atx_h5_marker] = ACTIONS(1846), - [sym_atx_h6_marker] = ACTIONS(1846), - [sym__thematic_break] = ACTIONS(1846), - [sym__list_marker_minus] = ACTIONS(1846), - [sym__list_marker_plus] = ACTIONS(1846), - [sym__list_marker_star] = ACTIONS(1846), - [sym__list_marker_parenthesis] = ACTIONS(1846), - [sym__list_marker_dot] = ACTIONS(1846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1846), - [sym__list_marker_example] = ACTIONS(1846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1846), - [sym__fenced_code_block_start_tilde] = ACTIONS(1846), - [sym__blank_line_start] = ACTIONS(1846), - [sym_minus_metadata] = ACTIONS(1846), - [sym__pipe_table_start] = ACTIONS(1846), - [sym__fenced_div_start] = ACTIONS(1846), - [sym_ref_id_specifier] = ACTIONS(1846), - [sym__display_math_state_track_marker] = ACTIONS(1846), - [sym__inline_math_state_track_marker] = ACTIONS(1846), - [sym__code_span_start] = ACTIONS(1846), - [sym__html_comment] = ACTIONS(1846), - [sym_raw_specifier] = ACTIONS(1846), - [sym__autolink] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1848), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1848), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_BANG] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1848), + [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1848), + [anon_sym_RPAREN] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_COMMA] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_QMARK] = ACTIONS(1848), + [anon_sym_AT] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_BSLASH] = ACTIONS(1846), + [anon_sym_RBRACK] = ACTIONS(1848), + [anon_sym_CARET] = ACTIONS(1848), + [anon_sym__] = ACTIONS(1848), + [anon_sym_BQUOTE] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_TILDE] = ACTIONS(1848), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1848), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1848), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1848), + [sym__escaped_characters] = ACTIONS(1848), + [sym__word] = ACTIONS(1848), + [sym__soft_line_ending] = ACTIONS(1848), + [sym__block_quote_start] = ACTIONS(1848), + [sym__indented_chunk_start] = ACTIONS(1848), + [sym_atx_h1_marker] = ACTIONS(1848), + [sym_atx_h2_marker] = ACTIONS(1848), + [sym_atx_h3_marker] = ACTIONS(1848), + [sym_atx_h4_marker] = ACTIONS(1848), + [sym_atx_h5_marker] = ACTIONS(1848), + [sym_atx_h6_marker] = ACTIONS(1848), + [sym__thematic_break] = ACTIONS(1848), + [sym__list_marker_minus] = ACTIONS(1848), + [sym__list_marker_plus] = ACTIONS(1848), + [sym__list_marker_star] = ACTIONS(1848), + [sym__list_marker_parenthesis] = ACTIONS(1848), + [sym__list_marker_dot] = ACTIONS(1848), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1848), + [sym__list_marker_example] = ACTIONS(1848), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1848), + [sym__fenced_code_block_start_backtick] = ACTIONS(1848), + [sym__fenced_code_block_start_tilde] = ACTIONS(1848), + [sym__blank_line_start] = ACTIONS(1848), + [sym_minus_metadata] = ACTIONS(1848), + [sym__pipe_table_start] = ACTIONS(1848), + [sym__fenced_div_start] = ACTIONS(1848), + [sym_ref_id_specifier] = ACTIONS(1848), + [sym__display_math_state_track_marker] = ACTIONS(1848), + [sym__inline_math_state_track_marker] = ACTIONS(1848), + [sym__code_span_start] = ACTIONS(1848), + [sym__html_comment] = ACTIONS(1848), + [sym_raw_specifier] = ACTIONS(1848), + [sym__autolink] = ACTIONS(1848), }, [STATE(450)] = { - [ts_builtin_sym_end] = ACTIONS(1860), + [ts_builtin_sym_end] = ACTIONS(1862), [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1860), - [anon_sym_EQ] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1860), - [anon_sym_PERCENT] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_RPAREN] = ACTIONS(1860), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1860), - [anon_sym_COMMA] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_DOT] = ACTIONS(1860), - [anon_sym_SLASH] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_QMARK] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_BSLASH] = ACTIONS(1862), - [anon_sym_RBRACK] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym__] = ACTIONS(1860), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1860), - [sym__escaped_characters] = ACTIONS(1860), - [sym__word] = ACTIONS(1860), - [sym__soft_line_ending] = ACTIONS(1860), - [sym__block_quote_start] = ACTIONS(1860), - [sym__indented_chunk_start] = ACTIONS(1860), - [sym_atx_h1_marker] = ACTIONS(1860), - [sym_atx_h2_marker] = ACTIONS(1860), - [sym_atx_h3_marker] = ACTIONS(1860), - [sym_atx_h4_marker] = ACTIONS(1860), - [sym_atx_h5_marker] = ACTIONS(1860), - [sym_atx_h6_marker] = ACTIONS(1860), - [sym__thematic_break] = ACTIONS(1860), - [sym__list_marker_minus] = ACTIONS(1860), - [sym__list_marker_plus] = ACTIONS(1860), - [sym__list_marker_star] = ACTIONS(1860), - [sym__list_marker_parenthesis] = ACTIONS(1860), - [sym__list_marker_dot] = ACTIONS(1860), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1860), - [sym__list_marker_example] = ACTIONS(1860), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1860), - [sym__fenced_code_block_start_backtick] = ACTIONS(1860), - [sym__fenced_code_block_start_tilde] = ACTIONS(1860), - [sym__blank_line_start] = ACTIONS(1860), - [sym_minus_metadata] = ACTIONS(1860), - [sym__pipe_table_start] = ACTIONS(1860), - [sym__fenced_div_start] = ACTIONS(1860), - [sym_ref_id_specifier] = ACTIONS(1860), - [sym__display_math_state_track_marker] = ACTIONS(1860), - [sym__inline_math_state_track_marker] = ACTIONS(1860), - [sym__code_span_start] = ACTIONS(1860), - [sym__html_comment] = ACTIONS(1860), - [sym_raw_specifier] = ACTIONS(1860), - [sym__autolink] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1862), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_DOLLAR] = ACTIONS(1862), + [anon_sym_PERCENT] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_PLUS] = ACTIONS(1862), + [anon_sym_COMMA] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_DOT] = ACTIONS(1862), + [anon_sym_SLASH] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_QMARK] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_BSLASH] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym__] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1862), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1862), + [sym__escaped_characters] = ACTIONS(1862), + [sym__word] = ACTIONS(1862), + [sym__soft_line_ending] = ACTIONS(1862), + [sym__block_quote_start] = ACTIONS(1862), + [sym__indented_chunk_start] = ACTIONS(1862), + [sym_atx_h1_marker] = ACTIONS(1862), + [sym_atx_h2_marker] = ACTIONS(1862), + [sym_atx_h3_marker] = ACTIONS(1862), + [sym_atx_h4_marker] = ACTIONS(1862), + [sym_atx_h5_marker] = ACTIONS(1862), + [sym_atx_h6_marker] = ACTIONS(1862), + [sym__thematic_break] = ACTIONS(1862), + [sym__list_marker_minus] = ACTIONS(1862), + [sym__list_marker_plus] = ACTIONS(1862), + [sym__list_marker_star] = ACTIONS(1862), + [sym__list_marker_parenthesis] = ACTIONS(1862), + [sym__list_marker_dot] = ACTIONS(1862), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1862), + [sym__list_marker_example] = ACTIONS(1862), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1862), + [sym__fenced_code_block_start_backtick] = ACTIONS(1862), + [sym__fenced_code_block_start_tilde] = ACTIONS(1862), + [sym__blank_line_start] = ACTIONS(1862), + [sym_minus_metadata] = ACTIONS(1862), + [sym__pipe_table_start] = ACTIONS(1862), + [sym__fenced_div_start] = ACTIONS(1862), + [sym_ref_id_specifier] = ACTIONS(1862), + [sym__display_math_state_track_marker] = ACTIONS(1862), + [sym__inline_math_state_track_marker] = ACTIONS(1862), + [sym__code_span_start] = ACTIONS(1862), + [sym__html_comment] = ACTIONS(1862), + [sym_raw_specifier] = ACTIONS(1862), + [sym__autolink] = ACTIONS(1862), }, [STATE(451)] = { - [ts_builtin_sym_end] = ACTIONS(1880), + [ts_builtin_sym_end] = ACTIONS(1882), [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1880), - [anon_sym_EQ] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_COMMA] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_DOT] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_QMARK] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_BSLASH] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym__] = ACTIONS(1880), - [anon_sym_BQUOTE] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1880), - [sym__escaped_characters] = ACTIONS(1880), - [sym__word] = ACTIONS(1880), - [sym__soft_line_ending] = ACTIONS(1880), - [sym__block_quote_start] = ACTIONS(1880), - [sym__indented_chunk_start] = ACTIONS(1880), - [sym_atx_h1_marker] = ACTIONS(1880), - [sym_atx_h2_marker] = ACTIONS(1880), - [sym_atx_h3_marker] = ACTIONS(1880), - [sym_atx_h4_marker] = ACTIONS(1880), - [sym_atx_h5_marker] = ACTIONS(1880), - [sym_atx_h6_marker] = ACTIONS(1880), - [sym__thematic_break] = ACTIONS(1880), - [sym__list_marker_minus] = ACTIONS(1880), - [sym__list_marker_plus] = ACTIONS(1880), - [sym__list_marker_star] = ACTIONS(1880), - [sym__list_marker_parenthesis] = ACTIONS(1880), - [sym__list_marker_dot] = ACTIONS(1880), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1880), - [sym__list_marker_example] = ACTIONS(1880), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1880), - [sym__fenced_code_block_start_backtick] = ACTIONS(1880), - [sym__fenced_code_block_start_tilde] = ACTIONS(1880), - [sym__blank_line_start] = ACTIONS(1880), - [sym_minus_metadata] = ACTIONS(1880), - [sym__pipe_table_start] = ACTIONS(1880), - [sym__fenced_div_start] = ACTIONS(1880), - [sym_ref_id_specifier] = ACTIONS(1880), - [sym__display_math_state_track_marker] = ACTIONS(1880), - [sym__inline_math_state_track_marker] = ACTIONS(1880), - [sym__code_span_start] = ACTIONS(1880), - [sym__html_comment] = ACTIONS(1880), - [sym_raw_specifier] = ACTIONS(1880), - [sym__autolink] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1882), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1882), + [anon_sym_PERCENT] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1882), + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_DOT] = ACTIONS(1882), + [anon_sym_SLASH] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_QMARK] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_BSLASH] = ACTIONS(1880), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym__] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1882), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1882), + [sym__escaped_characters] = ACTIONS(1882), + [sym__word] = ACTIONS(1882), + [sym__soft_line_ending] = ACTIONS(1882), + [sym__block_quote_start] = ACTIONS(1882), + [sym__indented_chunk_start] = ACTIONS(1882), + [sym_atx_h1_marker] = ACTIONS(1882), + [sym_atx_h2_marker] = ACTIONS(1882), + [sym_atx_h3_marker] = ACTIONS(1882), + [sym_atx_h4_marker] = ACTIONS(1882), + [sym_atx_h5_marker] = ACTIONS(1882), + [sym_atx_h6_marker] = ACTIONS(1882), + [sym__thematic_break] = ACTIONS(1882), + [sym__list_marker_minus] = ACTIONS(1882), + [sym__list_marker_plus] = ACTIONS(1882), + [sym__list_marker_star] = ACTIONS(1882), + [sym__list_marker_parenthesis] = ACTIONS(1882), + [sym__list_marker_dot] = ACTIONS(1882), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1882), + [sym__list_marker_example] = ACTIONS(1882), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1882), + [sym__fenced_code_block_start_backtick] = ACTIONS(1882), + [sym__fenced_code_block_start_tilde] = ACTIONS(1882), + [sym__blank_line_start] = ACTIONS(1882), + [sym_minus_metadata] = ACTIONS(1882), + [sym__pipe_table_start] = ACTIONS(1882), + [sym__fenced_div_start] = ACTIONS(1882), + [sym_ref_id_specifier] = ACTIONS(1882), + [sym__display_math_state_track_marker] = ACTIONS(1882), + [sym__inline_math_state_track_marker] = ACTIONS(1882), + [sym__code_span_start] = ACTIONS(1882), + [sym__html_comment] = ACTIONS(1882), + [sym_raw_specifier] = ACTIONS(1882), + [sym__autolink] = ACTIONS(1882), }, [STATE(452)] = { - [ts_builtin_sym_end] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1886), [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_PERCENT] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_DOT] = ACTIONS(1884), - [anon_sym_SLASH] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_QMARK] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_BSLASH] = ACTIONS(1886), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym__] = ACTIONS(1884), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1884), - [sym__escaped_characters] = ACTIONS(1884), - [sym__word] = ACTIONS(1884), - [sym__soft_line_ending] = ACTIONS(1884), - [sym__block_quote_start] = ACTIONS(1884), - [sym__indented_chunk_start] = ACTIONS(1884), - [sym_atx_h1_marker] = ACTIONS(1884), - [sym_atx_h2_marker] = ACTIONS(1884), - [sym_atx_h3_marker] = ACTIONS(1884), - [sym_atx_h4_marker] = ACTIONS(1884), - [sym_atx_h5_marker] = ACTIONS(1884), - [sym_atx_h6_marker] = ACTIONS(1884), - [sym__thematic_break] = ACTIONS(1884), - [sym__list_marker_minus] = ACTIONS(1884), - [sym__list_marker_plus] = ACTIONS(1884), - [sym__list_marker_star] = ACTIONS(1884), - [sym__list_marker_parenthesis] = ACTIONS(1884), - [sym__list_marker_dot] = ACTIONS(1884), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1884), - [sym__list_marker_example] = ACTIONS(1884), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1884), - [sym__fenced_code_block_start_backtick] = ACTIONS(1884), - [sym__fenced_code_block_start_tilde] = ACTIONS(1884), - [sym__blank_line_start] = ACTIONS(1884), - [sym_minus_metadata] = ACTIONS(1884), - [sym__pipe_table_start] = ACTIONS(1884), - [sym__fenced_div_start] = ACTIONS(1884), - [sym_ref_id_specifier] = ACTIONS(1884), - [sym__display_math_state_track_marker] = ACTIONS(1884), - [sym__inline_math_state_track_marker] = ACTIONS(1884), - [sym__code_span_start] = ACTIONS(1884), - [sym__html_comment] = ACTIONS(1884), - [sym_raw_specifier] = ACTIONS(1884), - [sym__autolink] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1886), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1886), + [anon_sym_EQ] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_DOLLAR] = ACTIONS(1886), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_PLUS] = ACTIONS(1886), + [anon_sym_COMMA] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_DOT] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_QMARK] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_BSLASH] = ACTIONS(1884), + [anon_sym_RBRACK] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1886), + [anon_sym__] = ACTIONS(1886), + [anon_sym_BQUOTE] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1886), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1886), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1886), + [sym__escaped_characters] = ACTIONS(1886), + [sym__word] = ACTIONS(1886), + [sym__soft_line_ending] = ACTIONS(1886), + [sym__block_quote_start] = ACTIONS(1886), + [sym__indented_chunk_start] = ACTIONS(1886), + [sym_atx_h1_marker] = ACTIONS(1886), + [sym_atx_h2_marker] = ACTIONS(1886), + [sym_atx_h3_marker] = ACTIONS(1886), + [sym_atx_h4_marker] = ACTIONS(1886), + [sym_atx_h5_marker] = ACTIONS(1886), + [sym_atx_h6_marker] = ACTIONS(1886), + [sym__thematic_break] = ACTIONS(1886), + [sym__list_marker_minus] = ACTIONS(1886), + [sym__list_marker_plus] = ACTIONS(1886), + [sym__list_marker_star] = ACTIONS(1886), + [sym__list_marker_parenthesis] = ACTIONS(1886), + [sym__list_marker_dot] = ACTIONS(1886), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1886), + [sym__list_marker_example] = ACTIONS(1886), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1886), + [sym__fenced_code_block_start_backtick] = ACTIONS(1886), + [sym__fenced_code_block_start_tilde] = ACTIONS(1886), + [sym__blank_line_start] = ACTIONS(1886), + [sym_minus_metadata] = ACTIONS(1886), + [sym__pipe_table_start] = ACTIONS(1886), + [sym__fenced_div_start] = ACTIONS(1886), + [sym_ref_id_specifier] = ACTIONS(1886), + [sym__display_math_state_track_marker] = ACTIONS(1886), + [sym__inline_math_state_track_marker] = ACTIONS(1886), + [sym__code_span_start] = ACTIONS(1886), + [sym__html_comment] = ACTIONS(1886), + [sym_raw_specifier] = ACTIONS(1886), + [sym__autolink] = ACTIONS(1886), }, [STATE(453)] = { - [ts_builtin_sym_end] = ACTIONS(1912), + [ts_builtin_sym_end] = ACTIONS(1914), [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1912), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [anon_sym_PERCENT] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_COMMA] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(1912), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_QMARK] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_BSLASH] = ACTIONS(1914), - [anon_sym_RBRACK] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1912), - [anon_sym__] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1912), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1912), - [sym__escaped_characters] = ACTIONS(1912), - [sym__word] = ACTIONS(1912), - [sym__soft_line_ending] = ACTIONS(1912), - [sym__block_quote_start] = ACTIONS(1912), - [sym__indented_chunk_start] = ACTIONS(1912), - [sym_atx_h1_marker] = ACTIONS(1912), - [sym_atx_h2_marker] = ACTIONS(1912), - [sym_atx_h3_marker] = ACTIONS(1912), - [sym_atx_h4_marker] = ACTIONS(1912), - [sym_atx_h5_marker] = ACTIONS(1912), - [sym_atx_h6_marker] = ACTIONS(1912), - [sym__thematic_break] = ACTIONS(1912), - [sym__list_marker_minus] = ACTIONS(1912), - [sym__list_marker_plus] = ACTIONS(1912), - [sym__list_marker_star] = ACTIONS(1912), - [sym__list_marker_parenthesis] = ACTIONS(1912), - [sym__list_marker_dot] = ACTIONS(1912), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1912), - [sym__list_marker_example] = ACTIONS(1912), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1912), - [sym__fenced_code_block_start_backtick] = ACTIONS(1912), - [sym__fenced_code_block_start_tilde] = ACTIONS(1912), - [sym__blank_line_start] = ACTIONS(1912), - [sym_minus_metadata] = ACTIONS(1912), - [sym__pipe_table_start] = ACTIONS(1912), - [sym__fenced_div_start] = ACTIONS(1912), - [sym_ref_id_specifier] = ACTIONS(1912), - [sym__display_math_state_track_marker] = ACTIONS(1912), - [sym__inline_math_state_track_marker] = ACTIONS(1912), - [sym__code_span_start] = ACTIONS(1912), - [sym__html_comment] = ACTIONS(1912), - [sym_raw_specifier] = ACTIONS(1912), - [sym__autolink] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1914), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_PERCENT] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_PLUS] = ACTIONS(1914), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_DOT] = ACTIONS(1914), + [anon_sym_SLASH] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_QMARK] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_BSLASH] = ACTIONS(1912), + [anon_sym_RBRACK] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym__] = ACTIONS(1914), + [anon_sym_BQUOTE] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1914), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1914), + [sym__escaped_characters] = ACTIONS(1914), + [sym__word] = ACTIONS(1914), + [sym__soft_line_ending] = ACTIONS(1914), + [sym__block_quote_start] = ACTIONS(1914), + [sym__indented_chunk_start] = ACTIONS(1914), + [sym_atx_h1_marker] = ACTIONS(1914), + [sym_atx_h2_marker] = ACTIONS(1914), + [sym_atx_h3_marker] = ACTIONS(1914), + [sym_atx_h4_marker] = ACTIONS(1914), + [sym_atx_h5_marker] = ACTIONS(1914), + [sym_atx_h6_marker] = ACTIONS(1914), + [sym__thematic_break] = ACTIONS(1914), + [sym__list_marker_minus] = ACTIONS(1914), + [sym__list_marker_plus] = ACTIONS(1914), + [sym__list_marker_star] = ACTIONS(1914), + [sym__list_marker_parenthesis] = ACTIONS(1914), + [sym__list_marker_dot] = ACTIONS(1914), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1914), + [sym__list_marker_example] = ACTIONS(1914), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1914), + [sym__fenced_code_block_start_backtick] = ACTIONS(1914), + [sym__fenced_code_block_start_tilde] = ACTIONS(1914), + [sym__blank_line_start] = ACTIONS(1914), + [sym_minus_metadata] = ACTIONS(1914), + [sym__pipe_table_start] = ACTIONS(1914), + [sym__fenced_div_start] = ACTIONS(1914), + [sym_ref_id_specifier] = ACTIONS(1914), + [sym__display_math_state_track_marker] = ACTIONS(1914), + [sym__inline_math_state_track_marker] = ACTIONS(1914), + [sym__code_span_start] = ACTIONS(1914), + [sym__html_comment] = ACTIONS(1914), + [sym_raw_specifier] = ACTIONS(1914), + [sym__autolink] = ACTIONS(1914), }, [STATE(454)] = { - [ts_builtin_sym_end] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1940), [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1938), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_DOT] = ACTIONS(1938), - [anon_sym_SLASH] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1938), - [anon_sym_QMARK] = ACTIONS(1938), - [anon_sym_AT] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_BSLASH] = ACTIONS(1940), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_CARET] = ACTIONS(1938), - [anon_sym__] = ACTIONS(1938), - [anon_sym_BQUOTE] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(1938), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1938), - [sym__escaped_characters] = ACTIONS(1938), - [sym__word] = ACTIONS(1938), - [sym__soft_line_ending] = ACTIONS(1938), - [sym__block_quote_start] = ACTIONS(1938), - [sym__indented_chunk_start] = ACTIONS(1938), - [sym_atx_h1_marker] = ACTIONS(1938), - [sym_atx_h2_marker] = ACTIONS(1938), - [sym_atx_h3_marker] = ACTIONS(1938), - [sym_atx_h4_marker] = ACTIONS(1938), - [sym_atx_h5_marker] = ACTIONS(1938), - [sym_atx_h6_marker] = ACTIONS(1938), - [sym__thematic_break] = ACTIONS(1938), - [sym__list_marker_minus] = ACTIONS(1938), - [sym__list_marker_plus] = ACTIONS(1938), - [sym__list_marker_star] = ACTIONS(1938), - [sym__list_marker_parenthesis] = ACTIONS(1938), - [sym__list_marker_dot] = ACTIONS(1938), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1938), - [sym__list_marker_example] = ACTIONS(1938), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1938), - [sym__fenced_code_block_start_backtick] = ACTIONS(1938), - [sym__fenced_code_block_start_tilde] = ACTIONS(1938), - [sym__blank_line_start] = ACTIONS(1938), - [sym_minus_metadata] = ACTIONS(1938), - [sym__pipe_table_start] = ACTIONS(1938), - [sym__fenced_div_start] = ACTIONS(1938), - [sym_ref_id_specifier] = ACTIONS(1938), - [sym__display_math_state_track_marker] = ACTIONS(1938), - [sym__inline_math_state_track_marker] = ACTIONS(1938), - [sym__code_span_start] = ACTIONS(1938), - [sym__html_comment] = ACTIONS(1938), - [sym_raw_specifier] = ACTIONS(1938), - [sym__autolink] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1940), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_PERCENT] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_DOT] = ACTIONS(1940), + [anon_sym_SLASH] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(1940), + [anon_sym_AT] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_BSLASH] = ACTIONS(1938), + [anon_sym_RBRACK] = ACTIONS(1940), + [anon_sym_CARET] = ACTIONS(1940), + [anon_sym__] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_TILDE] = ACTIONS(1940), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1940), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1940), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1940), + [sym__escaped_characters] = ACTIONS(1940), + [sym__word] = ACTIONS(1940), + [sym__soft_line_ending] = ACTIONS(1940), + [sym__block_quote_start] = ACTIONS(1940), + [sym__indented_chunk_start] = ACTIONS(1940), + [sym_atx_h1_marker] = ACTIONS(1940), + [sym_atx_h2_marker] = ACTIONS(1940), + [sym_atx_h3_marker] = ACTIONS(1940), + [sym_atx_h4_marker] = ACTIONS(1940), + [sym_atx_h5_marker] = ACTIONS(1940), + [sym_atx_h6_marker] = ACTIONS(1940), + [sym__thematic_break] = ACTIONS(1940), + [sym__list_marker_minus] = ACTIONS(1940), + [sym__list_marker_plus] = ACTIONS(1940), + [sym__list_marker_star] = ACTIONS(1940), + [sym__list_marker_parenthesis] = ACTIONS(1940), + [sym__list_marker_dot] = ACTIONS(1940), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1940), + [sym__list_marker_example] = ACTIONS(1940), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1940), + [sym__fenced_code_block_start_backtick] = ACTIONS(1940), + [sym__fenced_code_block_start_tilde] = ACTIONS(1940), + [sym__blank_line_start] = ACTIONS(1940), + [sym_minus_metadata] = ACTIONS(1940), + [sym__pipe_table_start] = ACTIONS(1940), + [sym__fenced_div_start] = ACTIONS(1940), + [sym_ref_id_specifier] = ACTIONS(1940), + [sym__display_math_state_track_marker] = ACTIONS(1940), + [sym__inline_math_state_track_marker] = ACTIONS(1940), + [sym__code_span_start] = ACTIONS(1940), + [sym__html_comment] = ACTIONS(1940), + [sym_raw_specifier] = ACTIONS(1940), + [sym__autolink] = ACTIONS(1940), }, [STATE(455)] = { - [ts_builtin_sym_end] = ACTIONS(1948), + [ts_builtin_sym_end] = ACTIONS(1950), [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1948), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1948), - [anon_sym_DOLLAR] = ACTIONS(1948), - [anon_sym_PERCENT] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_COMMA] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_DOT] = ACTIONS(1948), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_QMARK] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_BSLASH] = ACTIONS(1950), - [anon_sym_RBRACK] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym__] = ACTIONS(1948), - [anon_sym_BQUOTE] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1948), - [sym__escaped_characters] = ACTIONS(1948), - [sym__word] = ACTIONS(1948), - [sym__soft_line_ending] = ACTIONS(1948), - [sym__block_quote_start] = ACTIONS(1948), - [sym__indented_chunk_start] = ACTIONS(1948), - [sym_atx_h1_marker] = ACTIONS(1948), - [sym_atx_h2_marker] = ACTIONS(1948), - [sym_atx_h3_marker] = ACTIONS(1948), - [sym_atx_h4_marker] = ACTIONS(1948), - [sym_atx_h5_marker] = ACTIONS(1948), - [sym_atx_h6_marker] = ACTIONS(1948), - [sym__thematic_break] = ACTIONS(1948), - [sym__list_marker_minus] = ACTIONS(1948), - [sym__list_marker_plus] = ACTIONS(1948), - [sym__list_marker_star] = ACTIONS(1948), - [sym__list_marker_parenthesis] = ACTIONS(1948), - [sym__list_marker_dot] = ACTIONS(1948), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1948), - [sym__list_marker_example] = ACTIONS(1948), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1948), - [sym__fenced_code_block_start_backtick] = ACTIONS(1948), - [sym__fenced_code_block_start_tilde] = ACTIONS(1948), - [sym__blank_line_start] = ACTIONS(1948), - [sym_minus_metadata] = ACTIONS(1948), - [sym__pipe_table_start] = ACTIONS(1948), - [sym__fenced_div_start] = ACTIONS(1948), - [sym_ref_id_specifier] = ACTIONS(1948), - [sym__display_math_state_track_marker] = ACTIONS(1948), - [sym__inline_math_state_track_marker] = ACTIONS(1948), - [sym__code_span_start] = ACTIONS(1948), - [sym__html_comment] = ACTIONS(1948), - [sym_raw_specifier] = ACTIONS(1948), - [sym__autolink] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1950), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_PERCENT] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_PLUS] = ACTIONS(1950), + [anon_sym_COMMA] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_DOT] = ACTIONS(1950), + [anon_sym_SLASH] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_QMARK] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_BSLASH] = ACTIONS(1948), + [anon_sym_RBRACK] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym__] = ACTIONS(1950), + [anon_sym_BQUOTE] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1950), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1950), + [sym__escaped_characters] = ACTIONS(1950), + [sym__word] = ACTIONS(1950), + [sym__soft_line_ending] = ACTIONS(1950), + [sym__block_quote_start] = ACTIONS(1950), + [sym__indented_chunk_start] = ACTIONS(1950), + [sym_atx_h1_marker] = ACTIONS(1950), + [sym_atx_h2_marker] = ACTIONS(1950), + [sym_atx_h3_marker] = ACTIONS(1950), + [sym_atx_h4_marker] = ACTIONS(1950), + [sym_atx_h5_marker] = ACTIONS(1950), + [sym_atx_h6_marker] = ACTIONS(1950), + [sym__thematic_break] = ACTIONS(1950), + [sym__list_marker_minus] = ACTIONS(1950), + [sym__list_marker_plus] = ACTIONS(1950), + [sym__list_marker_star] = ACTIONS(1950), + [sym__list_marker_parenthesis] = ACTIONS(1950), + [sym__list_marker_dot] = ACTIONS(1950), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1950), + [sym__list_marker_example] = ACTIONS(1950), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1950), + [sym__fenced_code_block_start_backtick] = ACTIONS(1950), + [sym__fenced_code_block_start_tilde] = ACTIONS(1950), + [sym__blank_line_start] = ACTIONS(1950), + [sym_minus_metadata] = ACTIONS(1950), + [sym__pipe_table_start] = ACTIONS(1950), + [sym__fenced_div_start] = ACTIONS(1950), + [sym_ref_id_specifier] = ACTIONS(1950), + [sym__display_math_state_track_marker] = ACTIONS(1950), + [sym__inline_math_state_track_marker] = ACTIONS(1950), + [sym__code_span_start] = ACTIONS(1950), + [sym__html_comment] = ACTIONS(1950), + [sym_raw_specifier] = ACTIONS(1950), + [sym__autolink] = ACTIONS(1950), }, [STATE(456)] = { - [ts_builtin_sym_end] = ACTIONS(1956), + [ts_builtin_sym_end] = ACTIONS(1958), [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1956), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1956), - [anon_sym_DOLLAR] = ACTIONS(1956), - [anon_sym_PERCENT] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_RPAREN] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_COMMA] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_DOT] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_QMARK] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_BSLASH] = ACTIONS(1958), - [anon_sym_RBRACK] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1956), - [anon_sym__] = ACTIONS(1956), - [anon_sym_BQUOTE] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1956), - [sym__escaped_characters] = ACTIONS(1956), - [sym__word] = ACTIONS(1956), - [sym__soft_line_ending] = ACTIONS(1956), - [sym__block_quote_start] = ACTIONS(1956), - [sym__indented_chunk_start] = ACTIONS(1956), - [sym_atx_h1_marker] = ACTIONS(1956), - [sym_atx_h2_marker] = ACTIONS(1956), - [sym_atx_h3_marker] = ACTIONS(1956), - [sym_atx_h4_marker] = ACTIONS(1956), - [sym_atx_h5_marker] = ACTIONS(1956), - [sym_atx_h6_marker] = ACTIONS(1956), - [sym__thematic_break] = ACTIONS(1956), - [sym__list_marker_minus] = ACTIONS(1956), - [sym__list_marker_plus] = ACTIONS(1956), - [sym__list_marker_star] = ACTIONS(1956), - [sym__list_marker_parenthesis] = ACTIONS(1956), - [sym__list_marker_dot] = ACTIONS(1956), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1956), - [sym__list_marker_example] = ACTIONS(1956), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1956), - [sym__fenced_code_block_start_backtick] = ACTIONS(1956), - [sym__fenced_code_block_start_tilde] = ACTIONS(1956), - [sym__blank_line_start] = ACTIONS(1956), - [sym_minus_metadata] = ACTIONS(1956), - [sym__pipe_table_start] = ACTIONS(1956), - [sym__fenced_div_start] = ACTIONS(1956), - [sym_ref_id_specifier] = ACTIONS(1956), - [sym__display_math_state_track_marker] = ACTIONS(1956), - [sym__inline_math_state_track_marker] = ACTIONS(1956), - [sym__code_span_start] = ACTIONS(1956), - [sym__html_comment] = ACTIONS(1956), - [sym_raw_specifier] = ACTIONS(1956), - [sym__autolink] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1958), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1958), + [anon_sym_EQ] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1958), + [anon_sym_PERCENT] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_PLUS] = ACTIONS(1958), + [anon_sym_COMMA] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_DOT] = ACTIONS(1958), + [anon_sym_SLASH] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_QMARK] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_BSLASH] = ACTIONS(1956), + [anon_sym_RBRACK] = ACTIONS(1958), + [anon_sym_CARET] = ACTIONS(1958), + [anon_sym__] = ACTIONS(1958), + [anon_sym_BQUOTE] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1958), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1958), + [sym__escaped_characters] = ACTIONS(1958), + [sym__word] = ACTIONS(1958), + [sym__soft_line_ending] = ACTIONS(1958), + [sym__block_quote_start] = ACTIONS(1958), + [sym__indented_chunk_start] = ACTIONS(1958), + [sym_atx_h1_marker] = ACTIONS(1958), + [sym_atx_h2_marker] = ACTIONS(1958), + [sym_atx_h3_marker] = ACTIONS(1958), + [sym_atx_h4_marker] = ACTIONS(1958), + [sym_atx_h5_marker] = ACTIONS(1958), + [sym_atx_h6_marker] = ACTIONS(1958), + [sym__thematic_break] = ACTIONS(1958), + [sym__list_marker_minus] = ACTIONS(1958), + [sym__list_marker_plus] = ACTIONS(1958), + [sym__list_marker_star] = ACTIONS(1958), + [sym__list_marker_parenthesis] = ACTIONS(1958), + [sym__list_marker_dot] = ACTIONS(1958), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1958), + [sym__list_marker_example] = ACTIONS(1958), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1958), + [sym__fenced_code_block_start_backtick] = ACTIONS(1958), + [sym__fenced_code_block_start_tilde] = ACTIONS(1958), + [sym__blank_line_start] = ACTIONS(1958), + [sym_minus_metadata] = ACTIONS(1958), + [sym__pipe_table_start] = ACTIONS(1958), + [sym__fenced_div_start] = ACTIONS(1958), + [sym_ref_id_specifier] = ACTIONS(1958), + [sym__display_math_state_track_marker] = ACTIONS(1958), + [sym__inline_math_state_track_marker] = ACTIONS(1958), + [sym__code_span_start] = ACTIONS(1958), + [sym__html_comment] = ACTIONS(1958), + [sym_raw_specifier] = ACTIONS(1958), + [sym__autolink] = ACTIONS(1958), }, [STATE(457)] = { - [ts_builtin_sym_end] = ACTIONS(1676), + [ts_builtin_sym_end] = ACTIONS(1678), [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_RBRACE] = ACTIONS(1676), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1676), - [anon_sym_EQ] = ACTIONS(1676), - [anon_sym_SQUOTE] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1676), - [anon_sym_PERCENT] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_RPAREN] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_COMMA] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_DOT] = ACTIONS(1676), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_QMARK] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_BSLASH] = ACTIONS(1678), - [anon_sym_RBRACK] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1676), - [anon_sym__] = ACTIONS(1676), - [anon_sym_BQUOTE] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1676), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1676), - [sym__escaped_characters] = ACTIONS(1676), - [sym__word] = ACTIONS(1676), - [sym__soft_line_ending] = ACTIONS(1676), - [sym__block_quote_start] = ACTIONS(1676), - [sym__indented_chunk_start] = ACTIONS(1676), - [sym_atx_h1_marker] = ACTIONS(1676), - [sym_atx_h2_marker] = ACTIONS(1676), - [sym_atx_h3_marker] = ACTIONS(1676), - [sym_atx_h4_marker] = ACTIONS(1676), - [sym_atx_h5_marker] = ACTIONS(1676), - [sym_atx_h6_marker] = ACTIONS(1676), - [sym__thematic_break] = ACTIONS(1676), - [sym__list_marker_minus] = ACTIONS(1676), - [sym__list_marker_plus] = ACTIONS(1676), - [sym__list_marker_star] = ACTIONS(1676), - [sym__list_marker_parenthesis] = ACTIONS(1676), - [sym__list_marker_dot] = ACTIONS(1676), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), - [sym__list_marker_example] = ACTIONS(1676), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1676), - [sym__fenced_code_block_start_backtick] = ACTIONS(1676), - [sym__fenced_code_block_start_tilde] = ACTIONS(1676), - [sym__blank_line_start] = ACTIONS(1676), - [sym_minus_metadata] = ACTIONS(1676), - [sym__pipe_table_start] = ACTIONS(1676), - [sym__fenced_div_start] = ACTIONS(1676), - [sym_ref_id_specifier] = ACTIONS(1676), - [sym__display_math_state_track_marker] = ACTIONS(1676), - [sym__inline_math_state_track_marker] = ACTIONS(1676), - [sym__code_span_start] = ACTIONS(1676), - [sym__html_comment] = ACTIONS(1676), - [sym_raw_specifier] = ACTIONS(1676), - [sym__autolink] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1678), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1678), + [anon_sym_EQ] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1678), + [anon_sym_PERCENT] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_COMMA] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_SLASH] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym__] = ACTIONS(1678), + [anon_sym_BQUOTE] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1678), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1678), + [sym__escaped_characters] = ACTIONS(1678), + [sym__word] = ACTIONS(1678), + [sym__soft_line_ending] = ACTIONS(1678), + [sym__block_quote_start] = ACTIONS(1678), + [sym__indented_chunk_start] = ACTIONS(1678), + [sym_atx_h1_marker] = ACTIONS(1678), + [sym_atx_h2_marker] = ACTIONS(1678), + [sym_atx_h3_marker] = ACTIONS(1678), + [sym_atx_h4_marker] = ACTIONS(1678), + [sym_atx_h5_marker] = ACTIONS(1678), + [sym_atx_h6_marker] = ACTIONS(1678), + [sym__thematic_break] = ACTIONS(1678), + [sym__list_marker_minus] = ACTIONS(1678), + [sym__list_marker_plus] = ACTIONS(1678), + [sym__list_marker_star] = ACTIONS(1678), + [sym__list_marker_parenthesis] = ACTIONS(1678), + [sym__list_marker_dot] = ACTIONS(1678), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1678), + [sym__list_marker_example] = ACTIONS(1678), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1678), + [sym__fenced_code_block_start_backtick] = ACTIONS(1678), + [sym__fenced_code_block_start_tilde] = ACTIONS(1678), + [sym__blank_line_start] = ACTIONS(1678), + [sym_minus_metadata] = ACTIONS(1678), + [sym__pipe_table_start] = ACTIONS(1678), + [sym__fenced_div_start] = ACTIONS(1678), + [sym_ref_id_specifier] = ACTIONS(1678), + [sym__display_math_state_track_marker] = ACTIONS(1678), + [sym__inline_math_state_track_marker] = ACTIONS(1678), + [sym__code_span_start] = ACTIONS(1678), + [sym__html_comment] = ACTIONS(1678), + [sym_raw_specifier] = ACTIONS(1678), + [sym__autolink] = ACTIONS(1678), }, [STATE(458)] = { - [ts_builtin_sym_end] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(1658), [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1656), - [anon_sym_EQ] = ACTIONS(1656), - [anon_sym_SQUOTE] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_DQUOTE] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PERCENT] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_RPAREN] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_COMMA] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_QMARK] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_BSLASH] = ACTIONS(1658), - [anon_sym_RBRACK] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1656), - [anon_sym_BQUOTE] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1656), - [sym__escaped_characters] = ACTIONS(1656), - [sym__word] = ACTIONS(1656), - [sym__soft_line_ending] = ACTIONS(1656), - [sym__block_quote_start] = ACTIONS(1656), - [sym__indented_chunk_start] = ACTIONS(1656), - [sym_atx_h1_marker] = ACTIONS(1656), - [sym_atx_h2_marker] = ACTIONS(1656), - [sym_atx_h3_marker] = ACTIONS(1656), - [sym_atx_h4_marker] = ACTIONS(1656), - [sym_atx_h5_marker] = ACTIONS(1656), - [sym_atx_h6_marker] = ACTIONS(1656), - [sym__thematic_break] = ACTIONS(1656), - [sym__list_marker_minus] = ACTIONS(1656), - [sym__list_marker_plus] = ACTIONS(1656), - [sym__list_marker_star] = ACTIONS(1656), - [sym__list_marker_parenthesis] = ACTIONS(1656), - [sym__list_marker_dot] = ACTIONS(1656), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1656), - [sym__list_marker_example] = ACTIONS(1656), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1656), - [sym__fenced_code_block_start_backtick] = ACTIONS(1656), - [sym__fenced_code_block_start_tilde] = ACTIONS(1656), - [sym__blank_line_start] = ACTIONS(1656), - [sym_minus_metadata] = ACTIONS(1656), - [sym__pipe_table_start] = ACTIONS(1656), - [sym__fenced_div_start] = ACTIONS(1656), - [sym_ref_id_specifier] = ACTIONS(1656), - [sym__display_math_state_track_marker] = ACTIONS(1656), - [sym__inline_math_state_track_marker] = ACTIONS(1656), - [sym__code_span_start] = ACTIONS(1656), - [sym__html_comment] = ACTIONS(1656), - [sym_raw_specifier] = ACTIONS(1656), - [sym__autolink] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1658), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1658), + [anon_sym_EQ] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_BANG] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1658), + [anon_sym_PERCENT] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1658), + [anon_sym_COMMA] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_DOT] = ACTIONS(1658), + [anon_sym_SLASH] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_QMARK] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_BSLASH] = ACTIONS(1656), + [anon_sym_RBRACK] = ACTIONS(1658), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym__] = ACTIONS(1658), + [anon_sym_BQUOTE] = ACTIONS(1658), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_TILDE] = ACTIONS(1658), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1658), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1658), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1658), + [sym__escaped_characters] = ACTIONS(1658), + [sym__word] = ACTIONS(1658), + [sym__soft_line_ending] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(1658), + [sym__indented_chunk_start] = ACTIONS(1658), + [sym_atx_h1_marker] = ACTIONS(1658), + [sym_atx_h2_marker] = ACTIONS(1658), + [sym_atx_h3_marker] = ACTIONS(1658), + [sym_atx_h4_marker] = ACTIONS(1658), + [sym_atx_h5_marker] = ACTIONS(1658), + [sym_atx_h6_marker] = ACTIONS(1658), + [sym__thematic_break] = ACTIONS(1658), + [sym__list_marker_minus] = ACTIONS(1658), + [sym__list_marker_plus] = ACTIONS(1658), + [sym__list_marker_star] = ACTIONS(1658), + [sym__list_marker_parenthesis] = ACTIONS(1658), + [sym__list_marker_dot] = ACTIONS(1658), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1658), + [sym__list_marker_example] = ACTIONS(1658), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1658), + [sym__fenced_code_block_start_backtick] = ACTIONS(1658), + [sym__fenced_code_block_start_tilde] = ACTIONS(1658), + [sym__blank_line_start] = ACTIONS(1658), + [sym_minus_metadata] = ACTIONS(1658), + [sym__pipe_table_start] = ACTIONS(1658), + [sym__fenced_div_start] = ACTIONS(1658), + [sym_ref_id_specifier] = ACTIONS(1658), + [sym__display_math_state_track_marker] = ACTIONS(1658), + [sym__inline_math_state_track_marker] = ACTIONS(1658), + [sym__code_span_start] = ACTIONS(1658), + [sym__html_comment] = ACTIONS(1658), + [sym_raw_specifier] = ACTIONS(1658), + [sym__autolink] = ACTIONS(1658), }, [STATE(459)] = { - [ts_builtin_sym_end] = ACTIONS(1660), + [ts_builtin_sym_end] = ACTIONS(1662), [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1660), - [anon_sym_EQ] = ACTIONS(1660), - [anon_sym_SQUOTE] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_DQUOTE] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_DOLLAR] = ACTIONS(1660), - [anon_sym_PERCENT] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_RPAREN] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_COMMA] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_DOT] = ACTIONS(1660), - [anon_sym_SLASH] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_QMARK] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_BSLASH] = ACTIONS(1662), - [anon_sym_RBRACK] = ACTIONS(1660), - [anon_sym_CARET] = ACTIONS(1660), - [anon_sym__] = ACTIONS(1660), - [anon_sym_BQUOTE] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_TILDE] = ACTIONS(1660), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1660), - [sym__escaped_characters] = ACTIONS(1660), - [sym__word] = ACTIONS(1660), - [sym__soft_line_ending] = ACTIONS(1660), - [sym__block_quote_start] = ACTIONS(1660), - [sym__indented_chunk_start] = ACTIONS(1660), - [sym_atx_h1_marker] = ACTIONS(1660), - [sym_atx_h2_marker] = ACTIONS(1660), - [sym_atx_h3_marker] = ACTIONS(1660), - [sym_atx_h4_marker] = ACTIONS(1660), - [sym_atx_h5_marker] = ACTIONS(1660), - [sym_atx_h6_marker] = ACTIONS(1660), - [sym__thematic_break] = ACTIONS(1660), - [sym__list_marker_minus] = ACTIONS(1660), - [sym__list_marker_plus] = ACTIONS(1660), - [sym__list_marker_star] = ACTIONS(1660), - [sym__list_marker_parenthesis] = ACTIONS(1660), - [sym__list_marker_dot] = ACTIONS(1660), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1660), - [sym__list_marker_example] = ACTIONS(1660), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1660), - [sym__fenced_code_block_start_backtick] = ACTIONS(1660), - [sym__fenced_code_block_start_tilde] = ACTIONS(1660), - [sym__blank_line_start] = ACTIONS(1660), - [sym_minus_metadata] = ACTIONS(1660), - [sym__pipe_table_start] = ACTIONS(1660), - [sym__fenced_div_start] = ACTIONS(1660), - [sym_ref_id_specifier] = ACTIONS(1660), - [sym__display_math_state_track_marker] = ACTIONS(1660), - [sym__inline_math_state_track_marker] = ACTIONS(1660), - [sym__code_span_start] = ACTIONS(1660), - [sym__html_comment] = ACTIONS(1660), - [sym_raw_specifier] = ACTIONS(1660), - [sym__autolink] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1662), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1662), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1662), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1662), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1662), + [sym__html_comment] = ACTIONS(1662), + [sym_raw_specifier] = ACTIONS(1662), + [sym__autolink] = ACTIONS(1662), }, [STATE(460)] = { - [ts_builtin_sym_end] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1664), - [anon_sym_EQ] = ACTIONS(1664), - [anon_sym_SQUOTE] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PERCENT] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_RPAREN] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_COMMA] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_DOT] = ACTIONS(1664), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_QMARK] = ACTIONS(1664), - [anon_sym_AT] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_BSLASH] = ACTIONS(1666), - [anon_sym_RBRACK] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1664), - [anon_sym__] = ACTIONS(1664), - [anon_sym_BQUOTE] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1664), - [sym__escaped_characters] = ACTIONS(1664), - [sym__word] = ACTIONS(1664), - [sym__soft_line_ending] = ACTIONS(1664), - [sym__block_quote_start] = ACTIONS(1664), - [sym__indented_chunk_start] = ACTIONS(1664), - [sym_atx_h1_marker] = ACTIONS(1664), - [sym_atx_h2_marker] = ACTIONS(1664), - [sym_atx_h3_marker] = ACTIONS(1664), - [sym_atx_h4_marker] = ACTIONS(1664), - [sym_atx_h5_marker] = ACTIONS(1664), - [sym_atx_h6_marker] = ACTIONS(1664), - [sym__thematic_break] = ACTIONS(1664), - [sym__list_marker_minus] = ACTIONS(1664), - [sym__list_marker_plus] = ACTIONS(1664), - [sym__list_marker_star] = ACTIONS(1664), - [sym__list_marker_parenthesis] = ACTIONS(1664), - [sym__list_marker_dot] = ACTIONS(1664), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1664), - [sym__list_marker_example] = ACTIONS(1664), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1664), - [sym__fenced_code_block_start_backtick] = ACTIONS(1664), - [sym__fenced_code_block_start_tilde] = ACTIONS(1664), - [sym__blank_line_start] = ACTIONS(1664), - [sym_minus_metadata] = ACTIONS(1664), - [sym__pipe_table_start] = ACTIONS(1664), - [sym__fenced_div_start] = ACTIONS(1664), - [sym_ref_id_specifier] = ACTIONS(1664), - [sym__display_math_state_track_marker] = ACTIONS(1664), - [sym__inline_math_state_track_marker] = ACTIONS(1664), - [sym__code_span_start] = ACTIONS(1664), - [sym__html_comment] = ACTIONS(1664), - [sym_raw_specifier] = ACTIONS(1664), - [sym__autolink] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1666), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1666), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1666), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1666), + [sym__escaped_characters] = 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), + [sym__code_span_start] = ACTIONS(1666), + [sym__html_comment] = ACTIONS(1666), + [sym_raw_specifier] = ACTIONS(1666), + [sym__autolink] = ACTIONS(1666), }, [STATE(461)] = { - [ts_builtin_sym_end] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1574), [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_BSLASH] = ACTIONS(1574), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1572), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1572), - [sym__html_comment] = ACTIONS(1572), - [sym_raw_specifier] = ACTIONS(1572), - [sym__autolink] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_DQUOTE] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_DOLLAR] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(1574), + [anon_sym_AMP] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_STAR] = ACTIONS(1574), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_COMMA] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(1574), + [anon_sym_AT] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1574), + [anon_sym__] = ACTIONS(1574), + [anon_sym_BQUOTE] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1574), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1574), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1574), + [sym__escaped_characters] = ACTIONS(1574), + [sym__word] = ACTIONS(1574), + [sym__soft_line_ending] = ACTIONS(1574), + [sym__block_quote_start] = ACTIONS(1574), + [sym__indented_chunk_start] = ACTIONS(1574), + [sym_atx_h1_marker] = ACTIONS(1574), + [sym_atx_h2_marker] = ACTIONS(1574), + [sym_atx_h3_marker] = ACTIONS(1574), + [sym_atx_h4_marker] = ACTIONS(1574), + [sym_atx_h5_marker] = ACTIONS(1574), + [sym_atx_h6_marker] = ACTIONS(1574), + [sym__thematic_break] = ACTIONS(1574), + [sym__list_marker_minus] = ACTIONS(1574), + [sym__list_marker_plus] = ACTIONS(1574), + [sym__list_marker_star] = ACTIONS(1574), + [sym__list_marker_parenthesis] = ACTIONS(1574), + [sym__list_marker_dot] = ACTIONS(1574), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1574), + [sym__list_marker_example] = ACTIONS(1574), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1574), + [sym__fenced_code_block_start_backtick] = ACTIONS(1574), + [sym__fenced_code_block_start_tilde] = ACTIONS(1574), + [sym__blank_line_start] = ACTIONS(1574), + [sym_minus_metadata] = ACTIONS(1574), + [sym__pipe_table_start] = ACTIONS(1574), + [sym__fenced_div_start] = ACTIONS(1574), + [sym_ref_id_specifier] = ACTIONS(1574), + [sym__display_math_state_track_marker] = ACTIONS(1574), + [sym__inline_math_state_track_marker] = ACTIONS(1574), + [sym__code_span_start] = ACTIONS(1574), + [sym__html_comment] = ACTIONS(1574), + [sym_raw_specifier] = ACTIONS(1574), + [sym__autolink] = ACTIONS(1574), }, [STATE(462)] = { - [ts_builtin_sym_end] = ACTIONS(1888), + [ts_builtin_sym_end] = ACTIONS(1890), [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1888), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_PERCENT] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(1888), - [anon_sym_SLASH] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_BSLASH] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym__] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1888), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1888), - [sym__escaped_characters] = ACTIONS(1888), - [sym__word] = ACTIONS(1888), - [sym__soft_line_ending] = ACTIONS(1888), - [sym__block_quote_start] = ACTIONS(1888), - [sym__indented_chunk_start] = ACTIONS(1888), - [sym_atx_h1_marker] = ACTIONS(1888), - [sym_atx_h2_marker] = ACTIONS(1888), - [sym_atx_h3_marker] = ACTIONS(1888), - [sym_atx_h4_marker] = ACTIONS(1888), - [sym_atx_h5_marker] = ACTIONS(1888), - [sym_atx_h6_marker] = ACTIONS(1888), - [sym__thematic_break] = ACTIONS(1888), - [sym__list_marker_minus] = ACTIONS(1888), - [sym__list_marker_plus] = ACTIONS(1888), - [sym__list_marker_star] = ACTIONS(1888), - [sym__list_marker_parenthesis] = ACTIONS(1888), - [sym__list_marker_dot] = ACTIONS(1888), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1888), - [sym__list_marker_example] = ACTIONS(1888), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1888), - [sym__fenced_code_block_start_backtick] = ACTIONS(1888), - [sym__fenced_code_block_start_tilde] = ACTIONS(1888), - [sym__blank_line_start] = ACTIONS(1888), - [sym_minus_metadata] = ACTIONS(1888), - [sym__pipe_table_start] = ACTIONS(1888), - [sym__fenced_div_start] = ACTIONS(1888), - [sym_ref_id_specifier] = ACTIONS(1888), - [sym__display_math_state_track_marker] = ACTIONS(1888), - [sym__inline_math_state_track_marker] = ACTIONS(1888), - [sym__code_span_start] = ACTIONS(1888), - [sym__html_comment] = ACTIONS(1888), - [sym_raw_specifier] = ACTIONS(1888), - [sym__autolink] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1890), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_PERCENT] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1890), + [anon_sym_COMMA] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_DOT] = ACTIONS(1890), + [anon_sym_SLASH] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_QMARK] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_BSLASH] = ACTIONS(1888), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym__] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1890), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1890), + [sym__escaped_characters] = ACTIONS(1890), + [sym__word] = ACTIONS(1890), + [sym__soft_line_ending] = ACTIONS(1890), + [sym__block_quote_start] = ACTIONS(1890), + [sym__indented_chunk_start] = ACTIONS(1890), + [sym_atx_h1_marker] = ACTIONS(1890), + [sym_atx_h2_marker] = ACTIONS(1890), + [sym_atx_h3_marker] = ACTIONS(1890), + [sym_atx_h4_marker] = ACTIONS(1890), + [sym_atx_h5_marker] = ACTIONS(1890), + [sym_atx_h6_marker] = ACTIONS(1890), + [sym__thematic_break] = ACTIONS(1890), + [sym__list_marker_minus] = ACTIONS(1890), + [sym__list_marker_plus] = ACTIONS(1890), + [sym__list_marker_star] = ACTIONS(1890), + [sym__list_marker_parenthesis] = ACTIONS(1890), + [sym__list_marker_dot] = ACTIONS(1890), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1890), + [sym__list_marker_example] = ACTIONS(1890), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1890), + [sym__fenced_code_block_start_backtick] = ACTIONS(1890), + [sym__fenced_code_block_start_tilde] = ACTIONS(1890), + [sym__blank_line_start] = ACTIONS(1890), + [sym_minus_metadata] = ACTIONS(1890), + [sym__pipe_table_start] = ACTIONS(1890), + [sym__fenced_div_start] = ACTIONS(1890), + [sym_ref_id_specifier] = ACTIONS(1890), + [sym__display_math_state_track_marker] = ACTIONS(1890), + [sym__inline_math_state_track_marker] = ACTIONS(1890), + [sym__code_span_start] = ACTIONS(1890), + [sym__html_comment] = ACTIONS(1890), + [sym_raw_specifier] = ACTIONS(1890), + [sym__autolink] = ACTIONS(1890), }, [STATE(463)] = { - [ts_builtin_sym_end] = ACTIONS(1686), + [ts_builtin_sym_end] = ACTIONS(1688), [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_DQUOTE] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_DOLLAR] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_RPAREN] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_COMMA] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_QMARK] = ACTIONS(1686), - [anon_sym_AT] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_BSLASH] = ACTIONS(1688), - [anon_sym_RBRACK] = ACTIONS(1686), - [anon_sym_CARET] = ACTIONS(1686), - [anon_sym__] = ACTIONS(1686), - [anon_sym_BQUOTE] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(1686), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1686), - [sym__escaped_characters] = ACTIONS(1686), - [sym__word] = ACTIONS(1686), - [sym__soft_line_ending] = ACTIONS(1686), - [sym__block_quote_start] = ACTIONS(1686), - [sym__indented_chunk_start] = ACTIONS(1686), - [sym_atx_h1_marker] = ACTIONS(1686), - [sym_atx_h2_marker] = ACTIONS(1686), - [sym_atx_h3_marker] = ACTIONS(1686), - [sym_atx_h4_marker] = ACTIONS(1686), - [sym_atx_h5_marker] = ACTIONS(1686), - [sym_atx_h6_marker] = ACTIONS(1686), - [sym__thematic_break] = ACTIONS(1686), - [sym__list_marker_minus] = ACTIONS(1686), - [sym__list_marker_plus] = ACTIONS(1686), - [sym__list_marker_star] = ACTIONS(1686), - [sym__list_marker_parenthesis] = ACTIONS(1686), - [sym__list_marker_dot] = ACTIONS(1686), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1686), - [sym__list_marker_example] = ACTIONS(1686), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1686), - [sym__fenced_code_block_start_backtick] = ACTIONS(1686), - [sym__fenced_code_block_start_tilde] = ACTIONS(1686), - [sym__blank_line_start] = ACTIONS(1686), - [sym_minus_metadata] = ACTIONS(1686), - [sym__pipe_table_start] = ACTIONS(1686), - [sym__fenced_div_start] = ACTIONS(1686), - [sym_ref_id_specifier] = ACTIONS(1686), - [sym__display_math_state_track_marker] = ACTIONS(1686), - [sym__inline_math_state_track_marker] = ACTIONS(1686), - [sym__code_span_start] = ACTIONS(1686), - [sym__html_comment] = ACTIONS(1686), - [sym_raw_specifier] = ACTIONS(1686), - [sym__autolink] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1688), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [anon_sym_PERCENT] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1688), + [anon_sym_SLASH] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_QMARK] = ACTIONS(1688), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [anon_sym_RBRACK] = ACTIONS(1688), + [anon_sym_CARET] = ACTIONS(1688), + [anon_sym__] = ACTIONS(1688), + [anon_sym_BQUOTE] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_TILDE] = ACTIONS(1688), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1688), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1688), + [sym__escaped_characters] = ACTIONS(1688), + [sym__word] = ACTIONS(1688), + [sym__soft_line_ending] = ACTIONS(1688), + [sym__block_quote_start] = ACTIONS(1688), + [sym__indented_chunk_start] = ACTIONS(1688), + [sym_atx_h1_marker] = ACTIONS(1688), + [sym_atx_h2_marker] = ACTIONS(1688), + [sym_atx_h3_marker] = ACTIONS(1688), + [sym_atx_h4_marker] = ACTIONS(1688), + [sym_atx_h5_marker] = ACTIONS(1688), + [sym_atx_h6_marker] = ACTIONS(1688), + [sym__thematic_break] = ACTIONS(1688), + [sym__list_marker_minus] = ACTIONS(1688), + [sym__list_marker_plus] = ACTIONS(1688), + [sym__list_marker_star] = ACTIONS(1688), + [sym__list_marker_parenthesis] = ACTIONS(1688), + [sym__list_marker_dot] = ACTIONS(1688), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1688), + [sym__list_marker_example] = ACTIONS(1688), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1688), + [sym__fenced_code_block_start_backtick] = ACTIONS(1688), + [sym__fenced_code_block_start_tilde] = ACTIONS(1688), + [sym__blank_line_start] = ACTIONS(1688), + [sym_minus_metadata] = ACTIONS(1688), + [sym__pipe_table_start] = ACTIONS(1688), + [sym__fenced_div_start] = ACTIONS(1688), + [sym_ref_id_specifier] = ACTIONS(1688), + [sym__display_math_state_track_marker] = ACTIONS(1688), + [sym__inline_math_state_track_marker] = ACTIONS(1688), + [sym__code_span_start] = ACTIONS(1688), + [sym__html_comment] = ACTIONS(1688), + [sym_raw_specifier] = ACTIONS(1688), + [sym__autolink] = ACTIONS(1688), }, [STATE(464)] = { [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1494), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1492), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1492), - [sym__html_comment] = ACTIONS(1492), - [sym_raw_specifier] = ACTIONS(1492), - [sym__autolink] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1494), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1494), + [sym__escaped_characters] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_close] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + [sym__code_span_start] = ACTIONS(1494), + [sym__html_comment] = ACTIONS(1494), + [sym_raw_specifier] = ACTIONS(1494), + [sym__autolink] = ACTIONS(1494), }, [STATE(465)] = { - [ts_builtin_sym_end] = ACTIONS(1690), + [ts_builtin_sym_end] = ACTIONS(1692), [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1690), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PERCENT] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_DOT] = ACTIONS(1690), - [anon_sym_SLASH] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_BSLASH] = ACTIONS(1692), - [anon_sym_RBRACK] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym__] = ACTIONS(1690), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1690), - [sym__escaped_characters] = ACTIONS(1690), - [sym__word] = ACTIONS(1690), - [sym__soft_line_ending] = ACTIONS(1690), - [sym__block_quote_start] = ACTIONS(1690), - [sym__indented_chunk_start] = ACTIONS(1690), - [sym_atx_h1_marker] = ACTIONS(1690), - [sym_atx_h2_marker] = ACTIONS(1690), - [sym_atx_h3_marker] = ACTIONS(1690), - [sym_atx_h4_marker] = ACTIONS(1690), - [sym_atx_h5_marker] = ACTIONS(1690), - [sym_atx_h6_marker] = ACTIONS(1690), - [sym__thematic_break] = ACTIONS(1690), - [sym__list_marker_minus] = ACTIONS(1690), - [sym__list_marker_plus] = ACTIONS(1690), - [sym__list_marker_star] = ACTIONS(1690), - [sym__list_marker_parenthesis] = ACTIONS(1690), - [sym__list_marker_dot] = ACTIONS(1690), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1690), - [sym__list_marker_example] = ACTIONS(1690), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1690), - [sym__fenced_code_block_start_backtick] = ACTIONS(1690), - [sym__fenced_code_block_start_tilde] = ACTIONS(1690), - [sym__blank_line_start] = ACTIONS(1690), - [sym_minus_metadata] = ACTIONS(1690), - [sym__pipe_table_start] = ACTIONS(1690), - [sym__fenced_div_start] = ACTIONS(1690), - [sym_ref_id_specifier] = ACTIONS(1690), - [sym__display_math_state_track_marker] = ACTIONS(1690), - [sym__inline_math_state_track_marker] = ACTIONS(1690), - [sym__code_span_start] = ACTIONS(1690), - [sym__html_comment] = ACTIONS(1690), - [sym_raw_specifier] = ACTIONS(1690), - [sym__autolink] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1692), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1692), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_DQUOTE] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PERCENT] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_COMMA] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_DOT] = ACTIONS(1692), + [anon_sym_SLASH] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [anon_sym_RBRACK] = ACTIONS(1692), + [anon_sym_CARET] = ACTIONS(1692), + [anon_sym__] = ACTIONS(1692), + [anon_sym_BQUOTE] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1692), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1692), + [sym__escaped_characters] = ACTIONS(1692), + [sym__word] = ACTIONS(1692), + [sym__soft_line_ending] = ACTIONS(1692), + [sym__block_quote_start] = ACTIONS(1692), + [sym__indented_chunk_start] = ACTIONS(1692), + [sym_atx_h1_marker] = ACTIONS(1692), + [sym_atx_h2_marker] = ACTIONS(1692), + [sym_atx_h3_marker] = ACTIONS(1692), + [sym_atx_h4_marker] = ACTIONS(1692), + [sym_atx_h5_marker] = ACTIONS(1692), + [sym_atx_h6_marker] = ACTIONS(1692), + [sym__thematic_break] = ACTIONS(1692), + [sym__list_marker_minus] = ACTIONS(1692), + [sym__list_marker_plus] = ACTIONS(1692), + [sym__list_marker_star] = ACTIONS(1692), + [sym__list_marker_parenthesis] = ACTIONS(1692), + [sym__list_marker_dot] = ACTIONS(1692), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1692), + [sym__list_marker_example] = ACTIONS(1692), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1692), + [sym__fenced_code_block_start_backtick] = ACTIONS(1692), + [sym__fenced_code_block_start_tilde] = ACTIONS(1692), + [sym__blank_line_start] = ACTIONS(1692), + [sym_minus_metadata] = ACTIONS(1692), + [sym__pipe_table_start] = ACTIONS(1692), + [sym__fenced_div_start] = ACTIONS(1692), + [sym_ref_id_specifier] = ACTIONS(1692), + [sym__display_math_state_track_marker] = ACTIONS(1692), + [sym__inline_math_state_track_marker] = ACTIONS(1692), + [sym__code_span_start] = ACTIONS(1692), + [sym__html_comment] = ACTIONS(1692), + [sym_raw_specifier] = ACTIONS(1692), + [sym__autolink] = ACTIONS(1692), }, [STATE(466)] = { - [ts_builtin_sym_end] = ACTIONS(1694), + [ts_builtin_sym_end] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_DOLLAR] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_RPAREN] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_COMMA] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_DOT] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_QMARK] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_BSLASH] = ACTIONS(1696), - [anon_sym_RBRACK] = ACTIONS(1694), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_BQUOTE] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1694), - [sym__escaped_characters] = ACTIONS(1694), - [sym__word] = ACTIONS(1694), - [sym__soft_line_ending] = ACTIONS(1694), - [sym__block_quote_start] = ACTIONS(1694), - [sym__indented_chunk_start] = ACTIONS(1694), - [sym_atx_h1_marker] = ACTIONS(1694), - [sym_atx_h2_marker] = ACTIONS(1694), - [sym_atx_h3_marker] = ACTIONS(1694), - [sym_atx_h4_marker] = ACTIONS(1694), - [sym_atx_h5_marker] = ACTIONS(1694), - [sym_atx_h6_marker] = ACTIONS(1694), - [sym__thematic_break] = ACTIONS(1694), - [sym__list_marker_minus] = ACTIONS(1694), - [sym__list_marker_plus] = ACTIONS(1694), - [sym__list_marker_star] = ACTIONS(1694), - [sym__list_marker_parenthesis] = ACTIONS(1694), - [sym__list_marker_dot] = ACTIONS(1694), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1694), - [sym__list_marker_example] = ACTIONS(1694), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1694), - [sym__fenced_code_block_start_backtick] = ACTIONS(1694), - [sym__fenced_code_block_start_tilde] = ACTIONS(1694), - [sym__blank_line_start] = ACTIONS(1694), - [sym_minus_metadata] = ACTIONS(1694), - [sym__pipe_table_start] = ACTIONS(1694), - [sym__fenced_div_start] = ACTIONS(1694), - [sym_ref_id_specifier] = ACTIONS(1694), - [sym__display_math_state_track_marker] = ACTIONS(1694), - [sym__inline_math_state_track_marker] = ACTIONS(1694), - [sym__code_span_start] = ACTIONS(1694), - [sym__html_comment] = ACTIONS(1694), - [sym_raw_specifier] = ACTIONS(1694), - [sym__autolink] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1696), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_BSLASH] = ACTIONS(1694), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1696), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1696), + [sym__escaped_characters] = ACTIONS(1696), + [sym__word] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_example] = ACTIONS(1696), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym_minus_metadata] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + [sym__fenced_div_start] = ACTIONS(1696), + [sym_ref_id_specifier] = ACTIONS(1696), + [sym__display_math_state_track_marker] = ACTIONS(1696), + [sym__inline_math_state_track_marker] = ACTIONS(1696), + [sym__code_span_start] = ACTIONS(1696), + [sym__html_comment] = ACTIONS(1696), + [sym_raw_specifier] = ACTIONS(1696), + [sym__autolink] = ACTIONS(1696), }, [STATE(467)] = { - [ts_builtin_sym_end] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1700), [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1698), - [anon_sym_SQUOTE] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_DQUOTE] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RPAREN] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_COMMA] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(1698), - [anon_sym_SLASH] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_QMARK] = ACTIONS(1698), - [anon_sym_AT] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_BSLASH] = ACTIONS(1700), - [anon_sym_RBRACK] = ACTIONS(1698), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym__] = ACTIONS(1698), - [anon_sym_BQUOTE] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_TILDE] = ACTIONS(1698), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1698), - [sym__escaped_characters] = ACTIONS(1698), - [sym__word] = ACTIONS(1698), - [sym__soft_line_ending] = ACTIONS(1698), - [sym__block_quote_start] = ACTIONS(1698), - [sym__indented_chunk_start] = ACTIONS(1698), - [sym_atx_h1_marker] = ACTIONS(1698), - [sym_atx_h2_marker] = ACTIONS(1698), - [sym_atx_h3_marker] = ACTIONS(1698), - [sym_atx_h4_marker] = ACTIONS(1698), - [sym_atx_h5_marker] = ACTIONS(1698), - [sym_atx_h6_marker] = ACTIONS(1698), - [sym__thematic_break] = ACTIONS(1698), - [sym__list_marker_minus] = ACTIONS(1698), - [sym__list_marker_plus] = ACTIONS(1698), - [sym__list_marker_star] = ACTIONS(1698), - [sym__list_marker_parenthesis] = ACTIONS(1698), - [sym__list_marker_dot] = ACTIONS(1698), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1698), - [sym__list_marker_example] = ACTIONS(1698), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1698), - [sym__fenced_code_block_start_backtick] = ACTIONS(1698), - [sym__fenced_code_block_start_tilde] = ACTIONS(1698), - [sym__blank_line_start] = ACTIONS(1698), - [sym_minus_metadata] = ACTIONS(1698), - [sym__pipe_table_start] = ACTIONS(1698), - [sym__fenced_div_start] = ACTIONS(1698), - [sym_ref_id_specifier] = ACTIONS(1698), - [sym__display_math_state_track_marker] = ACTIONS(1698), - [sym__inline_math_state_track_marker] = ACTIONS(1698), - [sym__code_span_start] = ACTIONS(1698), - [sym__html_comment] = ACTIONS(1698), - [sym_raw_specifier] = ACTIONS(1698), - [sym__autolink] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1700), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_DQUOTE] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1700), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PERCENT] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_DOT] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_AT] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_BSLASH] = ACTIONS(1698), + [anon_sym_RBRACK] = ACTIONS(1700), + [anon_sym_CARET] = ACTIONS(1700), + [anon_sym__] = ACTIONS(1700), + [anon_sym_BQUOTE] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1700), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1700), + [sym__escaped_characters] = ACTIONS(1700), + [sym__word] = ACTIONS(1700), + [sym__soft_line_ending] = ACTIONS(1700), + [sym__block_quote_start] = ACTIONS(1700), + [sym__indented_chunk_start] = ACTIONS(1700), + [sym_atx_h1_marker] = ACTIONS(1700), + [sym_atx_h2_marker] = ACTIONS(1700), + [sym_atx_h3_marker] = ACTIONS(1700), + [sym_atx_h4_marker] = ACTIONS(1700), + [sym_atx_h5_marker] = ACTIONS(1700), + [sym_atx_h6_marker] = ACTIONS(1700), + [sym__thematic_break] = ACTIONS(1700), + [sym__list_marker_minus] = ACTIONS(1700), + [sym__list_marker_plus] = ACTIONS(1700), + [sym__list_marker_star] = ACTIONS(1700), + [sym__list_marker_parenthesis] = ACTIONS(1700), + [sym__list_marker_dot] = ACTIONS(1700), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1700), + [sym__list_marker_example] = ACTIONS(1700), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1700), + [sym__fenced_code_block_start_backtick] = ACTIONS(1700), + [sym__fenced_code_block_start_tilde] = ACTIONS(1700), + [sym__blank_line_start] = ACTIONS(1700), + [sym_minus_metadata] = ACTIONS(1700), + [sym__pipe_table_start] = ACTIONS(1700), + [sym__fenced_div_start] = ACTIONS(1700), + [sym_ref_id_specifier] = ACTIONS(1700), + [sym__display_math_state_track_marker] = ACTIONS(1700), + [sym__inline_math_state_track_marker] = ACTIONS(1700), + [sym__code_span_start] = ACTIONS(1700), + [sym__html_comment] = ACTIONS(1700), + [sym_raw_specifier] = ACTIONS(1700), + [sym__autolink] = ACTIONS(1700), }, [STATE(468)] = { - [ts_builtin_sym_end] = ACTIONS(1702), + [ts_builtin_sym_end] = ACTIONS(1704), [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_RPAREN] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_PLUS] = ACTIONS(1702), - [anon_sym_COMMA] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_DOT] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_QMARK] = ACTIONS(1702), - [anon_sym_AT] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_BSLASH] = ACTIONS(1704), - [anon_sym_RBRACK] = ACTIONS(1702), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym__] = ACTIONS(1702), - [anon_sym_BQUOTE] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1702), - [sym__escaped_characters] = ACTIONS(1702), - [sym__word] = ACTIONS(1702), - [sym__soft_line_ending] = ACTIONS(1702), - [sym__block_quote_start] = ACTIONS(1702), - [sym__indented_chunk_start] = ACTIONS(1702), - [sym_atx_h1_marker] = ACTIONS(1702), - [sym_atx_h2_marker] = ACTIONS(1702), - [sym_atx_h3_marker] = ACTIONS(1702), - [sym_atx_h4_marker] = ACTIONS(1702), - [sym_atx_h5_marker] = ACTIONS(1702), - [sym_atx_h6_marker] = ACTIONS(1702), - [sym__thematic_break] = ACTIONS(1702), - [sym__list_marker_minus] = ACTIONS(1702), - [sym__list_marker_plus] = ACTIONS(1702), - [sym__list_marker_star] = ACTIONS(1702), - [sym__list_marker_parenthesis] = ACTIONS(1702), - [sym__list_marker_dot] = ACTIONS(1702), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), - [sym__list_marker_example] = ACTIONS(1702), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1702), - [sym__fenced_code_block_start_backtick] = ACTIONS(1702), - [sym__fenced_code_block_start_tilde] = ACTIONS(1702), - [sym__blank_line_start] = ACTIONS(1702), - [sym_minus_metadata] = ACTIONS(1702), - [sym__pipe_table_start] = ACTIONS(1702), - [sym__fenced_div_start] = ACTIONS(1702), - [sym_ref_id_specifier] = ACTIONS(1702), - [sym__display_math_state_track_marker] = ACTIONS(1702), - [sym__inline_math_state_track_marker] = ACTIONS(1702), - [sym__code_span_start] = ACTIONS(1702), - [sym__html_comment] = ACTIONS(1702), - [sym_raw_specifier] = ACTIONS(1702), - [sym__autolink] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1704), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1704), + [anon_sym_EQ] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_DQUOTE] = ACTIONS(1704), + [anon_sym_POUND] = ACTIONS(1704), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PERCENT] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_RPAREN] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_COMMA] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_DOT] = ACTIONS(1704), + [anon_sym_SLASH] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1704), + [anon_sym_CARET] = ACTIONS(1704), + [anon_sym__] = ACTIONS(1704), + [anon_sym_BQUOTE] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1704), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1704), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1704), + [sym__escaped_characters] = ACTIONS(1704), + [sym__word] = ACTIONS(1704), + [sym__soft_line_ending] = ACTIONS(1704), + [sym__block_quote_start] = ACTIONS(1704), + [sym__indented_chunk_start] = ACTIONS(1704), + [sym_atx_h1_marker] = ACTIONS(1704), + [sym_atx_h2_marker] = ACTIONS(1704), + [sym_atx_h3_marker] = ACTIONS(1704), + [sym_atx_h4_marker] = ACTIONS(1704), + [sym_atx_h5_marker] = ACTIONS(1704), + [sym_atx_h6_marker] = ACTIONS(1704), + [sym__thematic_break] = ACTIONS(1704), + [sym__list_marker_minus] = ACTIONS(1704), + [sym__list_marker_plus] = ACTIONS(1704), + [sym__list_marker_star] = ACTIONS(1704), + [sym__list_marker_parenthesis] = ACTIONS(1704), + [sym__list_marker_dot] = ACTIONS(1704), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1704), + [sym__list_marker_example] = ACTIONS(1704), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1704), + [sym__fenced_code_block_start_backtick] = ACTIONS(1704), + [sym__fenced_code_block_start_tilde] = ACTIONS(1704), + [sym__blank_line_start] = ACTIONS(1704), + [sym_minus_metadata] = ACTIONS(1704), + [sym__pipe_table_start] = ACTIONS(1704), + [sym__fenced_div_start] = ACTIONS(1704), + [sym_ref_id_specifier] = ACTIONS(1704), + [sym__display_math_state_track_marker] = ACTIONS(1704), + [sym__inline_math_state_track_marker] = ACTIONS(1704), + [sym__code_span_start] = ACTIONS(1704), + [sym__html_comment] = ACTIONS(1704), + [sym_raw_specifier] = ACTIONS(1704), + [sym__autolink] = ACTIONS(1704), }, [STATE(469)] = { - [ts_builtin_sym_end] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1708), [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PERCENT] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_PLUS] = ACTIONS(1706), - [anon_sym_COMMA] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_DOT] = ACTIONS(1706), - [anon_sym_SLASH] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_AT] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_BSLASH] = ACTIONS(1708), - [anon_sym_RBRACK] = ACTIONS(1706), - [anon_sym_CARET] = ACTIONS(1706), - [anon_sym__] = ACTIONS(1706), - [anon_sym_BQUOTE] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1706), - [sym__escaped_characters] = ACTIONS(1706), - [sym__word] = ACTIONS(1706), - [sym__soft_line_ending] = ACTIONS(1706), - [sym__block_quote_start] = ACTIONS(1706), - [sym__indented_chunk_start] = ACTIONS(1706), - [sym_atx_h1_marker] = ACTIONS(1706), - [sym_atx_h2_marker] = ACTIONS(1706), - [sym_atx_h3_marker] = ACTIONS(1706), - [sym_atx_h4_marker] = ACTIONS(1706), - [sym_atx_h5_marker] = ACTIONS(1706), - [sym_atx_h6_marker] = ACTIONS(1706), - [sym__thematic_break] = ACTIONS(1706), - [sym__list_marker_minus] = ACTIONS(1706), - [sym__list_marker_plus] = ACTIONS(1706), - [sym__list_marker_star] = ACTIONS(1706), - [sym__list_marker_parenthesis] = ACTIONS(1706), - [sym__list_marker_dot] = ACTIONS(1706), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1706), - [sym__list_marker_example] = ACTIONS(1706), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1706), - [sym__fenced_code_block_start_backtick] = ACTIONS(1706), - [sym__fenced_code_block_start_tilde] = ACTIONS(1706), - [sym__blank_line_start] = ACTIONS(1706), - [sym_minus_metadata] = ACTIONS(1706), - [sym__pipe_table_start] = ACTIONS(1706), - [sym__fenced_div_start] = ACTIONS(1706), - [sym_ref_id_specifier] = ACTIONS(1706), - [sym__display_math_state_track_marker] = ACTIONS(1706), - [sym__inline_math_state_track_marker] = ACTIONS(1706), - [sym__code_span_start] = ACTIONS(1706), - [sym__html_comment] = ACTIONS(1706), - [sym_raw_specifier] = ACTIONS(1706), - [sym__autolink] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1708), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_BSLASH] = ACTIONS(1706), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym__] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1708), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1708), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1708), + [sym__escaped_characters] = ACTIONS(1708), + [sym__word] = ACTIONS(1708), + [sym__soft_line_ending] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1708), + [sym__indented_chunk_start] = ACTIONS(1708), + [sym_atx_h1_marker] = ACTIONS(1708), + [sym_atx_h2_marker] = ACTIONS(1708), + [sym_atx_h3_marker] = ACTIONS(1708), + [sym_atx_h4_marker] = ACTIONS(1708), + [sym_atx_h5_marker] = ACTIONS(1708), + [sym_atx_h6_marker] = ACTIONS(1708), + [sym__thematic_break] = ACTIONS(1708), + [sym__list_marker_minus] = ACTIONS(1708), + [sym__list_marker_plus] = ACTIONS(1708), + [sym__list_marker_star] = ACTIONS(1708), + [sym__list_marker_parenthesis] = ACTIONS(1708), + [sym__list_marker_dot] = ACTIONS(1708), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_example] = ACTIONS(1708), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1708), + [sym__fenced_code_block_start_backtick] = ACTIONS(1708), + [sym__fenced_code_block_start_tilde] = ACTIONS(1708), + [sym__blank_line_start] = ACTIONS(1708), + [sym_minus_metadata] = ACTIONS(1708), + [sym__pipe_table_start] = ACTIONS(1708), + [sym__fenced_div_start] = ACTIONS(1708), + [sym_ref_id_specifier] = ACTIONS(1708), + [sym__display_math_state_track_marker] = ACTIONS(1708), + [sym__inline_math_state_track_marker] = ACTIONS(1708), + [sym__code_span_start] = ACTIONS(1708), + [sym__html_comment] = ACTIONS(1708), + [sym_raw_specifier] = ACTIONS(1708), + [sym__autolink] = ACTIONS(1708), }, [STATE(470)] = { - [ts_builtin_sym_end] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1712), [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1710), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_DQUOTE] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_PERCENT] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1710), - [anon_sym_COMMA] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_DOT] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_QMARK] = ACTIONS(1710), - [anon_sym_AT] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_BSLASH] = ACTIONS(1712), - [anon_sym_RBRACK] = ACTIONS(1710), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym__] = ACTIONS(1710), - [anon_sym_BQUOTE] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1710), - [sym__escaped_characters] = ACTIONS(1710), - [sym__word] = ACTIONS(1710), - [sym__soft_line_ending] = ACTIONS(1710), - [sym__block_quote_start] = ACTIONS(1710), - [sym__indented_chunk_start] = ACTIONS(1710), - [sym_atx_h1_marker] = ACTIONS(1710), - [sym_atx_h2_marker] = ACTIONS(1710), - [sym_atx_h3_marker] = ACTIONS(1710), - [sym_atx_h4_marker] = ACTIONS(1710), - [sym_atx_h5_marker] = ACTIONS(1710), - [sym_atx_h6_marker] = ACTIONS(1710), - [sym__thematic_break] = ACTIONS(1710), - [sym__list_marker_minus] = ACTIONS(1710), - [sym__list_marker_plus] = ACTIONS(1710), - [sym__list_marker_star] = ACTIONS(1710), - [sym__list_marker_parenthesis] = ACTIONS(1710), - [sym__list_marker_dot] = ACTIONS(1710), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1710), - [sym__list_marker_example] = ACTIONS(1710), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1710), - [sym__fenced_code_block_start_backtick] = ACTIONS(1710), - [sym__fenced_code_block_start_tilde] = ACTIONS(1710), - [sym__blank_line_start] = ACTIONS(1710), - [sym_minus_metadata] = ACTIONS(1710), - [sym__pipe_table_start] = ACTIONS(1710), - [sym__fenced_div_start] = ACTIONS(1710), - [sym_ref_id_specifier] = ACTIONS(1710), - [sym__display_math_state_track_marker] = ACTIONS(1710), - [sym__inline_math_state_track_marker] = ACTIONS(1710), - [sym__code_span_start] = ACTIONS(1710), - [sym__html_comment] = ACTIONS(1710), - [sym_raw_specifier] = ACTIONS(1710), - [sym__autolink] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1712), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1712), + [anon_sym_EQ] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1712), + [anon_sym_PERCENT] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_COMMA] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_DOT] = ACTIONS(1712), + [anon_sym_SLASH] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_QMARK] = ACTIONS(1712), + [anon_sym_AT] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BSLASH] = ACTIONS(1710), + [anon_sym_RBRACK] = ACTIONS(1712), + [anon_sym_CARET] = ACTIONS(1712), + [anon_sym__] = ACTIONS(1712), + [anon_sym_BQUOTE] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1712), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1712), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1712), + [sym__escaped_characters] = ACTIONS(1712), + [sym__word] = ACTIONS(1712), + [sym__soft_line_ending] = ACTIONS(1712), + [sym__block_quote_start] = ACTIONS(1712), + [sym__indented_chunk_start] = ACTIONS(1712), + [sym_atx_h1_marker] = ACTIONS(1712), + [sym_atx_h2_marker] = ACTIONS(1712), + [sym_atx_h3_marker] = ACTIONS(1712), + [sym_atx_h4_marker] = ACTIONS(1712), + [sym_atx_h5_marker] = ACTIONS(1712), + [sym_atx_h6_marker] = ACTIONS(1712), + [sym__thematic_break] = ACTIONS(1712), + [sym__list_marker_minus] = ACTIONS(1712), + [sym__list_marker_plus] = ACTIONS(1712), + [sym__list_marker_star] = ACTIONS(1712), + [sym__list_marker_parenthesis] = ACTIONS(1712), + [sym__list_marker_dot] = ACTIONS(1712), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1712), + [sym__list_marker_example] = ACTIONS(1712), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1712), + [sym__fenced_code_block_start_backtick] = ACTIONS(1712), + [sym__fenced_code_block_start_tilde] = ACTIONS(1712), + [sym__blank_line_start] = ACTIONS(1712), + [sym_minus_metadata] = ACTIONS(1712), + [sym__pipe_table_start] = ACTIONS(1712), + [sym__fenced_div_start] = ACTIONS(1712), + [sym_ref_id_specifier] = ACTIONS(1712), + [sym__display_math_state_track_marker] = ACTIONS(1712), + [sym__inline_math_state_track_marker] = ACTIONS(1712), + [sym__code_span_start] = ACTIONS(1712), + [sym__html_comment] = ACTIONS(1712), + [sym_raw_specifier] = ACTIONS(1712), + [sym__autolink] = ACTIONS(1712), }, [STATE(471)] = { - [ts_builtin_sym_end] = ACTIONS(1714), + [ts_builtin_sym_end] = ACTIONS(1716), [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1714), - [anon_sym_AT] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_BSLASH] = ACTIONS(1716), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1714), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1714), - [sym__html_comment] = ACTIONS(1714), - [sym_raw_specifier] = ACTIONS(1714), - [sym__autolink] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1716), + [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [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), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1716), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1716), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1716), + [sym__escaped_characters] = ACTIONS(1716), + [sym__word] = ACTIONS(1716), + [sym__soft_line_ending] = 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), + [sym__code_span_start] = ACTIONS(1716), + [sym__html_comment] = ACTIONS(1716), + [sym_raw_specifier] = ACTIONS(1716), + [sym__autolink] = ACTIONS(1716), }, [STATE(472)] = { - [ts_builtin_sym_end] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1520), [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [aux_sym__commonmark_whitespace_token1] = 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_QMARK] = ACTIONS(1518), - [anon_sym_AT] = ACTIONS(1518), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_BSLASH] = ACTIONS(1520), - [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), - [anon_sym_LBRACK_GT_GT] = ACTIONS(1518), - [sym__escaped_characters] = 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), - [sym__code_span_start] = ACTIONS(1518), - [sym__html_comment] = ACTIONS(1518), - [sym_raw_specifier] = ACTIONS(1518), - [sym__autolink] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1520), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym__] = ACTIONS(1520), + [anon_sym_BQUOTE] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_LBRACE_LBRACE_LT] = ACTIONS(1520), + [anon_sym_GT_RBRACE_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK_GT_GT] = ACTIONS(1520), + [sym__escaped_characters] = ACTIONS(1520), + [sym__word] = ACTIONS(1520), + [sym__soft_line_ending] = ACTIONS(1520), + [sym__block_quote_start] = ACTIONS(1520), + [sym__indented_chunk_start] = ACTIONS(1520), + [sym_atx_h1_marker] = ACTIONS(1520), + [sym_atx_h2_marker] = ACTIONS(1520), + [sym_atx_h3_marker] = ACTIONS(1520), + [sym_atx_h4_marker] = ACTIONS(1520), + [sym_atx_h5_marker] = ACTIONS(1520), + [sym_atx_h6_marker] = ACTIONS(1520), + [sym__thematic_break] = ACTIONS(1520), + [sym__list_marker_minus] = ACTIONS(1520), + [sym__list_marker_plus] = ACTIONS(1520), + [sym__list_marker_star] = ACTIONS(1520), + [sym__list_marker_parenthesis] = ACTIONS(1520), + [sym__list_marker_dot] = ACTIONS(1520), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1520), + [sym__list_marker_example] = ACTIONS(1520), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1520), + [sym__fenced_code_block_start_backtick] = ACTIONS(1520), + [sym__fenced_code_block_start_tilde] = ACTIONS(1520), + [sym__blank_line_start] = ACTIONS(1520), + [sym_minus_metadata] = ACTIONS(1520), + [sym__pipe_table_start] = ACTIONS(1520), + [sym__fenced_div_start] = ACTIONS(1520), + [sym_ref_id_specifier] = ACTIONS(1520), + [sym__display_math_state_track_marker] = ACTIONS(1520), + [sym__inline_math_state_track_marker] = ACTIONS(1520), + [sym__code_span_start] = ACTIONS(1520), + [sym__html_comment] = ACTIONS(1520), + [sym_raw_specifier] = ACTIONS(1520), + [sym__autolink] = ACTIONS(1520), }, }; @@ -45372,20 +46417,20 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(2002), 1, sym__code_span_start, - STATE(360), 1, + STATE(358), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(737), 1, + STATE(735), 1, sym__atx_heading_content, - STATE(963), 1, + STATE(960), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45393,7 +46438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -45426,10 +46471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [79] = 13, + [81] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, @@ -45438,20 +46485,20 @@ static const uint16_t ts_small_parse_table[] = { sym__code_span_start, ACTIONS(2004), 1, sym__line_ending, - STATE(329), 1, + STATE(301), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(742), 1, + STATE(749), 1, sym__atx_heading_content, - STATE(940), 1, + STATE(916), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45459,7 +46506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -45492,32 +46539,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [158] = 13, + [162] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym__line_ending, - STATE(355), 1, + STATE(329), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(729), 1, + STATE(742), 1, sym__atx_heading_content, - STATE(913), 1, + STATE(940), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45525,7 +46574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -45558,32 +46607,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [237] = 13, + [243] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym__line_ending, - STATE(352), 1, + STATE(462), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(730), 1, + STATE(732), 1, sym__atx_heading_content, + STATE(955), 1, + sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, - STATE(989), 1, - sym__qmd_attribute, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45591,7 +46642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -45624,32 +46675,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [316] = 13, + [324] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2000), 1, - sym__line_ending, ACTIONS(2002), 1, sym__code_span_start, - STATE(359), 1, + ACTIONS(2006), 1, + sym__line_ending, + STATE(351), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(736), 1, + STATE(727), 1, sym__atx_heading_content, - STATE(961), 1, + STATE(888), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45657,7 +46710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -45690,32 +46743,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [395] = 13, + [405] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2004), 1, + ACTIONS(2006), 1, sym__line_ending, - STATE(462), 1, + STATE(352), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(732), 1, + STATE(730), 1, sym__atx_heading_content, - STATE(955), 1, - sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, + STATE(989), 1, + sym__qmd_attribute, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45723,7 +46778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -45756,51 +46811,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [474] = 13, - ACTIONS(1992), 1, + [486] = 17, + ACTIONS(2008), 1, anon_sym_LBRACE, - ACTIONS(1996), 1, + ACTIONS(2011), 1, + anon_sym_RBRACE, + ACTIONS(2013), 1, + sym_commonmark_name, + ACTIONS(2015), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2002), 1, - sym__code_span_start, - ACTIONS(2004), 1, - sym__line_ending, - STATE(351), 1, - sym__newline, - STATE(527), 1, - sym__whitespace, - STATE(727), 1, - sym__atx_heading_content, - STATE(888), 1, - sym__qmd_attribute, - STATE(973), 1, - sym__atx_heading_line, - ACTIONS(1998), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(539), 3, - sym__regular_block_content, - sym__pipe_table_code_span, - aux_sym__line_repeat1, - STATE(1046), 3, + ACTIONS(2017), 1, + sym_id_specifier, + ACTIONS(2019), 1, + sym_class_specifier, + ACTIONS(2023), 1, + sym_key_value_key, + ACTIONS(2027), 1, + sym_raw_specifier, + STATE(573), 1, + sym__last_token_punctuation, + STATE(706), 1, + sym__commonmark_whitespace, + STATE(710), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(753), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(798), 1, + sym__attribute, + STATE(800), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(1029), 1, sym_language_attribute, - sym_raw_attribute, - sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(2025), 6, + anon_sym_POUND, + anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym__, + sym__word, + ACTIONS(2021), 33, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__html_comment, - sym_raw_specifier, sym__autolink, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, - anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, @@ -45810,7 +46874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH, - anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, @@ -45818,62 +46881,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_RBRACK, anon_sym_CARET, - anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, - sym__word, - [553] = 17, - ACTIONS(2006), 1, + [575] = 13, + ACTIONS(1992), 1, anon_sym_LBRACE, - ACTIONS(2009), 1, - anon_sym_RBRACE, - ACTIONS(2011), 1, - sym_commonmark_name, - ACTIONS(2013), 1, + ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2015), 1, - sym_id_specifier, - ACTIONS(2017), 1, - sym_class_specifier, - ACTIONS(2021), 1, - sym_key_value_key, - ACTIONS(2025), 1, - sym_raw_specifier, - STATE(590), 1, - sym__last_token_punctuation, - STATE(706), 1, - sym__commonmark_whitespace, - STATE(710), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(753), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(798), 1, - sym__attribute, - STATE(800), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(1029), 1, - sym_language_attribute, - ACTIONS(2023), 6, - anon_sym_POUND, - anon_sym_DOT, + ACTIONS(2002), 1, + sym__code_span_start, + ACTIONS(2006), 1, + sym__line_ending, + STATE(355), 1, + sym__newline, + STATE(526), 1, + sym__whitespace, + STATE(729), 1, + sym__atx_heading_content, + STATE(913), 1, + sym__qmd_attribute, + STATE(973), 1, + sym__atx_heading_line, + ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - anon_sym__, - sym__word, - ACTIONS(2019), 31, - sym__line_ending, + STATE(533), 3, + sym__regular_block_content, + sym__pipe_table_code_span, + aux_sym__line_repeat1, + STATE(1046), 3, + sym_language_attribute, + sym_raw_attribute, + sym_commonmark_attribute, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, sym__html_comment, + sym_raw_specifier, sym__autolink, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, + anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, @@ -45883,6 +46939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH, + anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, @@ -45890,12 +46947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_RBRACK, anon_sym_CARET, + anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, - [640] = 13, + sym__word, + [656] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, @@ -45904,20 +46965,20 @@ static const uint16_t ts_small_parse_table[] = { sym__line_ending, ACTIONS(2002), 1, sym__code_span_start, - STATE(358), 1, + STATE(360), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(735), 1, + STATE(737), 1, sym__atx_heading_content, - STATE(960), 1, + STATE(963), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45925,7 +46986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -45958,10 +47019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [719] = 13, + [737] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, @@ -45972,7 +47035,7 @@ static const uint16_t ts_small_parse_table[] = { sym__code_span_start, STATE(361), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, STATE(738), 1, sym__atx_heading_content, @@ -45983,7 +47046,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -45991,7 +47054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46024,10 +47087,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [798] = 13, + [818] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, @@ -46038,7 +47103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__code_span_start, STATE(362), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, STATE(739), 1, sym__atx_heading_content, @@ -46049,7 +47114,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46057,7 +47122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46090,10 +47155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [877] = 13, + [899] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, @@ -46104,7 +47171,7 @@ static const uint16_t ts_small_parse_table[] = { sym__code_span_start, STATE(363), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, STATE(740), 1, sym__atx_heading_content, @@ -46115,7 +47182,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46123,7 +47190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46156,32 +47223,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [956] = 13, + [980] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2027), 1, + ACTIONS(2006), 1, sym__line_ending, - STATE(293), 1, + STATE(321), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(746), 1, + STATE(726), 1, sym__atx_heading_content, - STATE(910), 1, + STATE(920), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46189,7 +47258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46222,10 +47291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [1035] = 13, + [1061] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, @@ -46234,20 +47305,20 @@ static const uint16_t ts_small_parse_table[] = { sym__code_span_start, ACTIONS(2004), 1, sym__line_ending, - STATE(321), 1, + STATE(291), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(726), 1, + STATE(744), 1, sym__atx_heading_content, - STATE(920), 1, + STATE(907), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46255,7 +47326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46288,32 +47359,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [1114] = 13, + [1142] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2027), 1, + ACTIONS(2004), 1, sym__line_ending, - STATE(291), 1, + STATE(292), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(744), 1, + STATE(745), 1, sym__atx_heading_content, - STATE(907), 1, + STATE(908), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46321,7 +47394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46354,32 +47427,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [1193] = 13, + [1223] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2027), 1, + ACTIONS(2004), 1, sym__line_ending, - STATE(292), 1, + STATE(293), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(745), 1, + STATE(746), 1, sym__atx_heading_content, - STATE(908), 1, + STATE(910), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46387,7 +47462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46420,32 +47495,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [1272] = 13, + [1304] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2027), 1, + ACTIONS(2004), 1, sym__line_ending, - STATE(296), 1, + STATE(295), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(748), 1, + STATE(747), 1, sym__atx_heading_content, - STATE(914), 1, + STATE(912), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46453,7 +47530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46486,32 +47563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [1351] = 13, + [1385] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2027), 1, + ACTIONS(2004), 1, sym__line_ending, - STATE(295), 1, + STATE(296), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(747), 1, + STATE(748), 1, sym__atx_heading_content, - STATE(912), 1, + STATE(914), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46519,7 +47598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46552,32 +47631,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [1430] = 13, + [1466] = 13, ACTIONS(1992), 1, anon_sym_LBRACE, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2000), 1, + sym__line_ending, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2027), 1, - sym__line_ending, - STATE(301), 1, + STATE(359), 1, sym__newline, - STATE(527), 1, + STATE(526), 1, sym__whitespace, - STATE(749), 1, + STATE(736), 1, sym__atx_heading_content, - STATE(916), 1, + STATE(961), 1, sym__qmd_attribute, STATE(973), 1, sym__atx_heading_line, ACTIONS(1998), 2, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 3, + STATE(533), 3, sym__regular_block_content, sym__pipe_table_code_span, aux_sym__line_repeat1, @@ -46585,7 +47666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - ACTIONS(1994), 35, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -46618,45 +47699,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [1509] = 12, - ACTIONS(7), 1, + [1547] = 12, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2029), 1, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2031), 1, + ACTIONS(2029), 1, sym__eof, - STATE(175), 1, + STATE(442), 1, sym__newline, - STATE(498), 1, + STATE(499), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -46683,42 +47768,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [1583] = 12, - ACTIONS(7), 1, + [1623] = 12, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2027), 1, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2033), 1, + ACTIONS(2031), 1, sym__eof, STATE(269), 1, sym__newline, - STATE(498), 1, + STATE(499), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -46745,42 +47832,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [1657] = 12, - ACTIONS(7), 1, + [1699] = 12, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2035), 1, + ACTIONS(2033), 1, sym__line_ending, - ACTIONS(2037), 1, + ACTIONS(2035), 1, sym__eof, STATE(194), 1, sym__newline, - STATE(498), 1, + STATE(499), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -46807,42 +47896,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [1731] = 12, - ACTIONS(7), 1, + [1775] = 12, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2004), 1, + ACTIONS(2037), 1, sym__line_ending, ACTIONS(2039), 1, sym__eof, - STATE(442), 1, + STATE(175), 1, sym__newline, - STATE(498), 1, + STATE(499), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -46869,8 +47960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [1805] = 12, - ACTIONS(7), 1, + [1851] = 12, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, @@ -46882,29 +47973,31 @@ static const uint16_t ts_small_parse_table[] = { sym__eof, STATE(464), 1, sym__newline, - STATE(498), 1, + STATE(499), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -46931,8 +48024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [1879] = 12, - ACTIONS(7), 1, + [1927] = 12, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, @@ -46944,29 +48037,31 @@ static const uint16_t ts_small_parse_table[] = { sym__eof, STATE(146), 1, sym__newline, - STATE(498), 1, + STATE(499), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -46993,91 +48088,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [1953] = 10, - ACTIONS(2050), 1, + [2003] = 7, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2061), 1, - sym__soft_line_ending, - ACTIONS(2064), 1, + ACTIONS(59), 1, sym__code_span_start, - STATE(498), 1, - aux_sym_paragraph_repeat1, - ACTIONS(2053), 2, + STATE(506), 1, + sym__last_token_punctuation, + ACTIONS(2047), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2059), 2, + ACTIONS(2051), 3, sym__line_ending, + sym__soft_line_ending, sym__eof, - STATE(571), 2, - sym__soft_line_break, - sym__line, - STATE(501), 3, + STATE(505), 4, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(2056), 8, + aux_sym__line_repeat1, + ACTIONS(2049), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACK_GT_GT, - sym__escaped_characters, - sym__word, - ACTIONS(2047), 27, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - [2022] = 7, - ACTIONS(7), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(59), 1, - sym__code_span_start, - STATE(502), 1, - sym__last_token_punctuation, - ACTIONS(2069), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - ACTIONS(2071), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - STATE(503), 4, - sym__regular_block_content, - sym__whitespace, - sym__pipe_table_code_span, - aux_sym__line_repeat1, - ACTIONS(2067), 36, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47105,41 +48141,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [2085] = 10, - ACTIONS(7), 1, + [2068] = 10, + ACTIONS(2059), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(13), 1, + ACTIONS(2067), 1, sym__soft_line_ending, - ACTIONS(59), 1, + ACTIONS(2070), 1, sym__code_span_start, - STATE(315), 1, - sym_paragraph, - STATE(493), 1, + STATE(499), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + ACTIONS(2065), 2, + sym__line_ending, + sym__eof, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(2053), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(2062), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(2056), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47166,30 +48207,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [2153] = 6, - ACTIONS(7), 1, + [2139] = 6, + ACTIONS(2079), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(59), 1, + ACTIONS(2084), 1, sym__code_span_start, - ACTIONS(2069), 2, + ACTIONS(2073), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2071), 3, + ACTIONS(2082), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - STATE(503), 4, + STATE(500), 4, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, aux_sym__line_repeat1, - ACTIONS(2067), 36, + ACTIONS(2076), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47217,33 +48258,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [2213] = 6, - ACTIONS(7), 1, + [2201] = 10, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(13), 1, + sym__soft_line_ending, ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2075), 2, + STATE(387), 1, + sym_paragraph, + STATE(496), 1, + aux_sym_paragraph_repeat1, + STATE(561), 2, + sym__soft_line_break, + sym__line, + ACTIONS(5), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2077), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - STATE(505), 4, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - aux_sym__line_repeat1, - ACTIONS(2073), 36, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, + sym__word, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47261,7 +48314,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_QMARK, anon_sym_AT, @@ -47271,33 +48323,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_LBRACK_GT_GT, - sym__escaped_characters, - sym__word, - [2273] = 6, - ACTIONS(7), 1, + [2271] = 6, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2081), 2, + ACTIONS(2047), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2077), 3, + ACTIONS(2051), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - STATE(507), 4, + STATE(505), 4, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, aux_sym__line_repeat1, - ACTIONS(2079), 36, + ACTIONS(2049), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47325,41 +48374,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, [2333] = 10, - ACTIONS(7), 1, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, ACTIONS(59), 1, sym__code_span_start, - STATE(387), 1, + STATE(456), 1, sym_paragraph, - STATE(496), 1, + STATE(492), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47386,30 +48439,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [2401] = 6, - ACTIONS(7), 1, + [2403] = 6, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2081), 2, + ACTIONS(2087), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2083), 3, + ACTIONS(2091), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - STATE(507), 4, + STATE(500), 4, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, aux_sym__line_repeat1, - ACTIONS(2079), 36, + ACTIONS(2089), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47437,44 +48490,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [2461] = 14, - ACTIONS(2087), 1, + [2465] = 6, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2091), 1, - anon_sym_PIPE, - ACTIONS(2097), 1, + ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - STATE(534), 1, - aux_sym_pipe_table_row_repeat1, - STATE(612), 1, - sym__whitespace, - STATE(770), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(858), 1, - sym_pipe_table_row, - STATE(553), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2095), 3, + ACTIONS(2087), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2093), 3, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, - ACTIONS(2093), 4, + STATE(500), 4, + sym__regular_block_content, + sym__whitespace, + sym__pipe_table_code_span, + aux_sym__line_repeat1, + ACTIONS(2089), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2085), 28, - anon_sym_LBRACE, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47496,36 +48540,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, 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, - [2537] = 6, - ACTIONS(2104), 1, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, + sym__word, + [2527] = 6, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2112), 1, + ACTIONS(59), 1, sym__code_span_start, - ACTIONS(2107), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - ACTIONS(2110), 3, + ACTIONS(2093), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - STATE(507), 4, + ACTIONS(2095), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(504), 4, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, aux_sym__line_repeat1, - ACTIONS(2101), 36, + ACTIONS(2097), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47553,41 +48602,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [2597] = 10, - ACTIONS(7), 1, + [2589] = 10, + ACTIONS(9), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(13), 1, sym__soft_line_ending, ACTIONS(59), 1, sym__code_span_start, - STATE(456), 1, + STATE(315), 1, sym_paragraph, - STATE(495), 1, + STATE(493), 1, aux_sym_paragraph_repeat1, - ACTIONS(9), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(571), 2, + STATE(561), 2, sym__soft_line_break, sym__line, - STATE(501), 3, + ACTIONS(5), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(502), 3, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - ACTIONS(11), 8, + ACTIONS(11), 10, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - ACTIONS(5), 27, - anon_sym_LBRACE, + ACTIONS(7), 26, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -47614,30 +48667,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [2665] = 8, - ACTIONS(2117), 1, + [2659] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2121), 1, + ACTIONS(2107), 1, sym__block_close, - ACTIONS(2123), 1, + ACTIONS(2109), 1, sym__fenced_code_block_end_tilde, - STATE(898), 1, + STATE(932), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2115), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -47668,31 +48722,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [2728] = 8, - ACTIONS(2127), 1, + [2726] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2131), 1, + ACTIONS(2119), 1, sym__block_close, - ACTIONS(2133), 1, + ACTIONS(2121), 1, sym__fenced_code_block_end_backtick, STATE(892), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2115), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -47723,31 +48780,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [2791] = 8, - ACTIONS(2127), 1, + [2793] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2135), 1, + ACTIONS(2123), 1, sym__block_close, - ACTIONS(2137), 1, + ACTIONS(2125), 1, sym__fenced_code_block_end_backtick, STATE(889), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2115), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -47778,31 +48838,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [2854] = 8, - ACTIONS(2117), 1, + [2860] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2135), 1, + ACTIONS(2123), 1, sym__block_close, - ACTIONS(2137), 1, + ACTIONS(2125), 1, sym__fenced_code_block_end_tilde, STATE(891), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2115), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -47833,31 +48896,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [2917] = 8, - ACTIONS(2117), 1, + [2927] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2139), 1, + ACTIONS(2127), 1, sym__block_close, - ACTIONS(2141), 1, + ACTIONS(2129), 1, sym__fenced_code_block_end_tilde, - STATE(933), 1, + STATE(898), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2115), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -47888,31 +48954,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [2980] = 8, - ACTIONS(2121), 1, - sym__block_close, - ACTIONS(2123), 1, - sym__fenced_code_block_end_backtick, - ACTIONS(2127), 1, + [2994] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2117), 1, sym__line_ending, + ACTIONS(2127), 1, + sym__block_close, + ACTIONS(2129), 1, + sym__fenced_code_block_end_backtick, STATE(897), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2115), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -47943,31 +49012,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3043] = 8, - ACTIONS(2117), 1, + [3061] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2131), 1, + ACTIONS(2119), 1, sym__block_close, - ACTIONS(2133), 1, + ACTIONS(2121), 1, sym__fenced_code_block_end_tilde, STATE(894), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2115), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -47998,31 +49070,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3106] = 8, - ACTIONS(2127), 1, + [3128] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2143), 1, + ACTIONS(2131), 1, sym__block_close, - ACTIONS(2145), 1, + ACTIONS(2133), 1, sym__fenced_code_block_end_backtick, STATE(900), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2115), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48053,31 +49128,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3169] = 8, - ACTIONS(2117), 1, + [3195] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2143), 1, + ACTIONS(2131), 1, sym__block_close, - ACTIONS(2145), 1, + ACTIONS(2133), 1, sym__fenced_code_block_end_tilde, STATE(906), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2115), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48108,31 +49186,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3232] = 8, - ACTIONS(2127), 1, + [3262] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2139), 1, + ACTIONS(2135), 1, sym__block_close, - ACTIONS(2141), 1, - sym__fenced_code_block_end_backtick, - STATE(909), 1, + ACTIONS(2137), 1, + sym__fenced_code_block_end_tilde, + STATE(933), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48163,31 +49244,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3295] = 8, - ACTIONS(2127), 1, + [3329] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2147), 1, + ACTIONS(2139), 1, sym__block_close, - ACTIONS(2149), 1, + ACTIONS(2141), 1, sym__fenced_code_block_end_backtick, STATE(890), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2115), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48218,31 +49302,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3358] = 8, - ACTIONS(2127), 1, + [3396] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2151), 1, + ACTIONS(2143), 1, sym__block_close, - ACTIONS(2153), 1, + ACTIONS(2145), 1, sym__fenced_code_block_end_backtick, - STATE(928), 1, + STATE(935), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2115), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48273,22 +49360,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3421] = 8, - ACTIONS(2117), 1, + [3463] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2151), 1, + ACTIONS(2147), 1, sym__block_close, - ACTIONS(2153), 1, - sym__fenced_code_block_end_tilde, - STATE(930), 1, + ACTIONS(2149), 1, + sym__fenced_code_block_end_backtick, + STATE(928), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, @@ -48296,8 +49388,6 @@ static const uint16_t ts_small_parse_table[] = { sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48328,31 +49418,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3484] = 8, - ACTIONS(2127), 1, + [3530] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2155), 1, + ACTIONS(2147), 1, sym__block_close, - ACTIONS(2157), 1, - sym__fenced_code_block_end_backtick, - STATE(931), 1, + ACTIONS(2149), 1, + sym__fenced_code_block_end_tilde, + STATE(930), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48383,22 +49476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3547] = 8, - ACTIONS(2117), 1, + [3597] = 9, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2147), 1, + ACTIONS(2135), 1, sym__block_close, - ACTIONS(2149), 1, - sym__fenced_code_block_end_tilde, - STATE(893), 1, + ACTIONS(2137), 1, + sym__fenced_code_block_end_backtick, + STATE(909), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, @@ -48406,8 +49504,6 @@ static const uint16_t ts_small_parse_table[] = { sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48438,31 +49534,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3610] = 8, - ACTIONS(2117), 1, + [3664] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2159), 1, + ACTIONS(2139), 1, sym__block_close, - ACTIONS(2161), 1, + ACTIONS(2141), 1, sym__fenced_code_block_end_tilde, - STATE(991), 1, + STATE(893), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2115), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48493,22 +49592,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3673] = 8, - ACTIONS(2117), 1, + [3731] = 9, + ACTIONS(2107), 1, + sym__block_close, + ACTIONS(2109), 1, + sym__fenced_code_block_end_backtick, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2155), 1, - sym__block_close, - ACTIONS(2157), 1, - sym__fenced_code_block_end_tilde, - STATE(932), 1, + STATE(931), 1, sym_code_fence_content, - STATE(570), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(537), 3, + STATE(531), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, @@ -48516,8 +49620,6 @@ static const uint16_t ts_small_parse_table[] = { sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48548,31 +49650,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3736] = 8, - ACTIONS(2127), 1, + [3798] = 9, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2159), 1, + ACTIONS(2143), 1, sym__block_close, - ACTIONS(2161), 1, - sym__fenced_code_block_end_backtick, - STATE(935), 1, + ACTIONS(2145), 1, + sym__fenced_code_block_end_tilde, + STATE(991), 1, sym_code_fence_content, - STATE(575), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(533), 3, + STATE(528), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48603,31 +49708,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3799] = 7, + [3865] = 7, ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2002), 1, sym__code_span_start, - ACTIONS(2163), 1, + ACTIONS(2151), 1, sym__line_ending, STATE(972), 1, sym__atx_heading_line, - ACTIONS(1998), 2, + ACTIONS(1998), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - STATE(539), 4, + STATE(533), 4, sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, aux_sym__line_repeat1, - ACTIONS(1994), 36, + ACTIONS(1994), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -48655,41 +49762,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [3860] = 12, - ACTIONS(2087), 1, + [3928] = 7, + ACTIONS(2156), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - STATE(531), 1, - aux_sym_pipe_table_row_repeat1, - STATE(623), 1, - sym__whitespace, - STATE(754), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(553), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2165), 3, + ACTIONS(2162), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(2093), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2085), 28, + ACTIONS(2153), 2, anon_sym_LBRACE, anon_sym_RBRACE, + ACTIONS(2165), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(563), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(527), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(2159), 36, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48711,32 +49810,40 @@ static const uint16_t 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, - [3930] = 6, - ACTIONS(2170), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [3990] = 7, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2173), 1, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2176), 2, + ACTIONS(2099), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(2167), 2, sym__block_close, sym__fenced_code_block_end_tilde, - STATE(570), 2, + STATE(563), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(529), 3, + STATE(527), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2167), 36, + ACTIONS(2103), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48767,39 +49874,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [3988] = 12, - ACTIONS(2181), 1, + [4052] = 7, + ACTIONS(2172), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2184), 1, - anon_sym_BSLASH, - ACTIONS(2192), 1, - sym__code_span_start, - ACTIONS(2195), 1, - sym__latex_span_start, - STATE(530), 1, - aux_sym_pipe_table_row_repeat1, - STATE(622), 1, - sym__whitespace, - STATE(837), 1, - sym_pipe_table_cell, - STATE(946), 1, - sym__pipe_table_cell_contents, - STATE(588), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2190), 3, + ACTIONS(2178), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(2187), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2178), 28, + ACTIONS(2165), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2169), 2, anon_sym_LBRACE, anon_sym_RBRACE, + STATE(564), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(529), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(2175), 36, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48821,42 +49920,40 @@ static const uint16_t 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, - [4058] = 12, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2198), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [4114] = 6, + ACTIONS(2082), 1, + sym__line_ending, + ACTIONS(2187), 1, aux_sym__commonmark_whitespace_token1, - STATE(530), 1, - aux_sym_pipe_table_row_repeat1, - STATE(568), 1, + ACTIONS(2190), 1, + sym__code_span_start, + ACTIONS(2181), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(530), 4, + sym__regular_block_content, sym__whitespace, - STATE(757), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(553), 2, sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2200), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(2093), 4, + aux_sym__line_repeat1, + ACTIONS(2184), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2085), 28, - anon_sym_LBRACE, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -48878,33 +49975,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, 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, - [4128] = 6, - ACTIONS(2205), 1, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, + sym__word, + [4174] = 7, + ACTIONS(2113), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2208), 1, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2176), 2, + ACTIONS(2111), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(2167), 2, sym__block_close, sym__fenced_code_block_end_backtick, - STATE(575), 2, + STATE(564), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(532), 3, + STATE(529), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(2202), 36, + ACTIONS(2115), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -48935,89 +50038,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [4186] = 6, - ACTIONS(2127), 1, + [4236] = 14, + ACTIONS(2195), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2129), 1, - sym__line_ending, - ACTIONS(2211), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(575), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(532), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(2125), 36, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(2197), 1, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, + ACTIONS(2199), 1, anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_LT, - anon_sym_GT, - sym__word, - [4244] = 12, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2099), 1, + ACTIONS(2207), 1, sym__latex_span_start, - ACTIONS(2198), 1, - aux_sym__commonmark_whitespace_token1, - STATE(530), 1, + STATE(549), 1, aux_sym_pipe_table_row_repeat1, - STATE(559), 1, + STATE(621), 1, sym__whitespace, - STATE(774), 1, + STATE(770), 1, sym_pipe_table_cell, STATE(795), 1, sym__pipe_table_cell_contents, + STATE(858), 1, + sym_pipe_table_row, STATE(553), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2213), 3, + ACTIONS(2203), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(2093), 4, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2085), 28, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49046,31 +50103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [4314] = 8, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2198), 1, + [4312] = 6, + ACTIONS(1996), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2217), 1, - anon_sym_BSLASH, - STATE(544), 1, - sym__last_token_punctuation, - ACTIONS(2219), 4, + ACTIONS(2002), 1, + sym__code_span_start, + ACTIONS(2213), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(543), 4, + ACTIONS(2209), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + STATE(530), 4, + sym__regular_block_content, sym__whitespace, sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2215), 32, + aux_sym__line_repeat1, + ACTIONS(2211), 37, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -49092,37 +50146,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__backslash_escape, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [4376] = 6, - ACTIONS(2110), 1, - sym__line_ending, - ACTIONS(2224), 1, + [4372] = 7, + ACTIONS(2217), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2230), 1, - sym__code_span_start, - ACTIONS(2227), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(536), 4, - sym__regular_block_content, + ACTIONS(2221), 1, + sym__line_ending, + ACTIONS(2223), 1, + sym__block_close, + ACTIONS(2215), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(566), 2, sym__whitespace, - sym__pipe_table_code_span, - aux_sym__line_repeat1, - ACTIONS(2221), 36, + aux_sym__code_line_repeat1, + STATE(537), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2219), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49143,36 +50198,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LBRACK_GT_GT, - sym__escaped_characters, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [4434] = 6, - ACTIONS(2117), 1, + [4433] = 7, + ACTIONS(2217), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2119), 1, + ACTIONS(2221), 1, sym__line_ending, - ACTIONS(2211), 2, + ACTIONS(2225), 1, sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(570), 2, + ACTIONS(2215), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(566), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(529), 3, + STATE(540), 3, sym__newline, sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(2115), 36, + aux_sym__indented_chunk_repeat1, + ACTIONS(2219), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49203,39 +50262,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [4492] = 12, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2198), 1, + [4494] = 7, + ACTIONS(2217), 1, aux_sym__commonmark_whitespace_token1, - STATE(530), 1, - aux_sym_pipe_table_row_repeat1, - STATE(565), 1, - sym__whitespace, - STATE(754), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(553), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2233), 3, + ACTIONS(2221), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(2093), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2085), 28, + ACTIONS(2227), 1, + sym__block_close, + ACTIONS(2215), 2, anon_sym_LBRACE, anon_sym_RBRACE, + STATE(566), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(539), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2219), 36, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49257,34 +50307,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, - [4562] = 6, - ACTIONS(1996), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [4555] = 7, + ACTIONS(2217), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2002), 1, - sym__code_span_start, - ACTIONS(2239), 1, + ACTIONS(2221), 1, sym__line_ending, - ACTIONS(2237), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - STATE(536), 4, - sym__regular_block_content, + ACTIONS(2229), 1, + sym__block_close, + ACTIONS(2215), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(566), 2, sym__whitespace, - sym__pipe_table_code_span, - aux_sym__line_repeat1, - ACTIONS(2235), 36, + aux_sym__code_line_repeat1, + STATE(538), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2219), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49305,39 +50360,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LBRACK_GT_GT, - sym__escaped_characters, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [4620] = 7, - ACTIONS(2244), 1, + [4616] = 7, + ACTIONS(2234), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2247), 1, - anon_sym_BSLASH, - ACTIONS(2252), 1, - sym__code_span_start, - ACTIONS(2255), 1, - sym__latex_span_start, - ACTIONS(2250), 4, + ACTIONS(2240), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(540), 4, + ACTIONS(2243), 1, + sym__block_close, + ACTIONS(2231), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(566), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2241), 32, + aux_sym__code_line_repeat1, + STATE(538), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2237), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49359,45 +50415,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__backslash_escape, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [4679] = 13, - ACTIONS(2087), 1, + [4677] = 7, + ACTIONS(2217), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2260), 1, - anon_sym_BSLASH, - ACTIONS(2262), 1, - anon_sym_PIPE, - ACTIONS(2266), 1, - sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, - STATE(556), 1, - aux_sym_pipe_table_row_repeat1, - STATE(603), 1, + ACTIONS(2221), 1, + sym__line_ending, + ACTIONS(2245), 1, + sym__block_close, + ACTIONS(2215), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(566), 2, sym__whitespace, - STATE(813), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(985), 1, - sym_pipe_table_row, - STATE(574), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2264), 4, + aux_sym__code_line_repeat1, + STATE(538), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(2219), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2258), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49419,31 +50469,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, - [4750] = 6, - ACTIONS(2272), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [4738] = 7, + ACTIONS(2217), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2274), 1, + ACTIONS(2221), 1, sym__line_ending, - ACTIONS(2276), 1, + ACTIONS(2247), 1, sym__block_close, - STATE(594), 2, + ACTIONS(2215), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(566), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(552), 3, + STATE(538), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(2270), 36, + ACTIONS(2219), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49474,29 +50532,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [4807] = 7, - ACTIONS(2097), 1, + [4799] = 12, + ACTIONS(2197), 1, + anon_sym_BSLASH, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2099), 1, + ACTIONS(2207), 1, sym__latex_span_start, - ACTIONS(2198), 1, + ACTIONS(2249), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2280), 1, - anon_sym_BSLASH, - ACTIONS(2282), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(540), 4, + STATE(551), 1, + aux_sym_pipe_table_row_repeat1, + STATE(570), 1, sym__whitespace, + STATE(757), 1, + sym_pipe_table_cell, + STATE(795), 1, + sym__pipe_table_cell_contents, + STATE(553), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2278), 32, + ACTIONS(2251), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49525,32 +50593,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [4866] = 7, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2198), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2286), 1, + [4869] = 2, + ACTIONS(2253), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2282), 4, + ACTIONS(2255), 42, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(549), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2284), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, + sym__code_span_start, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49571,34 +50630,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__backslash_escape, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [4925] = 6, - ACTIONS(2272), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2274), 1, + [4919] = 2, + ACTIONS(2257), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2259), 42, sym__line_ending, - ACTIONS(2288), 1, - sym__block_close, - STATE(594), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(2270), 36, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__html_comment, - anon_sym_LBRACE, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49619,35 +50678,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LT, - anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [4982] = 6, - ACTIONS(2272), 1, + [4969] = 8, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + ACTIONS(2249), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2274), 1, + ACTIONS(2263), 1, + anon_sym_BSLASH, + STATE(558), 1, + sym__last_token_punctuation, + ACTIONS(2265), 4, sym__line_ending, - ACTIONS(2290), 1, - sym__block_close, - STATE(594), 2, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(557), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(550), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(2270), 36, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2261), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49671,46 +50736,43 @@ static const uint16_t 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_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [5039] = 13, - ACTIONS(2087), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2260), 1, + [5031] = 12, + ACTIONS(2197), 1, anon_sym_BSLASH, - ACTIONS(2262), 1, - anon_sym_PIPE, - ACTIONS(2266), 1, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2268), 1, + ACTIONS(2207), 1, sym__latex_span_start, - STATE(556), 1, + ACTIONS(2249), 1, + aux_sym__commonmark_whitespace_token1, + STATE(551), 1, aux_sym_pipe_table_row_repeat1, - STATE(603), 1, + STATE(581), 1, sym__whitespace, - STATE(813), 1, + STATE(754), 1, sym_pipe_table_cell, - STATE(872), 1, + STATE(795), 1, sym__pipe_table_cell_contents, - STATE(941), 1, - sym_pipe_table_row, - STATE(574), 2, + STATE(553), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2267), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2258), 28, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49739,36 +50801,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5110] = 13, - ACTIONS(2087), 1, + [5101] = 12, + ACTIONS(2195), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2260), 1, + ACTIONS(2197), 1, anon_sym_BSLASH, - ACTIONS(2262), 1, - anon_sym_PIPE, - ACTIONS(2266), 1, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2268), 1, + ACTIONS(2207), 1, sym__latex_span_start, - STATE(556), 1, + STATE(541), 1, aux_sym_pipe_table_row_repeat1, - STATE(603), 1, + STATE(613), 1, sym__whitespace, - STATE(813), 1, + STATE(754), 1, sym_pipe_table_cell, - STATE(872), 1, + STATE(795), 1, sym__pipe_table_cell_contents, - STATE(986), 1, - sym_pipe_table_row, - STATE(574), 2, + STATE(553), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2269), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2258), 28, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49797,30 +50859,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5181] = 7, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2198), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2280), 1, + [5171] = 2, + ACTIONS(2271), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2292), 4, + ACTIONS(2082), 42, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(540), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2278), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, + sym__code_span_start, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49841,34 +50896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__backslash_escape, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [5240] = 6, - ACTIONS(2272), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2274), 1, + [5221] = 3, + ACTIONS(2277), 1, + sym_block_continuation, + ACTIONS(2273), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2275), 41, sym__line_ending, - ACTIONS(2294), 1, - sym__block_close, - STATE(594), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(552), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(2270), 36, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__html_comment, - anon_sym_LBRACE, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49885,39 +50942,50 @@ 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_QMARK, anon_sym_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_LT, - anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [5297] = 6, - ACTIONS(2272), 1, + [5273] = 12, + ACTIONS(2197), 1, + anon_sym_BSLASH, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + ACTIONS(2249), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2274), 1, - sym__line_ending, - ACTIONS(2296), 1, - sym__block_close, - STATE(594), 2, + STATE(551), 1, + aux_sym_pipe_table_row_repeat1, + STATE(568), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(552), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(2270), 36, + STATE(774), 1, + sym_pipe_table_cell, + STATE(795), 1, + sym__pipe_table_cell_contents, + STATE(553), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2279), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__backslash_escape, + sym__word, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49941,36 +51009,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, - anon_sym_LT, - anon_sym_GT, - sym__word, - [5354] = 6, - ACTIONS(2301), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2304), 1, + [5343] = 2, + ACTIONS(2281), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2283), 42, sym__line_ending, - ACTIONS(2307), 1, - sym__block_close, - STATE(594), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(552), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(2298), 36, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__html_comment, - anon_sym_LBRACE, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -49991,39 +51051,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LT, - anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [5411] = 7, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2198), 1, + [5393] = 12, + ACTIONS(2288), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2217), 1, + ACTIONS(2291), 1, anon_sym_BSLASH, - ACTIONS(2219), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(543), 4, + ACTIONS(2299), 1, + sym__code_span_start, + ACTIONS(2302), 1, + sym__latex_span_start, + STATE(551), 1, + aux_sym_pipe_table_row_repeat1, + STATE(620), 1, sym__whitespace, + STATE(837), 1, + sym_pipe_table_cell, + STATE(946), 1, + sym__pipe_table_cell_contents, + STATE(607), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2215), 32, + ACTIONS(2297), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2294), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2285), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50052,27 +51120,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [5470] = 6, - ACTIONS(2272), 1, + [5463] = 13, + ACTIONS(2195), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2274), 1, - sym__line_ending, + ACTIONS(2307), 1, + anon_sym_BSLASH, ACTIONS(2309), 1, - sym__block_close, - STATE(594), 2, + anon_sym_PIPE, + ACTIONS(2313), 1, + sym__code_span_start, + ACTIONS(2315), 1, + sym__latex_span_start, + STATE(578), 1, + aux_sym_pipe_table_row_repeat1, + STATE(618), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(542), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(2270), 36, + STATE(813), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(986), 1, + sym_pipe_table_row, + STATE(597), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, - anon_sym_LBRACE, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -50095,33 +51173,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, - anon_sym_LT, - anon_sym_GT, - sym__word, - [5527] = 2, - ACTIONS(2313), 2, - anon_sym_LBRACK, + [5534] = 7, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + ACTIONS(2249), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2263), 1, anon_sym_BSLASH, - ACTIONS(2311), 41, + ACTIONS(2265), 4, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(557), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2261), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__html_comment, - sym_raw_specifier, - sym__autolink, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -50142,43 +51222,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, 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_LBRACK_GT_GT, - sym__escaped_characters, + sym__backslash_escape, sym__word, - [5575] = 12, - ACTIONS(2213), 1, - sym__line_ending, - ACTIONS(2260), 1, + [5593] = 13, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2307), 1, anon_sym_BSLASH, - ACTIONS(2266), 1, + ACTIONS(2309), 1, + anon_sym_PIPE, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, ACTIONS(2315), 1, - aux_sym__commonmark_whitespace_token1, - STATE(560), 1, + sym__latex_span_start, + STATE(578), 1, aux_sym_pipe_table_row_repeat1, - STATE(583), 1, + STATE(618), 1, sym__whitespace, - STATE(816), 1, + STATE(813), 1, sym_pipe_table_cell, STATE(872), 1, sym__pipe_table_cell_contents, - STATE(574), 2, + STATE(941), 1, + sym_pipe_table_row, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2258), 28, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50207,36 +51288,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5643] = 12, - ACTIONS(2233), 1, - sym__line_ending, - ACTIONS(2260), 1, - anon_sym_BSLASH, - ACTIONS(2266), 1, - sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, - ACTIONS(2315), 1, + [5664] = 5, + ACTIONS(2320), 1, aux_sym__commonmark_whitespace_token1, - STATE(560), 1, - aux_sym_pipe_table_row_repeat1, - STATE(596), 1, + ACTIONS(2317), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(555), 2, sym__whitespace, - STATE(802), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(574), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2264), 4, + aux_sym__code_line_repeat1, + ACTIONS(2326), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2323), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2258), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -50258,39 +51326,90 @@ static const uint16_t 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, - [5711] = 12, - ACTIONS(2087), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [5719] = 5, + ACTIONS(2331), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2165), 1, + ACTIONS(2328), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(556), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2326), 3, sym__line_ending, - ACTIONS(2260), 1, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2334), 36, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__html_comment, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2266), 1, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [5774] = 7, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2268), 1, + ACTIONS(2207), 1, sym__latex_span_start, - STATE(567), 1, - aux_sym_pipe_table_row_repeat1, - STATE(618), 1, + ACTIONS(2249), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2339), 1, + anon_sym_BSLASH, + ACTIONS(2341), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(559), 4, sym__whitespace, - STATE(802), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(574), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2337), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2258), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50319,32 +51438,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5779] = 10, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, + sym__backslash_escape, + sym__word, + [5833] = 7, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2099), 1, + ACTIONS(2207), 1, sym__latex_span_start, - ACTIONS(2317), 1, - anon_sym_PIPE, - STATE(763), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(553), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2233), 3, + ACTIONS(2249), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2345), 1, + anon_sym_BSLASH, + ACTIONS(2341), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(2093), 4, + anon_sym_PIPE, + STATE(560), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2343), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2085), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50373,34 +51490,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5843] = 12, - ACTIONS(2181), 1, + sym__backslash_escape, + sym__word, + [5892] = 7, + ACTIONS(2350), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2184), 1, + ACTIONS(2353), 1, anon_sym_BSLASH, - ACTIONS(2190), 1, - sym__line_ending, - ACTIONS(2192), 1, + ACTIONS(2358), 1, sym__code_span_start, - ACTIONS(2195), 1, + ACTIONS(2361), 1, sym__latex_span_start, - STATE(560), 1, - aux_sym_pipe_table_row_repeat1, - STATE(620), 1, + ACTIONS(2356), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(559), 4, sym__whitespace, - STATE(870), 1, - sym_pipe_table_cell, - STATE(946), 1, - sym__pipe_table_cell_contents, - STATE(588), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2187), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2347), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2178), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50429,23 +51542,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5911] = 2, - ACTIONS(2321), 2, - anon_sym_LBRACK, + sym__backslash_escape, + sym__word, + [5951] = 7, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + ACTIONS(2249), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2339), 1, anon_sym_BSLASH, - ACTIONS(2319), 41, + ACTIONS(2364), 4, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(559), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2337), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__html_comment, - sym_raw_specifier, - sym__autolink, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -50466,20 +51588,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, 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_LBRACK_GT_GT, - sym__escaped_characters, + sym__backslash_escape, sym__word, - [5959] = 2, - ACTIONS(2325), 2, + [6010] = 2, + ACTIONS(2366), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2323), 41, + ACTIONS(2368), 41, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -50489,7 +51611,6 @@ static const uint16_t ts_small_parse_table[] = { sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, @@ -50508,7 +51629,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_QMARK, anon_sym_AT, @@ -50518,14 +51638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [6007] = 2, - ACTIONS(2327), 2, + [6059] = 2, + ACTIONS(2370), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2110), 41, + ACTIONS(2372), 41, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -50535,7 +51658,6 @@ static const uint16_t ts_small_parse_table[] = { sym__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, @@ -50554,7 +51676,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_QMARK, anon_sym_AT, @@ -50564,33 +51685,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [6055] = 8, - ACTIONS(2266), 1, - sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, - ACTIONS(2315), 1, + [6108] = 5, + ACTIONS(2101), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2331), 1, - anon_sym_BSLASH, - STATE(578), 1, - sym__last_token_punctuation, - ACTIONS(2219), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(576), 4, + ACTIONS(2374), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(556), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2329), 32, + aux_sym__code_line_repeat1, + ACTIONS(2378), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2376), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -50612,41 +51728,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__backslash_escape, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [6115] = 10, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2317), 1, - anon_sym_PIPE, - STATE(755), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(553), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2200), 3, + [6163] = 5, + ACTIONS(2113), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2380), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(555), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2378), 3, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(2093), 4, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2382), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2085), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -50668,86 +51778,48 @@ 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, - [6179] = 3, - ACTIONS(2337), 1, - sym_block_continuation, - ACTIONS(2335), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - ACTIONS(2333), 40, - 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__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, - anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_AT, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_LBRACK_GT_GT, - sym__escaped_characters, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [6229] = 12, - ACTIONS(2200), 1, - sym__line_ending, - ACTIONS(2260), 1, + [6218] = 13, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2307), 1, anon_sym_BSLASH, - ACTIONS(2266), 1, + ACTIONS(2309), 1, + anon_sym_PIPE, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, ACTIONS(2315), 1, - aux_sym__commonmark_whitespace_token1, - STATE(560), 1, + sym__latex_span_start, + STATE(578), 1, aux_sym_pipe_table_row_repeat1, - STATE(598), 1, + STATE(618), 1, sym__whitespace, - STATE(819), 1, + STATE(813), 1, sym_pipe_table_cell, STATE(872), 1, sym__pipe_table_cell_contents, - STATE(574), 2, + STATE(985), 1, + sym_pipe_table_row, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2258), 28, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50776,34 +51848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [6297] = 10, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2317), 1, - anon_sym_PIPE, - STATE(762), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(553), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2339), 3, + [6289] = 5, + ACTIONS(2217), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2378), 2, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(2093), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2085), 28, + sym__block_close, + ACTIONS(2384), 2, anon_sym_LBRACE, anon_sym_RBRACE, + STATE(579), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2386), 36, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -50825,34 +51885,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_TILDE, - [6361] = 8, - ACTIONS(2087), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2219), 1, anon_sym_PIPE, - ACTIONS(2343), 1, + anon_sym_TILDE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [6343] = 2, + ACTIONS(2257), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2345), 1, - sym__code_span_start, - ACTIONS(2347), 1, - sym__latex_span_start, - STATE(592), 1, - sym__last_token_punctuation, - STATE(591), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2341), 32, + ACTIONS(2259), 40, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, + sym__code_span_start, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -50873,28 +51932,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__backslash_escape, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [6420] = 4, - ACTIONS(2117), 1, - aux_sym__commonmark_whitespace_token1, - STATE(582), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2351), 3, + [6391] = 10, + ACTIONS(2197), 1, + anon_sym_BSLASH, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + ACTIONS(2388), 1, + anon_sym_PIPE, + STATE(763), 1, + sym_pipe_table_cell, + STATE(795), 1, + sym__pipe_table_cell_contents, + STATE(553), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2267), 3, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(2349), 36, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__backslash_escape, + sym__word, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50918,31 +51992,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, - anon_sym_LT, - anon_sym_GT, - sym__word, - [6471] = 2, - ACTIONS(2355), 2, + [6455] = 2, + ACTIONS(2253), 3, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2353), 40, + ACTIONS(2255), 40, 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__html_comment, sym_raw_specifier, sym__autolink, - anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, @@ -50961,6 +52028,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_QMARK, anon_sym_AT, @@ -50970,26 +52038,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, anon_sym_LBRACK_GT_GT, sym__escaped_characters, sym__word, - [6518] = 2, - ACTIONS(2359), 2, - anon_sym_LBRACK, + [6503] = 10, + ACTIONS(2197), 1, anon_sym_BSLASH, - ACTIONS(2357), 40, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + ACTIONS(2388), 1, + anon_sym_PIPE, + STATE(762), 1, + sym_pipe_table_cell, + STATE(795), 1, + sym__pipe_table_cell_contents, + STATE(553), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2390), 3, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__html_comment, - sym_raw_specifier, - sym__autolink, + sym__backslash_escape, + sym__word, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51006,46 +52087,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_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_LBRACK_GT_GT, - sym__escaped_characters, - sym__word, - [6565] = 11, - ACTIONS(2087), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2260), 1, + [6567] = 2, + ACTIONS(2281), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_BSLASH, - ACTIONS(2266), 1, - sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, - STATE(557), 1, - aux_sym_pipe_table_row_repeat1, - STATE(608), 1, - sym__whitespace, - STATE(816), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(574), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2283), 40, + sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2258), 28, - anon_sym_LBRACE, + sym__code_span_start, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51066,30 +52132,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, 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, - [6630] = 7, - ACTIONS(2266), 1, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, + sym__word, + [6615] = 8, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2331), 1, + ACTIONS(2396), 1, anon_sym_BSLASH, - ACTIONS(2219), 2, + STATE(588), 1, + sym__last_token_punctuation, + ACTIONS(2265), 2, sym__line_ending, anon_sym_PIPE, - STATE(576), 4, + STATE(587), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2329), 32, + ACTIONS(2392), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -51122,22 +52195,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [6687] = 4, - ACTIONS(2127), 1, - aux_sym__commonmark_whitespace_token1, - STATE(579), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2351), 3, + [6675] = 2, + ACTIONS(2271), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_BSLASH, + ACTIONS(2082), 40, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(2361), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, sym__html_comment, - anon_sym_LBRACE, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51158,37 +52230,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LT, - anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [6738] = 7, - ACTIONS(2266), 1, + [6723] = 12, + ACTIONS(2267), 1, + sym__line_ending, + ACTIONS(2307), 1, + anon_sym_BSLASH, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2365), 1, - anon_sym_BSLASH, - ACTIONS(2282), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(581), 4, + STATE(576), 1, + aux_sym_pipe_table_row_repeat1, + STATE(609), 1, sym__whitespace, + STATE(802), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2363), 32, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51217,34 +52297,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [6795] = 11, - ACTIONS(2087), 1, + [6791] = 12, + ACTIONS(2195), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2089), 1, + ACTIONS(2269), 1, + sym__line_ending, + ACTIONS(2307), 1, anon_sym_BSLASH, - ACTIONS(2097), 1, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2099), 1, + ACTIONS(2315), 1, sym__latex_span_start, - STATE(538), 1, + STATE(580), 1, aux_sym_pipe_table_row_repeat1, - STATE(606), 1, + STATE(623), 1, sym__whitespace, - STATE(774), 1, + STATE(802), 1, sym_pipe_table_cell, - STATE(795), 1, + STATE(872), 1, sym__pipe_table_cell_contents, - STATE(553), 2, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2093), 4, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2085), 28, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51273,26 +52353,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [6860] = 7, - ACTIONS(2266), 1, - sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, - ACTIONS(2315), 1, + [6859] = 12, + ACTIONS(2288), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2369), 1, + ACTIONS(2291), 1, anon_sym_BSLASH, - ACTIONS(2282), 2, + ACTIONS(2297), 1, sym__line_ending, - anon_sym_PIPE, - STATE(580), 4, + ACTIONS(2299), 1, + sym__code_span_start, + ACTIONS(2302), 1, + sym__latex_span_start, + STATE(576), 1, + aux_sym_pipe_table_row_repeat1, + STATE(624), 1, sym__whitespace, + STATE(870), 1, + sym_pipe_table_cell, + STATE(946), 1, + sym__pipe_table_cell_contents, + STATE(607), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2367), 32, + ACTIONS(2294), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2285), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51321,24 +52409,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [6917] = 4, - ACTIONS(2374), 1, - aux_sym__commonmark_whitespace_token1, - STATE(579), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2377), 3, + [6927] = 3, + ACTIONS(2398), 1, + sym_block_continuation, + ACTIONS(1450), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1452), 40, sym__line_ending, sym__block_close, sym__fenced_code_block_end_backtick, - ACTIONS(2371), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51369,27 +52453,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [6968] = 7, - ACTIONS(2266), 1, + [6977] = 12, + ACTIONS(2279), 1, + sym__line_ending, + ACTIONS(2307), 1, + anon_sym_BSLASH, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2365), 1, - anon_sym_BSLASH, - ACTIONS(2292), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(581), 4, + STATE(576), 1, + aux_sym_pipe_table_row_repeat1, + STATE(599), 1, sym__whitespace, + STATE(816), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2363), 32, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51418,30 +52512,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [7025] = 7, - ACTIONS(2382), 1, + [7045] = 5, + ACTIONS(2403), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2385), 1, - anon_sym_BSLASH, - ACTIONS(2388), 1, - sym__code_span_start, - ACTIONS(2391), 1, - sym__latex_span_start, - ACTIONS(2250), 2, + ACTIONS(2326), 2, sym__line_ending, - anon_sym_PIPE, - STATE(581), 4, + sym__block_close, + ACTIONS(2400), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(579), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2379), 32, + aux_sym__code_line_repeat1, + ACTIONS(2406), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51463,27 +52549,46 @@ static const uint16_t 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__backslash_escape, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [7082] = 4, - ACTIONS(2397), 1, + [7099] = 12, + ACTIONS(2251), 1, + sym__line_ending, + ACTIONS(2307), 1, + anon_sym_BSLASH, + ACTIONS(2313), 1, + sym__code_span_start, + ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, aux_sym__commonmark_whitespace_token1, - STATE(582), 2, + STATE(576), 1, + aux_sym_pipe_table_row_repeat1, + STATE(600), 1, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2377), 3, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(2394), 36, + STATE(819), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(597), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51507,40 +52612,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - anon_sym_LT, - anon_sym_GT, - sym__word, - [7133] = 10, - ACTIONS(2233), 1, - sym__line_ending, - ACTIONS(2260), 1, + [7167] = 10, + ACTIONS(2197), 1, anon_sym_BSLASH, - ACTIONS(2266), 1, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2268), 1, + ACTIONS(2207), 1, sym__latex_span_start, - ACTIONS(2400), 1, + ACTIONS(2388), 1, anon_sym_PIPE, - STATE(822), 1, + STATE(755), 1, sym_pipe_table_cell, - STATE(872), 1, + STATE(795), 1, sym__pipe_table_cell_contents, - STATE(574), 2, + STATE(553), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2251), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2258), 28, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51569,27 +52671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [7195] = 7, - ACTIONS(2250), 1, - anon_sym_PIPE, - ACTIONS(2405), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2408), 1, - anon_sym_BSLASH, - ACTIONS(2411), 1, - sym__code_span_start, - ACTIONS(2414), 1, - sym__latex_span_start, - STATE(584), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2402), 32, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [7231] = 3, + ACTIONS(2409), 1, + sym_block_continuation, + ACTIONS(1450), 2, anon_sym_LBRACE, anon_sym_RBRACE, + ACTIONS(1452), 40, + 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__html_comment, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51611,27 +52706,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__backslash_escape, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [7251] = 2, - ACTIONS(2313), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - ACTIONS(2311), 39, + [7281] = 2, + ACTIONS(2253), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(2255), 40, 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__code_span_start, sym__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, @@ -51653,36 +52750,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LBRACK_GT_GT, - sym__escaped_characters, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [7297] = 7, - ACTIONS(2087), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2292), 1, - anon_sym_PIPE, - ACTIONS(2345), 1, - sym__code_span_start, - ACTIONS(2347), 1, - sym__latex_span_start, - ACTIONS(2419), 1, + [7328] = 2, + ACTIONS(2253), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_BSLASH, - STATE(584), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2417), 32, + ACTIONS(2255), 39, + sym__soft_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, + sym__code_span_start, + sym__html_comment, + sym_raw_specifier, + sym__autolink, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51699,31 +52794,48 @@ 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_QMARK, anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__backslash_escape, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_GT_RBRACE_RBRACE, + anon_sym_LBRACK_GT_GT, + sym__escaped_characters, sym__word, - [7353] = 2, - ACTIONS(2421), 1, - sym_block_continuation, - ACTIONS(1450), 40, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, + [7375] = 11, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2197), 1, + anon_sym_BSLASH, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + STATE(545), 1, + aux_sym_pipe_table_row_repeat1, + STATE(616), 1, + sym__whitespace, + STATE(774), 1, + sym_pipe_table_cell, + STATE(795), 1, + sym__pipe_table_cell_contents, + STATE(553), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__backslash_escape, + sym__word, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51745,35 +52857,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - anon_sym_LT, - anon_sym_GT, - sym__word, - [7399] = 7, - ACTIONS(2087), 1, + [7440] = 11, + ACTIONS(2195), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2219), 1, - anon_sym_PIPE, - ACTIONS(2343), 1, + ACTIONS(2307), 1, anon_sym_BSLASH, - ACTIONS(2345), 1, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2347), 1, + ACTIONS(2315), 1, sym__latex_span_start, - STATE(591), 4, + STATE(574), 1, + aux_sym_pipe_table_row_repeat1, + STATE(611), 1, sym__whitespace, + STATE(816), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2341), 32, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51802,21 +52916,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [7455] = 4, - ACTIONS(2426), 1, + [7505] = 7, + ACTIONS(2313), 1, + sym__code_span_start, + ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2377), 2, + ACTIONS(2413), 1, + anon_sym_BSLASH, + ACTIONS(2341), 2, sym__line_ending, - sym__block_close, - STATE(589), 2, + anon_sym_PIPE, + STATE(591), 4, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2423), 36, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2411), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51840,31 +52959,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [7505] = 2, - ACTIONS(2327), 2, - anon_sym_LBRACK, + [7562] = 7, + ACTIONS(2313), 1, + sym__code_span_start, + ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2417), 1, anon_sym_BSLASH, - ACTIONS(2110), 39, + ACTIONS(2341), 2, sym__line_ending, + anon_sym_PIPE, + STATE(592), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2415), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__html_comment, - sym_raw_specifier, - sym__autolink, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51885,85 +53008,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, 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_LBRACK_GT_GT, - sym__escaped_characters, + sym__backslash_escape, sym__word, - [7551] = 7, - ACTIONS(2087), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2282), 1, - anon_sym_PIPE, - ACTIONS(2345), 1, - sym__code_span_start, - ACTIONS(2347), 1, - sym__latex_span_start, - ACTIONS(2419), 1, - anon_sym_BSLASH, - STATE(584), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2417), 32, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [7619] = 2, + ACTIONS(2253), 2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [7607] = 7, - ACTIONS(2087), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2282), 1, - anon_sym_PIPE, - ACTIONS(2345), 1, - sym__code_span_start, - ACTIONS(2347), 1, - sym__latex_span_start, - ACTIONS(2431), 1, - anon_sym_BSLASH, - STATE(586), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2429), 32, + ACTIONS(2255), 40, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -51985,27 +53049,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__backslash_escape, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [7663] = 2, - ACTIONS(2321), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - ACTIONS(2319), 39, + [7666] = 2, + ACTIONS(1506), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1508), 40, 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__code_span_start, sym__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, @@ -52027,28 +53093,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LBRACK_GT_GT, - sym__escaped_characters, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [7709] = 4, - ACTIONS(2272), 1, + [7713] = 7, + ACTIONS(2422), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2351), 2, + ACTIONS(2425), 1, + anon_sym_BSLASH, + ACTIONS(2428), 1, + sym__code_span_start, + ACTIONS(2431), 1, + sym__latex_span_start, + ACTIONS(2356), 2, sym__line_ending, - sym__block_close, - STATE(589), 2, + anon_sym_PIPE, + STATE(591), 4, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2433), 36, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2419), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52072,29 +53149,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [7759] = 2, - ACTIONS(2435), 1, - sym_block_continuation, - ACTIONS(1450), 40, + [7770] = 7, + ACTIONS(2313), 1, + sym__code_span_start, + ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2413), 1, + anon_sym_BSLASH, + ACTIONS(2364), 2, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + anon_sym_PIPE, + STATE(591), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2411), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52116,40 +53199,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [7805] = 10, - ACTIONS(2200), 1, - sym__line_ending, - ACTIONS(2260), 1, + [7827] = 8, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2265), 1, + anon_sym_PIPE, + ACTIONS(2436), 1, anon_sym_BSLASH, - ACTIONS(2266), 1, + ACTIONS(2438), 1, sym__code_span_start, - ACTIONS(2268), 1, + ACTIONS(2440), 1, sym__latex_span_start, - ACTIONS(2400), 1, - anon_sym_PIPE, - STATE(808), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(574), 2, + STATE(606), 1, + sym__last_token_punctuation, + STATE(605), 4, + sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2434), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2258), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52178,21 +53255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [7867] = 3, - ACTIONS(2439), 1, - anon_sym_BSLASH, - ACTIONS(2441), 1, - sym_block_continuation, - ACTIONS(2437), 39, + sym__backslash_escape, + sym__word, + [7886] = 2, + ACTIONS(2442), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(2326), 40, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, @@ -52215,40 +53290,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__backslash_escape, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [7915] = 10, - ACTIONS(2260), 1, - anon_sym_BSLASH, - ACTIONS(2266), 1, - sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, - ACTIONS(2339), 1, + [7933] = 3, + ACTIONS(2444), 1, + sym_block_continuation, + ACTIONS(1450), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1452), 39, sym__line_ending, - ACTIONS(2400), 1, - anon_sym_PIPE, - STATE(804), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(574), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2264), 4, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2258), 28, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52270,25 +53336,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, - [7977] = 2, - ACTIONS(2325), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - ACTIONS(2323), 39, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [7982] = 2, + ACTIONS(2442), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(2326), 40, 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__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, @@ -52310,29 +53380,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK, anon_sym_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_LBRACK_GT_GT, - sym__escaped_characters, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [8023] = 2, - ACTIONS(2443), 1, + [8029] = 7, + ACTIONS(2313), 1, + sym__code_span_start, + ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2394), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2396), 1, anon_sym_BSLASH, - ACTIONS(2250), 39, + ACTIONS(2265), 2, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(587), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2392), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52358,20 +53440,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__backslash_escape, sym__word, - [8068] = 1, - ACTIONS(2377), 40, + [8086] = 2, + ACTIONS(1506), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1508), 40, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_backtick, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, - anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, @@ -52403,21 +53485,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_LT, anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [8111] = 2, - ACTIONS(2447), 1, - anon_sym_BSLASH, - ACTIONS(2445), 39, + [8133] = 10, + ACTIONS(2267), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(2307), 1, + anon_sym_BSLASH, + ACTIONS(2313), 1, sym__code_span_start, + ACTIONS(2315), 1, sym__latex_span_start, + ACTIONS(2446), 1, + anon_sym_PIPE, + STATE(822), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(597), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2311), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52443,32 +53539,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [8156] = 9, - ACTIONS(2260), 1, + [8195] = 10, + ACTIONS(2307), 1, anon_sym_BSLASH, - ACTIONS(2266), 1, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2268), 1, + ACTIONS(2315), 1, sym__latex_span_start, - ACTIONS(2449), 1, + ACTIONS(2390), 1, + sym__line_ending, + ACTIONS(2446), 1, anon_sym_PIPE, - STATE(818), 1, + STATE(804), 1, sym_pipe_table_cell, STATE(872), 1, sym__pipe_table_cell_contents, - STATE(574), 2, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2258), 28, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52497,17 +53592,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [8215] = 1, - ACTIONS(1506), 40, - 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__html_comment, + [8257] = 7, + ACTIONS(2356), 1, + anon_sym_PIPE, + ACTIONS(2451), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2454), 1, + anon_sym_BSLASH, + ACTIONS(2457), 1, + sym__code_span_start, + ACTIONS(2460), 1, + sym__latex_span_start, + STATE(601), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2448), 32, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52529,25 +53634,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [8258] = 2, - ACTIONS(2451), 1, + [8313] = 3, + ACTIONS(2465), 1, + anon_sym_BSLASH, + ACTIONS(2467), 1, sym_block_continuation, - ACTIONS(1450), 39, + ACTIONS(2463), 39, sym__line_ending, - sym__block_close, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__code_span_start, + sym__latex_span_start, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -52572,40 +53678,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_LT, - anon_sym_GT, - sym__word, - [8303] = 9, - ACTIONS(2089), 1, - anon_sym_BSLASH, - ACTIONS(2097), 1, - sym__code_span_start, - ACTIONS(2099), 1, - sym__latex_span_start, - ACTIONS(2317), 1, - anon_sym_PIPE, - STATE(763), 1, - sym_pipe_table_cell, - STATE(795), 1, - sym__pipe_table_cell_contents, - STATE(553), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2093), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2085), 28, + [8361] = 2, + ACTIONS(2253), 2, anon_sym_LBRACE, anon_sym_RBRACE, + ACTIONS(2255), 39, + sym__line_ending, + sym__block_close, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__html_comment, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52627,22 +53718,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, - [8362] = 1, - ACTIONS(2377), 40, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, + sym__word, + [8407] = 7, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2364), 1, + anon_sym_PIPE, + ACTIONS(2438), 1, + sym__code_span_start, + ACTIONS(2440), 1, + sym__latex_span_start, + ACTIONS(2471), 1, + anon_sym_BSLASH, + STATE(601), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2469), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52664,38 +53772,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [8405] = 9, - ACTIONS(2260), 1, - anon_sym_BSLASH, - ACTIONS(2266), 1, + [8463] = 7, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2438), 1, sym__code_span_start, - ACTIONS(2268), 1, + ACTIONS(2440), 1, sym__latex_span_start, - ACTIONS(2400), 1, - anon_sym_PIPE, - STATE(822), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(574), 2, + ACTIONS(2471), 1, + anon_sym_BSLASH, + STATE(601), 4, + sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2264), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2469), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2258), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52724,17 +53826,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [8464] = 1, - ACTIONS(1506), 40, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + sym__backslash_escape, + sym__word, + [8519] = 7, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2438), 1, + sym__code_span_start, + ACTIONS(2440), 1, + sym__latex_span_start, + ACTIONS(2475), 1, + anon_sym_BSLASH, + STATE(604), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2473), 32, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52756,30 +53870,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [8507] = 2, - ACTIONS(2325), 1, + [8575] = 7, + ACTIONS(2195), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2265), 1, + anon_sym_PIPE, + ACTIONS(2436), 1, anon_sym_BSLASH, - ACTIONS(2323), 39, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(2438), 1, sym__code_span_start, + ACTIONS(2440), 1, sym__latex_span_start, + STATE(605), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2434), 32, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52805,23 +53923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__backslash_escape, sym__word, - [8552] = 2, - ACTIONS(2313), 1, - anon_sym_BSLASH, - ACTIONS(2311), 39, + [8631] = 2, + ACTIONS(2442), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(2326), 39, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - anon_sym_LBRACE, - anon_sym_RBRACE, + sym__html_comment, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, @@ -52844,36 +53958,42 @@ static const uint16_t 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__backslash_escape, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [8597] = 9, - ACTIONS(2089), 1, + [8677] = 10, + ACTIONS(2251), 1, + sym__line_ending, + ACTIONS(2307), 1, anon_sym_BSLASH, - ACTIONS(2097), 1, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2099), 1, + ACTIONS(2315), 1, sym__latex_span_start, - ACTIONS(2453), 1, + ACTIONS(2446), 1, anon_sym_PIPE, - STATE(777), 1, + STATE(808), 1, sym_pipe_table_cell, - STATE(795), 1, + STATE(872), 1, sym__pipe_table_cell_contents, - STATE(553), 2, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2093), 4, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2085), 28, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52902,20 +54022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [8656] = 2, - ACTIONS(2321), 2, - anon_sym_LBRACK, - anon_sym_BSLASH, - ACTIONS(2319), 38, - sym__soft_line_ending, + [8739] = 2, + ACTIONS(1506), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(1508), 39, + sym__line_ending, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, sym__html_comment, - sym_raw_specifier, - sym__autolink, - anon_sym_LBRACE, - anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, @@ -52933,29 +54049,47 @@ 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_QMARK, anon_sym_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_LBRACK_GT_GT, - sym__escaped_characters, + anon_sym_LT, + anon_sym_GT, + anon_sym_LBRACE_LBRACE_LT, + anon_sym_RBRACE_RBRACE_GT, sym__word, - [8701] = 1, - ACTIONS(2319), 40, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, + [8785] = 9, + ACTIONS(2307), 1, + anon_sym_BSLASH, + ACTIONS(2313), 1, + sym__code_span_start, + ACTIONS(2315), 1, + sym__latex_span_start, + ACTIONS(2446), 1, + anon_sym_PIPE, + STATE(822), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(597), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -52977,24 +54111,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, - anon_sym_LT, - anon_sym_GT, - sym__word, - [8744] = 1, - ACTIONS(2319), 40, + [8844] = 2, + ACTIONS(2257), 1, + anon_sym_BSLASH, + ACTIONS(2259), 39, 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__html_comment, + sym__code_span_start, + sym__latex_span_start, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -53019,30 +54151,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [8787] = 2, - ACTIONS(2321), 1, + [8889] = 9, + ACTIONS(2197), 1, anon_sym_BSLASH, - ACTIONS(2319), 39, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(2205), 1, sym__code_span_start, + ACTIONS(2207), 1, sym__latex_span_start, + ACTIONS(2388), 1, + anon_sym_PIPE, + STATE(755), 1, + sym_pipe_table_cell, + STATE(795), 1, + sym__pipe_table_cell_contents, + STATE(553), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2201), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -53068,14 +54208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__backslash_escape, - sym__word, - [8832] = 2, - ACTIONS(2457), 1, + [8948] = 2, + ACTIONS(2253), 1, anon_sym_BSLASH, - ACTIONS(2455), 39, + ACTIONS(2255), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -53115,30 +54252,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [8877] = 9, - ACTIONS(2260), 1, + [8993] = 2, + ACTIONS(2281), 1, anon_sym_BSLASH, - ACTIONS(2266), 1, - sym__code_span_start, - ACTIONS(2268), 1, - sym__latex_span_start, - ACTIONS(2400), 1, - anon_sym_PIPE, - STATE(808), 1, - sym_pipe_table_cell, - STATE(872), 1, - sym__pipe_table_cell_contents, - STATE(574), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(2264), 4, + ACTIONS(2283), 39, + 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, - sym__word, - ACTIONS(2258), 28, + sym__code_span_start, + sym__latex_span_start, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -53164,12 +54291,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [8936] = 2, - ACTIONS(2461), 1, + sym__backslash_escape, + sym__word, + [9038] = 9, + ACTIONS(2197), 1, anon_sym_BSLASH, - ACTIONS(2459), 39, - sym__line_ending, + ACTIONS(2205), 1, + sym__code_span_start, + ACTIONS(2207), 1, + sym__latex_span_start, + ACTIONS(2388), 1, + anon_sym_PIPE, + STATE(763), 1, + sym_pipe_table_cell, + STATE(795), 1, + sym__pipe_table_cell_contents, + STATE(553), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2201), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2193), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + [9097] = 2, + ACTIONS(2479), 1, + anon_sym_BSLASH, + ACTIONS(2477), 39, + sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__display_math_state_track_marker, @@ -53208,28 +54388,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [8981] = 9, - ACTIONS(2345), 1, + [9142] = 9, + ACTIONS(2307), 1, + anon_sym_BSLASH, + ACTIONS(2313), 1, sym__code_span_start, - ACTIONS(2347), 1, + ACTIONS(2315), 1, sym__latex_span_start, - ACTIONS(2400), 1, + ACTIONS(2481), 1, anon_sym_PIPE, - ACTIONS(2465), 1, - anon_sym_BSLASH, - STATE(871), 1, + STATE(818), 1, sym_pipe_table_cell, - STATE(946), 1, + STATE(872), 1, sym__pipe_table_cell_contents, - STATE(588), 2, + STATE(597), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2467), 4, + ACTIONS(2311), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2463), 28, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53258,23 +54438,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [9040] = 5, - ACTIONS(2471), 1, - aux_sym__commonmark_whitespace_token1, - STATE(626), 1, - sym__last_token_punctuation, - ACTIONS(2473), 2, + [9201] = 2, + ACTIONS(2483), 1, + anon_sym_BSLASH, + ACTIONS(2356), 39, sym__line_ending, sym__eof, - STATE(634), 2, - sym__whitespace, - aux_sym__caption_line_repeat1, - ACTIONS(2469), 34, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__code_span_start, + sym__latex_span_start, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -53296,36 +54473,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__backslash_escape, sym__word, - [9091] = 9, - ACTIONS(2317), 1, + [9246] = 9, + ACTIONS(2388), 1, anon_sym_PIPE, - ACTIONS(2345), 1, + ACTIONS(2438), 1, sym__code_span_start, - ACTIONS(2347), 1, + ACTIONS(2440), 1, sym__latex_span_start, - ACTIONS(2465), 1, + ACTIONS(2487), 1, anon_sym_BSLASH, STATE(869), 1, sym_pipe_table_cell, STATE(946), 1, sym__pipe_table_cell_contents, - STATE(588), 2, + STATE(607), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2467), 4, + ACTIONS(2489), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2463), 28, + ACTIONS(2485), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53354,28 +54531,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [9150] = 9, - ACTIONS(2089), 1, + [9305] = 9, + ACTIONS(2197), 1, anon_sym_BSLASH, - ACTIONS(2097), 1, + ACTIONS(2205), 1, sym__code_span_start, - ACTIONS(2099), 1, + ACTIONS(2207), 1, sym__latex_span_start, - ACTIONS(2317), 1, + ACTIONS(2491), 1, anon_sym_PIPE, - STATE(755), 1, + STATE(777), 1, sym_pipe_table_cell, STATE(795), 1, sym__pipe_table_cell_contents, STATE(553), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(2093), 4, + ACTIONS(2201), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(2085), 28, + ACTIONS(2193), 28, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53404,10 +54581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [9209] = 2, - ACTIONS(2477), 1, + [9364] = 2, + ACTIONS(2495), 1, anon_sym_BSLASH, - ACTIONS(2475), 38, + ACTIONS(2493), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -53443,23 +54620,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__backslash_escape, sym__word, - [9253] = 2, - ACTIONS(2481), 1, + [9409] = 9, + ACTIONS(2307), 1, anon_sym_BSLASH, - ACTIONS(2479), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(2313), 1, sym__code_span_start, + ACTIONS(2315), 1, sym__latex_span_start, + ACTIONS(2446), 1, + anon_sym_PIPE, + STATE(808), 1, + sym_pipe_table_cell, + STATE(872), 1, + sym__pipe_table_cell_contents, + STATE(597), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2311), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2305), 28, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -53486,18 +54674,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, + [9468] = 9, + ACTIONS(2438), 1, + sym__code_span_start, + ACTIONS(2440), 1, + sym__latex_span_start, + ACTIONS(2446), 1, + anon_sym_PIPE, + ACTIONS(2487), 1, + anon_sym_BSLASH, + STATE(871), 1, + sym_pipe_table_cell, + STATE(946), 1, + sym__pipe_table_cell_contents, + STATE(607), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2489), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - [9297] = 4, - ACTIONS(2471), 1, + ACTIONS(2485), 28, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + [9527] = 5, + ACTIONS(2499), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2485), 2, + STATE(630), 1, + sym__last_token_punctuation, + ACTIONS(2501), 2, sym__line_ending, sym__eof, STATE(628), 2, sym__whitespace, aux_sym__caption_line_repeat1, - ACTIONS(2483), 34, + ACTIONS(2497), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -53532,13 +54770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9345] = 1, - ACTIONS(1506), 39, + [9578] = 2, + ACTIONS(2505), 1, + anon_sym_BSLASH, + ACTIONS(2503), 39, sym__line_ending, - sym__block_close, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__code_span_start, + sym__latex_span_start, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -53563,31 +54805,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, - anon_sym_LT, - anon_sym_GT, + sym__backslash_escape, sym__word, - [9387] = 4, - ACTIONS(2471), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2489), 2, + [9623] = 2, + ACTIONS(2509), 1, + anon_sym_BSLASH, + ACTIONS(2507), 38, sym__line_ending, sym__eof, - STATE(632), 2, - sym__whitespace, - aux_sym__caption_line_repeat1, - ACTIONS(2487), 34, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__html_comment, + sym__code_span_start, + sym__latex_span_start, anon_sym_LBRACE, anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -53609,24 +54848,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__backslash_escape, sym__word, - [9435] = 1, - ACTIONS(2377), 39, + [9667] = 4, + ACTIONS(2499), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2513), 2, sym__line_ending, - sym__block_close, + sym__eof, + STATE(634), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2511), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -53655,13 +54898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_LT, - anon_sym_GT, sym__word, - [9477] = 2, - ACTIONS(2491), 1, + [9715] = 2, + ACTIONS(2515), 1, anon_sym_BSLASH, - ACTIONS(2190), 38, + ACTIONS(2297), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -53700,16 +54941,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [9521] = 4, - ACTIONS(2471), 1, + [9759] = 4, + ACTIONS(2499), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2473), 2, + ACTIONS(2513), 2, sym__line_ending, sym__eof, - STATE(634), 2, + STATE(633), 2, sym__whitespace, aux_sym__caption_line_repeat1, - ACTIONS(2469), 34, + ACTIONS(2517), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -53744,16 +54985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9569] = 4, - ACTIONS(2496), 1, + [9807] = 4, + ACTIONS(2499), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2499), 2, + ACTIONS(2501), 2, sym__line_ending, sym__eof, - STATE(632), 2, + STATE(628), 2, sym__whitespace, aux_sym__caption_line_repeat1, - ACTIONS(2493), 34, + ACTIONS(2497), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -53788,10 +55029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9617] = 2, - ACTIONS(2501), 1, + [9855] = 2, + ACTIONS(2521), 1, anon_sym_BSLASH, - ACTIONS(2165), 38, + ACTIONS(2519), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -53830,16 +55071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [9661] = 4, - ACTIONS(2471), 1, + [9899] = 4, + ACTIONS(2499), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2485), 2, + ACTIONS(2523), 2, sym__line_ending, sym__eof, - STATE(632), 2, + STATE(634), 2, sym__whitespace, aux_sym__caption_line_repeat1, - ACTIONS(2487), 34, + ACTIONS(2511), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -53874,16 +55115,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9709] = 1, - ACTIONS(2319), 39, + [9947] = 4, + ACTIONS(2528), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2531), 2, sym__line_ending, - sym__block_close, + sym__eof, + STATE(634), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2525), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym__commonmark_whitespace_token1, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, @@ -53912,13 +55158,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_LT, - anon_sym_GT, sym__word, - [9751] = 2, - ACTIONS(2447), 1, + [9995] = 2, + ACTIONS(2533), 1, + anon_sym_BSLASH, + ACTIONS(2269), 38, + 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__latex_span_start, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + sym__backslash_escape, + sym__word, + [10039] = 2, + ACTIONS(2495), 1, anon_sym_BSLASH, - ACTIONS(2445), 37, + ACTIONS(2493), 37, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -53956,10 +55242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [9794] = 2, - ACTIONS(2321), 1, + [10082] = 2, + ACTIONS(2253), 1, anon_sym_BSLASH, - ACTIONS(2319), 37, + ACTIONS(2255), 37, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -53997,10 +55283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [9837] = 2, - ACTIONS(2313), 1, + [10125] = 2, + ACTIONS(2281), 1, anon_sym_BSLASH, - ACTIONS(2311), 37, + ACTIONS(2283), 37, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -54038,10 +55324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [9880] = 2, - ACTIONS(2461), 1, + [10168] = 2, + ACTIONS(2505), 1, anon_sym_BSLASH, - ACTIONS(2459), 37, + ACTIONS(2503), 37, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -54079,10 +55365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [9923] = 2, - ACTIONS(2325), 1, + [10211] = 2, + ACTIONS(2257), 1, anon_sym_BSLASH, - ACTIONS(2323), 37, + ACTIONS(2259), 37, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -54120,10 +55406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [9966] = 2, - ACTIONS(2443), 1, + [10254] = 2, + ACTIONS(2483), 1, anon_sym_BSLASH, - ACTIONS(2250), 37, + ACTIONS(2356), 37, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -54161,15 +55447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [10009] = 4, - ACTIONS(2505), 1, + [10297] = 4, + ACTIONS(2537), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2507), 1, + ACTIONS(2539), 1, sym__latex_span_close, STATE(660), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2503), 33, + ACTIONS(2535), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54203,15 +55489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10055] = 4, - ACTIONS(2511), 1, + [10343] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2513), 1, + ACTIONS(2545), 1, sym__code_span_close, STATE(647), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2509), 33, + ACTIONS(2541), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54245,10 +55531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10101] = 2, - ACTIONS(2491), 1, + [10389] = 2, + ACTIONS(2515), 1, anon_sym_BSLASH, - ACTIONS(2190), 36, + ACTIONS(2297), 36, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -54285,15 +55571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [10143] = 4, - ACTIONS(2505), 1, + [10431] = 4, + ACTIONS(2537), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2517), 1, + ACTIONS(2549), 1, sym__latex_span_close, STATE(650), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2515), 33, + ACTIONS(2547), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54327,8 +55613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10189] = 1, - ACTIONS(2499), 37, + [10477] = 1, + ACTIONS(2531), 37, sym__line_ending, sym__eof, sym__display_math_state_track_marker, @@ -54366,15 +55652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10229] = 4, - ACTIONS(2511), 1, + [10517] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2521), 1, + ACTIONS(2553), 1, sym__code_span_close, STATE(652), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2519), 33, + ACTIONS(2551), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54408,15 +55694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10275] = 4, - ACTIONS(2511), 1, + [10563] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2523), 1, + ACTIONS(2555), 1, sym__code_span_close, STATE(652), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2519), 33, + ACTIONS(2551), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54450,15 +55736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10321] = 4, - ACTIONS(2528), 1, + [10609] = 4, + ACTIONS(2560), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2531), 1, + ACTIONS(2563), 1, sym__latex_span_close, STATE(649), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2525), 33, + ACTIONS(2557), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54492,15 +55778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10367] = 4, - ACTIONS(2505), 1, + [10655] = 4, + ACTIONS(2537), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2535), 1, + ACTIONS(2567), 1, sym__latex_span_close, STATE(649), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2533), 33, + ACTIONS(2565), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54534,10 +55820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10413] = 2, - ACTIONS(2443), 1, + [10701] = 2, + ACTIONS(2483), 1, anon_sym_BSLASH, - ACTIONS(2250), 36, + ACTIONS(2356), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -54574,15 +55860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [10455] = 4, - ACTIONS(2531), 1, + [10743] = 4, + ACTIONS(2563), 1, sym__code_span_close, - ACTIONS(2540), 1, + ACTIONS(2572), 1, aux_sym__commonmark_whitespace_token1, STATE(652), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2537), 33, + ACTIONS(2569), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54616,18 +55902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10501] = 5, - ACTIONS(2545), 1, + [10789] = 5, + ACTIONS(2577), 1, anon_sym_SQUOTE, - ACTIONS(2547), 1, + ACTIONS(2579), 1, anon_sym_BSLASH, - ACTIONS(2549), 1, + ACTIONS(2581), 1, sym__soft_line_ending, STATE(661), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(2543), 31, + ACTIONS(2575), 31, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -54659,10 +55945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10549] = 2, - ACTIONS(2461), 1, + [10837] = 2, + ACTIONS(2505), 1, anon_sym_BSLASH, - ACTIONS(2459), 36, + ACTIONS(2503), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -54699,15 +55985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [10591] = 4, - ACTIONS(2511), 1, + [10879] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2553), 1, + ACTIONS(2585), 1, sym__code_span_close, STATE(657), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2551), 33, + ACTIONS(2583), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54741,8 +56027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10637] = 1, - ACTIONS(2319), 37, + [10925] = 1, + ACTIONS(2255), 37, sym__line_ending, sym__eof, sym__display_math_state_track_marker, @@ -54780,15 +56066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10677] = 4, - ACTIONS(2511), 1, + [10965] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2555), 1, + ACTIONS(2587), 1, sym__code_span_close, STATE(652), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2519), 33, + ACTIONS(2551), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54822,15 +56108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10723] = 4, - ACTIONS(2505), 1, + [11011] = 4, + ACTIONS(2537), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2559), 1, + ACTIONS(2591), 1, sym__latex_span_close, STATE(674), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2557), 33, + ACTIONS(2589), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54864,18 +56150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10769] = 5, - ACTIONS(2549), 1, + [11057] = 5, + ACTIONS(2581), 1, sym__soft_line_ending, - ACTIONS(2563), 1, + ACTIONS(2595), 1, anon_sym_SQUOTE, - ACTIONS(2565), 1, + ACTIONS(2597), 1, anon_sym_BSLASH, STATE(653), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(2561), 31, + ACTIONS(2593), 31, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -54907,15 +56193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10817] = 4, - ACTIONS(2505), 1, + [11105] = 4, + ACTIONS(2537), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2567), 1, + ACTIONS(2599), 1, sym__latex_span_close, STATE(649), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2533), 33, + ACTIONS(2565), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -54949,18 +56235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10863] = 5, - ACTIONS(2572), 1, + [11151] = 5, + ACTIONS(2604), 1, anon_sym_SQUOTE, - ACTIONS(2574), 1, + ACTIONS(2606), 1, anon_sym_BSLASH, - ACTIONS(2577), 1, + ACTIONS(2609), 1, sym__soft_line_ending, STATE(661), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(2569), 31, + ACTIONS(2601), 31, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -54992,15 +56278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10911] = 4, - ACTIONS(2511), 1, + [11199] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2582), 1, + ACTIONS(2614), 1, sym__code_span_close, STATE(648), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2580), 33, + ACTIONS(2612), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55034,10 +56320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [10957] = 2, - ACTIONS(2325), 1, + [11245] = 2, + ACTIONS(2257), 1, anon_sym_BSLASH, - ACTIONS(2323), 36, + ACTIONS(2259), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -55074,18 +56360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [10999] = 5, - ACTIONS(2545), 1, + [11287] = 5, + ACTIONS(2577), 1, anon_sym_DQUOTE, - ACTIONS(2586), 1, + ACTIONS(2618), 1, anon_sym_BSLASH, - ACTIONS(2588), 1, + ACTIONS(2620), 1, sym__soft_line_ending, STATE(675), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(2584), 31, + ACTIONS(2616), 31, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -55117,15 +56403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [11047] = 4, - ACTIONS(2511), 1, + [11335] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, sym__code_span_close, STATE(667), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2590), 33, + ACTIONS(2622), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55159,10 +56445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11093] = 2, - ACTIONS(2313), 1, + [11381] = 2, + ACTIONS(2281), 1, anon_sym_BSLASH, - ACTIONS(2311), 36, + ACTIONS(2283), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -55199,15 +56485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [11135] = 4, - ACTIONS(2511), 1, + [11423] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2594), 1, + ACTIONS(2626), 1, sym__code_span_close, STATE(652), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2519), 33, + ACTIONS(2551), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55241,15 +56527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11181] = 4, - ACTIONS(2511), 1, + [11469] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2598), 1, + ACTIONS(2630), 1, sym__code_span_close, STATE(670), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2596), 33, + ACTIONS(2628), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55283,10 +56569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11227] = 2, - ACTIONS(2321), 1, + [11515] = 2, + ACTIONS(2253), 1, anon_sym_BSLASH, - ACTIONS(2319), 36, + ACTIONS(2255), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -55323,15 +56609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [11269] = 4, - ACTIONS(2511), 1, + [11557] = 4, + ACTIONS(2543), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2600), 1, + ACTIONS(2632), 1, sym__code_span_close, STATE(652), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2519), 33, + ACTIONS(2551), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55365,10 +56651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11315] = 2, - ACTIONS(2501), 1, + [11603] = 2, + ACTIONS(2533), 1, anon_sym_BSLASH, - ACTIONS(2165), 36, + ACTIONS(2269), 36, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -55405,10 +56691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [11357] = 2, - ACTIONS(2477), 1, + [11645] = 2, + ACTIONS(2521), 1, anon_sym_BSLASH, - ACTIONS(2475), 36, + ACTIONS(2519), 36, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -55445,10 +56731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [11399] = 2, - ACTIONS(2481), 1, + [11687] = 2, + ACTIONS(2509), 1, anon_sym_BSLASH, - ACTIONS(2479), 36, + ACTIONS(2507), 36, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -55485,15 +56771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [11441] = 4, - ACTIONS(2505), 1, + [11729] = 4, + ACTIONS(2537), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2602), 1, + ACTIONS(2634), 1, sym__latex_span_close, STATE(649), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2533), 33, + ACTIONS(2565), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55527,18 +56813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11487] = 5, - ACTIONS(2607), 1, + [11775] = 5, + ACTIONS(2639), 1, anon_sym_DQUOTE, - ACTIONS(2609), 1, + ACTIONS(2641), 1, anon_sym_BSLASH, - ACTIONS(2612), 1, + ACTIONS(2644), 1, sym__soft_line_ending, STATE(675), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(2604), 31, + ACTIONS(2636), 31, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -55570,18 +56856,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [11535] = 5, - ACTIONS(2563), 1, + [11823] = 5, + ACTIONS(2595), 1, anon_sym_DQUOTE, - ACTIONS(2588), 1, + ACTIONS(2620), 1, sym__soft_line_ending, - ACTIONS(2617), 1, + ACTIONS(2649), 1, anon_sym_BSLASH, STATE(664), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(2615), 31, + ACTIONS(2647), 31, anon_sym_LBRACE, anon_sym_RBRACE, aux_sym__commonmark_whitespace_token1, @@ -55613,10 +56899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [11583] = 2, - ACTIONS(2447), 1, + [11871] = 2, + ACTIONS(2495), 1, anon_sym_BSLASH, - ACTIONS(2445), 36, + ACTIONS(2493), 36, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -55653,15 +56939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym__backslash_escape, sym__word, - [11625] = 3, + [11913] = 3, STATE(839), 1, sym__caption_line, - ACTIONS(2621), 4, + ACTIONS(2653), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym__word, - ACTIONS(2619), 30, + ACTIONS(2651), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55692,12 +56978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [11667] = 3, - ACTIONS(2335), 1, + [11955] = 3, + ACTIONS(2273), 1, anon_sym_BSLASH, - ACTIONS(2623), 1, + ACTIONS(2655), 1, sym_block_continuation, - ACTIONS(2333), 33, + ACTIONS(2275), 33, sym__soft_line_ending, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55731,8 +57017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11709] = 1, - ACTIONS(2531), 35, + [11997] = 1, + ACTIONS(2563), 35, sym__code_span_close, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55768,12 +57054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11747] = 3, - ACTIONS(2335), 1, + [12035] = 3, + ACTIONS(2273), 1, anon_sym_BSLASH, - ACTIONS(2625), 1, + ACTIONS(2657), 1, sym_block_continuation, - ACTIONS(2333), 33, + ACTIONS(2275), 33, sym__soft_line_ending, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55807,8 +57093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [11789] = 1, - ACTIONS(2531), 35, + [12077] = 1, + ACTIONS(2563), 35, sym__latex_span_close, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55844,15 +57130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11827] = 3, + [12115] = 3, STATE(874), 1, sym__caption_line, - ACTIONS(2621), 4, + ACTIONS(2653), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym__word, - ACTIONS(2619), 30, + ACTIONS(2651), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55883,8 +57169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [11869] = 1, - ACTIONS(2319), 35, + [12157] = 1, + ACTIONS(2255), 35, sym__latex_span_close, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55920,8 +57206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11907] = 1, - ACTIONS(2319), 35, + [12195] = 1, + ACTIONS(2255), 35, sym__code_span_close, anon_sym_LBRACE, anon_sym_RBRACE, @@ -55957,15 +57243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym__word, - [11945] = 3, + [12233] = 3, STATE(873), 1, sym__caption_line, - ACTIONS(2621), 4, + ACTIONS(2653), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, sym__word, - ACTIONS(2619), 30, + ACTIONS(2651), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -55996,10 +57282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [11987] = 2, - ACTIONS(2627), 1, + [12275] = 2, + ACTIONS(2659), 1, anon_sym_BSLASH, - ACTIONS(2572), 33, + ACTIONS(2604), 33, sym__soft_line_ending, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56033,10 +57319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [12026] = 2, - ACTIONS(2629), 1, + [12314] = 2, + ACTIONS(2661), 1, anon_sym_BSLASH, - ACTIONS(2607), 33, + ACTIONS(2639), 33, sym__soft_line_ending, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56070,10 +57356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [12065] = 2, - ACTIONS(2359), 1, + [12353] = 2, + ACTIONS(2370), 1, anon_sym_BSLASH, - ACTIONS(2357), 33, + ACTIONS(2372), 33, sym__soft_line_ending, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56107,10 +57393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [12104] = 2, - ACTIONS(2359), 1, + [12392] = 2, + ACTIONS(2370), 1, anon_sym_BSLASH, - ACTIONS(2357), 33, + ACTIONS(2372), 33, sym__soft_line_ending, anon_sym_LBRACE, anon_sym_RBRACE, @@ -56144,8 +57430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [12143] = 1, - ACTIONS(2319), 34, + [12431] = 1, + ACTIONS(2255), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__html_comment, @@ -56180,7 +57466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [12180] = 15, + [12468] = 15, ACTIONS(19), 1, sym_atx_h1_marker, ACTIONS(21), 1, @@ -56193,7 +57479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(29), 1, sym_atx_h6_marker, - ACTIONS(2631), 1, + ACTIONS(2663), 1, ts_builtin_sym_end, STATE(71), 1, sym__atx_heading1, @@ -56217,7 +57503,7 @@ static const uint16_t ts_small_parse_table[] = { sym__section4, sym__section5, sym__section6, - [12232] = 15, + [12520] = 15, ACTIONS(19), 1, sym_atx_h1_marker, ACTIONS(21), 1, @@ -56230,7 +57516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(29), 1, sym_atx_h6_marker, - ACTIONS(2633), 1, + ACTIONS(2665), 1, ts_builtin_sym_end, STATE(71), 1, sym__atx_heading1, @@ -56254,7 +57540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__section4, sym__section5, sym__section6, - [12284] = 15, + [12572] = 15, ACTIONS(19), 1, sym_atx_h1_marker, ACTIONS(21), 1, @@ -56291,7 +57577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__section4, sym__section5, sym__section6, - [12336] = 15, + [12624] = 15, ACTIONS(19), 1, sym_atx_h1_marker, ACTIONS(21), 1, @@ -56304,7 +57590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(29), 1, sym_atx_h6_marker, - ACTIONS(2635), 1, + ACTIONS(2667), 1, ts_builtin_sym_end, STATE(71), 1, sym__atx_heading1, @@ -56328,20 +57614,20 @@ static const uint16_t ts_small_parse_table[] = { sym__section4, sym__section5, sym__section6, - [12388] = 15, - ACTIONS(2637), 1, + [12676] = 15, + ACTIONS(2669), 1, ts_builtin_sym_end, - ACTIONS(2639), 1, + ACTIONS(2671), 1, sym_atx_h1_marker, - ACTIONS(2642), 1, + ACTIONS(2674), 1, sym_atx_h2_marker, - ACTIONS(2645), 1, + ACTIONS(2677), 1, sym_atx_h3_marker, - ACTIONS(2648), 1, + ACTIONS(2680), 1, sym_atx_h4_marker, - ACTIONS(2651), 1, + ACTIONS(2683), 1, sym_atx_h5_marker, - ACTIONS(2654), 1, + ACTIONS(2686), 1, sym_atx_h6_marker, STATE(71), 1, sym__atx_heading1, @@ -56365,22 +57651,22 @@ static const uint16_t ts_small_parse_table[] = { sym__section4, sym__section5, sym__section6, - [12440] = 14, - ACTIONS(2009), 1, - anon_sym_RBRACE, + [12728] = 14, ACTIONS(2011), 1, - sym_commonmark_name, + anon_sym_RBRACE, ACTIONS(2013), 1, - aux_sym__commonmark_whitespace_token1, + sym_commonmark_name, ACTIONS(2015), 1, - sym_id_specifier, + aux_sym__commonmark_whitespace_token1, ACTIONS(2017), 1, + sym_id_specifier, + ACTIONS(2019), 1, sym_class_specifier, - ACTIONS(2021), 1, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2025), 1, + ACTIONS(2027), 1, sym_raw_specifier, - ACTIONS(2657), 1, + ACTIONS(2689), 1, anon_sym_LBRACE, STATE(706), 1, sym__commonmark_whitespace, @@ -56394,16 +57680,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_attribute_repeat3, STATE(1029), 1, sym_language_attribute, - [12483] = 8, - ACTIONS(2129), 1, + [12771] = 8, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2693), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(511), 1, + STATE(510), 1, sym__newline, STATE(717), 1, sym__whitespace, @@ -56414,16 +57700,16 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12511] = 8, - ACTIONS(2119), 1, + [12799] = 8, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2693), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(512), 1, + STATE(511), 1, sym__newline, STATE(718), 1, sym__whitespace, @@ -56434,14 +57720,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12539] = 8, - ACTIONS(2129), 1, + [12827] = 8, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2693), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, STATE(520), 1, sym__newline, @@ -56454,16 +57740,16 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12567] = 8, - ACTIONS(2119), 1, + [12855] = 8, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2693), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(513), 1, + STATE(517), 1, sym__newline, STATE(712), 1, sym__whitespace, @@ -56474,14 +57760,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12595] = 8, - ACTIONS(2119), 1, + [12883] = 8, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2693), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, STATE(521), 1, sym__newline, @@ -56494,16 +57780,16 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12623] = 8, - ACTIONS(2129), 1, + [12911] = 8, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2661), 1, + ACTIONS(2693), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(518), 1, + STATE(522), 1, sym__newline, STATE(714), 1, sym__whitespace, @@ -56514,12 +57800,12 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12651] = 8, - ACTIONS(2665), 1, + [12939] = 8, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2667), 1, + ACTIONS(2699), 1, anon_sym_DASH, - ACTIONS(2669), 1, + ACTIONS(2701), 1, anon_sym_COLON, STATE(707), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -56529,16 +57815,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(756), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2671), 3, + ACTIONS(2703), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12678] = 8, - ACTIONS(2665), 1, + [12966] = 8, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2667), 1, + ACTIONS(2699), 1, anon_sym_DASH, - ACTIONS(2669), 1, + ACTIONS(2701), 1, anon_sym_COLON, STATE(707), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -56548,22 +57834,22 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(769), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2673), 3, + ACTIONS(2705), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12705] = 10, - ACTIONS(2015), 1, - sym_id_specifier, + [12993] = 10, ACTIONS(2017), 1, + sym_id_specifier, + ACTIONS(2019), 1, sym_class_specifier, - ACTIONS(2021), 1, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2675), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, - ACTIONS(2679), 1, + ACTIONS(2711), 1, sym_raw_specifier, STATE(713), 1, aux_sym_commonmark_attribute_repeat1, @@ -56573,12 +57859,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [12736] = 8, - ACTIONS(2681), 1, + [13024] = 8, + ACTIONS(2713), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2684), 1, + ACTIONS(2716), 1, anon_sym_DASH, - ACTIONS(2687), 1, + ACTIONS(2719), 1, anon_sym_COLON, STATE(707), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -56588,16 +57874,16 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(867), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2690), 3, + ACTIONS(2722), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12763] = 8, - ACTIONS(2665), 1, + [13051] = 8, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2667), 1, + ACTIONS(2699), 1, anon_sym_DASH, - ACTIONS(2669), 1, + ACTIONS(2701), 1, anon_sym_COLON, STATE(707), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -56607,18 +57893,18 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(778), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2692), 3, + ACTIONS(2724), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12790] = 6, - ACTIONS(2129), 1, + [13078] = 6, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(522), 1, + STATE(524), 1, sym__newline, STATE(976), 2, sym__qmd_attribute, @@ -56627,16 +57913,16 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12812] = 9, - ACTIONS(2015), 1, - sym_id_specifier, + [13100] = 9, ACTIONS(2017), 1, + sym_id_specifier, + ACTIONS(2019), 1, sym_class_specifier, - ACTIONS(2021), 1, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2675), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, STATE(734), 1, aux_sym_commonmark_attribute_repeat2, @@ -56646,14 +57932,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [12840] = 9, - ACTIONS(2694), 1, + [13128] = 9, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2696), 1, + ACTIONS(2728), 1, anon_sym_DASH, - ACTIONS(2698), 1, + ACTIONS(2730), 1, anon_sym_COLON, - ACTIONS(2700), 1, + ACTIONS(2732), 1, anon_sym_PIPE, STATE(708), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -56665,14 +57951,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(867), 1, sym_pipe_table_delimiter_cell, - [12868] = 6, - ACTIONS(2119), 1, + [13156] = 6, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(517), 1, + STATE(516), 1, sym__newline, STATE(938), 2, sym__qmd_attribute, @@ -56681,16 +57967,16 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12890] = 9, - ACTIONS(2015), 1, - sym_id_specifier, + [13178] = 9, ACTIONS(2017), 1, + sym_id_specifier, + ACTIONS(2019), 1, sym_class_specifier, - ACTIONS(2021), 1, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, - ACTIONS(2702), 1, + ACTIONS(2734), 1, anon_sym_RBRACE, STATE(728), 1, aux_sym_commonmark_attribute_repeat2, @@ -56700,14 +57986,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [12918] = 6, - ACTIONS(2129), 1, + [13206] = 6, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(516), 1, + STATE(515), 1, sym__newline, STATE(917), 2, sym__qmd_attribute, @@ -56716,14 +58002,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12940] = 6, - ACTIONS(2119), 1, + [13228] = 6, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(525), 1, + STATE(508), 1, sym__newline, STATE(977), 2, sym__qmd_attribute, @@ -56732,14 +58018,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12962] = 6, - ACTIONS(2663), 1, + [13250] = 6, + ACTIONS(2695), 1, aux_sym_info_string_token1, - ACTIONS(2704), 1, + ACTIONS(2736), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(2738), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2708), 1, + ACTIONS(2740), 1, sym_fenced_div_note_id, STATE(954), 2, sym__qmd_attribute, @@ -56748,14 +58034,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [12984] = 6, - ACTIONS(2129), 1, + [13272] = 6, + ACTIONS(2117), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(510), 1, + STATE(509), 1, sym__newline, STATE(950), 2, sym__qmd_attribute, @@ -56764,14 +58050,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13006] = 6, - ACTIONS(2119), 1, + [13294] = 6, + ACTIONS(2105), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, - ACTIONS(2663), 1, + ACTIONS(2695), 1, aux_sym_info_string_token1, - STATE(515), 1, + STATE(514), 1, sym__newline, STATE(951), 2, sym__qmd_attribute, @@ -56780,14 +58066,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13028] = 9, - ACTIONS(2694), 1, + [13316] = 9, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2696), 1, + ACTIONS(2728), 1, anon_sym_DASH, - ACTIONS(2698), 1, + ACTIONS(2730), 1, anon_sym_COLON, - ACTIONS(2700), 1, + ACTIONS(2732), 1, anon_sym_PIPE, STATE(708), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -56799,14 +58085,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(867), 1, sym_pipe_table_delimiter_cell, - [13056] = 6, - ACTIONS(2663), 1, + [13344] = 6, + ACTIONS(2695), 1, aux_sym_info_string_token1, - ACTIONS(2704), 1, + ACTIONS(2736), 1, anon_sym_LBRACE, - ACTIONS(2710), 1, + ACTIONS(2742), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2712), 1, + ACTIONS(2744), 1, sym_fenced_div_note_id, STATE(979), 2, sym__qmd_attribute, @@ -56815,14 +58101,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13078] = 9, - ACTIONS(2694), 1, + [13366] = 9, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2696), 1, + ACTIONS(2728), 1, anon_sym_DASH, - ACTIONS(2698), 1, + ACTIONS(2730), 1, anon_sym_COLON, - ACTIONS(2700), 1, + ACTIONS(2732), 1, anon_sym_PIPE, STATE(708), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -56834,14 +58120,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(867), 1, sym_pipe_table_delimiter_cell, - [13106] = 6, - ACTIONS(2663), 1, + [13394] = 6, + ACTIONS(2695), 1, aux_sym_info_string_token1, - ACTIONS(2704), 1, + ACTIONS(2736), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, + ACTIONS(2746), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2716), 1, + ACTIONS(2748), 1, sym_fenced_div_note_id, STATE(905), 2, sym__qmd_attribute, @@ -56850,48 +58136,48 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13128] = 3, - ACTIONS(2720), 1, + [13416] = 3, + ACTIONS(2752), 1, anon_sym_DASH, STATE(723), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2718), 6, + ACTIONS(2750), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_COLON, anon_sym_PIPE, - [13143] = 4, - ACTIONS(2725), 1, + [13431] = 4, + ACTIONS(2757), 1, anon_sym_DASH, - ACTIONS(2727), 1, + ACTIONS(2759), 1, anon_sym_COLON, STATE(723), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2723), 5, + ACTIONS(2755), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [13160] = 4, - ACTIONS(2725), 1, + [13448] = 4, + ACTIONS(2757), 1, anon_sym_DASH, - ACTIONS(2731), 1, + ACTIONS(2763), 1, anon_sym_COLON, STATE(723), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2729), 5, + ACTIONS(2761), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [13177] = 5, - ACTIONS(2004), 1, + [13465] = 5, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(446), 1, sym__newline, @@ -56901,10 +58187,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13195] = 5, - ACTIONS(2004), 1, + [13483] = 5, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(450), 1, sym__newline, @@ -56914,14 +58200,14 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13213] = 7, - ACTIONS(2017), 1, + [13501] = 7, + ACTIONS(2019), 1, sym_class_specifier, - ACTIONS(2021), 1, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, - ACTIONS(2733), 1, + ACTIONS(2765), 1, anon_sym_RBRACE, STATE(789), 1, aux_sym_commonmark_attribute_repeat2, @@ -56929,10 +58215,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [13235] = 5, - ACTIONS(2004), 1, + [13523] = 5, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(454), 1, sym__newline, @@ -56942,10 +58228,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13253] = 5, - ACTIONS(2004), 1, + [13541] = 5, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(452), 1, sym__newline, @@ -56955,8 +58241,8 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13271] = 1, - ACTIONS(1680), 7, + [13559] = 1, + ACTIONS(1682), 7, sym_atx_h1_marker, sym_atx_h2_marker, sym_atx_h3_marker, @@ -56964,10 +58250,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, sym_atx_h6_marker, ts_builtin_sym_end, - [13281] = 5, - ACTIONS(2004), 1, + [13569] = 5, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(444), 1, sym__newline, @@ -56977,27 +58263,27 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13299] = 5, - ACTIONS(2667), 1, + [13587] = 5, + ACTIONS(2699), 1, anon_sym_DASH, - ACTIONS(2669), 1, + ACTIONS(2701), 1, anon_sym_COLON, STATE(725), 1, aux_sym_pipe_table_delimiter_cell_repeat1, STATE(768), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2673), 3, + ACTIONS(2705), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13317] = 7, - ACTIONS(2017), 1, + [13605] = 7, + ACTIONS(2019), 1, sym_class_specifier, - ACTIONS(2021), 1, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, - ACTIONS(2702), 1, + ACTIONS(2734), 1, anon_sym_RBRACE, STATE(782), 1, aux_sym_commonmark_attribute_repeat3, @@ -57005,10 +58291,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_attribute_repeat2, STATE(798), 1, sym__attribute, - [13339] = 5, + [13627] = 5, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(375), 1, sym__newline, @@ -57018,10 +58304,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13357] = 5, + [13645] = 5, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(377), 1, sym__newline, @@ -57031,10 +58317,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13375] = 5, + [13663] = 5, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(379), 1, sym__newline, @@ -57044,10 +58330,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13393] = 5, + [13681] = 5, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(381), 1, sym__newline, @@ -57057,10 +58343,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13411] = 5, + [13699] = 5, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(383), 1, sym__newline, @@ -57070,10 +58356,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13429] = 5, + [13717] = 5, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(385), 1, sym__newline, @@ -57083,12 +58369,12 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13447] = 7, - ACTIONS(2694), 1, + [13735] = 7, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2696), 1, + ACTIONS(2728), 1, anon_sym_DASH, - ACTIONS(2698), 1, + ACTIONS(2730), 1, anon_sym_COLON, STATE(705), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -57098,10 +58384,10 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(867), 1, sym_pipe_table_delimiter_cell, - [13469] = 5, - ACTIONS(2004), 1, + [13757] = 5, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(448), 1, sym__newline, @@ -57111,23 +58397,23 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13487] = 5, - ACTIONS(2667), 1, + [13775] = 5, + ACTIONS(2699), 1, anon_sym_DASH, - ACTIONS(2669), 1, + ACTIONS(2701), 1, anon_sym_COLON, STATE(725), 1, aux_sym_pipe_table_delimiter_cell_repeat1, STATE(775), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2735), 3, + ACTIONS(2767), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13505] = 5, - ACTIONS(2027), 1, + [13793] = 5, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(267), 1, sym__newline, @@ -57137,10 +58423,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13523] = 5, - ACTIONS(2027), 1, + [13811] = 5, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(272), 1, sym__newline, @@ -57150,10 +58436,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13541] = 5, - ACTIONS(2027), 1, + [13829] = 5, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(274), 1, sym__newline, @@ -57163,10 +58449,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13559] = 5, - ACTIONS(2027), 1, + [13847] = 5, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(280), 1, sym__newline, @@ -57176,10 +58462,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13577] = 5, - ACTIONS(2027), 1, + [13865] = 5, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(290), 1, sym__newline, @@ -57189,10 +58475,10 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13595] = 5, - ACTIONS(2027), 1, + [13883] = 5, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2659), 1, + ACTIONS(2691), 1, anon_sym_LBRACE, STATE(308), 1, sym__newline, @@ -57202,37 +58488,37 @@ static const uint16_t ts_small_parse_table[] = { sym_language_attribute, sym_raw_attribute, sym_commonmark_attribute, - [13613] = 5, - ACTIONS(2667), 1, + [13901] = 5, + ACTIONS(2699), 1, anon_sym_DASH, - ACTIONS(2669), 1, + ACTIONS(2701), 1, anon_sym_COLON, STATE(725), 1, aux_sym_pipe_table_delimiter_cell_repeat1, STATE(760), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2671), 3, + ACTIONS(2703), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13631] = 4, - ACTIONS(2739), 1, + [13919] = 4, + ACTIONS(2771), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2741), 1, + ACTIONS(2773), 1, sym_key_value_key, STATE(796), 1, sym__commonmark_whitespace, - ACTIONS(2737), 4, + ACTIONS(2769), 4, anon_sym_RBRACE, sym_commonmark_name, sym_id_specifier, sym_class_specifier, - [13647] = 7, - ACTIONS(2694), 1, + [13935] = 7, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2696), 1, + ACTIONS(2728), 1, anon_sym_DASH, - ACTIONS(2698), 1, + ACTIONS(2730), 1, anon_sym_COLON, STATE(704), 1, aux_sym_pipe_table_delimiter_row_repeat1, @@ -57242,14 +58528,14 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, STATE(867), 1, sym_pipe_table_delimiter_cell, - [13669] = 7, - ACTIONS(2017), 1, + [13957] = 7, + ACTIONS(2019), 1, sym_class_specifier, - ACTIONS(2021), 1, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2675), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, STATE(784), 1, aux_sym_commonmark_attribute_repeat3, @@ -57257,2632 +58543,2632 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_commonmark_attribute_repeat2, STATE(798), 1, sym__attribute, - [13691] = 4, - ACTIONS(2665), 1, + [13979] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2743), 1, + ACTIONS(2775), 1, anon_sym_PIPE, STATE(809), 1, sym__whitespace, - ACTIONS(2200), 3, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13706] = 4, - ACTIONS(2665), 1, + [13994] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2745), 1, + ACTIONS(2777), 1, anon_sym_PIPE, STATE(814), 1, sym__whitespace, - ACTIONS(2339), 3, + ACTIONS(2390), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13721] = 4, - ACTIONS(2665), 1, + [14009] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2747), 1, + ACTIONS(2779), 1, anon_sym_PIPE, STATE(829), 1, sym__whitespace, - ACTIONS(2673), 3, + ACTIONS(2705), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13736] = 4, - ACTIONS(2665), 1, + [14024] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2743), 1, + ACTIONS(2775), 1, anon_sym_PIPE, STATE(817), 1, sym__whitespace, - ACTIONS(2339), 3, + ACTIONS(2390), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13751] = 1, - ACTIONS(2749), 6, + [14039] = 1, + ACTIONS(2781), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, - [13760] = 4, - ACTIONS(2753), 1, + [14048] = 4, + ACTIONS(2785), 1, sym_id_specifier, - ACTIONS(2756), 1, + ACTIONS(2788), 1, sym_key_value_key, STATE(759), 1, aux_sym_commonmark_attribute_repeat1, - ACTIONS(2751), 3, + ACTIONS(2783), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [13775] = 4, - ACTIONS(2665), 1, + [14063] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2758), 1, + ACTIONS(2790), 1, anon_sym_PIPE, STATE(807), 1, sym__whitespace, - ACTIONS(2673), 3, + ACTIONS(2705), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13790] = 1, - ACTIONS(2319), 6, + [14078] = 1, + ACTIONS(2255), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_DASH, anon_sym_COLON, anon_sym_PIPE, - [13799] = 4, - ACTIONS(2665), 1, + [14087] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2745), 1, + ACTIONS(2777), 1, anon_sym_PIPE, STATE(824), 1, sym__whitespace, - ACTIONS(2760), 3, + ACTIONS(2792), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13814] = 4, - ACTIONS(2665), 1, + [14102] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2745), 1, + ACTIONS(2777), 1, anon_sym_PIPE, STATE(828), 1, sym__whitespace, - ACTIONS(2200), 3, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13829] = 6, - ACTIONS(2004), 1, + [14117] = 6, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2762), 1, + ACTIONS(2794), 1, sym__eof, - ACTIONS(2764), 1, + ACTIONS(2796), 1, sym__pipe_table_line_ending, STATE(339), 1, sym__newline, - STATE(506), 1, + STATE(532), 1, sym__pipe_table_newline, STATE(793), 1, aux_sym_pipe_table_repeat1, - [13848] = 1, - ACTIONS(2690), 6, + [14136] = 1, + ACTIONS(2722), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, - [13857] = 6, + [14145] = 6, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2764), 1, + ACTIONS(2796), 1, sym__pipe_table_line_ending, - ACTIONS(2766), 1, + ACTIONS(2798), 1, sym__eof, STATE(417), 1, sym__newline, - STATE(506), 1, + STATE(532), 1, sym__pipe_table_newline, STATE(767), 1, aux_sym_pipe_table_repeat1, - [13876] = 6, + [14164] = 6, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2764), 1, + ACTIONS(2796), 1, sym__pipe_table_line_ending, - ACTIONS(2768), 1, + ACTIONS(2800), 1, sym__eof, STATE(428), 1, sym__newline, - STATE(506), 1, + STATE(532), 1, sym__pipe_table_newline, STATE(793), 1, aux_sym_pipe_table_repeat1, - [13895] = 4, - ACTIONS(2665), 1, + [14183] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2758), 1, + ACTIONS(2790), 1, anon_sym_PIPE, STATE(810), 1, sym__whitespace, - ACTIONS(2735), 3, + ACTIONS(2767), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13910] = 4, - ACTIONS(2665), 1, + [14198] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2747), 1, + ACTIONS(2779), 1, anon_sym_PIPE, STATE(815), 1, sym__whitespace, - ACTIONS(2735), 3, + ACTIONS(2767), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13925] = 4, - ACTIONS(2665), 1, + [14213] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2743), 1, + ACTIONS(2775), 1, anon_sym_PIPE, STATE(836), 1, sym__whitespace, - ACTIONS(2213), 3, + ACTIONS(2279), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13940] = 1, - ACTIONS(2770), 6, + [14228] = 1, + ACTIONS(2802), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, - [13949] = 6, - ACTIONS(2772), 1, + [14237] = 6, + ACTIONS(2804), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2774), 1, + ACTIONS(2806), 1, aux_sym_key_value_value_token1, - ACTIONS(2776), 1, + ACTIONS(2808), 1, anon_sym_SQUOTE, - ACTIONS(2778), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, STATE(806), 1, sym__commonmark_whitespace, STATE(825), 1, sym_key_value_value, - [13968] = 6, - ACTIONS(2027), 1, + [14256] = 6, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2764), 1, + ACTIONS(2796), 1, sym__pipe_table_line_ending, - ACTIONS(2780), 1, + ACTIONS(2812), 1, sym__eof, STATE(243), 1, sym__newline, - STATE(506), 1, + STATE(532), 1, sym__pipe_table_newline, STATE(776), 1, aux_sym_pipe_table_repeat1, - [13987] = 4, - ACTIONS(2665), 1, + [14275] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2743), 1, + ACTIONS(2775), 1, anon_sym_PIPE, STATE(803), 1, sym__whitespace, - ACTIONS(2233), 3, + ACTIONS(2267), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14002] = 4, - ACTIONS(2665), 1, + [14290] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2758), 1, + ACTIONS(2790), 1, anon_sym_PIPE, STATE(830), 1, sym__whitespace, - ACTIONS(2782), 3, + ACTIONS(2814), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14017] = 6, - ACTIONS(2027), 1, + [14305] = 6, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2764), 1, + ACTIONS(2796), 1, sym__pipe_table_line_ending, - ACTIONS(2784), 1, + ACTIONS(2816), 1, sym__eof, STATE(254), 1, sym__newline, - STATE(506), 1, + STATE(532), 1, sym__pipe_table_newline, STATE(793), 1, aux_sym_pipe_table_repeat1, - [14036] = 4, - ACTIONS(2665), 1, + [14324] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2745), 1, + ACTIONS(2777), 1, anon_sym_PIPE, STATE(832), 1, sym__whitespace, - ACTIONS(2233), 3, + ACTIONS(2267), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14051] = 4, - ACTIONS(2665), 1, + [14339] = 4, + ACTIONS(2697), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2747), 1, + ACTIONS(2779), 1, anon_sym_PIPE, STATE(811), 1, sym__whitespace, - ACTIONS(2671), 3, + ACTIONS(2703), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14066] = 4, - ACTIONS(2788), 1, + [14354] = 4, + ACTIONS(2820), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2790), 1, + ACTIONS(2822), 1, sym_key_value_key, STATE(835), 1, sym__commonmark_whitespace, - ACTIONS(2786), 3, + ACTIONS(2818), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [14081] = 6, - ACTIONS(2004), 1, + [14369] = 6, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2764), 1, + ACTIONS(2796), 1, sym__pipe_table_line_ending, - ACTIONS(2792), 1, + ACTIONS(2824), 1, sym__eof, STATE(327), 1, sym__newline, - STATE(506), 1, + STATE(532), 1, sym__pipe_table_newline, STATE(764), 1, aux_sym_pipe_table_repeat1, - [14100] = 6, - ACTIONS(2774), 1, + [14388] = 6, + ACTIONS(2806), 1, aux_sym_key_value_value_token1, - ACTIONS(2776), 1, + ACTIONS(2808), 1, anon_sym_SQUOTE, - ACTIONS(2778), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, - ACTIONS(2794), 1, + ACTIONS(2826), 1, aux_sym__commonmark_whitespace_token1, STATE(827), 1, sym_key_value_value, STATE(833), 1, sym__commonmark_whitespace, - [14119] = 5, - ACTIONS(2021), 1, + [14407] = 5, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, - ACTIONS(2733), 1, + ACTIONS(2765), 1, anon_sym_RBRACE, STATE(790), 1, aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [14135] = 4, - ACTIONS(2796), 1, + [14423] = 4, + ACTIONS(2828), 1, anon_sym_DASH, - ACTIONS(2798), 1, + ACTIONS(2830), 1, anon_sym_COLON, STATE(801), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2729), 2, + ACTIONS(2761), 2, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [14149] = 5, - ACTIONS(2021), 1, + [14437] = 5, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, - ACTIONS(2702), 1, + ACTIONS(2734), 1, anon_sym_RBRACE, STATE(790), 1, aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [14165] = 5, - ACTIONS(2004), 1, + [14453] = 5, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2800), 1, + ACTIONS(2832), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2802), 1, + ACTIONS(2834), 1, sym__eof, STATE(460), 1, sym__newline, STATE(686), 1, sym__whitespace, - [14181] = 5, + [14469] = 5, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2800), 1, + ACTIONS(2832), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2804), 1, + ACTIONS(2836), 1, sym__eof, STATE(393), 1, sym__newline, STATE(683), 1, sym__whitespace, - [14197] = 1, - ACTIONS(2806), 5, + [14485] = 1, + ACTIONS(2838), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [14205] = 2, - ACTIONS(2808), 1, + [14493] = 2, + ACTIONS(2840), 1, sym_block_continuation, - ACTIONS(1450), 4, + ACTIONS(1452), 4, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, anon_sym_PIPE, - [14215] = 4, - ACTIONS(2812), 1, + [14503] = 4, + ACTIONS(2844), 1, sym_class_specifier, - ACTIONS(2815), 1, + ACTIONS(2847), 1, sym_key_value_key, STATE(789), 1, aux_sym_commonmark_attribute_repeat2, - ACTIONS(2810), 2, + ACTIONS(2842), 2, anon_sym_RBRACE, sym_commonmark_name, - [14229] = 5, - ACTIONS(2817), 1, + [14517] = 5, + ACTIONS(2849), 1, anon_sym_RBRACE, - ACTIONS(2819), 1, + ACTIONS(2851), 1, sym_commonmark_name, - ACTIONS(2822), 1, + ACTIONS(2854), 1, sym_key_value_key, STATE(790), 1, aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [14245] = 5, - ACTIONS(2021), 1, + [14533] = 5, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, - ACTIONS(2825), 1, + ACTIONS(2857), 1, anon_sym_RBRACE, STATE(790), 1, aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [14261] = 4, - ACTIONS(2796), 1, + [14549] = 4, + ACTIONS(2828), 1, anon_sym_DASH, - ACTIONS(2827), 1, + ACTIONS(2859), 1, anon_sym_COLON, STATE(801), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2723), 2, + ACTIONS(2755), 2, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [14275] = 4, - ACTIONS(2831), 1, + [14563] = 4, + ACTIONS(2863), 1, sym__pipe_table_line_ending, - STATE(506), 1, + STATE(532), 1, sym__pipe_table_newline, STATE(793), 1, aux_sym_pipe_table_repeat1, - ACTIONS(2829), 2, + ACTIONS(2861), 2, sym__line_ending, sym__eof, - [14289] = 5, - ACTIONS(2027), 1, + [14577] = 5, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2800), 1, + ACTIONS(2832), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2834), 1, + ACTIONS(2866), 1, sym__eof, STATE(212), 1, sym__newline, STATE(678), 1, sym__whitespace, - [14305] = 1, - ACTIONS(2836), 5, + [14593] = 1, + ACTIONS(2868), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [14313] = 2, - ACTIONS(2756), 1, + [14601] = 2, + ACTIONS(2788), 1, sym_key_value_key, - ACTIONS(2751), 4, + ACTIONS(2783), 4, anon_sym_RBRACE, sym_commonmark_name, sym_id_specifier, sym_class_specifier, - [14323] = 1, - ACTIONS(2838), 5, + [14611] = 1, + ACTIONS(2870), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [14331] = 4, - ACTIONS(2842), 1, + [14619] = 4, + ACTIONS(2874), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2844), 1, + ACTIONS(2876), 1, sym_key_value_key, STATE(852), 1, sym__commonmark_whitespace, - ACTIONS(2840), 2, + ACTIONS(2872), 2, anon_sym_RBRACE, sym_commonmark_name, - [14345] = 5, - ACTIONS(2696), 1, + [14633] = 5, + ACTIONS(2728), 1, anon_sym_DASH, - ACTIONS(2698), 1, + ACTIONS(2730), 1, anon_sym_COLON, - ACTIONS(2846), 1, + ACTIONS(2878), 1, anon_sym_PIPE, STATE(783), 1, aux_sym_pipe_table_delimiter_cell_repeat1, STATE(842), 1, sym_pipe_table_delimiter_cell, - [14361] = 5, - ACTIONS(2021), 1, + [14649] = 5, + ACTIONS(2023), 1, sym_key_value_key, - ACTIONS(2675), 1, + ACTIONS(2707), 1, anon_sym_RBRACE, - ACTIONS(2677), 1, + ACTIONS(2709), 1, sym_commonmark_name, STATE(790), 1, aux_sym_commonmark_attribute_repeat3, STATE(798), 1, sym__attribute, - [14377] = 3, - ACTIONS(2848), 1, + [14665] = 3, + ACTIONS(2880), 1, anon_sym_DASH, STATE(801), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2718), 3, + ACTIONS(2750), 3, aux_sym__commonmark_whitespace_token1, anon_sym_COLON, anon_sym_PIPE, - [14389] = 4, - ACTIONS(2200), 1, + [14677] = 4, + ACTIONS(2251), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2853), 1, + ACTIONS(2885), 1, anon_sym_PIPE, STATE(911), 1, sym__whitespace, - [14402] = 2, - ACTIONS(2745), 1, + [14690] = 2, + ACTIONS(2777), 1, anon_sym_PIPE, - ACTIONS(2200), 3, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14411] = 4, - ACTIONS(2760), 1, + [14699] = 4, + ACTIONS(2792), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, STATE(902), 1, sym__whitespace, - [14424] = 2, - ACTIONS(2859), 1, + [14712] = 2, + ACTIONS(2891), 1, sym_key_value_key, - ACTIONS(2857), 3, + ACTIONS(2889), 3, anon_sym_RBRACE, sym_commonmark_name, aux_sym__commonmark_whitespace_token1, - [14433] = 4, - ACTIONS(2774), 1, + [14721] = 4, + ACTIONS(2806), 1, aux_sym_key_value_value_token1, - ACTIONS(2776), 1, + ACTIONS(2808), 1, anon_sym_SQUOTE, - ACTIONS(2778), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, STATE(827), 1, sym_key_value_value, - [14446] = 2, - ACTIONS(2861), 1, + [14734] = 2, + ACTIONS(2893), 1, anon_sym_PIPE, - ACTIONS(2735), 3, + ACTIONS(2767), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14455] = 4, - ACTIONS(2339), 1, + [14743] = 4, + ACTIONS(2390), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, STATE(942), 1, sym__whitespace, - [14468] = 2, - ACTIONS(2745), 1, + [14756] = 2, + ACTIONS(2777), 1, anon_sym_PIPE, - ACTIONS(2339), 3, + ACTIONS(2390), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14477] = 2, - ACTIONS(2861), 1, + [14765] = 2, + ACTIONS(2893), 1, anon_sym_PIPE, - ACTIONS(2782), 3, + ACTIONS(2814), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14486] = 2, - ACTIONS(2758), 1, + [14774] = 2, + ACTIONS(2790), 1, anon_sym_PIPE, - ACTIONS(2673), 3, + ACTIONS(2705), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14495] = 2, - ACTIONS(2321), 1, + [14783] = 2, + ACTIONS(2253), 1, anon_sym_LBRACE, - ACTIONS(2319), 3, + ACTIONS(2255), 3, sym_fenced_div_note_id, anon_sym_LBRACE_RBRACE, aux_sym_info_string_token1, - [14504] = 4, - ACTIONS(2213), 1, + [14792] = 4, + ACTIONS(2279), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2853), 1, + ACTIONS(2885), 1, anon_sym_PIPE, STATE(899), 1, sym__whitespace, - [14517] = 2, - ACTIONS(2863), 1, + [14805] = 2, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2760), 3, + ACTIONS(2792), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14526] = 2, - ACTIONS(2758), 1, + [14814] = 2, + ACTIONS(2790), 1, anon_sym_PIPE, - ACTIONS(2782), 3, + ACTIONS(2814), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14535] = 4, - ACTIONS(2233), 1, + [14823] = 4, + ACTIONS(2267), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2853), 1, + ACTIONS(2885), 1, anon_sym_PIPE, STATE(944), 1, sym__whitespace, - [14548] = 2, - ACTIONS(2745), 1, + [14836] = 2, + ACTIONS(2777), 1, anon_sym_PIPE, - ACTIONS(2760), 3, + ACTIONS(2792), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14557] = 4, - ACTIONS(2233), 1, + [14845] = 4, + ACTIONS(2267), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, STATE(948), 1, sym__whitespace, - [14570] = 4, - ACTIONS(2339), 1, + [14858] = 4, + ACTIONS(2390), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2853), 1, + ACTIONS(2885), 1, anon_sym_PIPE, STATE(966), 1, sym__whitespace, - [14583] = 4, - ACTIONS(2865), 1, + [14871] = 4, + ACTIONS(2897), 1, anon_sym_RBRACE, - ACTIONS(2867), 1, + ACTIONS(2899), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2869), 1, + ACTIONS(2901), 1, anon_sym_EQ, STATE(1052), 1, sym__commonmark_whitespace, - [14596] = 2, - ACTIONS(2873), 1, + [14884] = 2, + ACTIONS(2905), 1, sym_key_value_key, - ACTIONS(2871), 3, + ACTIONS(2903), 3, anon_sym_RBRACE, sym_commonmark_name, aux_sym__commonmark_whitespace_token1, - [14605] = 4, - ACTIONS(2200), 1, + [14893] = 4, + ACTIONS(2251), 1, sym__line_ending, - ACTIONS(2851), 1, + ACTIONS(2883), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, STATE(896), 1, sym__whitespace, - [14618] = 2, - ACTIONS(2877), 1, + [14906] = 2, + ACTIONS(2909), 1, sym_key_value_key, - ACTIONS(2875), 3, + ACTIONS(2907), 3, anon_sym_RBRACE, sym_commonmark_name, aux_sym__commonmark_whitespace_token1, - [14627] = 2, - ACTIONS(2863), 1, + [14915] = 2, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2879), 3, + ACTIONS(2911), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14636] = 2, - ACTIONS(2883), 1, + [14924] = 2, + ACTIONS(2915), 1, sym_key_value_key, - ACTIONS(2881), 3, + ACTIONS(2913), 3, anon_sym_RBRACE, sym_commonmark_name, aux_sym__commonmark_whitespace_token1, - [14645] = 1, - ACTIONS(1506), 4, + [14933] = 1, + ACTIONS(1508), 4, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, anon_sym_PIPE, - [14652] = 2, - ACTIONS(2887), 1, + [14940] = 2, + ACTIONS(2919), 1, sym_key_value_key, - ACTIONS(2885), 3, + ACTIONS(2917), 3, anon_sym_RBRACE, sym_commonmark_name, aux_sym__commonmark_whitespace_token1, - [14661] = 2, - ACTIONS(2863), 1, + [14949] = 2, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2339), 3, + ACTIONS(2390), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14670] = 2, - ACTIONS(2758), 1, + [14958] = 2, + ACTIONS(2790), 1, anon_sym_PIPE, - ACTIONS(2735), 3, + ACTIONS(2767), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14679] = 2, - ACTIONS(2861), 1, + [14967] = 2, + ACTIONS(2893), 1, anon_sym_PIPE, - ACTIONS(2889), 3, + ACTIONS(2921), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14688] = 4, - ACTIONS(2696), 1, + [14976] = 4, + ACTIONS(2728), 1, anon_sym_DASH, - ACTIONS(2698), 1, + ACTIONS(2730), 1, anon_sym_COLON, STATE(783), 1, aux_sym_pipe_table_delimiter_cell_repeat1, STATE(842), 1, sym_pipe_table_delimiter_cell, - [14701] = 2, - ACTIONS(2863), 1, + [14989] = 2, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2200), 3, + ACTIONS(2251), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14710] = 4, - ACTIONS(2774), 1, + [14998] = 4, + ACTIONS(2806), 1, aux_sym_key_value_value_token1, - ACTIONS(2776), 1, + ACTIONS(2808), 1, anon_sym_SQUOTE, - ACTIONS(2778), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, STATE(823), 1, sym_key_value_value, - [14723] = 2, - ACTIONS(2893), 1, + [15011] = 2, + ACTIONS(2925), 1, sym_key_value_key, - ACTIONS(2891), 3, + ACTIONS(2923), 3, anon_sym_RBRACE, sym_commonmark_name, aux_sym__commonmark_whitespace_token1, - [14732] = 2, - ACTIONS(2815), 1, + [15020] = 2, + ACTIONS(2847), 1, sym_key_value_key, - ACTIONS(2810), 3, + ACTIONS(2842), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [14741] = 2, - ACTIONS(2745), 1, + [15029] = 2, + ACTIONS(2777), 1, anon_sym_PIPE, - ACTIONS(2233), 3, + ACTIONS(2267), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14750] = 3, - ACTIONS(2694), 1, + [15038] = 3, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2743), 1, + ACTIONS(2775), 1, anon_sym_PIPE, STATE(1107), 1, sym__whitespace, - [14760] = 3, + [15048] = 3, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2895), 1, + ACTIONS(2927), 1, sym__eof, STATE(311), 1, sym__newline, - [14770] = 3, - ACTIONS(2027), 1, + [15058] = 3, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2897), 1, + ACTIONS(2929), 1, sym__eof, STATE(246), 1, sym__newline, - [14780] = 3, - ACTIONS(2027), 1, + [15068] = 3, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2899), 1, + ACTIONS(2931), 1, sym__eof, STATE(302), 1, sym__newline, - [14790] = 3, - ACTIONS(2901), 1, + [15078] = 3, + ACTIONS(2933), 1, sym__line_ending, - ACTIONS(2903), 1, + ACTIONS(2935), 1, sym__eof, STATE(1011), 1, sym__newline, - [14800] = 3, - ACTIONS(2694), 1, + [15088] = 3, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2758), 1, + ACTIONS(2790), 1, anon_sym_PIPE, STATE(1014), 1, sym__whitespace, - [14810] = 3, - ACTIONS(2027), 1, + [15098] = 3, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2905), 1, + ACTIONS(2937), 1, sym__eof, STATE(190), 1, sym__newline, - [14820] = 3, - ACTIONS(2907), 1, + [15108] = 3, + ACTIONS(2939), 1, anon_sym_RBRACE, - ACTIONS(2909), 1, + ACTIONS(2941), 1, aux_sym__commonmark_whitespace_token1, STATE(1078), 1, sym__commonmark_whitespace, - [14830] = 3, - ACTIONS(2004), 1, + [15118] = 3, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2911), 1, + ACTIONS(2943), 1, sym__eof, STATE(298), 1, sym__newline, - [14840] = 3, - ACTIONS(2913), 1, + [15128] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2915), 1, + ACTIONS(2947), 1, sym__eof, STATE(1069), 1, sym__newline, - [14850] = 3, + [15138] = 3, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2917), 1, + ACTIONS(2949), 1, sym__eof, STATE(391), 1, sym__newline, - [14860] = 3, - ACTIONS(2657), 1, + [15148] = 3, + ACTIONS(2689), 1, anon_sym_LBRACE, - ACTIONS(2919), 1, + ACTIONS(2951), 1, sym_commonmark_name, STATE(1039), 1, sym_language_attribute, - [14870] = 3, - ACTIONS(2004), 1, + [15158] = 3, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2921), 1, + ACTIONS(2953), 1, sym__eof, STATE(356), 1, sym__newline, - [14880] = 3, + [15168] = 3, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2923), 1, + ACTIONS(2955), 1, sym__eof, STATE(392), 1, sym__newline, - [14890] = 3, - ACTIONS(2004), 1, + [15178] = 3, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2925), 1, + ACTIONS(2957), 1, sym__eof, STATE(458), 1, sym__newline, - [14900] = 2, - ACTIONS(2927), 1, + [15188] = 2, + ACTIONS(2959), 1, sym_key_value_key, - ACTIONS(2817), 2, + ACTIONS(2849), 2, anon_sym_RBRACE, sym_commonmark_name, - [14908] = 3, - ACTIONS(2004), 1, + [15196] = 3, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2929), 1, + ACTIONS(2961), 1, sym__eof, STATE(459), 1, sym__newline, - [14918] = 3, - ACTIONS(2867), 1, + [15206] = 3, + ACTIONS(2899), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2869), 1, + ACTIONS(2901), 1, anon_sym_EQ, STATE(1052), 1, sym__commonmark_whitespace, - [14928] = 3, - ACTIONS(2913), 1, + [15216] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2931), 1, + ACTIONS(2963), 1, sym__eof, STATE(1043), 1, sym__newline, - [14938] = 3, - ACTIONS(2933), 1, + [15226] = 3, + ACTIONS(2965), 1, anon_sym_RBRACE, - ACTIONS(2935), 1, + ACTIONS(2967), 1, aux_sym__commonmark_whitespace_token1, STATE(1071), 1, sym__commonmark_whitespace, - [14948] = 3, + [15236] = 3, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2937), 1, + ACTIONS(2969), 1, sym__eof, STATE(364), 1, sym__newline, - [14958] = 1, - ACTIONS(2829), 3, + [15246] = 1, + ACTIONS(2861), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14964] = 3, - ACTIONS(2913), 1, + [15252] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2939), 1, + ACTIONS(2971), 1, sym__eof, STATE(1015), 1, sym__newline, - [14974] = 3, - ACTIONS(2913), 1, + [15262] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2941), 1, + ACTIONS(2973), 1, sym__eof, STATE(1061), 1, sym__newline, - [14984] = 3, - ACTIONS(2913), 1, + [15272] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2943), 1, + ACTIONS(2975), 1, sym__eof, STATE(1062), 1, sym__newline, - [14994] = 3, - ACTIONS(2913), 1, - sym__line_ending, + [15282] = 3, ACTIONS(2945), 1, + sym__line_ending, + ACTIONS(2977), 1, sym__eof, STATE(1065), 1, sym__newline, - [15004] = 3, - ACTIONS(2913), 1, + [15292] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2947), 1, + ACTIONS(2979), 1, sym__eof, STATE(1066), 1, sym__newline, - [15014] = 3, - ACTIONS(2027), 1, + [15302] = 3, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2949), 1, + ACTIONS(2981), 1, sym__eof, STATE(210), 1, sym__newline, - [15024] = 3, - ACTIONS(2027), 1, + [15312] = 3, + ACTIONS(2004), 1, sym__line_ending, - ACTIONS(2951), 1, + ACTIONS(2983), 1, sym__eof, STATE(211), 1, sym__newline, - [15034] = 1, - ACTIONS(2319), 3, + [15322] = 1, + ACTIONS(2255), 3, anon_sym_DASH, anon_sym_COLON, anon_sym_PIPE, - [15040] = 3, - ACTIONS(2694), 1, + [15328] = 3, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2747), 1, + ACTIONS(2779), 1, anon_sym_PIPE, STATE(1094), 1, sym__whitespace, - [15050] = 3, - ACTIONS(2913), 1, + [15338] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2953), 1, + ACTIONS(2985), 1, sym__eof, STATE(1030), 1, sym__newline, - [15060] = 3, - ACTIONS(2694), 1, + [15348] = 3, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2745), 1, + ACTIONS(2777), 1, anon_sym_PIPE, STATE(1034), 1, sym__whitespace, - [15070] = 3, - ACTIONS(2694), 1, + [15358] = 3, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2853), 1, + ACTIONS(2885), 1, anon_sym_PIPE, STATE(1064), 1, sym__whitespace, - [15080] = 3, - ACTIONS(2694), 1, + [15368] = 3, + ACTIONS(2726), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, STATE(1016), 1, sym__whitespace, - [15090] = 1, - ACTIONS(2836), 3, + [15378] = 1, + ACTIONS(2868), 3, sym__line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [15096] = 3, - ACTIONS(2004), 1, + [15384] = 3, + ACTIONS(2006), 1, sym__line_ending, - ACTIONS(2955), 1, + ACTIONS(2987), 1, sym__eof, STATE(331), 1, sym__newline, - [15106] = 3, + [15394] = 3, ACTIONS(2000), 1, sym__line_ending, - ACTIONS(2957), 1, + ACTIONS(2989), 1, sym__eof, STATE(420), 1, sym__newline, - [15116] = 3, - ACTIONS(2913), 1, + [15404] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2959), 1, + ACTIONS(2991), 1, sym__eof, STATE(1004), 1, sym__newline, - [15126] = 3, - ACTIONS(2913), 1, + [15414] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2961), 1, + ACTIONS(2993), 1, sym__eof, STATE(1005), 1, sym__newline, - [15136] = 3, - ACTIONS(2913), 1, + [15424] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2963), 1, + ACTIONS(2995), 1, sym__eof, STATE(1007), 1, sym__newline, - [15146] = 3, - ACTIONS(2913), 1, + [15434] = 3, + ACTIONS(2945), 1, sym__line_ending, - ACTIONS(2965), 1, + ACTIONS(2997), 1, sym__eof, STATE(1008), 1, sym__newline, - [15156] = 1, - ACTIONS(2319), 3, + [15444] = 1, + ACTIONS(2255), 3, sym__line_ending, anon_sym_LBRACE, aux_sym_info_string_token1, - [15162] = 2, - ACTIONS(2913), 1, + [15450] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1097), 1, sym__newline, - [15169] = 2, - ACTIONS(2119), 1, + [15457] = 2, + ACTIONS(2105), 1, sym__line_ending, - STATE(517), 1, + STATE(516), 1, sym__newline, - [15176] = 2, + [15464] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(399), 1, sym__newline, - [15183] = 2, + [15471] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(400), 1, sym__newline, - [15190] = 2, + [15478] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(401), 1, sym__newline, - [15197] = 2, + [15485] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(402), 1, sym__newline, - [15204] = 2, + [15492] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(403), 1, sym__newline, - [15211] = 2, + [15499] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(404), 1, sym__newline, - [15218] = 2, - ACTIONS(2004), 1, + [15506] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(449), 1, sym__newline, - [15225] = 2, - ACTIONS(2131), 1, + [15513] = 2, + ACTIONS(2119), 1, sym__block_close, - ACTIONS(2133), 1, + ACTIONS(2121), 1, sym__fenced_code_block_end_backtick, - [15232] = 2, - ACTIONS(2967), 1, + [15520] = 2, + ACTIONS(2999), 1, sym__block_close, - ACTIONS(2969), 1, + ACTIONS(3001), 1, sym__fenced_code_block_end_backtick, - [15239] = 2, - ACTIONS(2131), 1, + [15527] = 2, + ACTIONS(2119), 1, sym__block_close, - ACTIONS(2133), 1, - sym__fenced_code_block_end_tilde, - [15246] = 2, ACTIONS(2121), 1, + sym__fenced_code_block_end_tilde, + [15534] = 2, + ACTIONS(2127), 1, sym__block_close, - ACTIONS(2123), 1, + ACTIONS(2129), 1, sym__fenced_code_block_end_backtick, - [15253] = 2, - ACTIONS(2967), 1, + [15541] = 2, + ACTIONS(2999), 1, sym__block_close, - ACTIONS(2969), 1, + ACTIONS(3001), 1, sym__fenced_code_block_end_tilde, - [15260] = 2, - ACTIONS(2121), 1, + [15548] = 2, + ACTIONS(2127), 1, sym__block_close, - ACTIONS(2123), 1, + ACTIONS(2129), 1, sym__fenced_code_block_end_tilde, - [15267] = 2, - ACTIONS(2004), 1, + [15555] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(469), 1, sym__newline, - [15274] = 2, - ACTIONS(2339), 1, + [15562] = 2, + ACTIONS(2390), 1, sym__line_ending, - ACTIONS(2971), 1, + ACTIONS(3003), 1, anon_sym_PIPE, - [15281] = 2, - ACTIONS(2973), 1, + [15569] = 2, + ACTIONS(3005), 1, sym__block_close, - ACTIONS(2975), 1, + ACTIONS(3007), 1, sym__fenced_code_block_end_backtick, - [15288] = 2, - ACTIONS(2973), 1, + [15576] = 2, + ACTIONS(3005), 1, sym__block_close, - ACTIONS(2975), 1, + ACTIONS(3007), 1, sym__fenced_code_block_end_tilde, - [15295] = 2, - ACTIONS(2233), 1, + [15583] = 2, + ACTIONS(2267), 1, sym__line_ending, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, - [15302] = 2, - ACTIONS(2147), 1, + [15590] = 2, + ACTIONS(2139), 1, sym__block_close, - ACTIONS(2149), 1, + ACTIONS(2141), 1, sym__fenced_code_block_end_backtick, - [15309] = 2, - ACTIONS(2913), 1, + [15597] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1033), 1, sym__newline, - [15316] = 2, - ACTIONS(2879), 1, + [15604] = 2, + ACTIONS(2911), 1, sym__line_ending, - ACTIONS(2971), 1, + ACTIONS(3003), 1, anon_sym_PIPE, - [15323] = 2, - ACTIONS(2004), 1, + [15611] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(470), 1, sym__newline, - [15330] = 2, - ACTIONS(2027), 1, + [15618] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(7), 1, sym__newline, - [15337] = 2, - ACTIONS(2027), 1, + [15625] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(8), 1, sym__newline, - [15344] = 2, - ACTIONS(2147), 1, + [15632] = 2, + ACTIONS(2139), 1, sym__block_close, - ACTIONS(2149), 1, + ACTIONS(2141), 1, sym__fenced_code_block_end_tilde, - [15351] = 2, - ACTIONS(2027), 1, + [15639] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(264), 1, sym__newline, - [15358] = 2, - ACTIONS(2027), 1, + [15646] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(268), 1, sym__newline, - [15365] = 2, - ACTIONS(2143), 1, + [15653] = 2, + ACTIONS(2131), 1, sym__block_close, - ACTIONS(2145), 1, + ACTIONS(2133), 1, sym__fenced_code_block_end_backtick, - [15372] = 2, - ACTIONS(2027), 1, + [15660] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(273), 1, sym__newline, - [15379] = 2, - ACTIONS(2339), 1, + [15667] = 2, + ACTIONS(2390), 1, sym__line_ending, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, - [15386] = 2, - ACTIONS(2027), 1, + [15674] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(275), 1, sym__newline, - [15393] = 2, - ACTIONS(2004), 1, + [15681] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(453), 1, sym__newline, - [15400] = 2, - ACTIONS(2027), 1, + [15688] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(289), 1, sym__newline, - [15407] = 2, - ACTIONS(2913), 1, + [15695] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(995), 1, sym__newline, - [15414] = 2, - ACTIONS(2027), 1, + [15702] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(299), 1, sym__newline, - [15421] = 2, - ACTIONS(2129), 1, + [15709] = 2, + ACTIONS(2117), 1, sym__line_ending, - STATE(519), 1, + STATE(518), 1, sym__newline, - [15428] = 2, - ACTIONS(2977), 1, + [15716] = 2, + ACTIONS(3009), 1, anon_sym_DASH, STATE(724), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - [15435] = 2, - ACTIONS(2979), 1, + [15723] = 2, + ACTIONS(3011), 1, aux_sym__commonmark_whitespace_token1, STATE(722), 1, sym__whitespace, - [15442] = 2, - ACTIONS(2004), 1, + [15730] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(445), 1, sym__newline, - [15449] = 2, - ACTIONS(2981), 1, + [15737] = 2, + ACTIONS(3013), 1, aux_sym__commonmark_whitespace_token1, - STATE(508), 1, + STATE(503), 1, sym__whitespace, - [15456] = 2, - ACTIONS(2027), 1, + [15744] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(222), 1, sym__newline, - [15463] = 2, - ACTIONS(2027), 1, + [15751] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(223), 1, sym__newline, - [15470] = 2, - ACTIONS(2027), 1, + [15758] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(224), 1, sym__newline, - [15477] = 2, - ACTIONS(2027), 1, + [15765] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(225), 1, sym__newline, - [15484] = 2, - ACTIONS(2027), 1, + [15772] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(226), 1, sym__newline, - [15491] = 2, - ACTIONS(2027), 1, + [15779] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(227), 1, sym__newline, - [15498] = 2, - ACTIONS(2155), 1, + [15786] = 2, + ACTIONS(2107), 1, sym__block_close, - ACTIONS(2157), 1, + ACTIONS(2109), 1, sym__fenced_code_block_end_backtick, - [15505] = 2, - ACTIONS(1450), 1, + [15793] = 2, + ACTIONS(1452), 1, sym__close_block, - ACTIONS(2983), 1, + ACTIONS(3015), 1, sym_block_continuation, - [15512] = 2, - ACTIONS(2155), 1, + [15800] = 2, + ACTIONS(2107), 1, sym__block_close, - ACTIONS(2157), 1, + ACTIONS(2109), 1, sym__fenced_code_block_end_tilde, - [15519] = 2, - ACTIONS(2159), 1, + [15807] = 2, + ACTIONS(2143), 1, sym__block_close, - ACTIONS(2161), 1, + ACTIONS(2145), 1, sym__fenced_code_block_end_backtick, - [15526] = 2, - ACTIONS(2159), 1, - sym__block_close, - ACTIONS(2161), 1, - sym__fenced_code_block_end_tilde, - [15533] = 2, + [15814] = 2, ACTIONS(2143), 1, sym__block_close, ACTIONS(2145), 1, sym__fenced_code_block_end_tilde, - [15540] = 2, - ACTIONS(1450), 1, + [15821] = 2, + ACTIONS(2131), 1, sym__block_close, - ACTIONS(2985), 1, + ACTIONS(2133), 1, + sym__fenced_code_block_end_tilde, + [15828] = 2, + ACTIONS(1452), 1, + sym__block_close, + ACTIONS(3017), 1, sym_block_continuation, - [15547] = 2, - ACTIONS(2987), 1, + [15835] = 2, + ACTIONS(3019), 1, sym__block_close, - ACTIONS(2989), 1, + ACTIONS(3021), 1, sym__fenced_code_block_end_backtick, - [15554] = 2, - ACTIONS(2979), 1, + [15842] = 2, + ACTIONS(3011), 1, aux_sym__commonmark_whitespace_token1, STATE(720), 1, sym__whitespace, - [15561] = 1, - ACTIONS(2319), 2, + [15849] = 1, + ACTIONS(2255), 2, sym__line_ending, anon_sym_PIPE, - [15566] = 2, - ACTIONS(2119), 1, + [15854] = 2, + ACTIONS(2105), 1, sym__line_ending, STATE(523), 1, sym__newline, - [15573] = 2, - ACTIONS(2913), 1, + [15861] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1103), 1, sym__newline, - [15580] = 2, - ACTIONS(2004), 1, + [15868] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(447), 1, sym__newline, - [15587] = 2, - ACTIONS(2991), 1, + [15875] = 2, + ACTIONS(3023), 1, sym__line_ending, STATE(711), 1, sym__newline, - [15594] = 2, - ACTIONS(2760), 1, + [15882] = 2, + ACTIONS(2792), 1, sym__line_ending, - ACTIONS(2971), 1, + ACTIONS(3003), 1, anon_sym_PIPE, - [15601] = 2, - ACTIONS(2981), 1, + [15889] = 2, + ACTIONS(3013), 1, aux_sym__commonmark_whitespace_token1, - STATE(504), 1, + STATE(501), 1, sym__whitespace, - [15608] = 2, - ACTIONS(2200), 1, + [15896] = 2, + ACTIONS(2251), 1, sym__line_ending, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, - [15615] = 2, - ACTIONS(2129), 1, + [15903] = 2, + ACTIONS(2117), 1, sym__line_ending, - STATE(510), 1, + STATE(509), 1, sym__newline, - [15622] = 1, - ACTIONS(2836), 2, + [15910] = 1, + ACTIONS(2868), 2, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [15627] = 2, - ACTIONS(2119), 1, + [15915] = 2, + ACTIONS(2105), 1, sym__line_ending, - STATE(515), 1, + STATE(514), 1, sym__newline, - [15634] = 2, - ACTIONS(2200), 1, + [15922] = 2, + ACTIONS(2251), 1, sym__line_ending, - ACTIONS(2971), 1, + ACTIONS(3003), 1, anon_sym_PIPE, - [15641] = 2, - ACTIONS(2993), 1, + [15929] = 2, + ACTIONS(3025), 1, anon_sym_DASH, STATE(792), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - [15648] = 2, - ACTIONS(2129), 1, + [15936] = 2, + ACTIONS(2117), 1, sym__line_ending, - STATE(514), 1, + STATE(513), 1, sym__newline, - [15655] = 2, - ACTIONS(2119), 1, + [15943] = 2, + ACTIONS(2105), 1, sym__line_ending, - STATE(509), 1, + STATE(512), 1, sym__newline, - [15662] = 1, - ACTIONS(2806), 2, + [15950] = 1, + ACTIONS(2838), 2, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [15667] = 2, - ACTIONS(2027), 1, + [15955] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(13), 1, sym__newline, - [15674] = 2, - ACTIONS(2027), 1, + [15962] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(14), 1, sym__newline, - [15681] = 2, - ACTIONS(2004), 1, + [15969] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(443), 1, sym__newline, - [15688] = 2, - ACTIONS(2913), 1, + [15976] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1038), 1, sym__newline, - [15695] = 2, - ACTIONS(2913), 1, + [15983] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1059), 1, sym__newline, - [15702] = 2, - ACTIONS(2913), 1, + [15990] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1060), 1, sym__newline, - [15709] = 2, - ACTIONS(2913), 1, + [15997] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1063), 1, sym__newline, - [15716] = 2, + [16004] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(374), 1, sym__newline, - [15723] = 2, + [16011] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(376), 1, sym__newline, - [15730] = 2, - ACTIONS(2981), 1, + [16018] = 2, + ACTIONS(3013), 1, aux_sym__commonmark_whitespace_token1, - STATE(500), 1, + STATE(507), 1, sym__whitespace, - [15737] = 2, + [16025] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(378), 1, sym__newline, - [15744] = 2, - ACTIONS(2129), 1, + [16032] = 2, + ACTIONS(2117), 1, sym__line_ending, - STATE(516), 1, + STATE(515), 1, sym__newline, - [15751] = 2, + [16039] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(380), 1, sym__newline, - [15758] = 2, - ACTIONS(2760), 1, + [16046] = 2, + ACTIONS(2792), 1, sym__line_ending, - ACTIONS(2855), 1, + ACTIONS(2887), 1, anon_sym_PIPE, - [15765] = 2, - ACTIONS(2004), 1, + [16053] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(465), 1, sym__newline, - [15772] = 2, + [16060] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(382), 1, sym__newline, - [15779] = 2, - ACTIONS(2129), 1, + [16067] = 2, + ACTIONS(2117), 1, sym__line_ending, - STATE(522), 1, + STATE(524), 1, sym__newline, - [15786] = 1, - ACTIONS(2838), 2, + [16074] = 1, + ACTIONS(2870), 2, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [15791] = 2, - ACTIONS(2119), 1, + [16079] = 2, + ACTIONS(2105), 1, sym__line_ending, - STATE(525), 1, + STATE(508), 1, sym__newline, - [15798] = 1, - ACTIONS(2995), 2, + [16086] = 1, + ACTIONS(3027), 2, sym__line_ending, anon_sym_LBRACE, - [15803] = 1, - ACTIONS(2997), 2, + [16091] = 1, + ACTIONS(3029), 2, sym__line_ending, anon_sym_LBRACE, - [15808] = 2, + [16096] = 2, ACTIONS(2000), 1, sym__line_ending, STATE(384), 1, sym__newline, - [15815] = 2, - ACTIONS(2004), 1, + [16103] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(466), 1, sym__newline, - [15822] = 2, - ACTIONS(2129), 1, + [16110] = 2, + ACTIONS(2117), 1, sym__line_ending, - STATE(526), 1, + STATE(519), 1, sym__newline, - [15829] = 2, - ACTIONS(2119), 1, + [16117] = 2, + ACTIONS(2105), 1, sym__line_ending, - STATE(524), 1, + STATE(525), 1, sym__newline, - [15836] = 2, - ACTIONS(2027), 1, + [16124] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(19), 1, sym__newline, - [15843] = 2, - ACTIONS(2027), 1, + [16131] = 2, + ACTIONS(2004), 1, sym__line_ending, STATE(20), 1, sym__newline, - [15850] = 2, - ACTIONS(2913), 1, + [16138] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(996), 1, sym__newline, - [15857] = 2, - ACTIONS(2913), 1, + [16145] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1002), 1, sym__newline, - [15864] = 2, - ACTIONS(2913), 1, + [16152] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1003), 1, sym__newline, - [15871] = 2, - ACTIONS(2913), 1, + [16159] = 2, + ACTIONS(2945), 1, sym__line_ending, STATE(1006), 1, sym__newline, - [15878] = 2, - ACTIONS(2999), 1, + [16166] = 2, + ACTIONS(3031), 1, sym__block_close, - ACTIONS(3001), 1, + ACTIONS(3033), 1, sym_block_continuation, - [15885] = 2, - ACTIONS(2991), 1, + [16173] = 2, + ACTIONS(3023), 1, sym__line_ending, STATE(721), 1, sym__newline, - [15892] = 2, - ACTIONS(2991), 1, + [16180] = 2, + ACTIONS(3023), 1, sym__line_ending, STATE(719), 1, sym__newline, - [15899] = 2, - ACTIONS(2004), 1, + [16187] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(467), 1, sym__newline, - [15906] = 2, - ACTIONS(2004), 1, + [16194] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(468), 1, sym__newline, - [15913] = 2, - ACTIONS(2004), 1, + [16201] = 2, + ACTIONS(2006), 1, sym__line_ending, STATE(451), 1, sym__newline, - [15920] = 2, - ACTIONS(2979), 1, + [16208] = 2, + ACTIONS(3011), 1, aux_sym__commonmark_whitespace_token1, STATE(716), 1, sym__whitespace, - [15927] = 2, - ACTIONS(2987), 1, + [16215] = 2, + ACTIONS(3019), 1, sym__block_close, - ACTIONS(2989), 1, + ACTIONS(3021), 1, sym__fenced_code_block_end_tilde, - [15934] = 1, - ACTIONS(3003), 1, + [16222] = 1, + ACTIONS(3035), 1, sym__close_block, - [15938] = 1, - ACTIONS(1506), 1, + [16226] = 1, + ACTIONS(1508), 1, sym__block_close, - [15942] = 1, - ACTIONS(3005), 1, + [16230] = 1, + ACTIONS(3037), 1, ts_builtin_sym_end, - [15946] = 1, - ACTIONS(3007), 1, - sym__block_close, - [15950] = 1, - ACTIONS(2987), 1, - sym__block_close, - [15954] = 1, - ACTIONS(3009), 1, - sym__line_ending, - [15958] = 1, - ACTIONS(3011), 1, - sym__block_close, - [15962] = 1, - ACTIONS(3013), 1, + [16234] = 1, + ACTIONS(3039), 1, sym__block_close, - [15966] = 1, - ACTIONS(3015), 1, - anon_sym_RBRACE, - [15970] = 1, - ACTIONS(3017), 1, - sym__line_ending, - [15974] = 1, + [16238] = 1, ACTIONS(3019), 1, sym__block_close, - [15978] = 1, - ACTIONS(3021), 1, - sym__block_close, - [15982] = 1, - ACTIONS(3023), 1, - sym__block_close, - [15986] = 1, - ACTIONS(3025), 1, - sym__block_close, - [15990] = 1, - ACTIONS(3027), 1, - sym__block_close, - [15994] = 1, - ACTIONS(3029), 1, - sym__block_close, - [15998] = 1, - ACTIONS(3031), 1, - sym__block_close, - [16002] = 1, - ACTIONS(3033), 1, - sym__block_close, - [16006] = 1, - ACTIONS(3035), 1, - sym__block_close, - [16010] = 1, - ACTIONS(1608), 1, - sym__close_block, - [16014] = 1, - ACTIONS(3037), 1, - sym__block_close, - [16018] = 1, - ACTIONS(3039), 1, - sym__close_block, - [16022] = 1, - ACTIONS(2861), 1, - anon_sym_PIPE, - [16026] = 1, + [16242] = 1, ACTIONS(3041), 1, - sym__block_close, - [16030] = 1, - ACTIONS(2971), 1, - anon_sym_PIPE, - [16034] = 1, - ACTIONS(3043), 1, sym__line_ending, - [16038] = 1, + [16246] = 1, + ACTIONS(3043), 1, + sym__block_close, + [16250] = 1, ACTIONS(3045), 1, sym__block_close, - [16042] = 1, + [16254] = 1, ACTIONS(3047), 1, - sym__block_close, - [16046] = 1, + anon_sym_RBRACE, + [16258] = 1, ACTIONS(3049), 1, - sym__close_block, - [16050] = 1, + sym__line_ending, + [16262] = 1, ACTIONS(3051), 1, sym__block_close, - [16054] = 1, - ACTIONS(3009), 1, - anon_sym_RBRACE, - [16058] = 1, + [16266] = 1, ACTIONS(3053), 1, sym__block_close, - [16062] = 1, + [16270] = 1, ACTIONS(3055), 1, sym__block_close, - [16066] = 1, + [16274] = 1, ACTIONS(3057), 1, sym__block_close, - [16070] = 1, + [16278] = 1, ACTIONS(3059), 1, sym__block_close, - [16074] = 1, + [16282] = 1, ACTIONS(3061), 1, sym__block_close, - [16078] = 1, + [16286] = 1, ACTIONS(3063), 1, sym__block_close, - [16082] = 1, + [16290] = 1, ACTIONS(3065), 1, - anon_sym_RBRACE, - [16086] = 1, + sym__block_close, + [16294] = 1, ACTIONS(3067), 1, sym__block_close, - [16090] = 1, + [16298] = 1, + ACTIONS(1610), 1, + sym__close_block, + [16302] = 1, ACTIONS(3069), 1, sym__block_close, - [16094] = 1, + [16306] = 1, ACTIONS(3071), 1, - sym__block_close, - [16098] = 1, - ACTIONS(2967), 1, - sym__block_close, - [16102] = 1, - ACTIONS(2863), 1, + sym__close_block, + [16310] = 1, + ACTIONS(2893), 1, anon_sym_PIPE, - [16106] = 1, + [16314] = 1, ACTIONS(3073), 1, - sym__close_block, - [16110] = 1, + sym__block_close, + [16318] = 1, + ACTIONS(3003), 1, + anon_sym_PIPE, + [16322] = 1, ACTIONS(3075), 1, - sym__close_block, - [16114] = 1, + sym__line_ending, + [16326] = 1, ACTIONS(3077), 1, - sym__close_block, - [16118] = 1, - ACTIONS(2973), 1, sym__block_close, - [16122] = 1, + [16330] = 1, ACTIONS(3079), 1, - anon_sym_RBRACE, - [16126] = 1, + sym__block_close, + [16334] = 1, ACTIONS(3081), 1, - sym__line_ending, - [16130] = 1, + sym__close_block, + [16338] = 1, ACTIONS(3083), 1, sym__block_close, - [16134] = 1, + [16342] = 1, + ACTIONS(3041), 1, + anon_sym_RBRACE, + [16346] = 1, ACTIONS(3085), 1, sym__block_close, - [16138] = 1, + [16350] = 1, ACTIONS(3087), 1, sym__block_close, - [16142] = 1, + [16354] = 1, ACTIONS(3089), 1, sym__block_close, - [16146] = 1, + [16358] = 1, ACTIONS(3091), 1, sym__block_close, - [16150] = 1, + [16362] = 1, ACTIONS(3093), 1, - sym__line_ending, - [16154] = 1, + sym__block_close, + [16366] = 1, ACTIONS(3095), 1, - sym__line_ending, - [16158] = 1, + sym__block_close, + [16370] = 1, ACTIONS(3097), 1, - sym__line_ending, - [16162] = 1, + anon_sym_RBRACE, + [16374] = 1, ACTIONS(3099), 1, sym__block_close, - [16166] = 1, + [16378] = 1, ACTIONS(3101), 1, sym__block_close, - [16170] = 1, + [16382] = 1, ACTIONS(3103), 1, - sym__line_ending, - [16174] = 1, + sym__block_close, + [16386] = 1, + ACTIONS(2999), 1, + sym__block_close, + [16390] = 1, + ACTIONS(2895), 1, + anon_sym_PIPE, + [16394] = 1, ACTIONS(3105), 1, - anon_sym_EQ, - [16178] = 1, + sym__close_block, + [16398] = 1, ACTIONS(3107), 1, - sym__block_close, - [16182] = 1, + sym__close_block, + [16402] = 1, ACTIONS(3109), 1, + sym__close_block, + [16406] = 1, + ACTIONS(3005), 1, sym__block_close, - [16186] = 1, + [16410] = 1, ACTIONS(3111), 1, - sym__block_close, - [16190] = 1, + anon_sym_RBRACE, + [16414] = 1, ACTIONS(3113), 1, - sym__block_close, - [16194] = 1, + sym__line_ending, + [16418] = 1, ACTIONS(3115), 1, sym__block_close, - [16198] = 1, + [16422] = 1, ACTIONS(3117), 1, sym__block_close, - [16202] = 1, + [16426] = 1, ACTIONS(3119), 1, sym__block_close, - [16206] = 1, + [16430] = 1, ACTIONS(3121), 1, sym__block_close, - [16210] = 1, + [16434] = 1, ACTIONS(3123), 1, sym__block_close, - [16214] = 1, + [16438] = 1, ACTIONS(3125), 1, - sym__block_close, - [16218] = 1, + sym__line_ending, + [16442] = 1, ACTIONS(3127), 1, - sym__block_close, - [16222] = 1, - ACTIONS(2855), 1, - anon_sym_PIPE, - [16226] = 1, + sym__line_ending, + [16446] = 1, ACTIONS(3129), 1, - sym__block_close, - [16230] = 1, + sym__line_ending, + [16450] = 1, ACTIONS(3131), 1, sym__block_close, - [16234] = 1, + [16454] = 1, ACTIONS(3133), 1, - sym__line_ending, - [16238] = 1, + sym__block_close, + [16458] = 1, ACTIONS(3135), 1, - sym__close_block, - [16242] = 1, + sym__line_ending, + [16462] = 1, ACTIONS(3137), 1, - sym__block_close, - [16246] = 1, + anon_sym_EQ, + [16466] = 1, ACTIONS(3139), 1, sym__block_close, - [16250] = 1, + [16470] = 1, ACTIONS(3141), 1, - anon_sym_RBRACE, - [16254] = 1, + sym__block_close, + [16474] = 1, ACTIONS(3143), 1, - sym__line_ending, - [16258] = 1, + sym__block_close, + [16478] = 1, ACTIONS(3145), 1, sym__block_close, - [16262] = 1, + [16482] = 1, ACTIONS(3147), 1, - sym__close_block, - [16266] = 1, - ACTIONS(1506), 1, - sym__close_block, - [16270] = 1, + sym__block_close, + [16486] = 1, ACTIONS(3149), 1, sym__block_close, - [16274] = 1, + [16490] = 1, ACTIONS(3151), 1, sym__block_close, - [16278] = 1, - ACTIONS(2933), 1, - anon_sym_RBRACE, - [16282] = 1, + [16494] = 1, ACTIONS(3153), 1, - anon_sym_RBRACE, - [16286] = 1, + sym__block_close, + [16498] = 1, ACTIONS(3155), 1, sym__block_close, - [16290] = 1, + [16502] = 1, ACTIONS(3157), 1, sym__block_close, - [16294] = 1, - ACTIONS(3015), 1, - sym__line_ending, - [16298] = 1, + [16506] = 1, ACTIONS(3159), 1, sym__block_close, - [16302] = 1, + [16510] = 1, + ACTIONS(2887), 1, + anon_sym_PIPE, + [16514] = 1, ACTIONS(3161), 1, - sym__line_ending, - [16306] = 1, + sym__block_close, + [16518] = 1, ACTIONS(3163), 1, - sym__close_block, - [16310] = 1, + sym__block_close, + [16522] = 1, ACTIONS(3165), 1, - sym__close_block, - [16314] = 1, + sym__line_ending, + [16526] = 1, ACTIONS(3167), 1, sym__close_block, - [16318] = 1, + [16530] = 1, ACTIONS(3169), 1, - sym__close_block, - [16322] = 1, + sym__block_close, + [16534] = 1, ACTIONS(3171), 1, - sym__close_block, - [16326] = 1, + sym__block_close, + [16538] = 1, ACTIONS(3173), 1, - sym__close_block, - [16330] = 1, + anon_sym_RBRACE, + [16542] = 1, ACTIONS(3175), 1, - sym__close_block, - [16334] = 1, + sym__line_ending, + [16546] = 1, ACTIONS(3177), 1, - sym__close_block, - [16338] = 1, - ACTIONS(3179), 1, sym__block_close, - [16342] = 1, - ACTIONS(2758), 1, - anon_sym_PIPE, - [16346] = 1, - ACTIONS(3181), 1, + [16550] = 1, + ACTIONS(3179), 1, sym__close_block, - [16350] = 1, - ACTIONS(3183), 1, + [16554] = 1, + ACTIONS(1508), 1, sym__close_block, - [16354] = 1, - ACTIONS(3185), 1, + [16558] = 1, + ACTIONS(3181), 1, sym__block_close, - [16358] = 1, + [16562] = 1, + ACTIONS(3183), 1, + sym__block_close, + [16566] = 1, + ACTIONS(2965), 1, + anon_sym_RBRACE, + [16570] = 1, + ACTIONS(3185), 1, + anon_sym_RBRACE, + [16574] = 1, ACTIONS(3187), 1, - sym__close_block, - [16362] = 1, + sym__block_close, + [16578] = 1, ACTIONS(3189), 1, - sym__close_block, - [16366] = 1, + sym__block_close, + [16582] = 1, + ACTIONS(3047), 1, + sym__line_ending, + [16586] = 1, ACTIONS(3191), 1, - sym__close_block, - [16370] = 1, + sym__block_close, + [16590] = 1, ACTIONS(3193), 1, - sym__close_block, - [16374] = 1, + sym__line_ending, + [16594] = 1, ACTIONS(3195), 1, sym__close_block, - [16378] = 1, + [16598] = 1, ACTIONS(3197), 1, - sym__block_close, - [16382] = 1, + sym__close_block, + [16602] = 1, ACTIONS(3199), 1, sym__close_block, - [16386] = 1, + [16606] = 1, ACTIONS(3201), 1, sym__close_block, - [16390] = 1, + [16610] = 1, ACTIONS(3203), 1, + sym__close_block, + [16614] = 1, + ACTIONS(3205), 1, + sym__close_block, + [16618] = 1, + ACTIONS(3207), 1, + sym__close_block, + [16622] = 1, + ACTIONS(3209), 1, + sym__close_block, + [16626] = 1, + ACTIONS(3211), 1, sym__block_close, - [16394] = 1, - ACTIONS(2745), 1, + [16630] = 1, + ACTIONS(2790), 1, + anon_sym_PIPE, + [16634] = 1, + ACTIONS(3213), 1, + sym__close_block, + [16638] = 1, + ACTIONS(3215), 1, + sym__close_block, + [16642] = 1, + ACTIONS(3217), 1, + sym__block_close, + [16646] = 1, + ACTIONS(3219), 1, + sym__close_block, + [16650] = 1, + ACTIONS(3221), 1, + sym__close_block, + [16654] = 1, + ACTIONS(3223), 1, + sym__close_block, + [16658] = 1, + ACTIONS(3225), 1, + sym__close_block, + [16662] = 1, + ACTIONS(3227), 1, + sym__close_block, + [16666] = 1, + ACTIONS(3229), 1, + sym__block_close, + [16670] = 1, + ACTIONS(3231), 1, + sym__close_block, + [16674] = 1, + ACTIONS(3233), 1, + sym__close_block, + [16678] = 1, + ACTIONS(3235), 1, + sym__block_close, + [16682] = 1, + ACTIONS(2777), 1, anon_sym_PIPE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(473)] = 0, - [SMALL_STATE(474)] = 79, - [SMALL_STATE(475)] = 158, - [SMALL_STATE(476)] = 237, - [SMALL_STATE(477)] = 316, - [SMALL_STATE(478)] = 395, - [SMALL_STATE(479)] = 474, - [SMALL_STATE(480)] = 553, - [SMALL_STATE(481)] = 640, - [SMALL_STATE(482)] = 719, - [SMALL_STATE(483)] = 798, - [SMALL_STATE(484)] = 877, - [SMALL_STATE(485)] = 956, - [SMALL_STATE(486)] = 1035, - [SMALL_STATE(487)] = 1114, - [SMALL_STATE(488)] = 1193, - [SMALL_STATE(489)] = 1272, - [SMALL_STATE(490)] = 1351, - [SMALL_STATE(491)] = 1430, - [SMALL_STATE(492)] = 1509, - [SMALL_STATE(493)] = 1583, - [SMALL_STATE(494)] = 1657, - [SMALL_STATE(495)] = 1731, - [SMALL_STATE(496)] = 1805, - [SMALL_STATE(497)] = 1879, - [SMALL_STATE(498)] = 1953, - [SMALL_STATE(499)] = 2022, - [SMALL_STATE(500)] = 2085, - [SMALL_STATE(501)] = 2153, - [SMALL_STATE(502)] = 2213, - [SMALL_STATE(503)] = 2273, - [SMALL_STATE(504)] = 2333, - [SMALL_STATE(505)] = 2401, - [SMALL_STATE(506)] = 2461, - [SMALL_STATE(507)] = 2537, - [SMALL_STATE(508)] = 2597, - [SMALL_STATE(509)] = 2665, - [SMALL_STATE(510)] = 2728, - [SMALL_STATE(511)] = 2791, - [SMALL_STATE(512)] = 2854, - [SMALL_STATE(513)] = 2917, - [SMALL_STATE(514)] = 2980, - [SMALL_STATE(515)] = 3043, - [SMALL_STATE(516)] = 3106, - [SMALL_STATE(517)] = 3169, - [SMALL_STATE(518)] = 3232, - [SMALL_STATE(519)] = 3295, - [SMALL_STATE(520)] = 3358, - [SMALL_STATE(521)] = 3421, - [SMALL_STATE(522)] = 3484, - [SMALL_STATE(523)] = 3547, - [SMALL_STATE(524)] = 3610, - [SMALL_STATE(525)] = 3673, - [SMALL_STATE(526)] = 3736, - [SMALL_STATE(527)] = 3799, - [SMALL_STATE(528)] = 3860, - [SMALL_STATE(529)] = 3930, - [SMALL_STATE(530)] = 3988, - [SMALL_STATE(531)] = 4058, - [SMALL_STATE(532)] = 4128, - [SMALL_STATE(533)] = 4186, - [SMALL_STATE(534)] = 4244, - [SMALL_STATE(535)] = 4314, - [SMALL_STATE(536)] = 4376, - [SMALL_STATE(537)] = 4434, - [SMALL_STATE(538)] = 4492, - [SMALL_STATE(539)] = 4562, - [SMALL_STATE(540)] = 4620, - [SMALL_STATE(541)] = 4679, - [SMALL_STATE(542)] = 4750, - [SMALL_STATE(543)] = 4807, - [SMALL_STATE(544)] = 4866, - [SMALL_STATE(545)] = 4925, - [SMALL_STATE(546)] = 4982, - [SMALL_STATE(547)] = 5039, - [SMALL_STATE(548)] = 5110, - [SMALL_STATE(549)] = 5181, - [SMALL_STATE(550)] = 5240, - [SMALL_STATE(551)] = 5297, - [SMALL_STATE(552)] = 5354, - [SMALL_STATE(553)] = 5411, - [SMALL_STATE(554)] = 5470, - [SMALL_STATE(555)] = 5527, - [SMALL_STATE(556)] = 5575, - [SMALL_STATE(557)] = 5643, - [SMALL_STATE(558)] = 5711, - [SMALL_STATE(559)] = 5779, - [SMALL_STATE(560)] = 5843, - [SMALL_STATE(561)] = 5911, - [SMALL_STATE(562)] = 5959, - [SMALL_STATE(563)] = 6007, - [SMALL_STATE(564)] = 6055, - [SMALL_STATE(565)] = 6115, - [SMALL_STATE(566)] = 6179, - [SMALL_STATE(567)] = 6229, - [SMALL_STATE(568)] = 6297, - [SMALL_STATE(569)] = 6361, - [SMALL_STATE(570)] = 6420, - [SMALL_STATE(571)] = 6471, - [SMALL_STATE(572)] = 6518, - [SMALL_STATE(573)] = 6565, - [SMALL_STATE(574)] = 6630, - [SMALL_STATE(575)] = 6687, - [SMALL_STATE(576)] = 6738, - [SMALL_STATE(577)] = 6795, - [SMALL_STATE(578)] = 6860, - [SMALL_STATE(579)] = 6917, - [SMALL_STATE(580)] = 6968, - [SMALL_STATE(581)] = 7025, - [SMALL_STATE(582)] = 7082, - [SMALL_STATE(583)] = 7133, - [SMALL_STATE(584)] = 7195, - [SMALL_STATE(585)] = 7251, - [SMALL_STATE(586)] = 7297, - [SMALL_STATE(587)] = 7353, - [SMALL_STATE(588)] = 7399, - [SMALL_STATE(589)] = 7455, - [SMALL_STATE(590)] = 7505, - [SMALL_STATE(591)] = 7551, - [SMALL_STATE(592)] = 7607, - [SMALL_STATE(593)] = 7663, - [SMALL_STATE(594)] = 7709, - [SMALL_STATE(595)] = 7759, - [SMALL_STATE(596)] = 7805, - [SMALL_STATE(597)] = 7867, - [SMALL_STATE(598)] = 7915, - [SMALL_STATE(599)] = 7977, - [SMALL_STATE(600)] = 8023, - [SMALL_STATE(601)] = 8068, - [SMALL_STATE(602)] = 8111, - [SMALL_STATE(603)] = 8156, - [SMALL_STATE(604)] = 8215, - [SMALL_STATE(605)] = 8258, - [SMALL_STATE(606)] = 8303, - [SMALL_STATE(607)] = 8362, - [SMALL_STATE(608)] = 8405, - [SMALL_STATE(609)] = 8464, - [SMALL_STATE(610)] = 8507, - [SMALL_STATE(611)] = 8552, - [SMALL_STATE(612)] = 8597, - [SMALL_STATE(613)] = 8656, - [SMALL_STATE(614)] = 8701, - [SMALL_STATE(615)] = 8744, - [SMALL_STATE(616)] = 8787, - [SMALL_STATE(617)] = 8832, - [SMALL_STATE(618)] = 8877, - [SMALL_STATE(619)] = 8936, - [SMALL_STATE(620)] = 8981, - [SMALL_STATE(621)] = 9040, - [SMALL_STATE(622)] = 9091, - [SMALL_STATE(623)] = 9150, - [SMALL_STATE(624)] = 9209, - [SMALL_STATE(625)] = 9253, - [SMALL_STATE(626)] = 9297, - [SMALL_STATE(627)] = 9345, - [SMALL_STATE(628)] = 9387, - [SMALL_STATE(629)] = 9435, - [SMALL_STATE(630)] = 9477, - [SMALL_STATE(631)] = 9521, - [SMALL_STATE(632)] = 9569, - [SMALL_STATE(633)] = 9617, - [SMALL_STATE(634)] = 9661, - [SMALL_STATE(635)] = 9709, - [SMALL_STATE(636)] = 9751, - [SMALL_STATE(637)] = 9794, - [SMALL_STATE(638)] = 9837, - [SMALL_STATE(639)] = 9880, - [SMALL_STATE(640)] = 9923, - [SMALL_STATE(641)] = 9966, - [SMALL_STATE(642)] = 10009, - [SMALL_STATE(643)] = 10055, - [SMALL_STATE(644)] = 10101, - [SMALL_STATE(645)] = 10143, - [SMALL_STATE(646)] = 10189, - [SMALL_STATE(647)] = 10229, - [SMALL_STATE(648)] = 10275, - [SMALL_STATE(649)] = 10321, - [SMALL_STATE(650)] = 10367, - [SMALL_STATE(651)] = 10413, - [SMALL_STATE(652)] = 10455, - [SMALL_STATE(653)] = 10501, - [SMALL_STATE(654)] = 10549, - [SMALL_STATE(655)] = 10591, - [SMALL_STATE(656)] = 10637, - [SMALL_STATE(657)] = 10677, - [SMALL_STATE(658)] = 10723, - [SMALL_STATE(659)] = 10769, - [SMALL_STATE(660)] = 10817, - [SMALL_STATE(661)] = 10863, - [SMALL_STATE(662)] = 10911, - [SMALL_STATE(663)] = 10957, - [SMALL_STATE(664)] = 10999, - [SMALL_STATE(665)] = 11047, - [SMALL_STATE(666)] = 11093, - [SMALL_STATE(667)] = 11135, - [SMALL_STATE(668)] = 11181, - [SMALL_STATE(669)] = 11227, - [SMALL_STATE(670)] = 11269, - [SMALL_STATE(671)] = 11315, - [SMALL_STATE(672)] = 11357, - [SMALL_STATE(673)] = 11399, - [SMALL_STATE(674)] = 11441, - [SMALL_STATE(675)] = 11487, - [SMALL_STATE(676)] = 11535, - [SMALL_STATE(677)] = 11583, - [SMALL_STATE(678)] = 11625, - [SMALL_STATE(679)] = 11667, - [SMALL_STATE(680)] = 11709, - [SMALL_STATE(681)] = 11747, - [SMALL_STATE(682)] = 11789, - [SMALL_STATE(683)] = 11827, - [SMALL_STATE(684)] = 11869, - [SMALL_STATE(685)] = 11907, - [SMALL_STATE(686)] = 11945, - [SMALL_STATE(687)] = 11987, - [SMALL_STATE(688)] = 12026, - [SMALL_STATE(689)] = 12065, - [SMALL_STATE(690)] = 12104, - [SMALL_STATE(691)] = 12143, - [SMALL_STATE(692)] = 12180, - [SMALL_STATE(693)] = 12232, - [SMALL_STATE(694)] = 12284, - [SMALL_STATE(695)] = 12336, - [SMALL_STATE(696)] = 12388, - [SMALL_STATE(697)] = 12440, - [SMALL_STATE(698)] = 12483, - [SMALL_STATE(699)] = 12511, - [SMALL_STATE(700)] = 12539, - [SMALL_STATE(701)] = 12567, - [SMALL_STATE(702)] = 12595, - [SMALL_STATE(703)] = 12623, - [SMALL_STATE(704)] = 12651, - [SMALL_STATE(705)] = 12678, - [SMALL_STATE(706)] = 12705, - [SMALL_STATE(707)] = 12736, - [SMALL_STATE(708)] = 12763, - [SMALL_STATE(709)] = 12790, - [SMALL_STATE(710)] = 12812, - [SMALL_STATE(711)] = 12840, - [SMALL_STATE(712)] = 12868, - [SMALL_STATE(713)] = 12890, - [SMALL_STATE(714)] = 12918, - [SMALL_STATE(715)] = 12940, - [SMALL_STATE(716)] = 12962, - [SMALL_STATE(717)] = 12984, - [SMALL_STATE(718)] = 13006, - [SMALL_STATE(719)] = 13028, - [SMALL_STATE(720)] = 13056, - [SMALL_STATE(721)] = 13078, - [SMALL_STATE(722)] = 13106, - [SMALL_STATE(723)] = 13128, - [SMALL_STATE(724)] = 13143, - [SMALL_STATE(725)] = 13160, - [SMALL_STATE(726)] = 13177, - [SMALL_STATE(727)] = 13195, - [SMALL_STATE(728)] = 13213, - [SMALL_STATE(729)] = 13235, - [SMALL_STATE(730)] = 13253, - [SMALL_STATE(731)] = 13271, - [SMALL_STATE(732)] = 13281, - [SMALL_STATE(733)] = 13299, - [SMALL_STATE(734)] = 13317, - [SMALL_STATE(735)] = 13339, - [SMALL_STATE(736)] = 13357, - [SMALL_STATE(737)] = 13375, - [SMALL_STATE(738)] = 13393, - [SMALL_STATE(739)] = 13411, - [SMALL_STATE(740)] = 13429, - [SMALL_STATE(741)] = 13447, - [SMALL_STATE(742)] = 13469, - [SMALL_STATE(743)] = 13487, - [SMALL_STATE(744)] = 13505, - [SMALL_STATE(745)] = 13523, - [SMALL_STATE(746)] = 13541, - [SMALL_STATE(747)] = 13559, - [SMALL_STATE(748)] = 13577, - [SMALL_STATE(749)] = 13595, - [SMALL_STATE(750)] = 13613, - [SMALL_STATE(751)] = 13631, - [SMALL_STATE(752)] = 13647, - [SMALL_STATE(753)] = 13669, - [SMALL_STATE(754)] = 13691, - [SMALL_STATE(755)] = 13706, - [SMALL_STATE(756)] = 13721, - [SMALL_STATE(757)] = 13736, - [SMALL_STATE(758)] = 13751, - [SMALL_STATE(759)] = 13760, - [SMALL_STATE(760)] = 13775, - [SMALL_STATE(761)] = 13790, - [SMALL_STATE(762)] = 13799, - [SMALL_STATE(763)] = 13814, - [SMALL_STATE(764)] = 13829, - [SMALL_STATE(765)] = 13848, - [SMALL_STATE(766)] = 13857, - [SMALL_STATE(767)] = 13876, - [SMALL_STATE(768)] = 13895, - [SMALL_STATE(769)] = 13910, - [SMALL_STATE(770)] = 13925, - [SMALL_STATE(771)] = 13940, - [SMALL_STATE(772)] = 13949, - [SMALL_STATE(773)] = 13968, - [SMALL_STATE(774)] = 13987, - [SMALL_STATE(775)] = 14002, - [SMALL_STATE(776)] = 14017, - [SMALL_STATE(777)] = 14036, - [SMALL_STATE(778)] = 14051, - [SMALL_STATE(779)] = 14066, - [SMALL_STATE(780)] = 14081, - [SMALL_STATE(781)] = 14100, - [SMALL_STATE(782)] = 14119, - [SMALL_STATE(783)] = 14135, - [SMALL_STATE(784)] = 14149, - [SMALL_STATE(785)] = 14165, - [SMALL_STATE(786)] = 14181, - [SMALL_STATE(787)] = 14197, - [SMALL_STATE(788)] = 14205, - [SMALL_STATE(789)] = 14215, - [SMALL_STATE(790)] = 14229, - [SMALL_STATE(791)] = 14245, - [SMALL_STATE(792)] = 14261, - [SMALL_STATE(793)] = 14275, - [SMALL_STATE(794)] = 14289, - [SMALL_STATE(795)] = 14305, - [SMALL_STATE(796)] = 14313, - [SMALL_STATE(797)] = 14323, - [SMALL_STATE(798)] = 14331, - [SMALL_STATE(799)] = 14345, - [SMALL_STATE(800)] = 14361, - [SMALL_STATE(801)] = 14377, - [SMALL_STATE(802)] = 14389, - [SMALL_STATE(803)] = 14402, - [SMALL_STATE(804)] = 14411, - [SMALL_STATE(805)] = 14424, - [SMALL_STATE(806)] = 14433, - [SMALL_STATE(807)] = 14446, - [SMALL_STATE(808)] = 14455, - [SMALL_STATE(809)] = 14468, - [SMALL_STATE(810)] = 14477, - [SMALL_STATE(811)] = 14486, - [SMALL_STATE(812)] = 14495, - [SMALL_STATE(813)] = 14504, - [SMALL_STATE(814)] = 14517, - [SMALL_STATE(815)] = 14526, - [SMALL_STATE(816)] = 14535, - [SMALL_STATE(817)] = 14548, - [SMALL_STATE(818)] = 14557, - [SMALL_STATE(819)] = 14570, - [SMALL_STATE(820)] = 14583, - [SMALL_STATE(821)] = 14596, - [SMALL_STATE(822)] = 14605, - [SMALL_STATE(823)] = 14618, - [SMALL_STATE(824)] = 14627, - [SMALL_STATE(825)] = 14636, - [SMALL_STATE(826)] = 14645, - [SMALL_STATE(827)] = 14652, - [SMALL_STATE(828)] = 14661, - [SMALL_STATE(829)] = 14670, - [SMALL_STATE(830)] = 14679, - [SMALL_STATE(831)] = 14688, - [SMALL_STATE(832)] = 14701, - [SMALL_STATE(833)] = 14710, - [SMALL_STATE(834)] = 14723, - [SMALL_STATE(835)] = 14732, - [SMALL_STATE(836)] = 14741, - [SMALL_STATE(837)] = 14750, - [SMALL_STATE(838)] = 14760, - [SMALL_STATE(839)] = 14770, - [SMALL_STATE(840)] = 14780, - [SMALL_STATE(841)] = 14790, - [SMALL_STATE(842)] = 14800, - [SMALL_STATE(843)] = 14810, - [SMALL_STATE(844)] = 14820, - [SMALL_STATE(845)] = 14830, - [SMALL_STATE(846)] = 14840, - [SMALL_STATE(847)] = 14850, - [SMALL_STATE(848)] = 14860, - [SMALL_STATE(849)] = 14870, - [SMALL_STATE(850)] = 14880, - [SMALL_STATE(851)] = 14890, - [SMALL_STATE(852)] = 14900, - [SMALL_STATE(853)] = 14908, - [SMALL_STATE(854)] = 14918, - [SMALL_STATE(855)] = 14928, - [SMALL_STATE(856)] = 14938, - [SMALL_STATE(857)] = 14948, - [SMALL_STATE(858)] = 14958, - [SMALL_STATE(859)] = 14964, - [SMALL_STATE(860)] = 14974, - [SMALL_STATE(861)] = 14984, - [SMALL_STATE(862)] = 14994, - [SMALL_STATE(863)] = 15004, - [SMALL_STATE(864)] = 15014, - [SMALL_STATE(865)] = 15024, - [SMALL_STATE(866)] = 15034, - [SMALL_STATE(867)] = 15040, - [SMALL_STATE(868)] = 15050, - [SMALL_STATE(869)] = 15060, - [SMALL_STATE(870)] = 15070, - [SMALL_STATE(871)] = 15080, - [SMALL_STATE(872)] = 15090, - [SMALL_STATE(873)] = 15096, - [SMALL_STATE(874)] = 15106, - [SMALL_STATE(875)] = 15116, - [SMALL_STATE(876)] = 15126, - [SMALL_STATE(877)] = 15136, - [SMALL_STATE(878)] = 15146, - [SMALL_STATE(879)] = 15156, - [SMALL_STATE(880)] = 15162, - [SMALL_STATE(881)] = 15169, - [SMALL_STATE(882)] = 15176, - [SMALL_STATE(883)] = 15183, - [SMALL_STATE(884)] = 15190, - [SMALL_STATE(885)] = 15197, - [SMALL_STATE(886)] = 15204, - [SMALL_STATE(887)] = 15211, - [SMALL_STATE(888)] = 15218, - [SMALL_STATE(889)] = 15225, - [SMALL_STATE(890)] = 15232, - [SMALL_STATE(891)] = 15239, - [SMALL_STATE(892)] = 15246, - [SMALL_STATE(893)] = 15253, - [SMALL_STATE(894)] = 15260, - [SMALL_STATE(895)] = 15267, - [SMALL_STATE(896)] = 15274, - [SMALL_STATE(897)] = 15281, - [SMALL_STATE(898)] = 15288, - [SMALL_STATE(899)] = 15295, - [SMALL_STATE(900)] = 15302, - [SMALL_STATE(901)] = 15309, - [SMALL_STATE(902)] = 15316, - [SMALL_STATE(903)] = 15323, - [SMALL_STATE(904)] = 15330, - [SMALL_STATE(905)] = 15337, - [SMALL_STATE(906)] = 15344, - [SMALL_STATE(907)] = 15351, - [SMALL_STATE(908)] = 15358, - [SMALL_STATE(909)] = 15365, - [SMALL_STATE(910)] = 15372, - [SMALL_STATE(911)] = 15379, - [SMALL_STATE(912)] = 15386, - [SMALL_STATE(913)] = 15393, - [SMALL_STATE(914)] = 15400, - [SMALL_STATE(915)] = 15407, - [SMALL_STATE(916)] = 15414, - [SMALL_STATE(917)] = 15421, - [SMALL_STATE(918)] = 15428, - [SMALL_STATE(919)] = 15435, - [SMALL_STATE(920)] = 15442, - [SMALL_STATE(921)] = 15449, - [SMALL_STATE(922)] = 15456, - [SMALL_STATE(923)] = 15463, - [SMALL_STATE(924)] = 15470, - [SMALL_STATE(925)] = 15477, - [SMALL_STATE(926)] = 15484, - [SMALL_STATE(927)] = 15491, - [SMALL_STATE(928)] = 15498, - [SMALL_STATE(929)] = 15505, - [SMALL_STATE(930)] = 15512, - [SMALL_STATE(931)] = 15519, - [SMALL_STATE(932)] = 15526, - [SMALL_STATE(933)] = 15533, - [SMALL_STATE(934)] = 15540, - [SMALL_STATE(935)] = 15547, - [SMALL_STATE(936)] = 15554, - [SMALL_STATE(937)] = 15561, - [SMALL_STATE(938)] = 15566, - [SMALL_STATE(939)] = 15573, - [SMALL_STATE(940)] = 15580, - [SMALL_STATE(941)] = 15587, - [SMALL_STATE(942)] = 15594, - [SMALL_STATE(943)] = 15601, - [SMALL_STATE(944)] = 15608, - [SMALL_STATE(945)] = 15615, - [SMALL_STATE(946)] = 15622, - [SMALL_STATE(947)] = 15627, - [SMALL_STATE(948)] = 15634, - [SMALL_STATE(949)] = 15641, - [SMALL_STATE(950)] = 15648, - [SMALL_STATE(951)] = 15655, - [SMALL_STATE(952)] = 15662, - [SMALL_STATE(953)] = 15667, - [SMALL_STATE(954)] = 15674, - [SMALL_STATE(955)] = 15681, - [SMALL_STATE(956)] = 15688, - [SMALL_STATE(957)] = 15695, - [SMALL_STATE(958)] = 15702, - [SMALL_STATE(959)] = 15709, - [SMALL_STATE(960)] = 15716, - [SMALL_STATE(961)] = 15723, - [SMALL_STATE(962)] = 15730, - [SMALL_STATE(963)] = 15737, - [SMALL_STATE(964)] = 15744, - [SMALL_STATE(965)] = 15751, - [SMALL_STATE(966)] = 15758, - [SMALL_STATE(967)] = 15765, - [SMALL_STATE(968)] = 15772, - [SMALL_STATE(969)] = 15779, - [SMALL_STATE(970)] = 15786, - [SMALL_STATE(971)] = 15791, - [SMALL_STATE(972)] = 15798, - [SMALL_STATE(973)] = 15803, - [SMALL_STATE(974)] = 15808, - [SMALL_STATE(975)] = 15815, - [SMALL_STATE(976)] = 15822, - [SMALL_STATE(977)] = 15829, - [SMALL_STATE(978)] = 15836, - [SMALL_STATE(979)] = 15843, - [SMALL_STATE(980)] = 15850, - [SMALL_STATE(981)] = 15857, - [SMALL_STATE(982)] = 15864, - [SMALL_STATE(983)] = 15871, - [SMALL_STATE(984)] = 15878, - [SMALL_STATE(985)] = 15885, - [SMALL_STATE(986)] = 15892, - [SMALL_STATE(987)] = 15899, - [SMALL_STATE(988)] = 15906, - [SMALL_STATE(989)] = 15913, - [SMALL_STATE(990)] = 15920, - [SMALL_STATE(991)] = 15927, - [SMALL_STATE(992)] = 15934, - [SMALL_STATE(993)] = 15938, - [SMALL_STATE(994)] = 15942, - [SMALL_STATE(995)] = 15946, - [SMALL_STATE(996)] = 15950, - [SMALL_STATE(997)] = 15954, - [SMALL_STATE(998)] = 15958, - [SMALL_STATE(999)] = 15962, - [SMALL_STATE(1000)] = 15966, - [SMALL_STATE(1001)] = 15970, - [SMALL_STATE(1002)] = 15974, - [SMALL_STATE(1003)] = 15978, - [SMALL_STATE(1004)] = 15982, - [SMALL_STATE(1005)] = 15986, - [SMALL_STATE(1006)] = 15990, - [SMALL_STATE(1007)] = 15994, - [SMALL_STATE(1008)] = 15998, - [SMALL_STATE(1009)] = 16002, - [SMALL_STATE(1010)] = 16006, - [SMALL_STATE(1011)] = 16010, - [SMALL_STATE(1012)] = 16014, - [SMALL_STATE(1013)] = 16018, - [SMALL_STATE(1014)] = 16022, - [SMALL_STATE(1015)] = 16026, - [SMALL_STATE(1016)] = 16030, - [SMALL_STATE(1017)] = 16034, - [SMALL_STATE(1018)] = 16038, - [SMALL_STATE(1019)] = 16042, - [SMALL_STATE(1020)] = 16046, - [SMALL_STATE(1021)] = 16050, - [SMALL_STATE(1022)] = 16054, - [SMALL_STATE(1023)] = 16058, - [SMALL_STATE(1024)] = 16062, - [SMALL_STATE(1025)] = 16066, - [SMALL_STATE(1026)] = 16070, - [SMALL_STATE(1027)] = 16074, - [SMALL_STATE(1028)] = 16078, - [SMALL_STATE(1029)] = 16082, - [SMALL_STATE(1030)] = 16086, - [SMALL_STATE(1031)] = 16090, - [SMALL_STATE(1032)] = 16094, - [SMALL_STATE(1033)] = 16098, - [SMALL_STATE(1034)] = 16102, - [SMALL_STATE(1035)] = 16106, - [SMALL_STATE(1036)] = 16110, - [SMALL_STATE(1037)] = 16114, - [SMALL_STATE(1038)] = 16118, - [SMALL_STATE(1039)] = 16122, - [SMALL_STATE(1040)] = 16126, - [SMALL_STATE(1041)] = 16130, - [SMALL_STATE(1042)] = 16134, - [SMALL_STATE(1043)] = 16138, - [SMALL_STATE(1044)] = 16142, - [SMALL_STATE(1045)] = 16146, - [SMALL_STATE(1046)] = 16150, - [SMALL_STATE(1047)] = 16154, - [SMALL_STATE(1048)] = 16158, - [SMALL_STATE(1049)] = 16162, - [SMALL_STATE(1050)] = 16166, - [SMALL_STATE(1051)] = 16170, - [SMALL_STATE(1052)] = 16174, - [SMALL_STATE(1053)] = 16178, - [SMALL_STATE(1054)] = 16182, - [SMALL_STATE(1055)] = 16186, - [SMALL_STATE(1056)] = 16190, - [SMALL_STATE(1057)] = 16194, - [SMALL_STATE(1058)] = 16198, - [SMALL_STATE(1059)] = 16202, - [SMALL_STATE(1060)] = 16206, - [SMALL_STATE(1061)] = 16210, - [SMALL_STATE(1062)] = 16214, - [SMALL_STATE(1063)] = 16218, - [SMALL_STATE(1064)] = 16222, - [SMALL_STATE(1065)] = 16226, - [SMALL_STATE(1066)] = 16230, - [SMALL_STATE(1067)] = 16234, - [SMALL_STATE(1068)] = 16238, - [SMALL_STATE(1069)] = 16242, - [SMALL_STATE(1070)] = 16246, - [SMALL_STATE(1071)] = 16250, - [SMALL_STATE(1072)] = 16254, - [SMALL_STATE(1073)] = 16258, - [SMALL_STATE(1074)] = 16262, - [SMALL_STATE(1075)] = 16266, - [SMALL_STATE(1076)] = 16270, - [SMALL_STATE(1077)] = 16274, - [SMALL_STATE(1078)] = 16278, - [SMALL_STATE(1079)] = 16282, - [SMALL_STATE(1080)] = 16286, - [SMALL_STATE(1081)] = 16290, - [SMALL_STATE(1082)] = 16294, - [SMALL_STATE(1083)] = 16298, - [SMALL_STATE(1084)] = 16302, - [SMALL_STATE(1085)] = 16306, - [SMALL_STATE(1086)] = 16310, - [SMALL_STATE(1087)] = 16314, - [SMALL_STATE(1088)] = 16318, - [SMALL_STATE(1089)] = 16322, - [SMALL_STATE(1090)] = 16326, - [SMALL_STATE(1091)] = 16330, - [SMALL_STATE(1092)] = 16334, - [SMALL_STATE(1093)] = 16338, - [SMALL_STATE(1094)] = 16342, - [SMALL_STATE(1095)] = 16346, - [SMALL_STATE(1096)] = 16350, - [SMALL_STATE(1097)] = 16354, - [SMALL_STATE(1098)] = 16358, - [SMALL_STATE(1099)] = 16362, - [SMALL_STATE(1100)] = 16366, - [SMALL_STATE(1101)] = 16370, - [SMALL_STATE(1102)] = 16374, - [SMALL_STATE(1103)] = 16378, - [SMALL_STATE(1104)] = 16382, - [SMALL_STATE(1105)] = 16386, - [SMALL_STATE(1106)] = 16390, - [SMALL_STATE(1107)] = 16394, + [SMALL_STATE(474)] = 81, + [SMALL_STATE(475)] = 162, + [SMALL_STATE(476)] = 243, + [SMALL_STATE(477)] = 324, + [SMALL_STATE(478)] = 405, + [SMALL_STATE(479)] = 486, + [SMALL_STATE(480)] = 575, + [SMALL_STATE(481)] = 656, + [SMALL_STATE(482)] = 737, + [SMALL_STATE(483)] = 818, + [SMALL_STATE(484)] = 899, + [SMALL_STATE(485)] = 980, + [SMALL_STATE(486)] = 1061, + [SMALL_STATE(487)] = 1142, + [SMALL_STATE(488)] = 1223, + [SMALL_STATE(489)] = 1304, + [SMALL_STATE(490)] = 1385, + [SMALL_STATE(491)] = 1466, + [SMALL_STATE(492)] = 1547, + [SMALL_STATE(493)] = 1623, + [SMALL_STATE(494)] = 1699, + [SMALL_STATE(495)] = 1775, + [SMALL_STATE(496)] = 1851, + [SMALL_STATE(497)] = 1927, + [SMALL_STATE(498)] = 2003, + [SMALL_STATE(499)] = 2068, + [SMALL_STATE(500)] = 2139, + [SMALL_STATE(501)] = 2201, + [SMALL_STATE(502)] = 2271, + [SMALL_STATE(503)] = 2333, + [SMALL_STATE(504)] = 2403, + [SMALL_STATE(505)] = 2465, + [SMALL_STATE(506)] = 2527, + [SMALL_STATE(507)] = 2589, + [SMALL_STATE(508)] = 2659, + [SMALL_STATE(509)] = 2726, + [SMALL_STATE(510)] = 2793, + [SMALL_STATE(511)] = 2860, + [SMALL_STATE(512)] = 2927, + [SMALL_STATE(513)] = 2994, + [SMALL_STATE(514)] = 3061, + [SMALL_STATE(515)] = 3128, + [SMALL_STATE(516)] = 3195, + [SMALL_STATE(517)] = 3262, + [SMALL_STATE(518)] = 3329, + [SMALL_STATE(519)] = 3396, + [SMALL_STATE(520)] = 3463, + [SMALL_STATE(521)] = 3530, + [SMALL_STATE(522)] = 3597, + [SMALL_STATE(523)] = 3664, + [SMALL_STATE(524)] = 3731, + [SMALL_STATE(525)] = 3798, + [SMALL_STATE(526)] = 3865, + [SMALL_STATE(527)] = 3928, + [SMALL_STATE(528)] = 3990, + [SMALL_STATE(529)] = 4052, + [SMALL_STATE(530)] = 4114, + [SMALL_STATE(531)] = 4174, + [SMALL_STATE(532)] = 4236, + [SMALL_STATE(533)] = 4312, + [SMALL_STATE(534)] = 4372, + [SMALL_STATE(535)] = 4433, + [SMALL_STATE(536)] = 4494, + [SMALL_STATE(537)] = 4555, + [SMALL_STATE(538)] = 4616, + [SMALL_STATE(539)] = 4677, + [SMALL_STATE(540)] = 4738, + [SMALL_STATE(541)] = 4799, + [SMALL_STATE(542)] = 4869, + [SMALL_STATE(543)] = 4919, + [SMALL_STATE(544)] = 4969, + [SMALL_STATE(545)] = 5031, + [SMALL_STATE(546)] = 5101, + [SMALL_STATE(547)] = 5171, + [SMALL_STATE(548)] = 5221, + [SMALL_STATE(549)] = 5273, + [SMALL_STATE(550)] = 5343, + [SMALL_STATE(551)] = 5393, + [SMALL_STATE(552)] = 5463, + [SMALL_STATE(553)] = 5534, + [SMALL_STATE(554)] = 5593, + [SMALL_STATE(555)] = 5664, + [SMALL_STATE(556)] = 5719, + [SMALL_STATE(557)] = 5774, + [SMALL_STATE(558)] = 5833, + [SMALL_STATE(559)] = 5892, + [SMALL_STATE(560)] = 5951, + [SMALL_STATE(561)] = 6010, + [SMALL_STATE(562)] = 6059, + [SMALL_STATE(563)] = 6108, + [SMALL_STATE(564)] = 6163, + [SMALL_STATE(565)] = 6218, + [SMALL_STATE(566)] = 6289, + [SMALL_STATE(567)] = 6343, + [SMALL_STATE(568)] = 6391, + [SMALL_STATE(569)] = 6455, + [SMALL_STATE(570)] = 6503, + [SMALL_STATE(571)] = 6567, + [SMALL_STATE(572)] = 6615, + [SMALL_STATE(573)] = 6675, + [SMALL_STATE(574)] = 6723, + [SMALL_STATE(575)] = 6791, + [SMALL_STATE(576)] = 6859, + [SMALL_STATE(577)] = 6927, + [SMALL_STATE(578)] = 6977, + [SMALL_STATE(579)] = 7045, + [SMALL_STATE(580)] = 7099, + [SMALL_STATE(581)] = 7167, + [SMALL_STATE(582)] = 7231, + [SMALL_STATE(583)] = 7281, + [SMALL_STATE(584)] = 7328, + [SMALL_STATE(585)] = 7375, + [SMALL_STATE(586)] = 7440, + [SMALL_STATE(587)] = 7505, + [SMALL_STATE(588)] = 7562, + [SMALL_STATE(589)] = 7619, + [SMALL_STATE(590)] = 7666, + [SMALL_STATE(591)] = 7713, + [SMALL_STATE(592)] = 7770, + [SMALL_STATE(593)] = 7827, + [SMALL_STATE(594)] = 7886, + [SMALL_STATE(595)] = 7933, + [SMALL_STATE(596)] = 7982, + [SMALL_STATE(597)] = 8029, + [SMALL_STATE(598)] = 8086, + [SMALL_STATE(599)] = 8133, + [SMALL_STATE(600)] = 8195, + [SMALL_STATE(601)] = 8257, + [SMALL_STATE(602)] = 8313, + [SMALL_STATE(603)] = 8361, + [SMALL_STATE(604)] = 8407, + [SMALL_STATE(605)] = 8463, + [SMALL_STATE(606)] = 8519, + [SMALL_STATE(607)] = 8575, + [SMALL_STATE(608)] = 8631, + [SMALL_STATE(609)] = 8677, + [SMALL_STATE(610)] = 8739, + [SMALL_STATE(611)] = 8785, + [SMALL_STATE(612)] = 8844, + [SMALL_STATE(613)] = 8889, + [SMALL_STATE(614)] = 8948, + [SMALL_STATE(615)] = 8993, + [SMALL_STATE(616)] = 9038, + [SMALL_STATE(617)] = 9097, + [SMALL_STATE(618)] = 9142, + [SMALL_STATE(619)] = 9201, + [SMALL_STATE(620)] = 9246, + [SMALL_STATE(621)] = 9305, + [SMALL_STATE(622)] = 9364, + [SMALL_STATE(623)] = 9409, + [SMALL_STATE(624)] = 9468, + [SMALL_STATE(625)] = 9527, + [SMALL_STATE(626)] = 9578, + [SMALL_STATE(627)] = 9623, + [SMALL_STATE(628)] = 9667, + [SMALL_STATE(629)] = 9715, + [SMALL_STATE(630)] = 9759, + [SMALL_STATE(631)] = 9807, + [SMALL_STATE(632)] = 9855, + [SMALL_STATE(633)] = 9899, + [SMALL_STATE(634)] = 9947, + [SMALL_STATE(635)] = 9995, + [SMALL_STATE(636)] = 10039, + [SMALL_STATE(637)] = 10082, + [SMALL_STATE(638)] = 10125, + [SMALL_STATE(639)] = 10168, + [SMALL_STATE(640)] = 10211, + [SMALL_STATE(641)] = 10254, + [SMALL_STATE(642)] = 10297, + [SMALL_STATE(643)] = 10343, + [SMALL_STATE(644)] = 10389, + [SMALL_STATE(645)] = 10431, + [SMALL_STATE(646)] = 10477, + [SMALL_STATE(647)] = 10517, + [SMALL_STATE(648)] = 10563, + [SMALL_STATE(649)] = 10609, + [SMALL_STATE(650)] = 10655, + [SMALL_STATE(651)] = 10701, + [SMALL_STATE(652)] = 10743, + [SMALL_STATE(653)] = 10789, + [SMALL_STATE(654)] = 10837, + [SMALL_STATE(655)] = 10879, + [SMALL_STATE(656)] = 10925, + [SMALL_STATE(657)] = 10965, + [SMALL_STATE(658)] = 11011, + [SMALL_STATE(659)] = 11057, + [SMALL_STATE(660)] = 11105, + [SMALL_STATE(661)] = 11151, + [SMALL_STATE(662)] = 11199, + [SMALL_STATE(663)] = 11245, + [SMALL_STATE(664)] = 11287, + [SMALL_STATE(665)] = 11335, + [SMALL_STATE(666)] = 11381, + [SMALL_STATE(667)] = 11423, + [SMALL_STATE(668)] = 11469, + [SMALL_STATE(669)] = 11515, + [SMALL_STATE(670)] = 11557, + [SMALL_STATE(671)] = 11603, + [SMALL_STATE(672)] = 11645, + [SMALL_STATE(673)] = 11687, + [SMALL_STATE(674)] = 11729, + [SMALL_STATE(675)] = 11775, + [SMALL_STATE(676)] = 11823, + [SMALL_STATE(677)] = 11871, + [SMALL_STATE(678)] = 11913, + [SMALL_STATE(679)] = 11955, + [SMALL_STATE(680)] = 11997, + [SMALL_STATE(681)] = 12035, + [SMALL_STATE(682)] = 12077, + [SMALL_STATE(683)] = 12115, + [SMALL_STATE(684)] = 12157, + [SMALL_STATE(685)] = 12195, + [SMALL_STATE(686)] = 12233, + [SMALL_STATE(687)] = 12275, + [SMALL_STATE(688)] = 12314, + [SMALL_STATE(689)] = 12353, + [SMALL_STATE(690)] = 12392, + [SMALL_STATE(691)] = 12431, + [SMALL_STATE(692)] = 12468, + [SMALL_STATE(693)] = 12520, + [SMALL_STATE(694)] = 12572, + [SMALL_STATE(695)] = 12624, + [SMALL_STATE(696)] = 12676, + [SMALL_STATE(697)] = 12728, + [SMALL_STATE(698)] = 12771, + [SMALL_STATE(699)] = 12799, + [SMALL_STATE(700)] = 12827, + [SMALL_STATE(701)] = 12855, + [SMALL_STATE(702)] = 12883, + [SMALL_STATE(703)] = 12911, + [SMALL_STATE(704)] = 12939, + [SMALL_STATE(705)] = 12966, + [SMALL_STATE(706)] = 12993, + [SMALL_STATE(707)] = 13024, + [SMALL_STATE(708)] = 13051, + [SMALL_STATE(709)] = 13078, + [SMALL_STATE(710)] = 13100, + [SMALL_STATE(711)] = 13128, + [SMALL_STATE(712)] = 13156, + [SMALL_STATE(713)] = 13178, + [SMALL_STATE(714)] = 13206, + [SMALL_STATE(715)] = 13228, + [SMALL_STATE(716)] = 13250, + [SMALL_STATE(717)] = 13272, + [SMALL_STATE(718)] = 13294, + [SMALL_STATE(719)] = 13316, + [SMALL_STATE(720)] = 13344, + [SMALL_STATE(721)] = 13366, + [SMALL_STATE(722)] = 13394, + [SMALL_STATE(723)] = 13416, + [SMALL_STATE(724)] = 13431, + [SMALL_STATE(725)] = 13448, + [SMALL_STATE(726)] = 13465, + [SMALL_STATE(727)] = 13483, + [SMALL_STATE(728)] = 13501, + [SMALL_STATE(729)] = 13523, + [SMALL_STATE(730)] = 13541, + [SMALL_STATE(731)] = 13559, + [SMALL_STATE(732)] = 13569, + [SMALL_STATE(733)] = 13587, + [SMALL_STATE(734)] = 13605, + [SMALL_STATE(735)] = 13627, + [SMALL_STATE(736)] = 13645, + [SMALL_STATE(737)] = 13663, + [SMALL_STATE(738)] = 13681, + [SMALL_STATE(739)] = 13699, + [SMALL_STATE(740)] = 13717, + [SMALL_STATE(741)] = 13735, + [SMALL_STATE(742)] = 13757, + [SMALL_STATE(743)] = 13775, + [SMALL_STATE(744)] = 13793, + [SMALL_STATE(745)] = 13811, + [SMALL_STATE(746)] = 13829, + [SMALL_STATE(747)] = 13847, + [SMALL_STATE(748)] = 13865, + [SMALL_STATE(749)] = 13883, + [SMALL_STATE(750)] = 13901, + [SMALL_STATE(751)] = 13919, + [SMALL_STATE(752)] = 13935, + [SMALL_STATE(753)] = 13957, + [SMALL_STATE(754)] = 13979, + [SMALL_STATE(755)] = 13994, + [SMALL_STATE(756)] = 14009, + [SMALL_STATE(757)] = 14024, + [SMALL_STATE(758)] = 14039, + [SMALL_STATE(759)] = 14048, + [SMALL_STATE(760)] = 14063, + [SMALL_STATE(761)] = 14078, + [SMALL_STATE(762)] = 14087, + [SMALL_STATE(763)] = 14102, + [SMALL_STATE(764)] = 14117, + [SMALL_STATE(765)] = 14136, + [SMALL_STATE(766)] = 14145, + [SMALL_STATE(767)] = 14164, + [SMALL_STATE(768)] = 14183, + [SMALL_STATE(769)] = 14198, + [SMALL_STATE(770)] = 14213, + [SMALL_STATE(771)] = 14228, + [SMALL_STATE(772)] = 14237, + [SMALL_STATE(773)] = 14256, + [SMALL_STATE(774)] = 14275, + [SMALL_STATE(775)] = 14290, + [SMALL_STATE(776)] = 14305, + [SMALL_STATE(777)] = 14324, + [SMALL_STATE(778)] = 14339, + [SMALL_STATE(779)] = 14354, + [SMALL_STATE(780)] = 14369, + [SMALL_STATE(781)] = 14388, + [SMALL_STATE(782)] = 14407, + [SMALL_STATE(783)] = 14423, + [SMALL_STATE(784)] = 14437, + [SMALL_STATE(785)] = 14453, + [SMALL_STATE(786)] = 14469, + [SMALL_STATE(787)] = 14485, + [SMALL_STATE(788)] = 14493, + [SMALL_STATE(789)] = 14503, + [SMALL_STATE(790)] = 14517, + [SMALL_STATE(791)] = 14533, + [SMALL_STATE(792)] = 14549, + [SMALL_STATE(793)] = 14563, + [SMALL_STATE(794)] = 14577, + [SMALL_STATE(795)] = 14593, + [SMALL_STATE(796)] = 14601, + [SMALL_STATE(797)] = 14611, + [SMALL_STATE(798)] = 14619, + [SMALL_STATE(799)] = 14633, + [SMALL_STATE(800)] = 14649, + [SMALL_STATE(801)] = 14665, + [SMALL_STATE(802)] = 14677, + [SMALL_STATE(803)] = 14690, + [SMALL_STATE(804)] = 14699, + [SMALL_STATE(805)] = 14712, + [SMALL_STATE(806)] = 14721, + [SMALL_STATE(807)] = 14734, + [SMALL_STATE(808)] = 14743, + [SMALL_STATE(809)] = 14756, + [SMALL_STATE(810)] = 14765, + [SMALL_STATE(811)] = 14774, + [SMALL_STATE(812)] = 14783, + [SMALL_STATE(813)] = 14792, + [SMALL_STATE(814)] = 14805, + [SMALL_STATE(815)] = 14814, + [SMALL_STATE(816)] = 14823, + [SMALL_STATE(817)] = 14836, + [SMALL_STATE(818)] = 14845, + [SMALL_STATE(819)] = 14858, + [SMALL_STATE(820)] = 14871, + [SMALL_STATE(821)] = 14884, + [SMALL_STATE(822)] = 14893, + [SMALL_STATE(823)] = 14906, + [SMALL_STATE(824)] = 14915, + [SMALL_STATE(825)] = 14924, + [SMALL_STATE(826)] = 14933, + [SMALL_STATE(827)] = 14940, + [SMALL_STATE(828)] = 14949, + [SMALL_STATE(829)] = 14958, + [SMALL_STATE(830)] = 14967, + [SMALL_STATE(831)] = 14976, + [SMALL_STATE(832)] = 14989, + [SMALL_STATE(833)] = 14998, + [SMALL_STATE(834)] = 15011, + [SMALL_STATE(835)] = 15020, + [SMALL_STATE(836)] = 15029, + [SMALL_STATE(837)] = 15038, + [SMALL_STATE(838)] = 15048, + [SMALL_STATE(839)] = 15058, + [SMALL_STATE(840)] = 15068, + [SMALL_STATE(841)] = 15078, + [SMALL_STATE(842)] = 15088, + [SMALL_STATE(843)] = 15098, + [SMALL_STATE(844)] = 15108, + [SMALL_STATE(845)] = 15118, + [SMALL_STATE(846)] = 15128, + [SMALL_STATE(847)] = 15138, + [SMALL_STATE(848)] = 15148, + [SMALL_STATE(849)] = 15158, + [SMALL_STATE(850)] = 15168, + [SMALL_STATE(851)] = 15178, + [SMALL_STATE(852)] = 15188, + [SMALL_STATE(853)] = 15196, + [SMALL_STATE(854)] = 15206, + [SMALL_STATE(855)] = 15216, + [SMALL_STATE(856)] = 15226, + [SMALL_STATE(857)] = 15236, + [SMALL_STATE(858)] = 15246, + [SMALL_STATE(859)] = 15252, + [SMALL_STATE(860)] = 15262, + [SMALL_STATE(861)] = 15272, + [SMALL_STATE(862)] = 15282, + [SMALL_STATE(863)] = 15292, + [SMALL_STATE(864)] = 15302, + [SMALL_STATE(865)] = 15312, + [SMALL_STATE(866)] = 15322, + [SMALL_STATE(867)] = 15328, + [SMALL_STATE(868)] = 15338, + [SMALL_STATE(869)] = 15348, + [SMALL_STATE(870)] = 15358, + [SMALL_STATE(871)] = 15368, + [SMALL_STATE(872)] = 15378, + [SMALL_STATE(873)] = 15384, + [SMALL_STATE(874)] = 15394, + [SMALL_STATE(875)] = 15404, + [SMALL_STATE(876)] = 15414, + [SMALL_STATE(877)] = 15424, + [SMALL_STATE(878)] = 15434, + [SMALL_STATE(879)] = 15444, + [SMALL_STATE(880)] = 15450, + [SMALL_STATE(881)] = 15457, + [SMALL_STATE(882)] = 15464, + [SMALL_STATE(883)] = 15471, + [SMALL_STATE(884)] = 15478, + [SMALL_STATE(885)] = 15485, + [SMALL_STATE(886)] = 15492, + [SMALL_STATE(887)] = 15499, + [SMALL_STATE(888)] = 15506, + [SMALL_STATE(889)] = 15513, + [SMALL_STATE(890)] = 15520, + [SMALL_STATE(891)] = 15527, + [SMALL_STATE(892)] = 15534, + [SMALL_STATE(893)] = 15541, + [SMALL_STATE(894)] = 15548, + [SMALL_STATE(895)] = 15555, + [SMALL_STATE(896)] = 15562, + [SMALL_STATE(897)] = 15569, + [SMALL_STATE(898)] = 15576, + [SMALL_STATE(899)] = 15583, + [SMALL_STATE(900)] = 15590, + [SMALL_STATE(901)] = 15597, + [SMALL_STATE(902)] = 15604, + [SMALL_STATE(903)] = 15611, + [SMALL_STATE(904)] = 15618, + [SMALL_STATE(905)] = 15625, + [SMALL_STATE(906)] = 15632, + [SMALL_STATE(907)] = 15639, + [SMALL_STATE(908)] = 15646, + [SMALL_STATE(909)] = 15653, + [SMALL_STATE(910)] = 15660, + [SMALL_STATE(911)] = 15667, + [SMALL_STATE(912)] = 15674, + [SMALL_STATE(913)] = 15681, + [SMALL_STATE(914)] = 15688, + [SMALL_STATE(915)] = 15695, + [SMALL_STATE(916)] = 15702, + [SMALL_STATE(917)] = 15709, + [SMALL_STATE(918)] = 15716, + [SMALL_STATE(919)] = 15723, + [SMALL_STATE(920)] = 15730, + [SMALL_STATE(921)] = 15737, + [SMALL_STATE(922)] = 15744, + [SMALL_STATE(923)] = 15751, + [SMALL_STATE(924)] = 15758, + [SMALL_STATE(925)] = 15765, + [SMALL_STATE(926)] = 15772, + [SMALL_STATE(927)] = 15779, + [SMALL_STATE(928)] = 15786, + [SMALL_STATE(929)] = 15793, + [SMALL_STATE(930)] = 15800, + [SMALL_STATE(931)] = 15807, + [SMALL_STATE(932)] = 15814, + [SMALL_STATE(933)] = 15821, + [SMALL_STATE(934)] = 15828, + [SMALL_STATE(935)] = 15835, + [SMALL_STATE(936)] = 15842, + [SMALL_STATE(937)] = 15849, + [SMALL_STATE(938)] = 15854, + [SMALL_STATE(939)] = 15861, + [SMALL_STATE(940)] = 15868, + [SMALL_STATE(941)] = 15875, + [SMALL_STATE(942)] = 15882, + [SMALL_STATE(943)] = 15889, + [SMALL_STATE(944)] = 15896, + [SMALL_STATE(945)] = 15903, + [SMALL_STATE(946)] = 15910, + [SMALL_STATE(947)] = 15915, + [SMALL_STATE(948)] = 15922, + [SMALL_STATE(949)] = 15929, + [SMALL_STATE(950)] = 15936, + [SMALL_STATE(951)] = 15943, + [SMALL_STATE(952)] = 15950, + [SMALL_STATE(953)] = 15955, + [SMALL_STATE(954)] = 15962, + [SMALL_STATE(955)] = 15969, + [SMALL_STATE(956)] = 15976, + [SMALL_STATE(957)] = 15983, + [SMALL_STATE(958)] = 15990, + [SMALL_STATE(959)] = 15997, + [SMALL_STATE(960)] = 16004, + [SMALL_STATE(961)] = 16011, + [SMALL_STATE(962)] = 16018, + [SMALL_STATE(963)] = 16025, + [SMALL_STATE(964)] = 16032, + [SMALL_STATE(965)] = 16039, + [SMALL_STATE(966)] = 16046, + [SMALL_STATE(967)] = 16053, + [SMALL_STATE(968)] = 16060, + [SMALL_STATE(969)] = 16067, + [SMALL_STATE(970)] = 16074, + [SMALL_STATE(971)] = 16079, + [SMALL_STATE(972)] = 16086, + [SMALL_STATE(973)] = 16091, + [SMALL_STATE(974)] = 16096, + [SMALL_STATE(975)] = 16103, + [SMALL_STATE(976)] = 16110, + [SMALL_STATE(977)] = 16117, + [SMALL_STATE(978)] = 16124, + [SMALL_STATE(979)] = 16131, + [SMALL_STATE(980)] = 16138, + [SMALL_STATE(981)] = 16145, + [SMALL_STATE(982)] = 16152, + [SMALL_STATE(983)] = 16159, + [SMALL_STATE(984)] = 16166, + [SMALL_STATE(985)] = 16173, + [SMALL_STATE(986)] = 16180, + [SMALL_STATE(987)] = 16187, + [SMALL_STATE(988)] = 16194, + [SMALL_STATE(989)] = 16201, + [SMALL_STATE(990)] = 16208, + [SMALL_STATE(991)] = 16215, + [SMALL_STATE(992)] = 16222, + [SMALL_STATE(993)] = 16226, + [SMALL_STATE(994)] = 16230, + [SMALL_STATE(995)] = 16234, + [SMALL_STATE(996)] = 16238, + [SMALL_STATE(997)] = 16242, + [SMALL_STATE(998)] = 16246, + [SMALL_STATE(999)] = 16250, + [SMALL_STATE(1000)] = 16254, + [SMALL_STATE(1001)] = 16258, + [SMALL_STATE(1002)] = 16262, + [SMALL_STATE(1003)] = 16266, + [SMALL_STATE(1004)] = 16270, + [SMALL_STATE(1005)] = 16274, + [SMALL_STATE(1006)] = 16278, + [SMALL_STATE(1007)] = 16282, + [SMALL_STATE(1008)] = 16286, + [SMALL_STATE(1009)] = 16290, + [SMALL_STATE(1010)] = 16294, + [SMALL_STATE(1011)] = 16298, + [SMALL_STATE(1012)] = 16302, + [SMALL_STATE(1013)] = 16306, + [SMALL_STATE(1014)] = 16310, + [SMALL_STATE(1015)] = 16314, + [SMALL_STATE(1016)] = 16318, + [SMALL_STATE(1017)] = 16322, + [SMALL_STATE(1018)] = 16326, + [SMALL_STATE(1019)] = 16330, + [SMALL_STATE(1020)] = 16334, + [SMALL_STATE(1021)] = 16338, + [SMALL_STATE(1022)] = 16342, + [SMALL_STATE(1023)] = 16346, + [SMALL_STATE(1024)] = 16350, + [SMALL_STATE(1025)] = 16354, + [SMALL_STATE(1026)] = 16358, + [SMALL_STATE(1027)] = 16362, + [SMALL_STATE(1028)] = 16366, + [SMALL_STATE(1029)] = 16370, + [SMALL_STATE(1030)] = 16374, + [SMALL_STATE(1031)] = 16378, + [SMALL_STATE(1032)] = 16382, + [SMALL_STATE(1033)] = 16386, + [SMALL_STATE(1034)] = 16390, + [SMALL_STATE(1035)] = 16394, + [SMALL_STATE(1036)] = 16398, + [SMALL_STATE(1037)] = 16402, + [SMALL_STATE(1038)] = 16406, + [SMALL_STATE(1039)] = 16410, + [SMALL_STATE(1040)] = 16414, + [SMALL_STATE(1041)] = 16418, + [SMALL_STATE(1042)] = 16422, + [SMALL_STATE(1043)] = 16426, + [SMALL_STATE(1044)] = 16430, + [SMALL_STATE(1045)] = 16434, + [SMALL_STATE(1046)] = 16438, + [SMALL_STATE(1047)] = 16442, + [SMALL_STATE(1048)] = 16446, + [SMALL_STATE(1049)] = 16450, + [SMALL_STATE(1050)] = 16454, + [SMALL_STATE(1051)] = 16458, + [SMALL_STATE(1052)] = 16462, + [SMALL_STATE(1053)] = 16466, + [SMALL_STATE(1054)] = 16470, + [SMALL_STATE(1055)] = 16474, + [SMALL_STATE(1056)] = 16478, + [SMALL_STATE(1057)] = 16482, + [SMALL_STATE(1058)] = 16486, + [SMALL_STATE(1059)] = 16490, + [SMALL_STATE(1060)] = 16494, + [SMALL_STATE(1061)] = 16498, + [SMALL_STATE(1062)] = 16502, + [SMALL_STATE(1063)] = 16506, + [SMALL_STATE(1064)] = 16510, + [SMALL_STATE(1065)] = 16514, + [SMALL_STATE(1066)] = 16518, + [SMALL_STATE(1067)] = 16522, + [SMALL_STATE(1068)] = 16526, + [SMALL_STATE(1069)] = 16530, + [SMALL_STATE(1070)] = 16534, + [SMALL_STATE(1071)] = 16538, + [SMALL_STATE(1072)] = 16542, + [SMALL_STATE(1073)] = 16546, + [SMALL_STATE(1074)] = 16550, + [SMALL_STATE(1075)] = 16554, + [SMALL_STATE(1076)] = 16558, + [SMALL_STATE(1077)] = 16562, + [SMALL_STATE(1078)] = 16566, + [SMALL_STATE(1079)] = 16570, + [SMALL_STATE(1080)] = 16574, + [SMALL_STATE(1081)] = 16578, + [SMALL_STATE(1082)] = 16582, + [SMALL_STATE(1083)] = 16586, + [SMALL_STATE(1084)] = 16590, + [SMALL_STATE(1085)] = 16594, + [SMALL_STATE(1086)] = 16598, + [SMALL_STATE(1087)] = 16602, + [SMALL_STATE(1088)] = 16606, + [SMALL_STATE(1089)] = 16610, + [SMALL_STATE(1090)] = 16614, + [SMALL_STATE(1091)] = 16618, + [SMALL_STATE(1092)] = 16622, + [SMALL_STATE(1093)] = 16626, + [SMALL_STATE(1094)] = 16630, + [SMALL_STATE(1095)] = 16634, + [SMALL_STATE(1096)] = 16638, + [SMALL_STATE(1097)] = 16642, + [SMALL_STATE(1098)] = 16646, + [SMALL_STATE(1099)] = 16650, + [SMALL_STATE(1100)] = 16654, + [SMALL_STATE(1101)] = 16658, + [SMALL_STATE(1102)] = 16662, + [SMALL_STATE(1103)] = 16666, + [SMALL_STATE(1104)] = 16670, + [SMALL_STATE(1105)] = 16674, + [SMALL_STATE(1106)] = 16678, + [SMALL_STATE(1107)] = 16682, }; 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(499), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), @@ -59894,34 +61180,34 @@ static const TSParseActionEntry ts_parse_actions[] = { [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), @@ -59930,7 +61216,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), @@ -59946,20 +61232,20 @@ static const TSParseActionEntry ts_parse_actions[] = { [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(548), [172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(474), [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(397), [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(406), @@ -59971,7 +61257,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(843), [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(552), [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(936), [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(962), [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(662), @@ -60021,10 +61307,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(554), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(481), [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(482), [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(483), [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(484), @@ -60033,7 +61319,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(699), [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(990), [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(943), [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), @@ -60047,19 +61333,19 @@ static const TSParseActionEntry ts_parse_actions[] = { [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 4), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(548), [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(474), [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(397), [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(406), @@ -60071,7 +61357,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(843), [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(552), [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(936), [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(962), [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(662), @@ -60084,24 +61370,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(480), [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(849), [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(703), [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(701), [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(845), [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(554), [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(921), [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(554), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(481), [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(482), [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(483), [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(484), @@ -60110,21 +61396,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(699), [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(838), [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(990), [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(548), [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(474), [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(397), [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(406), @@ -60136,7 +61422,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(843), [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(552), [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(936), [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(962), [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(662), @@ -60148,22 +61434,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(480), [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(849), [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(703), [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(701), [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(845), [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(554), [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(921), [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(554), - [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(481), [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(482), [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(483), [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(484), @@ -60172,21 +61458,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(699), [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(838), [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(990), [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(943), [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(548), [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(474), [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(397), [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(406), @@ -60198,7 +61484,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(843), [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(552), [840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(936), [843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(962), [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(662), @@ -60210,7 +61496,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(535), [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(482), [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(483), [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(484), @@ -60219,35 +61505,35 @@ static const TSParseActionEntry ts_parse_actions[] = { [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(699), [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(838), [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(990), [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(943), [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(480), [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(849), [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(703), [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(701), [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(845), [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(554), [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(921), [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 1), [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(548), [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(474), [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(397), [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(406), @@ -60259,7 +61545,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(843), [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(552), [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(936), [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(962), [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(662), @@ -60270,7 +61556,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(535), [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(483), [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(484), [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(857), @@ -60278,32 +61564,32 @@ static const TSParseActionEntry ts_parse_actions[] = { [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(699), [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(838), [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(990), [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(943), [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(478), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(480), [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(849), [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(703), [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(701), [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(845), [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(554), [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(921), [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 1), [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(548), [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(546), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(474), [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(397), [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(406), @@ -60315,7 +61601,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(843), [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(552), [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(936), [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(962), [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(662), @@ -60323,26 +61609,26 @@ static const TSParseActionEntry ts_parse_actions[] = { [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [1189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(480), [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(849), [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(703), [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(701), [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(845), [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(554), [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(921), [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(535), [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(484), [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(857), [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(698), [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(699), [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(838), [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(990), [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(943), [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), @@ -60350,14 +61636,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 1), [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 1), - [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(548), [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(534), [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(840), [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(397), [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(406), @@ -60369,260 +61655,260 @@ static const TSParseActionEntry ts_parse_actions[] = { [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(702), [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(843), [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(552), [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(936), [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(962), [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(662), [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(535), [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(857), [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(698), [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(699), [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(838), [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(349), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(565), [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(990), [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(943), [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(536), [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(849), [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(703), [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(701), [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(845), [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(554), [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(919), [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(921), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 1, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indented_code_block, 2, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(438), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(534), [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(397), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(406), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(545), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(536), [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(845), [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, 0, 5), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, 0, 5), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(535), [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_not_section, 1, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_not_section, 1, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 3, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 3, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4, 0, 0), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 4, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4, 0, 0), [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blank_line, 2, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 2, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2, 0, 0), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 2, 0, 0), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, 0, 3), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setext_heading1, 3, 0, 3), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setext_heading2, 3, 0, 3), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, 0, 0), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setext_heading1, 3, 0, 3), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, 0, 3), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__setext_heading2, 3, 0, 3), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, 0, 0), [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 4, 0, 11), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 4, 0, 11), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 4, 0, 11), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 4, 0, 11), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 4, 0, 11), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 4, 0, 11), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 4, 0, 11), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 4, 0, 11), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 4, 0, 11), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__indented_chunk, 4, 0, 0), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 4, 0, 11), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 4, 0, 11), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 4, 0, 11), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 4, 0, 11), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 4, 0, 11), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 4, 0, 11), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 4, 0, 11), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 4, 0, 11), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 4, 0, 11), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 4, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 13), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 5, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 5, 0, 0), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 5, 0, 0), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_quote, 5, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 5, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 13), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 5, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 5, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 5, 0, 0), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 6, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 13), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 6, 0, 0), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8, 0, 0), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 8, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 9, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 6), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_not_section, 1, 0, 1), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 7), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 6), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 6, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 13), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 6, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 7, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 8, 0, 0), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8, 0, 0), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 8, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 9, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 6), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_not_section, 1, 0, 1), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 7), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 6), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 7), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 6), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 7), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 6), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 7), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 6), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 7), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 6), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 1, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 7), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 7), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), @@ -60631,629 +61917,642 @@ static const TSParseActionEntry ts_parse_actions[] = { [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 6), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 7), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 6), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 7), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 6), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2, 0, 0), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 6), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thematic_break, 2, 0, 0), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 7), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 7), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3, 0, 0), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_code_block, 3, 0, 0), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 9, 0, 0), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 9, 0, 0), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fenced_div_block, 9, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 9, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 1, 0, 0), SHIFT(848), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 1, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 1, 0, 0), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 1, 0, 0), SHIFT(848), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 1, 0, 0), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 1, 0, 0), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(499), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(501), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(561), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(507), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regular_block_content, 1, 0, 0), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(595), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(614), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(587), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(642), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(594), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(605), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(614), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(637), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(655), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(658), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(582), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(584), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 1, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 3, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(632), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(656), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(661), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(675), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(675), - [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(681), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(478), - [2642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(486), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(474), - [2648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(479), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(476), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(475), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(949), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), - [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(779), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(854), - [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(854), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(801), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3005] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 3, 0), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 3, 10), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), + [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__regular_block_content, 1, 0, 0), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(582), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [2234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(593), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(583), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(591), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(591), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(658), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 1, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 2, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 3, 0, 0), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(634), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(675), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(675), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(681), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), + [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(476), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(485), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(475), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(477), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(478), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(480), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(723), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(779), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(854), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(854), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3037] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 3, 0), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 3, 10), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), }; enum ts_external_scanner_symbol_identifiers { @@ -61932,44 +63231,49 @@ static const bool ts_external_scanner_states[47][EXTERNAL_TOKEN_COUNT] = { }, [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, - [ts_external_token__code_span_start] = true, - [ts_external_token__latex_span_start] = true, + [ts_external_token__html_comment] = true, }, [18] = { [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, [ts_external_token__html_comment] = true, }, [19] = { [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__html_comment] = true, + [ts_external_token__code_span_start] = true, + [ts_external_token__latex_span_start] = true, }, [20] = { + [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, - [ts_external_token__latex_span_start] = true, + [ts_external_token__html_comment] = true, }, [21] = { [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = 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, [ts_external_token__html_comment] = true, + [ts_external_token_raw_specifier] = true, + [ts_external_token__autolink] = true, }, [22] = { - [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, @@ -61977,15 +63281,10 @@ static const bool ts_external_scanner_states[47][EXTERNAL_TOKEN_COUNT] = { }, [23] = { [ts_external_token__line_ending] = true, - [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = 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, - [ts_external_token__html_comment] = true, - [ts_external_token_raw_specifier] = true, - [ts_external_token__autolink] = true, + [ts_external_token__latex_span_start] = true, }, [24] = { [ts_external_token__line_ending] = true, @@ -62007,21 +63306,21 @@ static const bool ts_external_scanner_states[47][EXTERNAL_TOKEN_COUNT] = { }, [26] = { [ts_external_token__line_ending] = true, + [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = 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, - [ts_external_token__latex_span_start] = true, + [ts_external_token__html_comment] = true, }, [27] = { [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = 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__html_comment] = true, + [ts_external_token__code_span_start] = true, + [ts_external_token__latex_span_start] = true, }, [28] = { [ts_external_token__line_ending] = true,