diff --git a/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs b/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs index 08d7ff7..564fe38 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs @@ -3,6 +3,8 @@ * Copyright (c) 2025 Posit, PBC */ +use std::cell::Cell; + /// Context passed through the parsing pipeline to provide information /// about the current parse operation and manage string ownership. /// The filenames vector will eventually be used to deduplicate strings @@ -10,24 +12,30 @@ #[derive(Debug, Clone)] pub struct ASTContext { pub filenames: Vec, + /// Counter for example list numbering across the document + /// Example lists continue numbering even when interrupted by other content + pub example_list_counter: Cell, } impl ASTContext { pub fn new() -> Self { ASTContext { filenames: Vec::new(), + example_list_counter: Cell::new(1), } } pub fn with_filename(filename: impl Into) -> Self { ASTContext { filenames: vec![filename.into()], + example_list_counter: Cell::new(1), } } pub fn anonymous() -> Self { ASTContext { filenames: Vec::new(), + example_list_counter: Cell::new(1), } } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/list.rs b/crates/quarto-markdown-pandoc/src/pandoc/list.rs index 68b25c3..e22edce 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/list.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/list.rs @@ -6,6 +6,7 @@ #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)] pub enum ListNumberStyle { Default, + Example, Decimal, LowerRoman, UpperRoman, diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs index 24a32f2..3a823c1 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs @@ -112,7 +112,10 @@ fn process_list( // this is a marker node, we don't need to do anything with it continue; } - if node == "list_marker_parenthesis" || node == "list_marker_dot" { + if node == "list_marker_parenthesis" + || node == "list_marker_dot" + || node == "list_marker_example" + { // this is an ordered list, so we need to set the flag let PandocNativeIntermediate::IntermediateOrderedListMarker(marker_number, _) = child else { @@ -121,10 +124,14 @@ fn process_list( is_ordered_list = Some(( marker_number, - ListNumberStyle::Decimal, + match node.as_str() { + "list_marker_example" => ListNumberStyle::Example, + _ => ListNumberStyle::Decimal, + }, match node.as_str() { "list_marker_parenthesis" => ListNumberDelim::OneParen, "list_marker_dot" => ListNumberDelim::Period, + "list_marker_example" => ListNumberDelim::TwoParens, _ => panic!("Unexpected list marker node: {}", node), }, )); @@ -244,7 +251,14 @@ fn process_list( }; match is_ordered_list { - Some(attr) => { + Some(mut attr) => { + // For example lists, use and update the global counter + if attr.1 == ListNumberStyle::Example { + let start_num = context.example_list_counter.get(); + attr.0 = start_num; + // Increment counter by the number of items in this list + context.example_list_counter.set(start_num + content.len()); + } PandocNativeIntermediate::IntermediateBlock(Block::OrderedList(OrderedList { attr, content, @@ -267,7 +281,10 @@ fn process_list_item( let children = children .into_iter() .filter_map(|(node, child)| { - if node == "list_marker_dot" || node == "list_marker_parenthesis" { + if node == "list_marker_dot" + || node == "list_marker_parenthesis" + || node == "list_marker_example" + { // this is an ordered list, so we need to set the flag let PandocNativeIntermediate::IntermediateOrderedListMarker(marker_number, _) = child @@ -276,10 +293,14 @@ fn process_list_item( }; list_attr = Some(( marker_number, - ListNumberStyle::Decimal, + match node.as_str() { + "list_marker_example" => ListNumberStyle::Example, + _ => ListNumberStyle::Decimal, + }, match node.as_str() { "list_marker_parenthesis" => ListNumberDelim::OneParen, "list_marker_dot" => ListNumberDelim::Period, + "list_marker_example" => ListNumberDelim::TwoParens, _ => panic!("Unexpected list marker node: {}", node), }, )); @@ -568,7 +589,7 @@ fn native_visitor( "shortcode_boolean" => process_shortcode_boolean(node, input_bytes, context), "shortcode_number" => process_shortcode_number(node, input_bytes, context), "code_fence_content" => process_code_fence_content(node, children, input_bytes, context), - "list_marker_parenthesis" | "list_marker_dot" => { + "list_marker_parenthesis" | "list_marker_dot" | "list_marker_example" => { process_list_marker(node, input_bytes, context) } // These are marker nodes, we don't need to do anything with it diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs index 9abefb4..ba6aca6 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/list_marker.rs @@ -20,7 +20,19 @@ pub fn process_list_marker( // we trim both ends instead of just trim_end() // because the lexer might hand us a marker with tabs at the beginning, // as a result of weird mixed-spaces-and-tabs cases like "> \t1." - .trim() + .trim(); + + // Check if this is an example list marker (@) + if marker_text == "(@)" { + // For example lists, we use 1 as the starting number + // The actual numbering will be handled in postprocessing + return PandocNativeIntermediate::IntermediateOrderedListMarker( + 1, + node_source_info_with_context(node, context).range, + ); + } + + let marker_text = marker_text .trim_end_matches('.') .trim_end_matches(')') .to_string(); diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs index d0f16f8..767acde 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs @@ -259,7 +259,6 @@ fn transform_definition_list_div(div: Div) -> Block { }) } - /// Apply post-processing transformations to the Pandoc AST pub fn postprocess(doc: Pandoc) -> Result> { let mut errors = Vec::new(); diff --git a/crates/quarto-markdown-pandoc/src/readers/json.rs b/crates/quarto-markdown-pandoc/src/readers/json.rs index be760bf..81f9c12 100644 --- a/crates/quarto-markdown-pandoc/src/readers/json.rs +++ b/crates/quarto-markdown-pandoc/src/readers/json.rs @@ -640,7 +640,10 @@ fn read_ast_context(value: &Value) -> Result { }) .collect::>>()?; - Ok(ASTContext { filenames }) + Ok(ASTContext { + filenames, + example_list_counter: std::cell::Cell::new(1), + }) } pub fn read(reader: &mut R) -> Result<(Pandoc, ASTContext)> { diff --git a/crates/quarto-markdown-pandoc/src/writers/json.rs b/crates/quarto-markdown-pandoc/src/writers/json.rs index 37c3392..6ae7c3b 100644 --- a/crates/quarto-markdown-pandoc/src/writers/json.rs +++ b/crates/quarto-markdown-pandoc/src/writers/json.rs @@ -192,6 +192,7 @@ fn write_list_attributes(attr: &ListAttributes) -> Value { crate::pandoc::ListNumberStyle::UpperAlpha => json!({"t": "UpperAlpha"}), crate::pandoc::ListNumberStyle::LowerRoman => json!({"t": "LowerRoman"}), crate::pandoc::ListNumberStyle::UpperRoman => json!({"t": "UpperRoman"}), + crate::pandoc::ListNumberStyle::Example => json!({"t": "Example"}), crate::pandoc::ListNumberStyle::Default => json!({"t": "Default"}), }; let number_delimiter = match attr.2 { diff --git a/crates/quarto-markdown-pandoc/src/writers/native.rs b/crates/quarto-markdown-pandoc/src/writers/native.rs index fb58398..fe9899c 100644 --- a/crates/quarto-markdown-pandoc/src/writers/native.rs +++ b/crates/quarto-markdown-pandoc/src/writers/native.rs @@ -358,6 +358,7 @@ fn write_list_number_style( crate::pandoc::ListNumberStyle::UpperAlpha => write!(buf, "UpperAlpha"), crate::pandoc::ListNumberStyle::LowerRoman => write!(buf, "LowerRoman"), crate::pandoc::ListNumberStyle::UpperRoman => write!(buf, "UpperRoman"), + crate::pandoc::ListNumberStyle::Example => write!(buf, "Example"), crate::pandoc::ListNumberStyle::Default => write!(buf, "Decimal"), // Is this supposed to be the default? } } diff --git a/crates/quarto-markdown-pandoc/src/writers/qmd.rs b/crates/quarto-markdown-pandoc/src/writers/qmd.rs index d1b4076..79b01d2 100644 --- a/crates/quarto-markdown-pandoc/src/writers/qmd.rs +++ b/crates/quarto-markdown-pandoc/src/writers/qmd.rs @@ -5,7 +5,7 @@ use crate::pandoc::attr::is_empty_attr; use crate::pandoc::block::MetaBlock; -use crate::pandoc::list::ListNumberDelim; +use crate::pandoc::list::{ListNumberDelim, ListNumberStyle}; use crate::pandoc::meta::MetaValue; use crate::pandoc::table::{Alignment, Cell, Table}; use crate::pandoc::{ @@ -101,12 +101,18 @@ struct OrderedListContext<'a, W: Write + ?Sized> { at_line_start: bool, is_first_line: bool, number: usize, + number_style: ListNumberStyle, delimiter: ListNumberDelim, indent: String, } impl<'a, W: Write + ?Sized> OrderedListContext<'a, W> { - fn new(inner: &'a mut W, number: usize, delimiter: ListNumberDelim) -> Self { + fn new( + inner: &'a mut W, + number: usize, + number_style: ListNumberStyle, + delimiter: ListNumberDelim, + ) -> Self { // Pandoc uses consistent spacing: for numbers < 10, uses two spaces after delimiter // For numbers >= 10, uses one space. Continuation lines always use 4 spaces indent. let indent = " ".to_string(); // Always 4 spaces for continuation lines @@ -116,6 +122,7 @@ impl<'a, W: Write + ?Sized> OrderedListContext<'a, W> { at_line_start: true, is_first_line: true, number, + number_style, delimiter, indent, } @@ -128,18 +135,23 @@ impl<'a, W: Write + ?Sized> Write for OrderedListContext<'a, W> { for &byte in buf { if self.at_line_start { if self.is_first_line { - let delim_str = match self.delimiter { - ListNumberDelim::Period => ".", - ListNumberDelim::OneParen => ")", - ListNumberDelim::TwoParens => ")", - _ => ".", - }; - // Pandoc style: numbers < 10 get two spaces after delimiter, - // numbers >= 10 get one space - if self.number < 10 { - write!(self.inner, "{}{} ", self.number, delim_str)?; + // For example lists, always use (@) marker + if matches!(self.number_style, ListNumberStyle::Example) { + write!(self.inner, "(@) ")?; } else { - write!(self.inner, "{}{} ", self.number, delim_str)?; + let delim_str = match self.delimiter { + ListNumberDelim::Period => ".", + ListNumberDelim::OneParen => ")", + ListNumberDelim::TwoParens => ")", + _ => ".", + }; + // Pandoc style: numbers < 10 get two spaces after delimiter, + // numbers >= 10 get one space + if self.number < 10 { + write!(self.inner, "{}{} ", self.number, delim_str)?; + } else { + write!(self.inner, "{}{} ", self.number, delim_str)?; + } } self.is_first_line = false; } else { @@ -331,7 +343,7 @@ fn write_orderedlist( orderedlist: &OrderedList, buf: &mut dyn std::io::Write, ) -> std::io::Result<()> { - let (start_num, _number_style, delimiter) = &orderedlist.attr; + let (start_num, number_style, delimiter) = &orderedlist.attr; // Determine if this is a tight list // A list is tight if the first block of all items is Plain (not Para) @@ -346,7 +358,8 @@ fn write_orderedlist( writeln!(buf)?; } let current_num = start_num + i; - let mut item_writer = OrderedListContext::new(buf, current_num, delimiter.clone()); + let mut item_writer = + OrderedListContext::new(buf, current_num, number_style.clone(), delimiter.clone()); for (j, block) in item.iter().enumerate() { if j > 0 && !is_tight { // Add a blank line between blocks within a list item in loose lists diff --git a/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/060.qmd b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/060.qmd new file mode 100644 index 0000000..8050c9a --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/pandoc-match-corpus/markdown/060.qmd @@ -0,0 +1,9 @@ +(@) First item + +(@) Second item + +Some text in between. + +(@) Third item + +(@) Fourth item diff --git a/crates/quarto-markdown-pandoc/tests/smoke/020.qmd b/crates/quarto-markdown-pandoc/tests/smoke/020.qmd new file mode 100644 index 0000000..0f8f0c3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/020.qmd @@ -0,0 +1,5 @@ +(@) First item + +(@) Second item + +(@) Third item diff --git a/crates/quarto-markdown-pandoc/tests/smoke/021.qmd b/crates/quarto-markdown-pandoc/tests/smoke/021.qmd new file mode 100644 index 0000000..8050c9a --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/021.qmd @@ -0,0 +1,9 @@ +(@) First item + +(@) Second item + +Some text in between. + +(@) Third item + +(@) Fourth item diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index 6491b73..cffc7d1 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -277,13 +277,15 @@ module.exports = grammar({ $._list_minus, $._list_star, $._list_dot, - $._list_parenthesis + $._list_parenthesis, + $._list_example )), _list_plus: $ => prec.right(repeat1(alias($._list_item_plus, $.list_item))), _list_minus: $ => prec.right(repeat1(alias($._list_item_minus, $.list_item))), _list_star: $ => prec.right(repeat1(alias($._list_item_star, $.list_item))), _list_dot: $ => prec.right(repeat1(alias($._list_item_dot, $.list_item))), _list_parenthesis: $ => prec.right(repeat1(alias($._list_item_parenthesis, $.list_item))), + _list_example: $ => prec.right(repeat1(alias($._list_item_example, $.list_item))), // Some list items can not interrupt a paragraph and are marked as such by the external // scanner. list_marker_plus: $ => choice($._list_marker_plus, $._list_marker_plus_dont_interrupt), @@ -291,6 +293,7 @@ module.exports = grammar({ list_marker_star: $ => choice($._list_marker_star, $._list_marker_star_dont_interrupt), list_marker_dot: $ => choice($._list_marker_dot, $._list_marker_dot_dont_interrupt), list_marker_parenthesis: $ => choice($._list_marker_parenthesis, $._list_marker_parenthesis_dont_interrupt), + list_marker_example: $ => choice($._list_marker_example, $._list_marker_example_dont_interrupt), _list_item_plus: $ => seq( $.list_marker_plus, optional($.block_continuation), @@ -326,6 +329,13 @@ module.exports = grammar({ $._block_close, optional($.block_continuation) ), + _list_item_example: $ => seq( + $.list_marker_example, + optional($.block_continuation), + $._list_item_content, + $._block_close, + optional($.block_continuation) + ), // List items are closed after two consecutive blank lines _list_item_content: $ => choice( prec(1, seq( @@ -553,6 +563,8 @@ module.exports = grammar({ $._list_marker_star_dont_interrupt, $._list_marker_parenthesis_dont_interrupt, $._list_marker_dot_dont_interrupt, + $._list_marker_example, + $._list_marker_example_dont_interrupt, $._fenced_code_block_start_backtick, $._fenced_code_block_start_tilde, $._blank_line_start, // Does not contain the newline characters. Blank lines do not need a `$._block_close` diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json index 6365e52..7d6a8a2 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -3492,6 +3492,10 @@ { "type": "SYMBOL", "name": "_list_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_list_example" } ] } @@ -3576,6 +3580,22 @@ } } }, + "_list_example": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_item_example" + }, + "named": true, + "value": "list_item" + } + } + }, "list_marker_plus": { "type": "CHOICE", "members": [ @@ -3641,6 +3661,19 @@ } ] }, + "list_marker_example": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_list_marker_example" + }, + { + "type": "SYMBOL", + "name": "_list_marker_example_dont_interrupt" + } + ] + }, "_list_item_plus": { "type": "SEQ", "members": [ @@ -3846,6 +3879,47 @@ } ] }, + "_list_item_example": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "list_marker_example" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_list_item_content" + }, + { + "type": "SYMBOL", + "name": "_block_close" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_continuation" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "_list_item_content": { "type": "CHOICE", "members": [ @@ -6216,6 +6290,14 @@ "type": "SYMBOL", "name": "_list_marker_dot_dont_interrupt" }, + { + "type": "SYMBOL", + "name": "_list_marker_example" + }, + { + "type": "SYMBOL", + "name": "_list_marker_example_dont_interrupt" + }, { "type": "SYMBOL", "name": "_fenced_code_block_start_backtick" diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json b/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json index 10ead75..bb93d82 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/node-types.json @@ -495,6 +495,10 @@ "type": "list_marker_dot", "named": true }, + { + "type": "list_marker_example", + "named": true + }, { "type": "list_marker_minus", "named": true @@ -547,6 +551,11 @@ "named": true, "fields": {} }, + { + "type": "list_marker_example", + "named": true, + "fields": {} + }, { "type": "list_marker_minus", "named": true, diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c index 31d7fe7..8450a1e 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -7,12 +7,12 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1071 -#define LARGE_STATE_COUNT 189 -#define SYMBOL_COUNT 197 +#define STATE_COUNT 1102 +#define LARGE_STATE_COUNT 479 +#define SYMBOL_COUNT 203 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 95 -#define EXTERNAL_TOKEN_COUNT 49 +#define TOKEN_COUNT 97 +#define EXTERNAL_TOKEN_COUNT 51 #define FIELD_COUNT 1 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -90,136 +90,142 @@ enum ts_symbol_identifiers { sym__list_marker_star_dont_interrupt = 68, sym__list_marker_parenthesis_dont_interrupt = 69, sym__list_marker_dot_dont_interrupt = 70, - sym__fenced_code_block_start_backtick = 71, - sym__fenced_code_block_start_tilde = 72, - sym__blank_line_start = 73, - sym__fenced_code_block_end_backtick = 74, - sym__fenced_code_block_end_tilde = 75, - sym__close_block = 76, - sym__no_indented_chunk = 77, - sym__error = 78, - sym__trigger_error = 79, - sym__eof = 80, - sym_minus_metadata = 81, - sym_plus_metadata = 82, - sym__pipe_table_start = 83, - sym__pipe_table_line_ending = 84, - sym__fenced_div_start = 85, - sym__fenced_div_end = 86, - sym_ref_id_specifier = 87, - sym_fenced_div_note_id = 88, - sym__display_math_state_track_marker = 89, - sym__inline_math_state_track_marker = 90, - sym__code_span_start = 91, - sym__code_span_close = 92, - sym__latex_span_start = 93, - sym__latex_span_close = 94, - sym_document = 95, - sym__qmd_attribute = 96, - sym__commonmark_whitespace = 97, - sym_raw_attribute = 98, - sym_commonmark_attribute = 99, - sym_language_attribute = 100, - sym__attribute = 101, - sym_key_value_value = 102, - sym__last_token_punctuation = 103, - sym__block = 104, - sym__block_not_section = 105, - sym_section = 106, - sym__section1 = 107, - sym__section2 = 108, - sym__section3 = 109, - sym__section4 = 110, - sym__section5 = 111, - sym__section6 = 112, - sym_thematic_break = 113, - sym__atx_heading1 = 114, - sym__atx_heading2 = 115, - sym__atx_heading3 = 116, - sym__atx_heading4 = 117, - sym__atx_heading5 = 118, - sym__atx_heading6 = 119, - sym__atx_heading_content = 120, - sym__setext_heading1 = 121, - sym__setext_heading2 = 122, - sym_indented_code_block = 123, - sym__indented_chunk = 124, - sym_fenced_div_block = 125, - sym_fenced_code_block = 126, - sym_code_fence_content = 127, - sym_info_string = 128, - sym_paragraph = 129, - sym_inline_ref_def = 130, - sym_note_definition_fenced_block = 131, - sym__blank_line = 132, - sym_block_quote = 133, - sym_list = 134, - sym__list_plus = 135, - sym__list_minus = 136, - sym__list_star = 137, - sym__list_dot = 138, - sym__list_parenthesis = 139, - sym_list_marker_plus = 140, - sym_list_marker_minus = 141, - sym_list_marker_star = 142, - sym_list_marker_dot = 143, - sym_list_marker_parenthesis = 144, - sym__list_item_plus = 145, - sym__list_item_minus = 146, - sym__list_item_star = 147, - sym__list_item_dot = 148, - sym__list_item_parenthesis = 149, - sym__list_item_content = 150, - sym__newline = 151, - sym__soft_line_break = 152, - sym__code_line = 153, - sym__line = 154, - sym__atx_heading_line = 155, - sym__whitespace = 156, - sym_pipe_table = 157, - sym_table_caption = 158, - sym__table_caption_line = 159, - sym__pipe_table_newline = 160, - sym_pipe_table_delimiter_row = 161, - sym_pipe_table_delimiter_cell = 162, - sym_pipe_table_row = 163, - sym__pipe_table_code_span = 164, - sym__pipe_table_latex_span = 165, - sym__pipe_table_cell_contents = 166, - sym_pipe_table_cell = 167, - aux_sym_document_repeat1 = 168, - aux_sym_document_repeat2 = 169, - aux_sym_commonmark_attribute_repeat1 = 170, - aux_sym_commonmark_attribute_repeat2 = 171, - aux_sym_commonmark_attribute_repeat3 = 172, - aux_sym_key_value_value_repeat1 = 173, - aux_sym_key_value_value_repeat2 = 174, - aux_sym__section1_repeat1 = 175, - aux_sym__section2_repeat1 = 176, - aux_sym__section3_repeat1 = 177, - aux_sym__section4_repeat1 = 178, - aux_sym__section5_repeat1 = 179, - aux_sym_indented_code_block_repeat1 = 180, - aux_sym__indented_chunk_repeat1 = 181, - aux_sym_fenced_div_block_repeat1 = 182, - aux_sym_code_fence_content_repeat1 = 183, - aux_sym_paragraph_repeat1 = 184, - aux_sym__list_plus_repeat1 = 185, - aux_sym__list_minus_repeat1 = 186, - aux_sym__list_star_repeat1 = 187, - aux_sym__list_dot_repeat1 = 188, - aux_sym__list_parenthesis_repeat1 = 189, - aux_sym__code_line_repeat1 = 190, - aux_sym_pipe_table_repeat1 = 191, - aux_sym_pipe_table_delimiter_row_repeat1 = 192, - aux_sym_pipe_table_delimiter_cell_repeat1 = 193, - aux_sym_pipe_table_row_repeat1 = 194, - aux_sym__pipe_table_code_span_repeat1 = 195, - aux_sym__pipe_table_cell_contents_repeat1 = 196, - alias_sym_attribute = 197, - alias_sym_pipe_table_align_left = 198, - alias_sym_pipe_table_align_right = 199, - alias_sym_pipe_table_header = 200, + sym__list_marker_example = 71, + sym__list_marker_example_dont_interrupt = 72, + sym__fenced_code_block_start_backtick = 73, + sym__fenced_code_block_start_tilde = 74, + sym__blank_line_start = 75, + sym__fenced_code_block_end_backtick = 76, + sym__fenced_code_block_end_tilde = 77, + sym__close_block = 78, + sym__no_indented_chunk = 79, + sym__error = 80, + sym__trigger_error = 81, + sym__eof = 82, + sym_minus_metadata = 83, + sym_plus_metadata = 84, + sym__pipe_table_start = 85, + sym__pipe_table_line_ending = 86, + sym__fenced_div_start = 87, + sym__fenced_div_end = 88, + sym_ref_id_specifier = 89, + sym_fenced_div_note_id = 90, + sym__display_math_state_track_marker = 91, + sym__inline_math_state_track_marker = 92, + sym__code_span_start = 93, + sym__code_span_close = 94, + sym__latex_span_start = 95, + sym__latex_span_close = 96, + sym_document = 97, + sym__qmd_attribute = 98, + sym__commonmark_whitespace = 99, + sym_raw_attribute = 100, + sym_commonmark_attribute = 101, + sym_language_attribute = 102, + sym__attribute = 103, + sym_key_value_value = 104, + sym__last_token_punctuation = 105, + sym__block = 106, + sym__block_not_section = 107, + sym_section = 108, + sym__section1 = 109, + sym__section2 = 110, + sym__section3 = 111, + sym__section4 = 112, + sym__section5 = 113, + sym__section6 = 114, + sym_thematic_break = 115, + sym__atx_heading1 = 116, + sym__atx_heading2 = 117, + sym__atx_heading3 = 118, + sym__atx_heading4 = 119, + sym__atx_heading5 = 120, + sym__atx_heading6 = 121, + sym__atx_heading_content = 122, + sym__setext_heading1 = 123, + sym__setext_heading2 = 124, + sym_indented_code_block = 125, + sym__indented_chunk = 126, + sym_fenced_div_block = 127, + sym_fenced_code_block = 128, + sym_code_fence_content = 129, + sym_info_string = 130, + sym_paragraph = 131, + sym_inline_ref_def = 132, + sym_note_definition_fenced_block = 133, + sym__blank_line = 134, + sym_block_quote = 135, + sym_list = 136, + sym__list_plus = 137, + sym__list_minus = 138, + sym__list_star = 139, + sym__list_dot = 140, + sym__list_parenthesis = 141, + sym__list_example = 142, + sym_list_marker_plus = 143, + sym_list_marker_minus = 144, + sym_list_marker_star = 145, + sym_list_marker_dot = 146, + sym_list_marker_parenthesis = 147, + sym_list_marker_example = 148, + sym__list_item_plus = 149, + sym__list_item_minus = 150, + sym__list_item_star = 151, + sym__list_item_dot = 152, + sym__list_item_parenthesis = 153, + sym__list_item_example = 154, + sym__list_item_content = 155, + sym__newline = 156, + sym__soft_line_break = 157, + sym__code_line = 158, + sym__line = 159, + sym__atx_heading_line = 160, + sym__whitespace = 161, + sym_pipe_table = 162, + sym_table_caption = 163, + sym__table_caption_line = 164, + sym__pipe_table_newline = 165, + sym_pipe_table_delimiter_row = 166, + sym_pipe_table_delimiter_cell = 167, + sym_pipe_table_row = 168, + sym__pipe_table_code_span = 169, + sym__pipe_table_latex_span = 170, + sym__pipe_table_cell_contents = 171, + sym_pipe_table_cell = 172, + aux_sym_document_repeat1 = 173, + aux_sym_document_repeat2 = 174, + aux_sym_commonmark_attribute_repeat1 = 175, + aux_sym_commonmark_attribute_repeat2 = 176, + aux_sym_commonmark_attribute_repeat3 = 177, + aux_sym_key_value_value_repeat1 = 178, + aux_sym_key_value_value_repeat2 = 179, + aux_sym__section1_repeat1 = 180, + aux_sym__section2_repeat1 = 181, + aux_sym__section3_repeat1 = 182, + aux_sym__section4_repeat1 = 183, + aux_sym__section5_repeat1 = 184, + aux_sym_indented_code_block_repeat1 = 185, + aux_sym__indented_chunk_repeat1 = 186, + aux_sym_fenced_div_block_repeat1 = 187, + aux_sym_code_fence_content_repeat1 = 188, + aux_sym_paragraph_repeat1 = 189, + aux_sym__list_plus_repeat1 = 190, + aux_sym__list_minus_repeat1 = 191, + aux_sym__list_star_repeat1 = 192, + aux_sym__list_dot_repeat1 = 193, + aux_sym__list_parenthesis_repeat1 = 194, + aux_sym__list_example_repeat1 = 195, + aux_sym__code_line_repeat1 = 196, + aux_sym_pipe_table_repeat1 = 197, + aux_sym_pipe_table_delimiter_row_repeat1 = 198, + aux_sym_pipe_table_delimiter_cell_repeat1 = 199, + aux_sym_pipe_table_row_repeat1 = 200, + aux_sym__pipe_table_code_span_repeat1 = 201, + aux_sym__pipe_table_cell_contents_repeat1 = 202, + alias_sym_attribute = 203, + alias_sym_pipe_table_align_left = 204, + alias_sym_pipe_table_align_right = 205, + alias_sym_pipe_table_header = 206, }; static const char * const ts_symbol_names[] = { @@ -294,6 +300,8 @@ static const char * const ts_symbol_names[] = { [sym__list_marker_star_dont_interrupt] = "_list_marker_star_dont_interrupt", [sym__list_marker_parenthesis_dont_interrupt] = "_list_marker_parenthesis_dont_interrupt", [sym__list_marker_dot_dont_interrupt] = "_list_marker_dot_dont_interrupt", + [sym__list_marker_example] = "_list_marker_example", + [sym__list_marker_example_dont_interrupt] = "_list_marker_example_dont_interrupt", [sym__fenced_code_block_start_backtick] = "fenced_code_block_delimiter", [sym__fenced_code_block_start_tilde] = "fenced_code_block_delimiter", [sym__blank_line_start] = "_blank_line_start", @@ -363,16 +371,19 @@ static const char * const ts_symbol_names[] = { [sym__list_star] = "_list_star", [sym__list_dot] = "_list_dot", [sym__list_parenthesis] = "_list_parenthesis", + [sym__list_example] = "_list_example", [sym_list_marker_plus] = "list_marker_plus", [sym_list_marker_minus] = "list_marker_minus", [sym_list_marker_star] = "list_marker_star", [sym_list_marker_dot] = "list_marker_dot", [sym_list_marker_parenthesis] = "list_marker_parenthesis", + [sym_list_marker_example] = "list_marker_example", [sym__list_item_plus] = "list_item", [sym__list_item_minus] = "list_item", [sym__list_item_star] = "list_item", [sym__list_item_dot] = "list_item", [sym__list_item_parenthesis] = "list_item", + [sym__list_item_example] = "list_item", [sym__list_item_content] = "_list_item_content", [sym__newline] = "_newline", [sym__soft_line_break] = "_soft_line_break", @@ -413,6 +424,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__list_star_repeat1] = "_list_star_repeat1", [aux_sym__list_dot_repeat1] = "_list_dot_repeat1", [aux_sym__list_parenthesis_repeat1] = "_list_parenthesis_repeat1", + [aux_sym__list_example_repeat1] = "_list_example_repeat1", [aux_sym__code_line_repeat1] = "_code_line_repeat1", [aux_sym_pipe_table_repeat1] = "pipe_table_repeat1", [aux_sym_pipe_table_delimiter_row_repeat1] = "pipe_table_delimiter_row_repeat1", @@ -498,6 +510,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__list_marker_star_dont_interrupt] = sym__list_marker_star_dont_interrupt, [sym__list_marker_parenthesis_dont_interrupt] = sym__list_marker_parenthesis_dont_interrupt, [sym__list_marker_dot_dont_interrupt] = sym__list_marker_dot_dont_interrupt, + [sym__list_marker_example] = sym__list_marker_example, + [sym__list_marker_example_dont_interrupt] = sym__list_marker_example_dont_interrupt, [sym__fenced_code_block_start_backtick] = sym__fenced_code_block_start_backtick, [sym__fenced_code_block_start_tilde] = sym__fenced_code_block_start_backtick, [sym__blank_line_start] = sym__blank_line_start, @@ -567,16 +581,19 @@ static const TSSymbol ts_symbol_map[] = { [sym__list_star] = sym__list_star, [sym__list_dot] = sym__list_dot, [sym__list_parenthesis] = sym__list_parenthesis, + [sym__list_example] = sym__list_example, [sym_list_marker_plus] = sym_list_marker_plus, [sym_list_marker_minus] = sym_list_marker_minus, [sym_list_marker_star] = sym_list_marker_star, [sym_list_marker_dot] = sym_list_marker_dot, [sym_list_marker_parenthesis] = sym_list_marker_parenthesis, + [sym_list_marker_example] = sym_list_marker_example, [sym__list_item_plus] = sym__list_item_plus, [sym__list_item_minus] = sym__list_item_plus, [sym__list_item_star] = sym__list_item_plus, [sym__list_item_dot] = sym__list_item_plus, [sym__list_item_parenthesis] = sym__list_item_plus, + [sym__list_item_example] = sym__list_item_plus, [sym__list_item_content] = sym__list_item_content, [sym__newline] = sym__newline, [sym__soft_line_break] = sym__soft_line_break, @@ -617,6 +634,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__list_star_repeat1] = aux_sym__list_star_repeat1, [aux_sym__list_dot_repeat1] = aux_sym__list_dot_repeat1, [aux_sym__list_parenthesis_repeat1] = aux_sym__list_parenthesis_repeat1, + [aux_sym__list_example_repeat1] = aux_sym__list_example_repeat1, [aux_sym__code_line_repeat1] = aux_sym__code_line_repeat1, [aux_sym_pipe_table_repeat1] = aux_sym_pipe_table_repeat1, [aux_sym_pipe_table_delimiter_row_repeat1] = aux_sym_pipe_table_delimiter_row_repeat1, @@ -915,6 +933,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__list_marker_example] = { + .visible = false, + .named = true, + }, + [sym__list_marker_example_dont_interrupt] = { + .visible = false, + .named = true, + }, [sym__fenced_code_block_start_backtick] = { .visible = true, .named = true, @@ -1191,6 +1217,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__list_example] = { + .visible = false, + .named = true, + }, [sym_list_marker_plus] = { .visible = true, .named = true, @@ -1211,6 +1241,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_list_marker_example] = { + .visible = true, + .named = true, + }, [sym__list_item_plus] = { .visible = true, .named = true, @@ -1231,6 +1265,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__list_item_example] = { + .visible = true, + .named = true, + }, [sym__list_item_content] = { .visible = false, .named = true, @@ -1391,6 +1429,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__list_example_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__code_line_repeat1] = { .visible = false, .named = false, @@ -1547,119 +1589,119 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 9, - [10] = 2, + [9] = 2, + [10] = 10, [11] = 11, [12] = 12, [13] = 7, [14] = 8, - [15] = 9, - [16] = 12, + [15] = 12, + [16] = 10, [17] = 12, - [18] = 7, - [19] = 8, - [20] = 9, + [18] = 18, + [19] = 7, + [20] = 8, [21] = 2, - [22] = 22, - [23] = 3, - [24] = 4, - [25] = 5, - [26] = 6, - [27] = 22, - [28] = 22, - [29] = 3, - [30] = 4, - [31] = 5, - [32] = 6, - [33] = 33, - [34] = 34, - [35] = 35, + [22] = 10, + [23] = 18, + [24] = 6, + [25] = 25, + [26] = 3, + [27] = 4, + [28] = 5, + [29] = 18, + [30] = 6, + [31] = 25, + [32] = 3, + [33] = 4, + [34] = 5, + [35] = 25, [36] = 36, [37] = 37, - [38] = 33, + [38] = 38, [39] = 39, - [40] = 11, + [40] = 40, [41] = 41, [42] = 42, - [43] = 43, - [44] = 39, + [43] = 36, + [44] = 11, [45] = 45, - [46] = 42, - [47] = 43, - [48] = 39, - [49] = 42, - [50] = 43, - [51] = 51, - [52] = 37, - [53] = 35, - [54] = 36, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 36, + [50] = 50, + [51] = 47, + [52] = 48, + [53] = 47, + [54] = 48, [55] = 55, - [56] = 37, - [57] = 35, - [58] = 36, - [59] = 55, - [60] = 33, - [61] = 55, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 62, - [66] = 63, - [67] = 62, - [68] = 64, - [69] = 63, - [70] = 64, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 71, - [75] = 72, - [76] = 73, - [77] = 73, - [78] = 71, - [79] = 72, - [80] = 80, - [81] = 81, - [82] = 82, - [83] = 82, - [84] = 82, - [85] = 81, - [86] = 81, - [87] = 80, - [88] = 80, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 89, - [93] = 91, - [94] = 90, - [95] = 90, - [96] = 91, - [97] = 89, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 99, - [102] = 98, - [103] = 100, - [104] = 98, - [105] = 100, - [106] = 99, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 109, - [111] = 107, - [112] = 109, - [113] = 108, - [114] = 107, - [115] = 108, - [116] = 116, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, + [56] = 46, + [57] = 38, + [58] = 39, + [59] = 40, + [60] = 41, + [61] = 42, + [62] = 46, + [63] = 38, + [64] = 39, + [65] = 40, + [66] = 41, + [67] = 42, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 70, + [72] = 70, + [73] = 69, + [74] = 69, + [75] = 68, + [76] = 68, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 79, + [81] = 78, + [82] = 78, + [83] = 77, + [84] = 79, + [85] = 77, + [86] = 86, + [87] = 87, + [88] = 88, + [89] = 86, + [90] = 87, + [91] = 86, + [92] = 88, + [93] = 88, + [94] = 87, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 97, + [99] = 96, + [100] = 97, + [101] = 96, + [102] = 95, + [103] = 95, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 106, + [108] = 104, + [109] = 104, + [110] = 106, + [111] = 105, + [112] = 105, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 114, + [117] = 115, + [118] = 113, + [119] = 114, + [120] = 115, + [121] = 113, [122] = 122, [123] = 123, [124] = 124, @@ -1668,60 +1710,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [127] = 127, [128] = 128, [129] = 129, - [130] = 118, - [131] = 128, - [132] = 124, - [133] = 125, - [134] = 126, - [135] = 127, - [136] = 116, - [137] = 118, - [138] = 138, - [139] = 129, - [140] = 119, - [141] = 120, - [142] = 121, - [143] = 122, - [144] = 144, - [145] = 145, - [146] = 117, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 134, + [139] = 132, + [140] = 133, + [141] = 134, + [142] = 142, + [143] = 124, + [144] = 125, + [145] = 126, + [146] = 127, [147] = 147, - [148] = 117, - [149] = 149, - [150] = 123, - [151] = 128, - [152] = 129, - [153] = 119, - [154] = 116, - [155] = 120, - [156] = 121, - [157] = 122, - [158] = 123, - [159] = 124, - [160] = 125, - [161] = 126, - [162] = 127, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 138, - [167] = 144, - [168] = 149, - [169] = 147, - [170] = 149, - [171] = 117, - [172] = 172, - [173] = 138, - [174] = 145, - [175] = 145, - [176] = 176, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 144, - [183] = 147, + [148] = 148, + [149] = 123, + [150] = 150, + [151] = 123, + [152] = 131, + [153] = 153, + [154] = 128, + [155] = 129, + [156] = 130, + [157] = 136, + [158] = 125, + [159] = 126, + [160] = 137, + [161] = 127, + [162] = 128, + [163] = 129, + [164] = 130, + [165] = 122, + [166] = 131, + [167] = 132, + [168] = 133, + [169] = 137, + [170] = 135, + [171] = 136, + [172] = 122, + [173] = 124, + [174] = 135, + [175] = 153, + [176] = 147, + [177] = 153, + [178] = 123, + [179] = 142, + [180] = 148, + [181] = 147, + [182] = 182, + [183] = 148, [184] = 184, [185] = 185, [186] = 186, @@ -1731,39 +1773,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [190] = 190, [191] = 191, [192] = 192, - [193] = 193, + [193] = 150, [194] = 194, [195] = 195, [196] = 196, [197] = 197, [198] = 198, - [199] = 199, - [200] = 185, + [199] = 150, + [200] = 200, [201] = 201, - [202] = 165, + [202] = 142, [203] = 203, - [204] = 204, - [205] = 205, - [206] = 206, - [207] = 207, + [204] = 196, + [205] = 197, + [206] = 186, + [207] = 187, [208] = 208, [209] = 209, [210] = 210, [211] = 211, [212] = 212, - [213] = 186, + [213] = 213, [214] = 214, [215] = 215, [216] = 216, [217] = 217, - [218] = 178, + [218] = 218, [219] = 219, [220] = 220, [221] = 221, [222] = 222, [223] = 223, [224] = 224, - [225] = 187, + [225] = 225, [226] = 226, [227] = 227, [228] = 228, @@ -1773,8 +1815,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [232] = 232, [233] = 233, [234] = 234, - [235] = 180, - [236] = 236, + [235] = 235, + [236] = 194, [237] = 237, [238] = 238, [239] = 239, @@ -1783,832 +1825,863 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [242] = 242, [243] = 243, [244] = 244, - [245] = 179, + [245] = 245, [246] = 246, [247] = 247, [248] = 248, [249] = 249, [250] = 250, - [251] = 181, + [251] = 201, [252] = 252, - [253] = 117, - [254] = 147, + [253] = 253, + [254] = 254, [255] = 255, - [256] = 186, - [257] = 187, - [258] = 149, + [256] = 256, + [257] = 257, + [258] = 258, [259] = 259, - [260] = 163, + [260] = 260, [261] = 261, - [262] = 172, - [263] = 117, - [264] = 164, - [265] = 184, + [262] = 262, + [263] = 185, + [264] = 264, + [265] = 265, [266] = 266, - [267] = 176, - [268] = 177, - [269] = 269, - [270] = 178, - [271] = 179, - [272] = 272, - [273] = 273, - [274] = 274, + [267] = 195, + [268] = 196, + [269] = 123, + [270] = 150, + [271] = 197, + [272] = 188, + [273] = 200, + [274] = 153, [275] = 275, [276] = 276, - [277] = 172, - [278] = 180, + [277] = 189, + [278] = 190, [279] = 279, - [280] = 164, - [281] = 281, - [282] = 282, + [280] = 182, + [281] = 123, + [282] = 198, [283] = 283, - [284] = 284, + [284] = 191, [285] = 285, - [286] = 188, - [287] = 181, - [288] = 165, - [289] = 188, + [286] = 192, + [287] = 184, + [288] = 288, + [289] = 289, [290] = 290, - [291] = 163, - [292] = 184, + [291] = 291, + [292] = 182, [293] = 185, - [294] = 294, - [295] = 176, - [296] = 177, + [294] = 186, + [295] = 198, + [296] = 187, [297] = 297, - [298] = 298, - [299] = 216, - [300] = 189, - [301] = 220, - [302] = 222, - [303] = 223, - [304] = 224, - [305] = 191, - [306] = 227, - [307] = 228, - [308] = 229, - [309] = 230, - [310] = 231, - [311] = 232, - [312] = 233, - [313] = 234, + [298] = 188, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 200, + [307] = 189, + [308] = 201, + [309] = 190, + [310] = 310, + [311] = 311, + [312] = 194, + [313] = 191, [314] = 192, - [315] = 214, - [316] = 236, - [317] = 237, - [318] = 238, - [319] = 239, - [320] = 240, - [321] = 241, - [322] = 242, - [323] = 243, - [324] = 244, - [325] = 297, - [326] = 246, - [327] = 247, + [315] = 195, + [316] = 184, + [317] = 317, + [318] = 211, + [319] = 238, + [320] = 203, + [321] = 212, + [322] = 241, + [323] = 242, + [324] = 243, + [325] = 244, + [326] = 245, + [327] = 246, [328] = 248, - [329] = 252, - [330] = 255, - [331] = 193, - [332] = 194, - [333] = 217, - [334] = 221, - [335] = 250, - [336] = 195, - [337] = 198, - [338] = 190, - [339] = 191, - [340] = 192, - [341] = 193, - [342] = 194, - [343] = 195, - [344] = 198, - [345] = 249, - [346] = 199, - [347] = 201, - [348] = 204, - [349] = 249, - [350] = 215, - [351] = 252, - [352] = 219, - [353] = 259, - [354] = 149, - [355] = 261, - [356] = 266, - [357] = 269, - [358] = 272, - [359] = 273, - [360] = 274, - [361] = 275, - [362] = 276, - [363] = 279, - [364] = 281, - [365] = 282, - [366] = 283, - [367] = 284, - [368] = 285, - [369] = 294, - [370] = 199, - [371] = 201, - [372] = 196, - [373] = 197, - [374] = 204, - [375] = 215, - [376] = 219, - [377] = 203, - [378] = 205, - [379] = 206, - [380] = 207, - [381] = 208, - [382] = 209, - [383] = 210, - [384] = 211, - [385] = 212, - [386] = 214, - [387] = 216, - [388] = 189, - [389] = 220, - [390] = 217, - [391] = 222, - [392] = 223, - [393] = 224, - [394] = 221, - [395] = 226, - [396] = 227, - [397] = 228, - [398] = 229, - [399] = 230, - [400] = 231, - [401] = 232, - [402] = 233, - [403] = 234, - [404] = 236, - [405] = 237, - [406] = 238, - [407] = 239, - [408] = 240, - [409] = 241, - [410] = 242, - [411] = 243, - [412] = 244, - [413] = 297, - [414] = 246, - [415] = 247, - [416] = 248, - [417] = 417, - [418] = 250, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 259, - [423] = 261, - [424] = 147, - [425] = 266, - [426] = 269, - [427] = 272, - [428] = 273, - [429] = 274, - [430] = 275, - [431] = 276, - [432] = 279, - [433] = 281, - [434] = 282, - [435] = 283, - [436] = 284, - [437] = 285, - [438] = 294, - [439] = 196, - [440] = 197, - [441] = 203, - [442] = 205, - [443] = 147, - [444] = 206, - [445] = 149, - [446] = 207, - [447] = 208, - [448] = 209, - [449] = 210, - [450] = 211, - [451] = 212, - [452] = 190, - [453] = 226, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 463, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 462, - [475] = 467, - [476] = 472, - [477] = 477, - [478] = 466, - [479] = 473, - [480] = 462, - [481] = 467, - [482] = 472, - [483] = 477, - [484] = 466, - [485] = 473, - [486] = 463, - [487] = 477, + [329] = 249, + [330] = 250, + [331] = 213, + [332] = 252, + [333] = 253, + [334] = 254, + [335] = 255, + [336] = 256, + [337] = 257, + [338] = 258, + [339] = 259, + [340] = 260, + [341] = 261, + [342] = 262, + [343] = 317, + [344] = 264, + [345] = 228, + [346] = 232, + [347] = 214, + [348] = 215, + [349] = 275, + [350] = 276, + [351] = 217, + [352] = 279, + [353] = 265, + [354] = 210, + [355] = 211, + [356] = 212, + [357] = 213, + [358] = 214, + [359] = 215, + [360] = 217, + [361] = 265, + [362] = 226, + [363] = 230, + [364] = 234, + [365] = 240, + [366] = 266, + [367] = 283, + [368] = 226, + [369] = 153, + [370] = 285, + [371] = 230, + [372] = 288, + [373] = 289, + [374] = 290, + [375] = 291, + [376] = 297, + [377] = 299, + [378] = 300, + [379] = 301, + [380] = 302, + [381] = 303, + [382] = 304, + [383] = 305, + [384] = 310, + [385] = 311, + [386] = 234, + [387] = 240, + [388] = 266, + [389] = 208, + [390] = 209, + [391] = 275, + [392] = 276, + [393] = 216, + [394] = 218, + [395] = 219, + [396] = 220, + [397] = 221, + [398] = 222, + [399] = 223, + [400] = 224, + [401] = 225, + [402] = 227, + [403] = 229, + [404] = 279, + [405] = 231, + [406] = 233, + [407] = 407, + [408] = 235, + [409] = 237, + [410] = 238, + [411] = 203, + [412] = 412, + [413] = 241, + [414] = 242, + [415] = 243, + [416] = 244, + [417] = 245, + [418] = 246, + [419] = 247, + [420] = 248, + [421] = 249, + [422] = 250, + [423] = 252, + [424] = 253, + [425] = 254, + [426] = 255, + [427] = 256, + [428] = 257, + [429] = 258, + [430] = 259, + [431] = 260, + [432] = 261, + [433] = 262, + [434] = 317, + [435] = 264, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 283, + [441] = 285, + [442] = 288, + [443] = 289, + [444] = 290, + [445] = 150, + [446] = 291, + [447] = 297, + [448] = 299, + [449] = 300, + [450] = 301, + [451] = 302, + [452] = 303, + [453] = 304, + [454] = 305, + [455] = 310, + [456] = 311, + [457] = 208, + [458] = 209, + [459] = 216, + [460] = 210, + [461] = 218, + [462] = 219, + [463] = 220, + [464] = 221, + [465] = 222, + [466] = 150, + [467] = 223, + [468] = 224, + [469] = 225, + [470] = 153, + [471] = 227, + [472] = 229, + [473] = 231, + [474] = 228, + [475] = 233, + [476] = 235, + [477] = 237, + [478] = 247, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, [488] = 488, - [489] = 456, - [490] = 460, + [489] = 489, + [490] = 490, [491] = 491, [492] = 492, [493] = 493, - [494] = 494, + [494] = 492, [495] = 495, [496] = 496, - [497] = 495, - [498] = 496, - [499] = 499, - [500] = 493, - [501] = 459, - [502] = 491, - [503] = 492, - [504] = 494, - [505] = 491, - [506] = 492, - [507] = 493, - [508] = 494, - [509] = 495, + [497] = 497, + [498] = 498, + [499] = 495, + [500] = 488, + [501] = 487, + [502] = 496, + [503] = 497, + [504] = 498, + [505] = 495, + [506] = 488, + [507] = 498, + [508] = 508, + [509] = 487, [510] = 496, - [511] = 511, - [512] = 458, - [513] = 461, - [514] = 457, - [515] = 471, - [516] = 469, - [517] = 460, - [518] = 518, + [511] = 497, + [512] = 492, + [513] = 482, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 483, [519] = 519, - [520] = 465, - [521] = 518, + [520] = 520, + [521] = 521, [522] = 522, - [523] = 470, - [524] = 522, - [525] = 519, - [526] = 468, - [527] = 527, - [528] = 499, - [529] = 527, - [530] = 470, - [531] = 468, - [532] = 469, - [533] = 471, - [534] = 534, - [535] = 511, - [536] = 536, - [537] = 536, - [538] = 534, - [539] = 465, - [540] = 534, - [541] = 541, - [542] = 542, - [543] = 536, - [544] = 527, - [545] = 488, - [546] = 536, - [547] = 536, - [548] = 536, + [523] = 514, + [524] = 520, + [525] = 522, + [526] = 484, + [527] = 516, + [528] = 517, + [529] = 529, + [530] = 485, + [531] = 514, + [532] = 520, + [533] = 522, + [534] = 529, + [535] = 516, + [536] = 517, + [537] = 486, + [538] = 481, + [539] = 529, + [540] = 540, + [541] = 491, + [542] = 490, + [543] = 543, + [544] = 484, + [545] = 508, + [546] = 489, + [547] = 543, + [548] = 540, [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, + [550] = 493, + [551] = 549, + [552] = 491, [553] = 553, [554] = 554, - [555] = 551, + [555] = 508, [556] = 556, [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 554, + [558] = 556, + [559] = 493, + [560] = 554, + [561] = 553, + [562] = 556, [563] = 563, - [564] = 557, + [564] = 490, [565] = 554, - [566] = 566, - [567] = 563, - [568] = 549, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 573, - [575] = 573, + [566] = 519, + [567] = 553, + [568] = 515, + [569] = 554, + [570] = 554, + [571] = 554, + [572] = 521, + [573] = 489, + [574] = 574, + [575] = 575, [576] = 576, [577] = 577, [578] = 578, [579] = 579, - [580] = 572, - [581] = 572, - [582] = 569, - [583] = 583, + [580] = 580, + [581] = 575, + [582] = 582, + [583] = 574, [584] = 584, - [585] = 577, + [585] = 585, [586] = 586, - [587] = 569, - [588] = 572, - [589] = 553, - [590] = 560, + [587] = 575, + [588] = 588, + [589] = 577, + [590] = 590, [591] = 591, - [592] = 117, - [593] = 577, - [594] = 558, - [595] = 117, - [596] = 561, - [597] = 556, + [592] = 584, + [593] = 576, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, [598] = 598, - [599] = 572, - [600] = 559, - [601] = 556, - [602] = 576, - [603] = 578, - [604] = 558, - [605] = 561, - [606] = 553, - [607] = 117, + [599] = 599, + [600] = 599, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 599, + [605] = 597, + [606] = 606, + [607] = 595, [608] = 608, - [609] = 149, + [609] = 597, [610] = 610, - [611] = 553, - [612] = 610, - [613] = 559, - [614] = 583, - [615] = 553, - [616] = 553, - [617] = 617, - [618] = 618, - [619] = 619, + [611] = 601, + [612] = 601, + [613] = 578, + [614] = 597, + [615] = 579, + [616] = 588, + [617] = 123, + [618] = 595, + [619] = 597, [620] = 620, - [621] = 621, + [621] = 591, [622] = 622, - [623] = 149, - [624] = 572, - [625] = 610, - [626] = 584, - [627] = 627, - [628] = 560, - [629] = 629, - [630] = 553, - [631] = 610, + [623] = 586, + [624] = 590, + [625] = 123, + [626] = 626, + [627] = 598, + [628] = 628, + [629] = 588, + [630] = 630, + [631] = 123, [632] = 632, - [633] = 553, - [634] = 149, - [635] = 610, - [636] = 618, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 637, - [642] = 638, - [643] = 618, - [644] = 553, - [645] = 645, - [646] = 640, - [647] = 637, - [648] = 610, - [649] = 639, - [650] = 639, - [651] = 638, - [652] = 640, - [653] = 645, - [654] = 629, + [633] = 578, + [634] = 579, + [635] = 153, + [636] = 636, + [637] = 588, + [638] = 636, + [639] = 588, + [640] = 588, + [641] = 641, + [642] = 594, + [643] = 643, + [644] = 586, + [645] = 608, + [646] = 597, + [647] = 153, + [648] = 636, + [649] = 590, + [650] = 596, + [651] = 591, + [652] = 652, + [653] = 653, + [654] = 636, [655] = 655, - [656] = 553, - [657] = 629, - [658] = 658, - [659] = 553, - [660] = 553, + [656] = 588, + [657] = 636, + [658] = 153, + [659] = 659, + [660] = 588, [661] = 661, - [662] = 661, + [662] = 662, [663] = 663, - [664] = 664, - [665] = 665, + [664] = 641, + [665] = 588, [666] = 666, - [667] = 667, + [667] = 636, [668] = 668, - [669] = 669, - [670] = 670, - [671] = 669, - [672] = 670, - [673] = 669, - [674] = 670, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, + [669] = 666, + [670] = 663, + [671] = 668, + [672] = 662, + [673] = 661, + [674] = 663, + [675] = 668, + [676] = 662, + [677] = 666, + [678] = 641, [679] = 679, - [680] = 680, - [681] = 681, + [680] = 655, + [681] = 655, [682] = 682, - [683] = 683, - [684] = 684, - [685] = 684, - [686] = 681, - [687] = 687, - [688] = 687, - [689] = 684, - [690] = 681, - [691] = 687, - [692] = 683, - [693] = 683, + [683] = 588, + [684] = 588, + [685] = 685, + [686] = 588, + [687] = 685, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 693, [694] = 694, - [695] = 695, + [695] = 694, [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, + [697] = 696, + [698] = 696, + [699] = 694, [700] = 700, - [701] = 255, + [701] = 701, [702] = 702, [703] = 703, [704] = 704, [705] = 705, [706] = 706, [707] = 707, - [708] = 698, + [708] = 708, [709] = 709, - [710] = 705, - [711] = 709, + [710] = 706, + [711] = 705, [712] = 712, - [713] = 707, - [714] = 704, - [715] = 705, - [716] = 706, + [713] = 705, + [714] = 706, + [715] = 712, + [716] = 712, [717] = 707, - [718] = 698, - [719] = 709, + [718] = 707, + [719] = 719, [720] = 720, [721] = 721, - [722] = 704, + [722] = 722, [723] = 723, - [724] = 706, + [724] = 722, [725] = 725, [726] = 726, - [727] = 553, + [727] = 727, [728] = 728, [729] = 729, - [730] = 730, - [731] = 731, + [730] = 723, + [731] = 726, [732] = 732, [733] = 733, [734] = 734, - [735] = 725, + [735] = 232, [736] = 736, - [737] = 737, - [738] = 725, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, + [737] = 728, + [738] = 729, + [739] = 723, + [740] = 726, + [741] = 722, + [742] = 732, [743] = 743, - [744] = 744, - [745] = 732, + [744] = 728, + [745] = 745, [746] = 732, - [747] = 747, + [747] = 729, [748] = 748, [749] = 749, [750] = 750, [751] = 751, [752] = 752, - [753] = 753, - [754] = 694, + [753] = 750, + [754] = 754, [755] = 755, - [756] = 696, + [756] = 756, [757] = 757, - [758] = 695, + [758] = 758, [759] = 759, [760] = 760, - [761] = 761, + [761] = 756, [762] = 762, [763] = 763, [764] = 764, [765] = 765, [766] = 766, - [767] = 117, - [768] = 768, - [769] = 769, + [767] = 767, + [768] = 756, + [769] = 588, [770] = 770, - [771] = 740, + [771] = 771, [772] = 772, - [773] = 773, - [774] = 752, + [773] = 750, + [774] = 774, [775] = 775, - [776] = 553, + [776] = 776, [777] = 777, [778] = 778, - [779] = 149, + [779] = 720, [780] = 780, [781] = 781, [782] = 782, [783] = 783, [784] = 784, [785] = 785, - [786] = 786, - [787] = 747, + [786] = 123, + [787] = 721, [788] = 788, - [789] = 789, + [789] = 719, [790] = 790, [791] = 791, [792] = 792, [793] = 793, [794] = 794, - [795] = 728, - [796] = 741, - [797] = 750, + [795] = 795, + [796] = 796, + [797] = 797, [798] = 798, - [799] = 799, - [800] = 743, + [799] = 588, + [800] = 800, [801] = 801, - [802] = 749, + [802] = 153, [803] = 803, [804] = 804, - [805] = 805, + [805] = 765, [806] = 806, [807] = 807, [808] = 808, - [809] = 809, + [809] = 757, [810] = 810, - [811] = 809, + [811] = 811, [812] = 812, [813] = 813, - [814] = 814, - [815] = 812, - [816] = 816, - [817] = 817, + [814] = 766, + [815] = 755, + [816] = 776, + [817] = 758, [818] = 818, [819] = 819, - [820] = 817, - [821] = 818, - [822] = 806, - [823] = 808, + [820] = 752, + [821] = 821, + [822] = 822, + [823] = 823, [824] = 824, - [825] = 808, - [826] = 759, + [825] = 825, + [826] = 826, [827] = 827, - [828] = 809, - [829] = 812, - [830] = 818, - [831] = 818, - [832] = 553, - [833] = 833, + [828] = 828, + [829] = 770, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 782, [834] = 834, - [835] = 553, - [836] = 806, - [837] = 819, - [838] = 838, - [839] = 810, - [840] = 834, - [841] = 813, - [842] = 842, - [843] = 838, - [844] = 827, - [845] = 838, - [846] = 810, - [847] = 834, - [848] = 813, - [849] = 817, - [850] = 818, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, + [835] = 835, + [836] = 836, + [837] = 831, + [838] = 834, + [839] = 839, + [840] = 840, + [841] = 835, + [842] = 836, + [843] = 835, + [844] = 836, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 832, + [849] = 845, + [850] = 588, + [851] = 846, + [852] = 831, + [853] = 832, + [854] = 836, [855] = 855, - [856] = 856, + [856] = 836, [857] = 857, [858] = 858, - [859] = 852, - [860] = 860, - [861] = 855, - [862] = 862, - [863] = 117, - [864] = 864, - [865] = 865, - [866] = 856, - [867] = 865, + [859] = 588, + [860] = 839, + [861] = 861, + [862] = 857, + [863] = 830, + [864] = 855, + [865] = 830, + [866] = 866, + [867] = 867, [868] = 868, - [869] = 869, - [870] = 857, - [871] = 871, - [872] = 858, - [873] = 553, + [869] = 845, + [870] = 861, + [871] = 857, + [872] = 846, + [873] = 855, [874] = 874, - [875] = 860, + [875] = 861, [876] = 876, - [877] = 798, + [877] = 877, [878] = 878, - [879] = 862, + [879] = 879, [880] = 880, [881] = 881, [882] = 882, - [883] = 883, + [883] = 821, [884] = 884, - [885] = 799, - [886] = 757, - [887] = 851, - [888] = 759, - [889] = 853, - [890] = 854, - [891] = 855, - [892] = 856, - [893] = 857, - [894] = 858, - [895] = 883, - [896] = 860, + [885] = 882, + [886] = 886, + [887] = 123, + [888] = 888, + [889] = 822, + [890] = 890, + [891] = 884, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 788, + [896] = 886, [897] = 897, - [898] = 862, - [899] = 868, - [900] = 864, - [901] = 803, - [902] = 865, - [903] = 801, - [904] = 904, - [905] = 868, - [906] = 869, - [907] = 869, - [908] = 882, - [909] = 864, - [910] = 910, - [911] = 884, - [912] = 912, - [913] = 791, - [914] = 878, - [915] = 915, - [916] = 915, - [917] = 783, + [898] = 123, + [899] = 804, + [900] = 813, + [901] = 780, + [902] = 902, + [903] = 893, + [904] = 588, + [905] = 876, + [906] = 906, + [907] = 888, + [908] = 908, + [909] = 909, + [910] = 782, + [911] = 911, + [912] = 902, + [913] = 894, + [914] = 914, + [915] = 911, + [916] = 824, + [917] = 877, [918] = 918, - [919] = 880, - [920] = 920, - [921] = 768, - [922] = 922, - [923] = 882, - [924] = 924, - [925] = 786, - [926] = 918, - [927] = 922, - [928] = 876, - [929] = 881, - [930] = 904, - [931] = 912, - [932] = 910, - [933] = 871, - [934] = 874, - [935] = 851, - [936] = 897, - [937] = 883, - [938] = 853, - [939] = 915, - [940] = 884, - [941] = 922, - [942] = 924, - [943] = 878, - [944] = 944, - [945] = 924, - [946] = 946, - [947] = 947, - [948] = 876, - [949] = 881, - [950] = 792, - [951] = 904, - [952] = 912, - [953] = 910, - [954] = 871, - [955] = 874, - [956] = 854, - [957] = 897, - [958] = 880, - [959] = 920, - [960] = 920, - [961] = 852, - [962] = 117, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 963, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 974, - [983] = 149, - [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, + [919] = 877, + [920] = 878, + [921] = 879, + [922] = 880, + [923] = 881, + [924] = 882, + [925] = 925, + [926] = 884, + [927] = 927, + [928] = 886, + [929] = 929, + [930] = 930, + [931] = 888, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 893, + [936] = 894, + [937] = 812, + [938] = 808, + [939] = 914, + [940] = 878, + [941] = 941, + [942] = 906, + [943] = 908, + [944] = 929, + [945] = 879, + [946] = 909, + [947] = 927, + [948] = 933, + [949] = 949, + [950] = 950, + [951] = 906, + [952] = 952, + [953] = 892, + [954] = 897, + [955] = 918, + [956] = 925, + [957] = 934, + [958] = 958, + [959] = 949, + [960] = 911, + [961] = 961, + [962] = 902, + [963] = 880, + [964] = 958, + [965] = 929, + [966] = 908, + [967] = 876, + [968] = 927, + [969] = 933, + [970] = 909, + [971] = 892, + [972] = 897, + [973] = 918, + [974] = 925, + [975] = 934, + [976] = 958, + [977] = 949, + [978] = 881, + [979] = 961, + [980] = 932, + [981] = 890, + [982] = 941, + [983] = 825, + [984] = 941, + [985] = 932, + [986] = 961, + [987] = 890, [988] = 988, [989] = 989, - [990] = 149, + [990] = 990, [991] = 991, [992] = 992, [993] = 993, [994] = 994, [995] = 995, - [996] = 249, - [997] = 984, - [998] = 991, - [999] = 980, - [1000] = 967, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 994, [1001] = 1001, - [1002] = 968, - [1003] = 964, - [1004] = 988, - [1005] = 973, - [1006] = 978, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 997, + [1006] = 1001, [1007] = 1007, - [1008] = 980, - [1009] = 988, + [1008] = 1008, + [1009] = 1009, [1010] = 1010, - [1011] = 968, - [1012] = 1012, + [1011] = 994, + [1012] = 991, [1013] = 1013, - [1014] = 992, - [1015] = 987, - [1016] = 970, - [1017] = 1012, - [1018] = 964, - [1019] = 963, + [1014] = 1014, + [1015] = 1015, + [1016] = 992, + [1017] = 995, + [1018] = 1018, + [1019] = 1003, [1020] = 1020, - [1021] = 249, - [1022] = 972, - [1023] = 1023, - [1024] = 1024, - [1025] = 974, - [1026] = 975, - [1027] = 970, + [1021] = 1021, + [1022] = 1004, + [1023] = 997, + [1024] = 998, + [1025] = 1025, + [1026] = 1018, + [1027] = 999, [1028] = 1028, - [1029] = 975, - [1030] = 972, - [1031] = 1020, - [1032] = 991, - [1033] = 992, - [1034] = 1012, - [1035] = 1020, - [1036] = 1023, - [1037] = 967, - [1038] = 1038, - [1039] = 1007, - [1040] = 1040, - [1041] = 1041, - [1042] = 978, - [1043] = 1043, + [1029] = 999, + [1030] = 1030, + [1031] = 996, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 989, + [1037] = 1037, + [1038] = 1002, + [1039] = 1039, + [1040] = 1001, + [1041] = 1002, + [1042] = 1039, + [1043] = 153, [1044] = 1044, - [1045] = 1045, - [1046] = 1023, - [1047] = 1047, - [1048] = 1038, - [1049] = 969, - [1050] = 995, - [1051] = 1041, - [1052] = 1024, - [1053] = 976, - [1054] = 986, + [1045] = 988, + [1046] = 1046, + [1047] = 1034, + [1048] = 1033, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1035, + [1053] = 1053, + [1054] = 1054, [1055] = 1055, - [1056] = 1007, - [1057] = 1057, - [1058] = 1038, - [1059] = 969, - [1060] = 995, - [1061] = 1041, - [1062] = 1024, - [1063] = 976, - [1064] = 986, - [1065] = 1055, - [1066] = 973, - [1067] = 984, - [1068] = 1068, - [1069] = 1055, - [1070] = 965, + [1056] = 1032, + [1057] = 265, + [1058] = 990, + [1059] = 265, + [1060] = 1060, + [1061] = 1035, + [1062] = 1062, + [1063] = 998, + [1064] = 1064, + [1065] = 1065, + [1066] = 991, + [1067] = 992, + [1068] = 1003, + [1069] = 1004, + [1070] = 989, + [1071] = 1018, + [1072] = 1033, + [1073] = 1039, + [1074] = 153, + [1075] = 1075, + [1076] = 1037, + [1077] = 993, + [1078] = 996, + [1079] = 1054, + [1080] = 1080, + [1081] = 1065, + [1082] = 1020, + [1083] = 1010, + [1084] = 1034, + [1085] = 1007, + [1086] = 1014, + [1087] = 1075, + [1088] = 1032, + [1089] = 1054, + [1090] = 1080, + [1091] = 1065, + [1092] = 1020, + [1093] = 1010, + [1094] = 988, + [1095] = 1007, + [1096] = 1014, + [1097] = 995, + [1098] = 1037, + [1099] = 1080, + [1100] = 990, + [1101] = 1101, }; static const TSCharacterRange aux_sym_key_value_value_token1_character_set_1[] = { @@ -3199,14 +3272,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [12] = {.lex_state = 12, .external_lex_state = 5}, [13] = {.lex_state = 12, .external_lex_state = 3}, [14] = {.lex_state = 12, .external_lex_state = 3}, - [15] = {.lex_state = 12, .external_lex_state = 3}, - [16] = {.lex_state = 12, .external_lex_state = 5}, + [15] = {.lex_state = 12, .external_lex_state = 5}, + [16] = {.lex_state = 12, .external_lex_state = 3}, [17] = {.lex_state = 12, .external_lex_state = 5}, - [18] = {.lex_state = 12, .external_lex_state = 3}, + [18] = {.lex_state = 12, .external_lex_state = 4}, [19] = {.lex_state = 12, .external_lex_state = 3}, [20] = {.lex_state = 12, .external_lex_state = 3}, [21] = {.lex_state = 12, .external_lex_state = 3}, - [22] = {.lex_state = 12, .external_lex_state = 4}, + [22] = {.lex_state = 12, .external_lex_state = 3}, [23] = {.lex_state = 12, .external_lex_state = 4}, [24] = {.lex_state = 12, .external_lex_state = 4}, [25] = {.lex_state = 12, .external_lex_state = 4}, @@ -3217,28 +3290,28 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [30] = {.lex_state = 12, .external_lex_state = 4}, [31] = {.lex_state = 12, .external_lex_state = 4}, [32] = {.lex_state = 12, .external_lex_state = 4}, - [33] = {.lex_state = 12, .external_lex_state = 2}, - [34] = {.lex_state = 12, .external_lex_state = 6}, - [35] = {.lex_state = 12, .external_lex_state = 2}, - [36] = {.lex_state = 12, .external_lex_state = 2}, - [37] = {.lex_state = 12, .external_lex_state = 2}, + [33] = {.lex_state = 12, .external_lex_state = 4}, + [34] = {.lex_state = 12, .external_lex_state = 4}, + [35] = {.lex_state = 12, .external_lex_state = 4}, + [36] = {.lex_state = 12, .external_lex_state = 6}, + [37] = {.lex_state = 12, .external_lex_state = 6}, [38] = {.lex_state = 12, .external_lex_state = 2}, - [39] = {.lex_state = 12, .external_lex_state = 6}, - [40] = {.lex_state = 12, .external_lex_state = 6}, + [39] = {.lex_state = 12, .external_lex_state = 2}, + [40] = {.lex_state = 12, .external_lex_state = 2}, [41] = {.lex_state = 12, .external_lex_state = 2}, - [42] = {.lex_state = 12, .external_lex_state = 6}, + [42] = {.lex_state = 12, .external_lex_state = 2}, [43] = {.lex_state = 12, .external_lex_state = 6}, [44] = {.lex_state = 12, .external_lex_state = 6}, [45] = {.lex_state = 12, .external_lex_state = 2}, - [46] = {.lex_state = 12, .external_lex_state = 6}, + [46] = {.lex_state = 12, .external_lex_state = 2}, [47] = {.lex_state = 12, .external_lex_state = 6}, [48] = {.lex_state = 12, .external_lex_state = 6}, [49] = {.lex_state = 12, .external_lex_state = 6}, - [50] = {.lex_state = 12, .external_lex_state = 6}, - [51] = {.lex_state = 12, .external_lex_state = 2}, - [52] = {.lex_state = 12, .external_lex_state = 2}, - [53] = {.lex_state = 12, .external_lex_state = 2}, - [54] = {.lex_state = 12, .external_lex_state = 2}, + [50] = {.lex_state = 12, .external_lex_state = 2}, + [51] = {.lex_state = 12, .external_lex_state = 6}, + [52] = {.lex_state = 12, .external_lex_state = 6}, + [53] = {.lex_state = 12, .external_lex_state = 6}, + [54] = {.lex_state = 12, .external_lex_state = 6}, [55] = {.lex_state = 12, .external_lex_state = 2}, [56] = {.lex_state = 12, .external_lex_state = 2}, [57] = {.lex_state = 12, .external_lex_state = 2}, @@ -3246,170 +3319,170 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [59] = {.lex_state = 12, .external_lex_state = 2}, [60] = {.lex_state = 12, .external_lex_state = 2}, [61] = {.lex_state = 12, .external_lex_state = 2}, - [62] = {.lex_state = 12, .external_lex_state = 3}, - [63] = {.lex_state = 12, .external_lex_state = 3}, - [64] = {.lex_state = 12, .external_lex_state = 3}, - [65] = {.lex_state = 12, .external_lex_state = 6}, + [62] = {.lex_state = 12, .external_lex_state = 2}, + [63] = {.lex_state = 12, .external_lex_state = 2}, + [64] = {.lex_state = 12, .external_lex_state = 2}, + [65] = {.lex_state = 12, .external_lex_state = 2}, [66] = {.lex_state = 12, .external_lex_state = 2}, [67] = {.lex_state = 12, .external_lex_state = 2}, - [68] = {.lex_state = 12, .external_lex_state = 6}, - [69] = {.lex_state = 12, .external_lex_state = 6}, - [70] = {.lex_state = 12, .external_lex_state = 2}, - [71] = {.lex_state = 12, .external_lex_state = 3}, - [72] = {.lex_state = 12, .external_lex_state = 3}, - [73] = {.lex_state = 12, .external_lex_state = 3}, + [68] = {.lex_state = 12, .external_lex_state = 3}, + [69] = {.lex_state = 12, .external_lex_state = 3}, + [70] = {.lex_state = 12, .external_lex_state = 3}, + [71] = {.lex_state = 12, .external_lex_state = 6}, + [72] = {.lex_state = 12, .external_lex_state = 2}, + [73] = {.lex_state = 12, .external_lex_state = 2}, [74] = {.lex_state = 12, .external_lex_state = 6}, [75] = {.lex_state = 12, .external_lex_state = 2}, [76] = {.lex_state = 12, .external_lex_state = 6}, - [77] = {.lex_state = 12, .external_lex_state = 2}, - [78] = {.lex_state = 12, .external_lex_state = 2}, - [79] = {.lex_state = 12, .external_lex_state = 6}, - [80] = {.lex_state = 12, .external_lex_state = 3}, - [81] = {.lex_state = 12, .external_lex_state = 3}, - [82] = {.lex_state = 12, .external_lex_state = 3}, + [77] = {.lex_state = 12, .external_lex_state = 3}, + [78] = {.lex_state = 12, .external_lex_state = 3}, + [79] = {.lex_state = 12, .external_lex_state = 3}, + [80] = {.lex_state = 12, .external_lex_state = 6}, + [81] = {.lex_state = 12, .external_lex_state = 2}, + [82] = {.lex_state = 12, .external_lex_state = 6}, [83] = {.lex_state = 12, .external_lex_state = 6}, [84] = {.lex_state = 12, .external_lex_state = 2}, - [85] = {.lex_state = 12, .external_lex_state = 6}, - [86] = {.lex_state = 12, .external_lex_state = 2}, - [87] = {.lex_state = 12, .external_lex_state = 2}, - [88] = {.lex_state = 12, .external_lex_state = 6}, - [89] = {.lex_state = 12, .external_lex_state = 3}, - [90] = {.lex_state = 12, .external_lex_state = 3}, - [91] = {.lex_state = 12, .external_lex_state = 3}, - [92] = {.lex_state = 12, .external_lex_state = 6}, - [93] = {.lex_state = 12, .external_lex_state = 2}, + [85] = {.lex_state = 12, .external_lex_state = 2}, + [86] = {.lex_state = 12, .external_lex_state = 3}, + [87] = {.lex_state = 12, .external_lex_state = 3}, + [88] = {.lex_state = 12, .external_lex_state = 3}, + [89] = {.lex_state = 12, .external_lex_state = 2}, + [90] = {.lex_state = 12, .external_lex_state = 2}, + [91] = {.lex_state = 12, .external_lex_state = 6}, + [92] = {.lex_state = 12, .external_lex_state = 2}, + [93] = {.lex_state = 12, .external_lex_state = 6}, [94] = {.lex_state = 12, .external_lex_state = 6}, - [95] = {.lex_state = 12, .external_lex_state = 2}, - [96] = {.lex_state = 12, .external_lex_state = 6}, - [97] = {.lex_state = 12, .external_lex_state = 2}, - [98] = {.lex_state = 12, .external_lex_state = 3}, - [99] = {.lex_state = 12, .external_lex_state = 3}, - [100] = {.lex_state = 12, .external_lex_state = 3}, - [101] = {.lex_state = 12, .external_lex_state = 2}, - [102] = {.lex_state = 12, .external_lex_state = 6}, + [95] = {.lex_state = 12, .external_lex_state = 3}, + [96] = {.lex_state = 12, .external_lex_state = 3}, + [97] = {.lex_state = 12, .external_lex_state = 3}, + [98] = {.lex_state = 12, .external_lex_state = 6}, + [99] = {.lex_state = 12, .external_lex_state = 2}, + [100] = {.lex_state = 12, .external_lex_state = 2}, + [101] = {.lex_state = 12, .external_lex_state = 6}, + [102] = {.lex_state = 12, .external_lex_state = 2}, [103] = {.lex_state = 12, .external_lex_state = 6}, - [104] = {.lex_state = 12, .external_lex_state = 2}, - [105] = {.lex_state = 12, .external_lex_state = 2}, - [106] = {.lex_state = 12, .external_lex_state = 6}, - [107] = {.lex_state = 12, .external_lex_state = 3}, - [108] = {.lex_state = 12, .external_lex_state = 3}, - [109] = {.lex_state = 12, .external_lex_state = 3}, - [110] = {.lex_state = 12, .external_lex_state = 2}, - [111] = {.lex_state = 12, .external_lex_state = 6}, + [104] = {.lex_state = 12, .external_lex_state = 3}, + [105] = {.lex_state = 12, .external_lex_state = 3}, + [106] = {.lex_state = 12, .external_lex_state = 3}, + [107] = {.lex_state = 12, .external_lex_state = 2}, + [108] = {.lex_state = 12, .external_lex_state = 2}, + [109] = {.lex_state = 12, .external_lex_state = 6}, + [110] = {.lex_state = 12, .external_lex_state = 6}, + [111] = {.lex_state = 12, .external_lex_state = 2}, [112] = {.lex_state = 12, .external_lex_state = 6}, - [113] = {.lex_state = 12, .external_lex_state = 2}, - [114] = {.lex_state = 12, .external_lex_state = 2}, - [115] = {.lex_state = 12, .external_lex_state = 6}, - [116] = {.lex_state = 12, .external_lex_state = 3}, - [117] = {.lex_state = 12, .external_lex_state = 7}, - [118] = {.lex_state = 12, .external_lex_state = 3}, - [119] = {.lex_state = 12, .external_lex_state = 3}, - [120] = {.lex_state = 12, .external_lex_state = 3}, - [121] = {.lex_state = 12, .external_lex_state = 3}, + [113] = {.lex_state = 12, .external_lex_state = 3}, + [114] = {.lex_state = 12, .external_lex_state = 3}, + [115] = {.lex_state = 12, .external_lex_state = 3}, + [116] = {.lex_state = 12, .external_lex_state = 2}, + [117] = {.lex_state = 12, .external_lex_state = 2}, + [118] = {.lex_state = 12, .external_lex_state = 2}, + [119] = {.lex_state = 12, .external_lex_state = 6}, + [120] = {.lex_state = 12, .external_lex_state = 6}, + [121] = {.lex_state = 12, .external_lex_state = 6}, [122] = {.lex_state = 12, .external_lex_state = 3}, - [123] = {.lex_state = 12, .external_lex_state = 3}, + [123] = {.lex_state = 12, .external_lex_state = 7}, [124] = {.lex_state = 12, .external_lex_state = 3}, [125] = {.lex_state = 12, .external_lex_state = 3}, [126] = {.lex_state = 12, .external_lex_state = 3}, [127] = {.lex_state = 12, .external_lex_state = 3}, [128] = {.lex_state = 12, .external_lex_state = 3}, [129] = {.lex_state = 12, .external_lex_state = 3}, - [130] = {.lex_state = 12, .external_lex_state = 2}, - [131] = {.lex_state = 12, .external_lex_state = 6}, - [132] = {.lex_state = 12, .external_lex_state = 2}, - [133] = {.lex_state = 12, .external_lex_state = 2}, - [134] = {.lex_state = 12, .external_lex_state = 2}, - [135] = {.lex_state = 12, .external_lex_state = 2}, - [136] = {.lex_state = 12, .external_lex_state = 2}, - [137] = {.lex_state = 12, .external_lex_state = 6}, - [138] = {.lex_state = 12, .external_lex_state = 8}, - [139] = {.lex_state = 12, .external_lex_state = 6}, - [140] = {.lex_state = 12, .external_lex_state = 6}, - [141] = {.lex_state = 12, .external_lex_state = 6}, - [142] = {.lex_state = 12, .external_lex_state = 6}, + [130] = {.lex_state = 12, .external_lex_state = 3}, + [131] = {.lex_state = 12, .external_lex_state = 3}, + [132] = {.lex_state = 12, .external_lex_state = 3}, + [133] = {.lex_state = 12, .external_lex_state = 3}, + [134] = {.lex_state = 12, .external_lex_state = 3}, + [135] = {.lex_state = 12, .external_lex_state = 3}, + [136] = {.lex_state = 12, .external_lex_state = 3}, + [137] = {.lex_state = 12, .external_lex_state = 3}, + [138] = {.lex_state = 12, .external_lex_state = 6}, + [139] = {.lex_state = 12, .external_lex_state = 2}, + [140] = {.lex_state = 12, .external_lex_state = 2}, + [141] = {.lex_state = 12, .external_lex_state = 2}, + [142] = {.lex_state = 12, .external_lex_state = 8}, [143] = {.lex_state = 12, .external_lex_state = 6}, - [144] = {.lex_state = 12, .external_lex_state = 3}, - [145] = {.lex_state = 12, .external_lex_state = 3}, - [146] = {.lex_state = 12, .external_lex_state = 9}, - [147] = {.lex_state = 12, .external_lex_state = 8}, - [148] = {.lex_state = 12, .external_lex_state = 10}, - [149] = {.lex_state = 12, .external_lex_state = 8}, - [150] = {.lex_state = 12, .external_lex_state = 6}, - [151] = {.lex_state = 12, .external_lex_state = 2}, + [144] = {.lex_state = 12, .external_lex_state = 6}, + [145] = {.lex_state = 12, .external_lex_state = 6}, + [146] = {.lex_state = 12, .external_lex_state = 6}, + [147] = {.lex_state = 12, .external_lex_state = 3}, + [148] = {.lex_state = 12, .external_lex_state = 3}, + [149] = {.lex_state = 12, .external_lex_state = 9}, + [150] = {.lex_state = 12, .external_lex_state = 8}, + [151] = {.lex_state = 12, .external_lex_state = 10}, [152] = {.lex_state = 12, .external_lex_state = 2}, - [153] = {.lex_state = 12, .external_lex_state = 2}, + [153] = {.lex_state = 12, .external_lex_state = 8}, [154] = {.lex_state = 12, .external_lex_state = 6}, - [155] = {.lex_state = 12, .external_lex_state = 2}, - [156] = {.lex_state = 12, .external_lex_state = 2}, + [155] = {.lex_state = 12, .external_lex_state = 6}, + [156] = {.lex_state = 12, .external_lex_state = 6}, [157] = {.lex_state = 12, .external_lex_state = 2}, [158] = {.lex_state = 12, .external_lex_state = 2}, - [159] = {.lex_state = 12, .external_lex_state = 6}, - [160] = {.lex_state = 12, .external_lex_state = 6}, - [161] = {.lex_state = 12, .external_lex_state = 6}, - [162] = {.lex_state = 12, .external_lex_state = 6}, - [163] = {.lex_state = 12, .external_lex_state = 11}, - [164] = {.lex_state = 12, .external_lex_state = 11}, - [165] = {.lex_state = 12, .external_lex_state = 11}, - [166] = {.lex_state = 12, .external_lex_state = 12}, - [167] = {.lex_state = 12, .external_lex_state = 2}, - [168] = {.lex_state = 12, .external_lex_state = 13}, - [169] = {.lex_state = 12, .external_lex_state = 13}, - [170] = {.lex_state = 12, .external_lex_state = 12}, - [171] = {.lex_state = 12, .external_lex_state = 11}, - [172] = {.lex_state = 12, .external_lex_state = 11}, - [173] = {.lex_state = 12, .external_lex_state = 13}, + [159] = {.lex_state = 12, .external_lex_state = 2}, + [160] = {.lex_state = 12, .external_lex_state = 2}, + [161] = {.lex_state = 12, .external_lex_state = 2}, + [162] = {.lex_state = 12, .external_lex_state = 2}, + [163] = {.lex_state = 12, .external_lex_state = 2}, + [164] = {.lex_state = 12, .external_lex_state = 2}, + [165] = {.lex_state = 12, .external_lex_state = 6}, + [166] = {.lex_state = 12, .external_lex_state = 6}, + [167] = {.lex_state = 12, .external_lex_state = 6}, + [168] = {.lex_state = 12, .external_lex_state = 6}, + [169] = {.lex_state = 12, .external_lex_state = 6}, + [170] = {.lex_state = 12, .external_lex_state = 6}, + [171] = {.lex_state = 12, .external_lex_state = 6}, + [172] = {.lex_state = 12, .external_lex_state = 2}, + [173] = {.lex_state = 12, .external_lex_state = 2}, [174] = {.lex_state = 12, .external_lex_state = 2}, - [175] = {.lex_state = 12, .external_lex_state = 6}, - [176] = {.lex_state = 12, .external_lex_state = 11}, - [177] = {.lex_state = 12, .external_lex_state = 11}, - [178] = {.lex_state = 12, .external_lex_state = 11}, - [179] = {.lex_state = 12, .external_lex_state = 11}, - [180] = {.lex_state = 12, .external_lex_state = 11}, - [181] = {.lex_state = 12, .external_lex_state = 11}, - [182] = {.lex_state = 12, .external_lex_state = 6}, - [183] = {.lex_state = 12, .external_lex_state = 12}, - [184] = {.lex_state = 12, .external_lex_state = 11}, - [185] = {.lex_state = 12, .external_lex_state = 11}, - [186] = {.lex_state = 12, .external_lex_state = 11}, - [187] = {.lex_state = 12, .external_lex_state = 11}, - [188] = {.lex_state = 12, .external_lex_state = 11}, - [189] = {.lex_state = 12, .external_lex_state = 3}, - [190] = {.lex_state = 12, .external_lex_state = 3}, - [191] = {.lex_state = 12, .external_lex_state = 3}, - [192] = {.lex_state = 12, .external_lex_state = 3}, - [193] = {.lex_state = 12, .external_lex_state = 3}, - [194] = {.lex_state = 12, .external_lex_state = 3}, - [195] = {.lex_state = 12, .external_lex_state = 3}, - [196] = {.lex_state = 12, .external_lex_state = 3}, - [197] = {.lex_state = 12, .external_lex_state = 3}, - [198] = {.lex_state = 12, .external_lex_state = 3}, - [199] = {.lex_state = 12, .external_lex_state = 3}, - [200] = {.lex_state = 12, .external_lex_state = 5}, - [201] = {.lex_state = 12, .external_lex_state = 3}, - [202] = {.lex_state = 12, .external_lex_state = 4}, + [175] = {.lex_state = 12, .external_lex_state = 11}, + [176] = {.lex_state = 12, .external_lex_state = 2}, + [177] = {.lex_state = 12, .external_lex_state = 12}, + [178] = {.lex_state = 12, .external_lex_state = 13}, + [179] = {.lex_state = 12, .external_lex_state = 12}, + [180] = {.lex_state = 12, .external_lex_state = 6}, + [181] = {.lex_state = 12, .external_lex_state = 6}, + [182] = {.lex_state = 12, .external_lex_state = 13}, + [183] = {.lex_state = 12, .external_lex_state = 2}, + [184] = {.lex_state = 12, .external_lex_state = 13}, + [185] = {.lex_state = 12, .external_lex_state = 13}, + [186] = {.lex_state = 12, .external_lex_state = 13}, + [187] = {.lex_state = 12, .external_lex_state = 13}, + [188] = {.lex_state = 12, .external_lex_state = 13}, + [189] = {.lex_state = 12, .external_lex_state = 13}, + [190] = {.lex_state = 12, .external_lex_state = 13}, + [191] = {.lex_state = 12, .external_lex_state = 13}, + [192] = {.lex_state = 12, .external_lex_state = 13}, + [193] = {.lex_state = 12, .external_lex_state = 12}, + [194] = {.lex_state = 12, .external_lex_state = 13}, + [195] = {.lex_state = 12, .external_lex_state = 13}, + [196] = {.lex_state = 12, .external_lex_state = 13}, + [197] = {.lex_state = 12, .external_lex_state = 13}, + [198] = {.lex_state = 12, .external_lex_state = 13}, + [199] = {.lex_state = 12, .external_lex_state = 11}, + [200] = {.lex_state = 12, .external_lex_state = 13}, + [201] = {.lex_state = 12, .external_lex_state = 13}, + [202] = {.lex_state = 12, .external_lex_state = 11}, [203] = {.lex_state = 12, .external_lex_state = 3}, - [204] = {.lex_state = 12, .external_lex_state = 3}, - [205] = {.lex_state = 12, .external_lex_state = 3}, - [206] = {.lex_state = 12, .external_lex_state = 3}, - [207] = {.lex_state = 12, .external_lex_state = 3}, + [204] = {.lex_state = 12, .external_lex_state = 5}, + [205] = {.lex_state = 12, .external_lex_state = 5}, + [206] = {.lex_state = 12, .external_lex_state = 5}, + [207] = {.lex_state = 12, .external_lex_state = 5}, [208] = {.lex_state = 12, .external_lex_state = 3}, [209] = {.lex_state = 12, .external_lex_state = 3}, [210] = {.lex_state = 12, .external_lex_state = 3}, [211] = {.lex_state = 12, .external_lex_state = 3}, [212] = {.lex_state = 12, .external_lex_state = 3}, - [213] = {.lex_state = 12, .external_lex_state = 5}, + [213] = {.lex_state = 12, .external_lex_state = 3}, [214] = {.lex_state = 12, .external_lex_state = 3}, [215] = {.lex_state = 12, .external_lex_state = 3}, [216] = {.lex_state = 12, .external_lex_state = 3}, [217] = {.lex_state = 12, .external_lex_state = 3}, - [218] = {.lex_state = 12, .external_lex_state = 5}, + [218] = {.lex_state = 12, .external_lex_state = 3}, [219] = {.lex_state = 12, .external_lex_state = 3}, [220] = {.lex_state = 12, .external_lex_state = 3}, [221] = {.lex_state = 12, .external_lex_state = 3}, [222] = {.lex_state = 12, .external_lex_state = 3}, [223] = {.lex_state = 12, .external_lex_state = 3}, [224] = {.lex_state = 12, .external_lex_state = 3}, - [225] = {.lex_state = 12, .external_lex_state = 5}, + [225] = {.lex_state = 12, .external_lex_state = 3}, [226] = {.lex_state = 12, .external_lex_state = 3}, [227] = {.lex_state = 12, .external_lex_state = 3}, [228] = {.lex_state = 12, .external_lex_state = 3}, @@ -3419,89 +3492,89 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [232] = {.lex_state = 12, .external_lex_state = 3}, [233] = {.lex_state = 12, .external_lex_state = 3}, [234] = {.lex_state = 12, .external_lex_state = 3}, - [235] = {.lex_state = 12, .external_lex_state = 5}, - [236] = {.lex_state = 12, .external_lex_state = 3}, + [235] = {.lex_state = 12, .external_lex_state = 3}, + [236] = {.lex_state = 12, .external_lex_state = 4}, [237] = {.lex_state = 12, .external_lex_state = 3}, [238] = {.lex_state = 12, .external_lex_state = 3}, - [239] = {.lex_state = 12, .external_lex_state = 3}, + [239] = {.lex_state = 12, .external_lex_state = 6}, [240] = {.lex_state = 12, .external_lex_state = 3}, [241] = {.lex_state = 12, .external_lex_state = 3}, [242] = {.lex_state = 12, .external_lex_state = 3}, [243] = {.lex_state = 12, .external_lex_state = 3}, [244] = {.lex_state = 12, .external_lex_state = 3}, - [245] = {.lex_state = 12, .external_lex_state = 5}, + [245] = {.lex_state = 12, .external_lex_state = 3}, [246] = {.lex_state = 12, .external_lex_state = 3}, [247] = {.lex_state = 12, .external_lex_state = 3}, [248] = {.lex_state = 12, .external_lex_state = 3}, [249] = {.lex_state = 12, .external_lex_state = 3}, [250] = {.lex_state = 12, .external_lex_state = 3}, - [251] = {.lex_state = 12, .external_lex_state = 5}, + [251] = {.lex_state = 12, .external_lex_state = 4}, [252] = {.lex_state = 12, .external_lex_state = 3}, - [253] = {.lex_state = 12, .external_lex_state = 5}, + [253] = {.lex_state = 12, .external_lex_state = 3}, [254] = {.lex_state = 12, .external_lex_state = 3}, [255] = {.lex_state = 12, .external_lex_state = 3}, - [256] = {.lex_state = 12, .external_lex_state = 4}, - [257] = {.lex_state = 12, .external_lex_state = 4}, + [256] = {.lex_state = 12, .external_lex_state = 3}, + [257] = {.lex_state = 12, .external_lex_state = 3}, [258] = {.lex_state = 12, .external_lex_state = 3}, [259] = {.lex_state = 12, .external_lex_state = 3}, - [260] = {.lex_state = 12, .external_lex_state = 5}, + [260] = {.lex_state = 12, .external_lex_state = 3}, [261] = {.lex_state = 12, .external_lex_state = 3}, - [262] = {.lex_state = 12, .external_lex_state = 5}, - [263] = {.lex_state = 12, .external_lex_state = 4}, - [264] = {.lex_state = 12, .external_lex_state = 5}, - [265] = {.lex_state = 12, .external_lex_state = 5}, + [262] = {.lex_state = 12, .external_lex_state = 3}, + [263] = {.lex_state = 12, .external_lex_state = 5}, + [264] = {.lex_state = 12, .external_lex_state = 3}, + [265] = {.lex_state = 12, .external_lex_state = 3}, [266] = {.lex_state = 12, .external_lex_state = 3}, [267] = {.lex_state = 12, .external_lex_state = 4}, [268] = {.lex_state = 12, .external_lex_state = 4}, - [269] = {.lex_state = 12, .external_lex_state = 3}, - [270] = {.lex_state = 12, .external_lex_state = 4}, + [269] = {.lex_state = 12, .external_lex_state = 5}, + [270] = {.lex_state = 12, .external_lex_state = 3}, [271] = {.lex_state = 12, .external_lex_state = 4}, - [272] = {.lex_state = 12, .external_lex_state = 3}, - [273] = {.lex_state = 12, .external_lex_state = 3}, + [272] = {.lex_state = 12, .external_lex_state = 5}, + [273] = {.lex_state = 12, .external_lex_state = 4}, [274] = {.lex_state = 12, .external_lex_state = 3}, [275] = {.lex_state = 12, .external_lex_state = 3}, [276] = {.lex_state = 12, .external_lex_state = 3}, - [277] = {.lex_state = 12, .external_lex_state = 4}, - [278] = {.lex_state = 12, .external_lex_state = 4}, + [277] = {.lex_state = 12, .external_lex_state = 5}, + [278] = {.lex_state = 12, .external_lex_state = 5}, [279] = {.lex_state = 12, .external_lex_state = 3}, - [280] = {.lex_state = 12, .external_lex_state = 4}, - [281] = {.lex_state = 12, .external_lex_state = 3}, - [282] = {.lex_state = 12, .external_lex_state = 3}, + [280] = {.lex_state = 12, .external_lex_state = 5}, + [281] = {.lex_state = 12, .external_lex_state = 4}, + [282] = {.lex_state = 12, .external_lex_state = 5}, [283] = {.lex_state = 12, .external_lex_state = 3}, - [284] = {.lex_state = 12, .external_lex_state = 3}, + [284] = {.lex_state = 12, .external_lex_state = 5}, [285] = {.lex_state = 12, .external_lex_state = 3}, [286] = {.lex_state = 12, .external_lex_state = 5}, [287] = {.lex_state = 12, .external_lex_state = 4}, - [288] = {.lex_state = 12, .external_lex_state = 5}, - [289] = {.lex_state = 12, .external_lex_state = 4}, - [290] = {.lex_state = 12, .external_lex_state = 6}, - [291] = {.lex_state = 12, .external_lex_state = 4}, + [288] = {.lex_state = 12, .external_lex_state = 3}, + [289] = {.lex_state = 12, .external_lex_state = 3}, + [290] = {.lex_state = 12, .external_lex_state = 3}, + [291] = {.lex_state = 12, .external_lex_state = 3}, [292] = {.lex_state = 12, .external_lex_state = 4}, [293] = {.lex_state = 12, .external_lex_state = 4}, - [294] = {.lex_state = 12, .external_lex_state = 3}, - [295] = {.lex_state = 12, .external_lex_state = 5}, - [296] = {.lex_state = 12, .external_lex_state = 5}, + [294] = {.lex_state = 12, .external_lex_state = 4}, + [295] = {.lex_state = 12, .external_lex_state = 4}, + [296] = {.lex_state = 12, .external_lex_state = 4}, [297] = {.lex_state = 12, .external_lex_state = 3}, [298] = {.lex_state = 12, .external_lex_state = 4}, - [299] = {.lex_state = 12, .external_lex_state = 2}, - [300] = {.lex_state = 12, .external_lex_state = 2}, - [301] = {.lex_state = 12, .external_lex_state = 2}, - [302] = {.lex_state = 12, .external_lex_state = 2}, - [303] = {.lex_state = 12, .external_lex_state = 2}, - [304] = {.lex_state = 12, .external_lex_state = 2}, - [305] = {.lex_state = 12, .external_lex_state = 2}, - [306] = {.lex_state = 12, .external_lex_state = 2}, - [307] = {.lex_state = 12, .external_lex_state = 2}, - [308] = {.lex_state = 12, .external_lex_state = 2}, - [309] = {.lex_state = 12, .external_lex_state = 2}, - [310] = {.lex_state = 12, .external_lex_state = 2}, - [311] = {.lex_state = 12, .external_lex_state = 2}, - [312] = {.lex_state = 12, .external_lex_state = 2}, - [313] = {.lex_state = 12, .external_lex_state = 2}, - [314] = {.lex_state = 12, .external_lex_state = 2}, - [315] = {.lex_state = 12, .external_lex_state = 2}, - [316] = {.lex_state = 12, .external_lex_state = 2}, - [317] = {.lex_state = 12, .external_lex_state = 2}, + [299] = {.lex_state = 12, .external_lex_state = 3}, + [300] = {.lex_state = 12, .external_lex_state = 3}, + [301] = {.lex_state = 12, .external_lex_state = 3}, + [302] = {.lex_state = 12, .external_lex_state = 3}, + [303] = {.lex_state = 12, .external_lex_state = 3}, + [304] = {.lex_state = 12, .external_lex_state = 3}, + [305] = {.lex_state = 12, .external_lex_state = 3}, + [306] = {.lex_state = 12, .external_lex_state = 5}, + [307] = {.lex_state = 12, .external_lex_state = 4}, + [308] = {.lex_state = 12, .external_lex_state = 5}, + [309] = {.lex_state = 12, .external_lex_state = 4}, + [310] = {.lex_state = 12, .external_lex_state = 3}, + [311] = {.lex_state = 12, .external_lex_state = 3}, + [312] = {.lex_state = 12, .external_lex_state = 5}, + [313] = {.lex_state = 12, .external_lex_state = 4}, + [314] = {.lex_state = 12, .external_lex_state = 4}, + [315] = {.lex_state = 12, .external_lex_state = 5}, + [316] = {.lex_state = 12, .external_lex_state = 5}, + [317] = {.lex_state = 12, .external_lex_state = 3}, [318] = {.lex_state = 12, .external_lex_state = 2}, [319] = {.lex_state = 12, .external_lex_state = 2}, [320] = {.lex_state = 12, .external_lex_state = 2}, @@ -3513,32 +3586,32 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [326] = {.lex_state = 12, .external_lex_state = 2}, [327] = {.lex_state = 12, .external_lex_state = 2}, [328] = {.lex_state = 12, .external_lex_state = 2}, - [329] = {.lex_state = 12, .external_lex_state = 6}, - [330] = {.lex_state = 12, .external_lex_state = 6}, + [329] = {.lex_state = 12, .external_lex_state = 2}, + [330] = {.lex_state = 12, .external_lex_state = 2}, [331] = {.lex_state = 12, .external_lex_state = 2}, [332] = {.lex_state = 12, .external_lex_state = 2}, - [333] = {.lex_state = 12, .external_lex_state = 6}, - [334] = {.lex_state = 12, .external_lex_state = 6}, - [335] = {.lex_state = 12, .external_lex_state = 6}, + [333] = {.lex_state = 12, .external_lex_state = 2}, + [334] = {.lex_state = 12, .external_lex_state = 2}, + [335] = {.lex_state = 12, .external_lex_state = 2}, [336] = {.lex_state = 12, .external_lex_state = 2}, [337] = {.lex_state = 12, .external_lex_state = 2}, - [338] = {.lex_state = 12, .external_lex_state = 6}, - [339] = {.lex_state = 12, .external_lex_state = 6}, - [340] = {.lex_state = 12, .external_lex_state = 6}, - [341] = {.lex_state = 12, .external_lex_state = 6}, - [342] = {.lex_state = 12, .external_lex_state = 6}, - [343] = {.lex_state = 12, .external_lex_state = 6}, - [344] = {.lex_state = 12, .external_lex_state = 6}, + [338] = {.lex_state = 12, .external_lex_state = 2}, + [339] = {.lex_state = 12, .external_lex_state = 2}, + [340] = {.lex_state = 12, .external_lex_state = 2}, + [341] = {.lex_state = 12, .external_lex_state = 2}, + [342] = {.lex_state = 12, .external_lex_state = 2}, + [343] = {.lex_state = 12, .external_lex_state = 2}, + [344] = {.lex_state = 12, .external_lex_state = 2}, [345] = {.lex_state = 12, .external_lex_state = 6}, [346] = {.lex_state = 12, .external_lex_state = 6}, - [347] = {.lex_state = 12, .external_lex_state = 6}, - [348] = {.lex_state = 12, .external_lex_state = 6}, - [349] = {.lex_state = 12, .external_lex_state = 2}, + [347] = {.lex_state = 12, .external_lex_state = 2}, + [348] = {.lex_state = 12, .external_lex_state = 2}, + [349] = {.lex_state = 12, .external_lex_state = 6}, [350] = {.lex_state = 12, .external_lex_state = 6}, [351] = {.lex_state = 12, .external_lex_state = 2}, [352] = {.lex_state = 12, .external_lex_state = 6}, - [353] = {.lex_state = 12, .external_lex_state = 6}, - [354] = {.lex_state = 12, .external_lex_state = 2}, + [353] = {.lex_state = 12, .external_lex_state = 2}, + [354] = {.lex_state = 12, .external_lex_state = 6}, [355] = {.lex_state = 12, .external_lex_state = 6}, [356] = {.lex_state = 12, .external_lex_state = 6}, [357] = {.lex_state = 12, .external_lex_state = 6}, @@ -3552,15 +3625,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [365] = {.lex_state = 12, .external_lex_state = 6}, [366] = {.lex_state = 12, .external_lex_state = 6}, [367] = {.lex_state = 12, .external_lex_state = 6}, - [368] = {.lex_state = 12, .external_lex_state = 6}, - [369] = {.lex_state = 12, .external_lex_state = 6}, - [370] = {.lex_state = 12, .external_lex_state = 2}, + [368] = {.lex_state = 12, .external_lex_state = 2}, + [369] = {.lex_state = 12, .external_lex_state = 2}, + [370] = {.lex_state = 12, .external_lex_state = 6}, [371] = {.lex_state = 12, .external_lex_state = 2}, [372] = {.lex_state = 12, .external_lex_state = 6}, [373] = {.lex_state = 12, .external_lex_state = 6}, - [374] = {.lex_state = 12, .external_lex_state = 2}, - [375] = {.lex_state = 12, .external_lex_state = 2}, - [376] = {.lex_state = 12, .external_lex_state = 2}, + [374] = {.lex_state = 12, .external_lex_state = 6}, + [375] = {.lex_state = 12, .external_lex_state = 6}, + [376] = {.lex_state = 12, .external_lex_state = 6}, [377] = {.lex_state = 12, .external_lex_state = 6}, [378] = {.lex_state = 12, .external_lex_state = 6}, [379] = {.lex_state = 12, .external_lex_state = 6}, @@ -3570,15 +3643,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [383] = {.lex_state = 12, .external_lex_state = 6}, [384] = {.lex_state = 12, .external_lex_state = 6}, [385] = {.lex_state = 12, .external_lex_state = 6}, - [386] = {.lex_state = 12, .external_lex_state = 6}, - [387] = {.lex_state = 12, .external_lex_state = 6}, - [388] = {.lex_state = 12, .external_lex_state = 6}, + [386] = {.lex_state = 12, .external_lex_state = 2}, + [387] = {.lex_state = 12, .external_lex_state = 2}, + [388] = {.lex_state = 12, .external_lex_state = 2}, [389] = {.lex_state = 12, .external_lex_state = 6}, - [390] = {.lex_state = 12, .external_lex_state = 2}, - [391] = {.lex_state = 12, .external_lex_state = 6}, - [392] = {.lex_state = 12, .external_lex_state = 6}, + [390] = {.lex_state = 12, .external_lex_state = 6}, + [391] = {.lex_state = 12, .external_lex_state = 2}, + [392] = {.lex_state = 12, .external_lex_state = 2}, [393] = {.lex_state = 12, .external_lex_state = 6}, - [394] = {.lex_state = 12, .external_lex_state = 2}, + [394] = {.lex_state = 12, .external_lex_state = 6}, [395] = {.lex_state = 12, .external_lex_state = 6}, [396] = {.lex_state = 12, .external_lex_state = 6}, [397] = {.lex_state = 12, .external_lex_state = 6}, @@ -3588,48 +3661,48 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [401] = {.lex_state = 12, .external_lex_state = 6}, [402] = {.lex_state = 12, .external_lex_state = 6}, [403] = {.lex_state = 12, .external_lex_state = 6}, - [404] = {.lex_state = 12, .external_lex_state = 6}, + [404] = {.lex_state = 12, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 6}, [406] = {.lex_state = 12, .external_lex_state = 6}, - [407] = {.lex_state = 12, .external_lex_state = 6}, + [407] = {.lex_state = 12, .external_lex_state = 4}, [408] = {.lex_state = 12, .external_lex_state = 6}, [409] = {.lex_state = 12, .external_lex_state = 6}, [410] = {.lex_state = 12, .external_lex_state = 6}, [411] = {.lex_state = 12, .external_lex_state = 6}, - [412] = {.lex_state = 12, .external_lex_state = 6}, + [412] = {.lex_state = 12, .external_lex_state = 4}, [413] = {.lex_state = 12, .external_lex_state = 6}, [414] = {.lex_state = 12, .external_lex_state = 6}, [415] = {.lex_state = 12, .external_lex_state = 6}, [416] = {.lex_state = 12, .external_lex_state = 6}, - [417] = {.lex_state = 12, .external_lex_state = 4}, - [418] = {.lex_state = 12, .external_lex_state = 2}, - [419] = {.lex_state = 12, .external_lex_state = 4}, - [420] = {.lex_state = 12, .external_lex_state = 4}, - [421] = {.lex_state = 12, .external_lex_state = 4}, - [422] = {.lex_state = 12, .external_lex_state = 2}, - [423] = {.lex_state = 12, .external_lex_state = 2}, - [424] = {.lex_state = 12, .external_lex_state = 2}, - [425] = {.lex_state = 12, .external_lex_state = 2}, - [426] = {.lex_state = 12, .external_lex_state = 2}, - [427] = {.lex_state = 12, .external_lex_state = 2}, - [428] = {.lex_state = 12, .external_lex_state = 2}, - [429] = {.lex_state = 12, .external_lex_state = 2}, - [430] = {.lex_state = 12, .external_lex_state = 2}, - [431] = {.lex_state = 12, .external_lex_state = 2}, - [432] = {.lex_state = 12, .external_lex_state = 2}, - [433] = {.lex_state = 12, .external_lex_state = 2}, - [434] = {.lex_state = 12, .external_lex_state = 2}, - [435] = {.lex_state = 12, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 2}, - [437] = {.lex_state = 12, .external_lex_state = 2}, - [438] = {.lex_state = 12, .external_lex_state = 2}, - [439] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 6}, + [418] = {.lex_state = 12, .external_lex_state = 6}, + [419] = {.lex_state = 12, .external_lex_state = 6}, + [420] = {.lex_state = 12, .external_lex_state = 6}, + [421] = {.lex_state = 12, .external_lex_state = 6}, + [422] = {.lex_state = 12, .external_lex_state = 6}, + [423] = {.lex_state = 12, .external_lex_state = 6}, + [424] = {.lex_state = 12, .external_lex_state = 6}, + [425] = {.lex_state = 12, .external_lex_state = 6}, + [426] = {.lex_state = 12, .external_lex_state = 6}, + [427] = {.lex_state = 12, .external_lex_state = 6}, + [428] = {.lex_state = 12, .external_lex_state = 6}, + [429] = {.lex_state = 12, .external_lex_state = 6}, + [430] = {.lex_state = 12, .external_lex_state = 6}, + [431] = {.lex_state = 12, .external_lex_state = 6}, + [432] = {.lex_state = 12, .external_lex_state = 6}, + [433] = {.lex_state = 12, .external_lex_state = 6}, + [434] = {.lex_state = 12, .external_lex_state = 6}, + [435] = {.lex_state = 12, .external_lex_state = 6}, + [436] = {.lex_state = 12, .external_lex_state = 4}, + [437] = {.lex_state = 12, .external_lex_state = 4}, + [438] = {.lex_state = 12, .external_lex_state = 4}, + [439] = {.lex_state = 12, .external_lex_state = 4}, [440] = {.lex_state = 12, .external_lex_state = 2}, [441] = {.lex_state = 12, .external_lex_state = 2}, [442] = {.lex_state = 12, .external_lex_state = 2}, - [443] = {.lex_state = 12, .external_lex_state = 6}, + [443] = {.lex_state = 12, .external_lex_state = 2}, [444] = {.lex_state = 12, .external_lex_state = 2}, - [445] = {.lex_state = 12, .external_lex_state = 6}, + [445] = {.lex_state = 12, .external_lex_state = 2}, [446] = {.lex_state = 12, .external_lex_state = 2}, [447] = {.lex_state = 12, .external_lex_state = 2}, [448] = {.lex_state = 12, .external_lex_state = 2}, @@ -3638,489 +3711,489 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [451] = {.lex_state = 12, .external_lex_state = 2}, [452] = {.lex_state = 12, .external_lex_state = 2}, [453] = {.lex_state = 12, .external_lex_state = 2}, - [454] = {.lex_state = 2, .external_lex_state = 14}, - [455] = {.lex_state = 1, .external_lex_state = 15}, - [456] = {.lex_state = 2, .external_lex_state = 14}, - [457] = {.lex_state = 2, .external_lex_state = 14}, - [458] = {.lex_state = 2, .external_lex_state = 14}, - [459] = {.lex_state = 2, .external_lex_state = 14}, - [460] = {.lex_state = 2, .external_lex_state = 14}, - [461] = {.lex_state = 2, .external_lex_state = 14}, - [462] = {.lex_state = 12, .external_lex_state = 15}, - [463] = {.lex_state = 2, .external_lex_state = 16}, - [464] = {.lex_state = 2, .external_lex_state = 16}, - [465] = {.lex_state = 2, .external_lex_state = 14}, - [466] = {.lex_state = 12, .external_lex_state = 15}, - [467] = {.lex_state = 12, .external_lex_state = 15}, - [468] = {.lex_state = 2, .external_lex_state = 14}, - [469] = {.lex_state = 2, .external_lex_state = 14}, - [470] = {.lex_state = 2, .external_lex_state = 14}, - [471] = {.lex_state = 2, .external_lex_state = 14}, - [472] = {.lex_state = 12, .external_lex_state = 15}, - [473] = {.lex_state = 12, .external_lex_state = 15}, - [474] = {.lex_state = 12, .external_lex_state = 15}, - [475] = {.lex_state = 12, .external_lex_state = 15}, - [476] = {.lex_state = 12, .external_lex_state = 15}, - [477] = {.lex_state = 12, .external_lex_state = 15}, - [478] = {.lex_state = 12, .external_lex_state = 15}, - [479] = {.lex_state = 12, .external_lex_state = 15}, - [480] = {.lex_state = 12, .external_lex_state = 15}, - [481] = {.lex_state = 12, .external_lex_state = 15}, - [482] = {.lex_state = 12, .external_lex_state = 15}, - [483] = {.lex_state = 12, .external_lex_state = 15}, - [484] = {.lex_state = 12, .external_lex_state = 15}, - [485] = {.lex_state = 12, .external_lex_state = 15}, - [486] = {.lex_state = 2, .external_lex_state = 16}, + [454] = {.lex_state = 12, .external_lex_state = 2}, + [455] = {.lex_state = 12, .external_lex_state = 2}, + [456] = {.lex_state = 12, .external_lex_state = 2}, + [457] = {.lex_state = 12, .external_lex_state = 2}, + [458] = {.lex_state = 12, .external_lex_state = 2}, + [459] = {.lex_state = 12, .external_lex_state = 2}, + [460] = {.lex_state = 12, .external_lex_state = 2}, + [461] = {.lex_state = 12, .external_lex_state = 2}, + [462] = {.lex_state = 12, .external_lex_state = 2}, + [463] = {.lex_state = 12, .external_lex_state = 2}, + [464] = {.lex_state = 12, .external_lex_state = 2}, + [465] = {.lex_state = 12, .external_lex_state = 2}, + [466] = {.lex_state = 12, .external_lex_state = 6}, + [467] = {.lex_state = 12, .external_lex_state = 2}, + [468] = {.lex_state = 12, .external_lex_state = 2}, + [469] = {.lex_state = 12, .external_lex_state = 2}, + [470] = {.lex_state = 12, .external_lex_state = 6}, + [471] = {.lex_state = 12, .external_lex_state = 2}, + [472] = {.lex_state = 12, .external_lex_state = 2}, + [473] = {.lex_state = 12, .external_lex_state = 2}, + [474] = {.lex_state = 12, .external_lex_state = 2}, + [475] = {.lex_state = 12, .external_lex_state = 2}, + [476] = {.lex_state = 12, .external_lex_state = 2}, + [477] = {.lex_state = 12, .external_lex_state = 2}, + [478] = {.lex_state = 12, .external_lex_state = 2}, + [479] = {.lex_state = 2, .external_lex_state = 14}, + [480] = {.lex_state = 1, .external_lex_state = 15}, + [481] = {.lex_state = 2, .external_lex_state = 14}, + [482] = {.lex_state = 2, .external_lex_state = 14}, + [483] = {.lex_state = 2, .external_lex_state = 14}, + [484] = {.lex_state = 2, .external_lex_state = 14}, + [485] = {.lex_state = 2, .external_lex_state = 14}, + [486] = {.lex_state = 2, .external_lex_state = 14}, [487] = {.lex_state = 12, .external_lex_state = 15}, - [488] = {.lex_state = 2, .external_lex_state = 14}, - [489] = {.lex_state = 2, .external_lex_state = 17}, - [490] = {.lex_state = 2, .external_lex_state = 17}, - [491] = {.lex_state = 12, .external_lex_state = 18}, - [492] = {.lex_state = 12, .external_lex_state = 19}, - [493] = {.lex_state = 12, .external_lex_state = 18}, - [494] = {.lex_state = 12, .external_lex_state = 19}, - [495] = {.lex_state = 12, .external_lex_state = 18}, - [496] = {.lex_state = 12, .external_lex_state = 19}, - [497] = {.lex_state = 12, .external_lex_state = 18}, - [498] = {.lex_state = 12, .external_lex_state = 19}, - [499] = {.lex_state = 2, .external_lex_state = 14}, - [500] = {.lex_state = 12, .external_lex_state = 18}, - [501] = {.lex_state = 2, .external_lex_state = 17}, - [502] = {.lex_state = 12, .external_lex_state = 18}, - [503] = {.lex_state = 12, .external_lex_state = 19}, - [504] = {.lex_state = 12, .external_lex_state = 19}, - [505] = {.lex_state = 12, .external_lex_state = 18}, - [506] = {.lex_state = 12, .external_lex_state = 19}, - [507] = {.lex_state = 12, .external_lex_state = 18}, - [508] = {.lex_state = 12, .external_lex_state = 19}, - [509] = {.lex_state = 12, .external_lex_state = 18}, - [510] = {.lex_state = 12, .external_lex_state = 19}, - [511] = {.lex_state = 2, .external_lex_state = 14}, - [512] = {.lex_state = 2, .external_lex_state = 17}, + [488] = {.lex_state = 12, .external_lex_state = 15}, + [489] = {.lex_state = 2, .external_lex_state = 14}, + [490] = {.lex_state = 2, .external_lex_state = 14}, + [491] = {.lex_state = 2, .external_lex_state = 14}, + [492] = {.lex_state = 2, .external_lex_state = 16}, + [493] = {.lex_state = 2, .external_lex_state = 14}, + [494] = {.lex_state = 2, .external_lex_state = 16}, + [495] = {.lex_state = 12, .external_lex_state = 15}, + [496] = {.lex_state = 12, .external_lex_state = 15}, + [497] = {.lex_state = 12, .external_lex_state = 15}, + [498] = {.lex_state = 12, .external_lex_state = 15}, + [499] = {.lex_state = 12, .external_lex_state = 15}, + [500] = {.lex_state = 12, .external_lex_state = 15}, + [501] = {.lex_state = 12, .external_lex_state = 15}, + [502] = {.lex_state = 12, .external_lex_state = 15}, + [503] = {.lex_state = 12, .external_lex_state = 15}, + [504] = {.lex_state = 12, .external_lex_state = 15}, + [505] = {.lex_state = 12, .external_lex_state = 15}, + [506] = {.lex_state = 12, .external_lex_state = 15}, + [507] = {.lex_state = 12, .external_lex_state = 15}, + [508] = {.lex_state = 2, .external_lex_state = 14}, + [509] = {.lex_state = 12, .external_lex_state = 15}, + [510] = {.lex_state = 12, .external_lex_state = 15}, + [511] = {.lex_state = 12, .external_lex_state = 15}, + [512] = {.lex_state = 2, .external_lex_state = 16}, [513] = {.lex_state = 2, .external_lex_state = 17}, - [514] = {.lex_state = 2, .external_lex_state = 17}, - [515] = {.lex_state = 2, .external_lex_state = 17}, - [516] = {.lex_state = 2, .external_lex_state = 17}, - [517] = {.lex_state = 2, .external_lex_state = 16}, - [518] = {.lex_state = 2, .external_lex_state = 16}, - [519] = {.lex_state = 12, .external_lex_state = 19}, - [520] = {.lex_state = 2, .external_lex_state = 17}, - [521] = {.lex_state = 2, .external_lex_state = 16}, + [514] = {.lex_state = 12, .external_lex_state = 18}, + [515] = {.lex_state = 2, .external_lex_state = 14}, + [516] = {.lex_state = 12, .external_lex_state = 18}, + [517] = {.lex_state = 12, .external_lex_state = 19}, + [518] = {.lex_state = 2, .external_lex_state = 17}, + [519] = {.lex_state = 2, .external_lex_state = 14}, + [520] = {.lex_state = 12, .external_lex_state = 19}, + [521] = {.lex_state = 2, .external_lex_state = 14}, [522] = {.lex_state = 12, .external_lex_state = 18}, - [523] = {.lex_state = 2, .external_lex_state = 17}, + [523] = {.lex_state = 12, .external_lex_state = 18}, [524] = {.lex_state = 12, .external_lex_state = 19}, [525] = {.lex_state = 12, .external_lex_state = 18}, [526] = {.lex_state = 2, .external_lex_state = 17}, - [527] = {.lex_state = 12, .external_lex_state = 20}, - [528] = {.lex_state = 2, .external_lex_state = 17}, - [529] = {.lex_state = 12, .external_lex_state = 20}, - [530] = {.lex_state = 2, .external_lex_state = 16}, - [531] = {.lex_state = 2, .external_lex_state = 16}, - [532] = {.lex_state = 2, .external_lex_state = 16}, - [533] = {.lex_state = 2, .external_lex_state = 16}, - [534] = {.lex_state = 12, .external_lex_state = 20}, - [535] = {.lex_state = 2, .external_lex_state = 17}, - [536] = {.lex_state = 12, .external_lex_state = 21}, - [537] = {.lex_state = 12, .external_lex_state = 21}, - [538] = {.lex_state = 12, .external_lex_state = 20}, - [539] = {.lex_state = 2, .external_lex_state = 16}, - [540] = {.lex_state = 12, .external_lex_state = 20}, - [541] = {.lex_state = 12, .external_lex_state = 20}, - [542] = {.lex_state = 2, .external_lex_state = 22}, - [543] = {.lex_state = 12, .external_lex_state = 21}, - [544] = {.lex_state = 12, .external_lex_state = 20}, + [527] = {.lex_state = 12, .external_lex_state = 18}, + [528] = {.lex_state = 12, .external_lex_state = 19}, + [529] = {.lex_state = 12, .external_lex_state = 19}, + [530] = {.lex_state = 2, .external_lex_state = 17}, + [531] = {.lex_state = 12, .external_lex_state = 18}, + [532] = {.lex_state = 12, .external_lex_state = 19}, + [533] = {.lex_state = 12, .external_lex_state = 18}, + [534] = {.lex_state = 12, .external_lex_state = 19}, + [535] = {.lex_state = 12, .external_lex_state = 18}, + [536] = {.lex_state = 12, .external_lex_state = 19}, + [537] = {.lex_state = 2, .external_lex_state = 17}, + [538] = {.lex_state = 2, .external_lex_state = 17}, + [539] = {.lex_state = 12, .external_lex_state = 19}, + [540] = {.lex_state = 2, .external_lex_state = 16}, + [541] = {.lex_state = 2, .external_lex_state = 17}, + [542] = {.lex_state = 2, .external_lex_state = 17}, + [543] = {.lex_state = 12, .external_lex_state = 19}, + [544] = {.lex_state = 2, .external_lex_state = 16}, [545] = {.lex_state = 2, .external_lex_state = 17}, - [546] = {.lex_state = 12, .external_lex_state = 21}, - [547] = {.lex_state = 12, .external_lex_state = 21}, - [548] = {.lex_state = 12, .external_lex_state = 21}, - [549] = {.lex_state = 2, .external_lex_state = 16}, - [550] = {.lex_state = 12, .external_lex_state = 21}, - [551] = {.lex_state = 2, .external_lex_state = 16}, - [552] = {.lex_state = 12, .external_lex_state = 21}, - [553] = {.lex_state = 2, .external_lex_state = 14}, - [554] = {.lex_state = 12, .external_lex_state = 23}, + [546] = {.lex_state = 2, .external_lex_state = 17}, + [547] = {.lex_state = 12, .external_lex_state = 18}, + [548] = {.lex_state = 2, .external_lex_state = 16}, + [549] = {.lex_state = 12, .external_lex_state = 18}, + [550] = {.lex_state = 2, .external_lex_state = 17}, + [551] = {.lex_state = 12, .external_lex_state = 19}, + [552] = {.lex_state = 2, .external_lex_state = 16}, + [553] = {.lex_state = 12, .external_lex_state = 20}, + [554] = {.lex_state = 12, .external_lex_state = 21}, [555] = {.lex_state = 2, .external_lex_state = 16}, - [556] = {.lex_state = 2, .external_lex_state = 14}, - [557] = {.lex_state = 2, .external_lex_state = 16}, - [558] = {.lex_state = 2, .external_lex_state = 14}, - [559] = {.lex_state = 2, .external_lex_state = 14}, - [560] = {.lex_state = 2, .external_lex_state = 14}, - [561] = {.lex_state = 2, .external_lex_state = 14}, - [562] = {.lex_state = 12, .external_lex_state = 23}, - [563] = {.lex_state = 2, .external_lex_state = 16}, + [556] = {.lex_state = 12, .external_lex_state = 20}, + [557] = {.lex_state = 12, .external_lex_state = 20}, + [558] = {.lex_state = 12, .external_lex_state = 20}, + [559] = {.lex_state = 2, .external_lex_state = 16}, + [560] = {.lex_state = 12, .external_lex_state = 21}, + [561] = {.lex_state = 12, .external_lex_state = 20}, + [562] = {.lex_state = 12, .external_lex_state = 20}, + [563] = {.lex_state = 2, .external_lex_state = 22}, [564] = {.lex_state = 2, .external_lex_state = 16}, - [565] = {.lex_state = 12, .external_lex_state = 23}, - [566] = {.lex_state = 2, .external_lex_state = 14}, - [567] = {.lex_state = 2, .external_lex_state = 16}, - [568] = {.lex_state = 2, .external_lex_state = 16}, - [569] = {.lex_state = 12, .external_lex_state = 23}, + [565] = {.lex_state = 12, .external_lex_state = 21}, + [566] = {.lex_state = 2, .external_lex_state = 17}, + [567] = {.lex_state = 12, .external_lex_state = 20}, + [568] = {.lex_state = 2, .external_lex_state = 17}, + [569] = {.lex_state = 12, .external_lex_state = 21}, [570] = {.lex_state = 12, .external_lex_state = 21}, [571] = {.lex_state = 12, .external_lex_state = 21}, - [572] = {.lex_state = 12, .external_lex_state = 21}, - [573] = {.lex_state = 12, .external_lex_state = 24}, - [574] = {.lex_state = 12, .external_lex_state = 24}, - [575] = {.lex_state = 12, .external_lex_state = 24}, - [576] = {.lex_state = 2, .external_lex_state = 14}, - [577] = {.lex_state = 12, .external_lex_state = 19}, + [572] = {.lex_state = 2, .external_lex_state = 17}, + [573] = {.lex_state = 2, .external_lex_state = 16}, + [574] = {.lex_state = 2, .external_lex_state = 16}, + [575] = {.lex_state = 12, .external_lex_state = 23}, + [576] = {.lex_state = 2, .external_lex_state = 16}, + [577] = {.lex_state = 2, .external_lex_state = 16}, [578] = {.lex_state = 2, .external_lex_state = 14}, - [579] = {.lex_state = 12, .external_lex_state = 21}, - [580] = {.lex_state = 12, .external_lex_state = 18}, - [581] = {.lex_state = 12, .external_lex_state = 19}, - [582] = {.lex_state = 12, .external_lex_state = 23}, - [583] = {.lex_state = 2, .external_lex_state = 14}, - [584] = {.lex_state = 2, .external_lex_state = 14}, - [585] = {.lex_state = 12, .external_lex_state = 18}, - [586] = {.lex_state = 12, .external_lex_state = 21}, + [579] = {.lex_state = 2, .external_lex_state = 14}, + [580] = {.lex_state = 2, .external_lex_state = 14}, + [581] = {.lex_state = 12, .external_lex_state = 23}, + [582] = {.lex_state = 12, .external_lex_state = 21}, + [583] = {.lex_state = 2, .external_lex_state = 16}, + [584] = {.lex_state = 2, .external_lex_state = 16}, + [585] = {.lex_state = 12, .external_lex_state = 21}, + [586] = {.lex_state = 2, .external_lex_state = 14}, [587] = {.lex_state = 12, .external_lex_state = 23}, - [588] = {.lex_state = 12, .external_lex_state = 20}, - [589] = {.lex_state = 2, .external_lex_state = 17}, - [590] = {.lex_state = 2, .external_lex_state = 17}, - [591] = {.lex_state = 12, .external_lex_state = 23}, - [592] = {.lex_state = 12, .external_lex_state = 25}, - [593] = {.lex_state = 12, .external_lex_state = 20}, - [594] = {.lex_state = 2, .external_lex_state = 17}, - [595] = {.lex_state = 12, .external_lex_state = 26}, - [596] = {.lex_state = 2, .external_lex_state = 17}, - [597] = {.lex_state = 2, .external_lex_state = 17}, - [598] = {.lex_state = 12, .external_lex_state = 15}, - [599] = {.lex_state = 12, .external_lex_state = 23}, - [600] = {.lex_state = 2, .external_lex_state = 17}, - [601] = {.lex_state = 2, .external_lex_state = 16}, - [602] = {.lex_state = 2, .external_lex_state = 17}, - [603] = {.lex_state = 2, .external_lex_state = 17}, - [604] = {.lex_state = 2, .external_lex_state = 16}, - [605] = {.lex_state = 2, .external_lex_state = 16}, + [588] = {.lex_state = 2, .external_lex_state = 14}, + [589] = {.lex_state = 2, .external_lex_state = 16}, + [590] = {.lex_state = 2, .external_lex_state = 14}, + [591] = {.lex_state = 2, .external_lex_state = 14}, + [592] = {.lex_state = 2, .external_lex_state = 16}, + [593] = {.lex_state = 2, .external_lex_state = 16}, + [594] = {.lex_state = 2, .external_lex_state = 14}, + [595] = {.lex_state = 12, .external_lex_state = 19}, + [596] = {.lex_state = 2, .external_lex_state = 14}, + [597] = {.lex_state = 12, .external_lex_state = 19}, + [598] = {.lex_state = 2, .external_lex_state = 14}, + [599] = {.lex_state = 12, .external_lex_state = 24}, + [600] = {.lex_state = 12, .external_lex_state = 24}, + [601] = {.lex_state = 12, .external_lex_state = 23}, + [602] = {.lex_state = 12, .external_lex_state = 21}, + [603] = {.lex_state = 12, .external_lex_state = 21}, + [604] = {.lex_state = 12, .external_lex_state = 24}, + [605] = {.lex_state = 12, .external_lex_state = 21}, [606] = {.lex_state = 12, .external_lex_state = 21}, - [607] = {.lex_state = 12, .external_lex_state = 27}, - [608] = {.lex_state = 3, .external_lex_state = 28}, - [609] = {.lex_state = 12, .external_lex_state = 19}, - [610] = {.lex_state = 12, .external_lex_state = 18}, - [611] = {.lex_state = 2, .external_lex_state = 16}, - [612] = {.lex_state = 12, .external_lex_state = 19}, - [613] = {.lex_state = 2, .external_lex_state = 16}, - [614] = {.lex_state = 2, .external_lex_state = 17}, - [615] = {.lex_state = 12, .external_lex_state = 18}, - [616] = {.lex_state = 12, .external_lex_state = 19}, - [617] = {.lex_state = 4, .external_lex_state = 28}, - [618] = {.lex_state = 12, .external_lex_state = 29}, - [619] = {.lex_state = 3, .external_lex_state = 28}, - [620] = {.lex_state = 4, .external_lex_state = 28}, - [621] = {.lex_state = 12, .external_lex_state = 15}, - [622] = {.lex_state = 3, .external_lex_state = 28}, - [623] = {.lex_state = 12, .external_lex_state = 18}, - [624] = {.lex_state = 12, .external_lex_state = 15}, - [625] = {.lex_state = 12, .external_lex_state = 21}, - [626] = {.lex_state = 2, .external_lex_state = 17}, - [627] = {.lex_state = 4, .external_lex_state = 28}, - [628] = {.lex_state = 2, .external_lex_state = 16}, + [607] = {.lex_state = 12, .external_lex_state = 18}, + [608] = {.lex_state = 2, .external_lex_state = 14}, + [609] = {.lex_state = 12, .external_lex_state = 18}, + [610] = {.lex_state = 12, .external_lex_state = 21}, + [611] = {.lex_state = 12, .external_lex_state = 23}, + [612] = {.lex_state = 12, .external_lex_state = 23}, + [613] = {.lex_state = 2, .external_lex_state = 17}, + [614] = {.lex_state = 12, .external_lex_state = 23}, + [615] = {.lex_state = 2, .external_lex_state = 17}, + [616] = {.lex_state = 2, .external_lex_state = 17}, + [617] = {.lex_state = 12, .external_lex_state = 25}, + [618] = {.lex_state = 12, .external_lex_state = 20}, + [619] = {.lex_state = 12, .external_lex_state = 20}, + [620] = {.lex_state = 12, .external_lex_state = 23}, + [621] = {.lex_state = 2, .external_lex_state = 17}, + [622] = {.lex_state = 12, .external_lex_state = 15}, + [623] = {.lex_state = 2, .external_lex_state = 17}, + [624] = {.lex_state = 2, .external_lex_state = 17}, + [625] = {.lex_state = 12, .external_lex_state = 26}, + [626] = {.lex_state = 3, .external_lex_state = 27}, + [627] = {.lex_state = 2, .external_lex_state = 17}, + [628] = {.lex_state = 3, .external_lex_state = 27}, [629] = {.lex_state = 12, .external_lex_state = 21}, - [630] = {.lex_state = 12, .external_lex_state = 23}, - [631] = {.lex_state = 12, .external_lex_state = 23}, - [632] = {.lex_state = 12, .external_lex_state = 21}, - [633] = {.lex_state = 12, .external_lex_state = 20}, - [634] = {.lex_state = 12, .external_lex_state = 20}, - [635] = {.lex_state = 12, .external_lex_state = 20}, - [636] = {.lex_state = 3, .external_lex_state = 30}, - [637] = {.lex_state = 12, .external_lex_state = 31}, - [638] = {.lex_state = 12, .external_lex_state = 32}, - [639] = {.lex_state = 12, .external_lex_state = 31}, - [640] = {.lex_state = 12, .external_lex_state = 32}, - [641] = {.lex_state = 12, .external_lex_state = 31}, - [642] = {.lex_state = 12, .external_lex_state = 32}, - [643] = {.lex_state = 4, .external_lex_state = 30}, - [644] = {.lex_state = 12, .external_lex_state = 15}, - [645] = {.lex_state = 12, .external_lex_state = 31}, - [646] = {.lex_state = 12, .external_lex_state = 32}, - [647] = {.lex_state = 12, .external_lex_state = 31}, - [648] = {.lex_state = 12, .external_lex_state = 15}, - [649] = {.lex_state = 12, .external_lex_state = 31}, - [650] = {.lex_state = 12, .external_lex_state = 31}, - [651] = {.lex_state = 12, .external_lex_state = 32}, - [652] = {.lex_state = 12, .external_lex_state = 32}, - [653] = {.lex_state = 12, .external_lex_state = 32}, - [654] = {.lex_state = 4, .external_lex_state = 28}, - [655] = {.lex_state = 4, .external_lex_state = 28}, - [656] = {.lex_state = 12, .external_lex_state = 24}, - [657] = {.lex_state = 3, .external_lex_state = 28}, - [658] = {.lex_state = 3, .external_lex_state = 28}, - [659] = {.lex_state = 12, .external_lex_state = 32}, - [660] = {.lex_state = 12, .external_lex_state = 31}, - [661] = {.lex_state = 12, .external_lex_state = 32}, + [630] = {.lex_state = 4, .external_lex_state = 27}, + [631] = {.lex_state = 12, .external_lex_state = 28}, + [632] = {.lex_state = 4, .external_lex_state = 27}, + [633] = {.lex_state = 2, .external_lex_state = 16}, + [634] = {.lex_state = 2, .external_lex_state = 16}, + [635] = {.lex_state = 12, .external_lex_state = 19}, + [636] = {.lex_state = 12, .external_lex_state = 18}, + [637] = {.lex_state = 2, .external_lex_state = 16}, + [638] = {.lex_state = 12, .external_lex_state = 19}, + [639] = {.lex_state = 12, .external_lex_state = 18}, + [640] = {.lex_state = 12, .external_lex_state = 19}, + [641] = {.lex_state = 12, .external_lex_state = 29}, + [642] = {.lex_state = 2, .external_lex_state = 17}, + [643] = {.lex_state = 3, .external_lex_state = 27}, + [644] = {.lex_state = 2, .external_lex_state = 16}, + [645] = {.lex_state = 2, .external_lex_state = 17}, + [646] = {.lex_state = 12, .external_lex_state = 15}, + [647] = {.lex_state = 12, .external_lex_state = 18}, + [648] = {.lex_state = 12, .external_lex_state = 21}, + [649] = {.lex_state = 2, .external_lex_state = 16}, + [650] = {.lex_state = 2, .external_lex_state = 17}, + [651] = {.lex_state = 2, .external_lex_state = 16}, + [652] = {.lex_state = 4, .external_lex_state = 27}, + [653] = {.lex_state = 12, .external_lex_state = 15}, + [654] = {.lex_state = 12, .external_lex_state = 20}, + [655] = {.lex_state = 12, .external_lex_state = 21}, + [656] = {.lex_state = 12, .external_lex_state = 23}, + [657] = {.lex_state = 12, .external_lex_state = 23}, + [658] = {.lex_state = 12, .external_lex_state = 20}, + [659] = {.lex_state = 12, .external_lex_state = 21}, + [660] = {.lex_state = 12, .external_lex_state = 20}, + [661] = {.lex_state = 12, .external_lex_state = 30}, [662] = {.lex_state = 12, .external_lex_state = 31}, - [663] = {.lex_state = 0, .external_lex_state = 33}, - [664] = {.lex_state = 0, .external_lex_state = 33}, - [665] = {.lex_state = 0, .external_lex_state = 33}, - [666] = {.lex_state = 0, .external_lex_state = 33}, - [667] = {.lex_state = 0, .external_lex_state = 33}, - [668] = {.lex_state = 6}, - [669] = {.lex_state = 8, .external_lex_state = 34}, - [670] = {.lex_state = 8, .external_lex_state = 34}, - [671] = {.lex_state = 8, .external_lex_state = 34}, - [672] = {.lex_state = 8, .external_lex_state = 34}, - [673] = {.lex_state = 8, .external_lex_state = 34}, - [674] = {.lex_state = 8, .external_lex_state = 34}, - [675] = {.lex_state = 6}, - [676] = {.lex_state = 0, .external_lex_state = 35}, - [677] = {.lex_state = 0, .external_lex_state = 35}, - [678] = {.lex_state = 0, .external_lex_state = 35}, - [679] = {.lex_state = 0, .external_lex_state = 35}, - [680] = {.lex_state = 6}, - [681] = {.lex_state = 8, .external_lex_state = 34}, - [682] = {.lex_state = 6}, - [683] = {.lex_state = 7, .external_lex_state = 36}, - [684] = {.lex_state = 8, .external_lex_state = 34}, - [685] = {.lex_state = 8, .external_lex_state = 34}, - [686] = {.lex_state = 8, .external_lex_state = 34}, - [687] = {.lex_state = 0}, - [688] = {.lex_state = 0}, - [689] = {.lex_state = 8, .external_lex_state = 34}, - [690] = {.lex_state = 8, .external_lex_state = 34}, - [691] = {.lex_state = 0}, - [692] = {.lex_state = 7, .external_lex_state = 36}, - [693] = {.lex_state = 7, .external_lex_state = 36}, - [694] = {.lex_state = 0, .external_lex_state = 35}, - [695] = {.lex_state = 0, .external_lex_state = 35}, - [696] = {.lex_state = 0, .external_lex_state = 35}, - [697] = {.lex_state = 0, .external_lex_state = 35}, - [698] = {.lex_state = 12, .external_lex_state = 34}, - [699] = {.lex_state = 6}, - [700] = {.lex_state = 0}, - [701] = {.lex_state = 0, .external_lex_state = 33}, - [702] = {.lex_state = 6}, + [663] = {.lex_state = 12, .external_lex_state = 30}, + [664] = {.lex_state = 4, .external_lex_state = 32}, + [665] = {.lex_state = 12, .external_lex_state = 15}, + [666] = {.lex_state = 12, .external_lex_state = 31}, + [667] = {.lex_state = 12, .external_lex_state = 15}, + [668] = {.lex_state = 12, .external_lex_state = 30}, + [669] = {.lex_state = 12, .external_lex_state = 31}, + [670] = {.lex_state = 12, .external_lex_state = 30}, + [671] = {.lex_state = 12, .external_lex_state = 30}, + [672] = {.lex_state = 12, .external_lex_state = 31}, + [673] = {.lex_state = 12, .external_lex_state = 31}, + [674] = {.lex_state = 12, .external_lex_state = 30}, + [675] = {.lex_state = 12, .external_lex_state = 30}, + [676] = {.lex_state = 12, .external_lex_state = 31}, + [677] = {.lex_state = 12, .external_lex_state = 31}, + [678] = {.lex_state = 3, .external_lex_state = 32}, + [679] = {.lex_state = 4, .external_lex_state = 27}, + [680] = {.lex_state = 3, .external_lex_state = 27}, + [681] = {.lex_state = 4, .external_lex_state = 27}, + [682] = {.lex_state = 3, .external_lex_state = 27}, + [683] = {.lex_state = 12, .external_lex_state = 24}, + [684] = {.lex_state = 12, .external_lex_state = 30}, + [685] = {.lex_state = 12, .external_lex_state = 30}, + [686] = {.lex_state = 12, .external_lex_state = 31}, + [687] = {.lex_state = 12, .external_lex_state = 31}, + [688] = {.lex_state = 0, .external_lex_state = 33}, + [689] = {.lex_state = 0, .external_lex_state = 33}, + [690] = {.lex_state = 0, .external_lex_state = 33}, + [691] = {.lex_state = 0, .external_lex_state = 33}, + [692] = {.lex_state = 0, .external_lex_state = 33}, + [693] = {.lex_state = 6}, + [694] = {.lex_state = 8, .external_lex_state = 34}, + [695] = {.lex_state = 8, .external_lex_state = 34}, + [696] = {.lex_state = 8, .external_lex_state = 34}, + [697] = {.lex_state = 8, .external_lex_state = 34}, + [698] = {.lex_state = 8, .external_lex_state = 34}, + [699] = {.lex_state = 8, .external_lex_state = 34}, + [700] = {.lex_state = 0, .external_lex_state = 35}, + [701] = {.lex_state = 0, .external_lex_state = 35}, + [702] = {.lex_state = 0, .external_lex_state = 35}, [703] = {.lex_state = 0, .external_lex_state = 35}, - [704] = {.lex_state = 12, .external_lex_state = 34}, - [705] = {.lex_state = 12, .external_lex_state = 34}, - [706] = {.lex_state = 12, .external_lex_state = 34}, - [707] = {.lex_state = 12, .external_lex_state = 34}, - [708] = {.lex_state = 12, .external_lex_state = 34}, - [709] = {.lex_state = 12, .external_lex_state = 34}, - [710] = {.lex_state = 12, .external_lex_state = 34}, - [711] = {.lex_state = 12, .external_lex_state = 34}, - [712] = {.lex_state = 0, .external_lex_state = 35}, - [713] = {.lex_state = 12, .external_lex_state = 34}, - [714] = {.lex_state = 12, .external_lex_state = 34}, - [715] = {.lex_state = 12, .external_lex_state = 34}, - [716] = {.lex_state = 12, .external_lex_state = 34}, - [717] = {.lex_state = 12, .external_lex_state = 34}, - [718] = {.lex_state = 12, .external_lex_state = 34}, - [719] = {.lex_state = 12, .external_lex_state = 34}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 6}, + [704] = {.lex_state = 6}, + [705] = {.lex_state = 8, .external_lex_state = 34}, + [706] = {.lex_state = 8, .external_lex_state = 34}, + [707] = {.lex_state = 7, .external_lex_state = 36}, + [708] = {.lex_state = 6}, + [709] = {.lex_state = 6}, + [710] = {.lex_state = 8, .external_lex_state = 34}, + [711] = {.lex_state = 8, .external_lex_state = 34}, + [712] = {.lex_state = 0}, + [713] = {.lex_state = 8, .external_lex_state = 34}, + [714] = {.lex_state = 8, .external_lex_state = 34}, + [715] = {.lex_state = 0}, + [716] = {.lex_state = 0}, + [717] = {.lex_state = 7, .external_lex_state = 36}, + [718] = {.lex_state = 7, .external_lex_state = 36}, + [719] = {.lex_state = 0, .external_lex_state = 35}, + [720] = {.lex_state = 0, .external_lex_state = 35}, + [721] = {.lex_state = 0, .external_lex_state = 35}, [722] = {.lex_state = 12, .external_lex_state = 34}, - [723] = {.lex_state = 6}, + [723] = {.lex_state = 12, .external_lex_state = 34}, [724] = {.lex_state = 12, .external_lex_state = 34}, [725] = {.lex_state = 0, .external_lex_state = 35}, - [726] = {.lex_state = 0, .external_lex_state = 35}, - [727] = {.lex_state = 0, .external_lex_state = 35}, - [728] = {.lex_state = 0, .external_lex_state = 35}, - [729] = {.lex_state = 5}, - [730] = {.lex_state = 0, .external_lex_state = 35}, - [731] = {.lex_state = 0, .external_lex_state = 35}, - [732] = {.lex_state = 0, .external_lex_state = 35}, - [733] = {.lex_state = 0, .external_lex_state = 35}, + [726] = {.lex_state = 12, .external_lex_state = 34}, + [727] = {.lex_state = 6}, + [728] = {.lex_state = 12, .external_lex_state = 34}, + [729] = {.lex_state = 12, .external_lex_state = 34}, + [730] = {.lex_state = 12, .external_lex_state = 34}, + [731] = {.lex_state = 12, .external_lex_state = 34}, + [732] = {.lex_state = 12, .external_lex_state = 34}, + [733] = {.lex_state = 6}, [734] = {.lex_state = 0, .external_lex_state = 35}, - [735] = {.lex_state = 0, .external_lex_state = 35}, + [735] = {.lex_state = 0, .external_lex_state = 33}, [736] = {.lex_state = 6}, - [737] = {.lex_state = 0, .external_lex_state = 35}, - [738] = {.lex_state = 0, .external_lex_state = 35}, - [739] = {.lex_state = 0, .external_lex_state = 35}, - [740] = {.lex_state = 0, .external_lex_state = 35}, - [741] = {.lex_state = 0, .external_lex_state = 35}, - [742] = {.lex_state = 0, .external_lex_state = 35}, - [743] = {.lex_state = 0, .external_lex_state = 35}, - [744] = {.lex_state = 5}, - [745] = {.lex_state = 0, .external_lex_state = 35}, - [746] = {.lex_state = 0, .external_lex_state = 35}, - [747] = {.lex_state = 0, .external_lex_state = 35}, - [748] = {.lex_state = 6}, + [737] = {.lex_state = 12, .external_lex_state = 34}, + [738] = {.lex_state = 12, .external_lex_state = 34}, + [739] = {.lex_state = 12, .external_lex_state = 34}, + [740] = {.lex_state = 12, .external_lex_state = 34}, + [741] = {.lex_state = 12, .external_lex_state = 34}, + [742] = {.lex_state = 12, .external_lex_state = 34}, + [743] = {.lex_state = 0}, + [744] = {.lex_state = 12, .external_lex_state = 34}, + [745] = {.lex_state = 6}, + [746] = {.lex_state = 12, .external_lex_state = 34}, + [747] = {.lex_state = 12, .external_lex_state = 34}, + [748] = {.lex_state = 0}, [749] = {.lex_state = 0, .external_lex_state = 35}, [750] = {.lex_state = 0, .external_lex_state = 35}, [751] = {.lex_state = 0, .external_lex_state = 35}, [752] = {.lex_state = 0, .external_lex_state = 35}, - [753] = {.lex_state = 6}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 6}, - [756] = {.lex_state = 0}, + [753] = {.lex_state = 0, .external_lex_state = 35}, + [754] = {.lex_state = 5}, + [755] = {.lex_state = 0, .external_lex_state = 35}, + [756] = {.lex_state = 0, .external_lex_state = 35}, [757] = {.lex_state = 0, .external_lex_state = 35}, - [758] = {.lex_state = 0}, + [758] = {.lex_state = 0, .external_lex_state = 35}, [759] = {.lex_state = 0, .external_lex_state = 35}, [760] = {.lex_state = 6}, - [761] = {.lex_state = 6}, - [762] = {.lex_state = 6}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 6}, - [765] = {.lex_state = 6}, + [761] = {.lex_state = 0, .external_lex_state = 35}, + [762] = {.lex_state = 5}, + [763] = {.lex_state = 6}, + [764] = {.lex_state = 0, .external_lex_state = 35}, + [765] = {.lex_state = 0, .external_lex_state = 35}, [766] = {.lex_state = 0, .external_lex_state = 35}, - [767] = {.lex_state = 0, .external_lex_state = 37}, + [767] = {.lex_state = 0, .external_lex_state = 35}, [768] = {.lex_state = 0, .external_lex_state = 35}, - [769] = {.lex_state = 6}, + [769] = {.lex_state = 0, .external_lex_state = 35}, [770] = {.lex_state = 0, .external_lex_state = 35}, - [771] = {.lex_state = 0, .external_lex_state = 34}, - [772] = {.lex_state = 6}, - [773] = {.lex_state = 6}, - [774] = {.lex_state = 0, .external_lex_state = 34}, - [775] = {.lex_state = 6}, - [776] = {.lex_state = 7, .external_lex_state = 36}, - [777] = {.lex_state = 6}, - [778] = {.lex_state = 0, .external_lex_state = 35}, + [771] = {.lex_state = 0, .external_lex_state = 35}, + [772] = {.lex_state = 0, .external_lex_state = 35}, + [773] = {.lex_state = 0, .external_lex_state = 35}, + [774] = {.lex_state = 0, .external_lex_state = 35}, + [775] = {.lex_state = 0, .external_lex_state = 35}, + [776] = {.lex_state = 0, .external_lex_state = 35}, + [777] = {.lex_state = 0, .external_lex_state = 35}, + [778] = {.lex_state = 6}, [779] = {.lex_state = 0}, - [780] = {.lex_state = 0}, + [780] = {.lex_state = 0, .external_lex_state = 35}, [781] = {.lex_state = 6}, [782] = {.lex_state = 0, .external_lex_state = 35}, - [783] = {.lex_state = 0, .external_lex_state = 35}, - [784] = {.lex_state = 12}, - [785] = {.lex_state = 0, .external_lex_state = 35}, - [786] = {.lex_state = 0, .external_lex_state = 35}, - [787] = {.lex_state = 0, .external_lex_state = 34}, + [783] = {.lex_state = 6}, + [784] = {.lex_state = 6}, + [785] = {.lex_state = 0}, + [786] = {.lex_state = 0, .external_lex_state = 37}, + [787] = {.lex_state = 0}, [788] = {.lex_state = 0, .external_lex_state = 35}, - [789] = {.lex_state = 6}, - [790] = {.lex_state = 5}, - [791] = {.lex_state = 0, .external_lex_state = 35}, - [792] = {.lex_state = 0, .external_lex_state = 35}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 6}, + [791] = {.lex_state = 6}, + [792] = {.lex_state = 6}, [793] = {.lex_state = 0, .external_lex_state = 35}, - [794] = {.lex_state = 5}, - [795] = {.lex_state = 0, .external_lex_state = 34}, - [796] = {.lex_state = 0, .external_lex_state = 34}, - [797] = {.lex_state = 0, .external_lex_state = 34}, + [794] = {.lex_state = 6}, + [795] = {.lex_state = 6}, + [796] = {.lex_state = 0, .external_lex_state = 35}, + [797] = {.lex_state = 6}, [798] = {.lex_state = 0, .external_lex_state = 35}, - [799] = {.lex_state = 0, .external_lex_state = 35}, - [800] = {.lex_state = 0, .external_lex_state = 34}, + [799] = {.lex_state = 7, .external_lex_state = 36}, + [800] = {.lex_state = 6}, [801] = {.lex_state = 0, .external_lex_state = 35}, - [802] = {.lex_state = 0, .external_lex_state = 34}, - [803] = {.lex_state = 0, .external_lex_state = 35}, - [804] = {.lex_state = 6}, - [805] = {.lex_state = 6}, - [806] = {.lex_state = 0, .external_lex_state = 38}, - [807] = {.lex_state = 0}, - [808] = {.lex_state = 0, .external_lex_state = 38}, - [809] = {.lex_state = 0, .external_lex_state = 38}, - [810] = {.lex_state = 0, .external_lex_state = 38}, - [811] = {.lex_state = 0, .external_lex_state = 38}, - [812] = {.lex_state = 0, .external_lex_state = 38}, - [813] = {.lex_state = 0, .external_lex_state = 38}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 0, .external_lex_state = 38}, - [816] = {.lex_state = 12}, - [817] = {.lex_state = 0, .external_lex_state = 38}, - [818] = {.lex_state = 0, .external_lex_state = 38}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 0, .external_lex_state = 38}, - [821] = {.lex_state = 0, .external_lex_state = 38}, - [822] = {.lex_state = 0, .external_lex_state = 38}, - [823] = {.lex_state = 0, .external_lex_state = 38}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 0, .external_lex_state = 38}, - [826] = {.lex_state = 0, .external_lex_state = 34}, + [802] = {.lex_state = 0}, + [803] = {.lex_state = 12}, + [804] = {.lex_state = 0, .external_lex_state = 35}, + [805] = {.lex_state = 0, .external_lex_state = 34}, + [806] = {.lex_state = 5}, + [807] = {.lex_state = 0, .external_lex_state = 35}, + [808] = {.lex_state = 0, .external_lex_state = 35}, + [809] = {.lex_state = 0, .external_lex_state = 34}, + [810] = {.lex_state = 0, .external_lex_state = 35}, + [811] = {.lex_state = 6}, + [812] = {.lex_state = 0, .external_lex_state = 35}, + [813] = {.lex_state = 0, .external_lex_state = 35}, + [814] = {.lex_state = 0, .external_lex_state = 34}, + [815] = {.lex_state = 0, .external_lex_state = 34}, + [816] = {.lex_state = 0, .external_lex_state = 34}, + [817] = {.lex_state = 0, .external_lex_state = 34}, + [818] = {.lex_state = 6}, + [819] = {.lex_state = 6}, + [820] = {.lex_state = 0, .external_lex_state = 34}, + [821] = {.lex_state = 0, .external_lex_state = 35}, + [822] = {.lex_state = 0, .external_lex_state = 35}, + [823] = {.lex_state = 0, .external_lex_state = 35}, + [824] = {.lex_state = 0, .external_lex_state = 35}, + [825] = {.lex_state = 0, .external_lex_state = 35}, + [826] = {.lex_state = 5}, [827] = {.lex_state = 0}, - [828] = {.lex_state = 0, .external_lex_state = 38}, - [829] = {.lex_state = 0, .external_lex_state = 38}, + [828] = {.lex_state = 6}, + [829] = {.lex_state = 0, .external_lex_state = 34}, [830] = {.lex_state = 0, .external_lex_state = 38}, [831] = {.lex_state = 0, .external_lex_state = 38}, - [832] = {.lex_state = 0}, - [833] = {.lex_state = 0, .external_lex_state = 35}, - [834] = {.lex_state = 0, .external_lex_state = 38}, - [835] = {.lex_state = 8, .external_lex_state = 34}, + [832] = {.lex_state = 0, .external_lex_state = 38}, + [833] = {.lex_state = 0, .external_lex_state = 34}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 0, .external_lex_state = 38}, [836] = {.lex_state = 0, .external_lex_state = 38}, - [837] = {.lex_state = 0}, - [838] = {.lex_state = 0, .external_lex_state = 38}, - [839] = {.lex_state = 0, .external_lex_state = 38}, - [840] = {.lex_state = 0, .external_lex_state = 38}, + [837] = {.lex_state = 0, .external_lex_state = 38}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 0, .external_lex_state = 35}, [841] = {.lex_state = 0, .external_lex_state = 38}, - [842] = {.lex_state = 0}, + [842] = {.lex_state = 0, .external_lex_state = 38}, [843] = {.lex_state = 0, .external_lex_state = 38}, - [844] = {.lex_state = 0}, + [844] = {.lex_state = 0, .external_lex_state = 38}, [845] = {.lex_state = 0, .external_lex_state = 38}, [846] = {.lex_state = 0, .external_lex_state = 38}, - [847] = {.lex_state = 0, .external_lex_state = 38}, + [847] = {.lex_state = 0}, [848] = {.lex_state = 0, .external_lex_state = 38}, [849] = {.lex_state = 0, .external_lex_state = 38}, - [850] = {.lex_state = 0, .external_lex_state = 38}, - [851] = {.lex_state = 0, .external_lex_state = 34}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0, .external_lex_state = 34}, - [854] = {.lex_state = 0, .external_lex_state = 34}, - [855] = {.lex_state = 0, .external_lex_state = 34}, - [856] = {.lex_state = 0, .external_lex_state = 34}, - [857] = {.lex_state = 0, .external_lex_state = 34}, - [858] = {.lex_state = 0, .external_lex_state = 34}, + [850] = {.lex_state = 8, .external_lex_state = 34}, + [851] = {.lex_state = 0, .external_lex_state = 38}, + [852] = {.lex_state = 0, .external_lex_state = 38}, + [853] = {.lex_state = 0, .external_lex_state = 38}, + [854] = {.lex_state = 0, .external_lex_state = 38}, + [855] = {.lex_state = 0, .external_lex_state = 38}, + [856] = {.lex_state = 0, .external_lex_state = 38}, + [857] = {.lex_state = 0, .external_lex_state = 38}, + [858] = {.lex_state = 0}, [859] = {.lex_state = 0}, - [860] = {.lex_state = 0, .external_lex_state = 39}, - [861] = {.lex_state = 0, .external_lex_state = 34}, - [862] = {.lex_state = 0, .external_lex_state = 40}, - [863] = {.lex_state = 0, .external_lex_state = 41}, - [864] = {.lex_state = 0, .external_lex_state = 39}, - [865] = {.lex_state = 0, .external_lex_state = 40}, - [866] = {.lex_state = 0, .external_lex_state = 34}, - [867] = {.lex_state = 0, .external_lex_state = 40}, - [868] = {.lex_state = 0, .external_lex_state = 39}, - [869] = {.lex_state = 0, .external_lex_state = 40}, - [870] = {.lex_state = 0, .external_lex_state = 34}, - [871] = {.lex_state = 0, .external_lex_state = 34}, - [872] = {.lex_state = 0, .external_lex_state = 34}, - [873] = {.lex_state = 0, .external_lex_state = 34}, - [874] = {.lex_state = 0, .external_lex_state = 34}, - [875] = {.lex_state = 0, .external_lex_state = 39}, + [860] = {.lex_state = 0}, + [861] = {.lex_state = 0, .external_lex_state = 38}, + [862] = {.lex_state = 0, .external_lex_state = 38}, + [863] = {.lex_state = 0, .external_lex_state = 38}, + [864] = {.lex_state = 0, .external_lex_state = 38}, + [865] = {.lex_state = 0, .external_lex_state = 38}, + [866] = {.lex_state = 0}, + [867] = {.lex_state = 12}, + [868] = {.lex_state = 0}, + [869] = {.lex_state = 0, .external_lex_state = 38}, + [870] = {.lex_state = 0, .external_lex_state = 38}, + [871] = {.lex_state = 0, .external_lex_state = 38}, + [872] = {.lex_state = 0, .external_lex_state = 38}, + [873] = {.lex_state = 0, .external_lex_state = 38}, + [874] = {.lex_state = 6}, + [875] = {.lex_state = 0, .external_lex_state = 38}, [876] = {.lex_state = 0, .external_lex_state = 34}, [877] = {.lex_state = 0, .external_lex_state = 34}, [878] = {.lex_state = 0, .external_lex_state = 34}, - [879] = {.lex_state = 0, .external_lex_state = 40}, + [879] = {.lex_state = 0, .external_lex_state = 34}, [880] = {.lex_state = 0, .external_lex_state = 34}, [881] = {.lex_state = 0, .external_lex_state = 34}, [882] = {.lex_state = 0, .external_lex_state = 34}, [883] = {.lex_state = 0, .external_lex_state = 34}, - [884] = {.lex_state = 0, .external_lex_state = 34}, + [884] = {.lex_state = 0, .external_lex_state = 39}, [885] = {.lex_state = 0, .external_lex_state = 34}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 0, .external_lex_state = 34}, - [888] = {.lex_state = 0}, + [886] = {.lex_state = 0, .external_lex_state = 40}, + [887] = {.lex_state = 0, .external_lex_state = 41}, + [888] = {.lex_state = 0, .external_lex_state = 39}, [889] = {.lex_state = 0, .external_lex_state = 34}, - [890] = {.lex_state = 0, .external_lex_state = 34}, - [891] = {.lex_state = 0, .external_lex_state = 34}, + [890] = {.lex_state = 0, .external_lex_state = 40}, + [891] = {.lex_state = 0, .external_lex_state = 39}, [892] = {.lex_state = 0, .external_lex_state = 34}, - [893] = {.lex_state = 0, .external_lex_state = 34}, - [894] = {.lex_state = 0, .external_lex_state = 34}, - [895] = {.lex_state = 0, .external_lex_state = 34}, - [896] = {.lex_state = 0, .external_lex_state = 39}, + [893] = {.lex_state = 0, .external_lex_state = 39}, + [894] = {.lex_state = 0, .external_lex_state = 40}, + [895] = {.lex_state = 0}, + [896] = {.lex_state = 0, .external_lex_state = 40}, [897] = {.lex_state = 0, .external_lex_state = 34}, - [898] = {.lex_state = 0, .external_lex_state = 40}, - [899] = {.lex_state = 0, .external_lex_state = 39}, - [900] = {.lex_state = 0, .external_lex_state = 39}, - [901] = {.lex_state = 0, .external_lex_state = 34}, - [902] = {.lex_state = 0, .external_lex_state = 40}, - [903] = {.lex_state = 0, .external_lex_state = 34}, + [898] = {.lex_state = 0, .external_lex_state = 42}, + [899] = {.lex_state = 0, .external_lex_state = 34}, + [900] = {.lex_state = 0, .external_lex_state = 34}, + [901] = {.lex_state = 0}, + [902] = {.lex_state = 0, .external_lex_state = 34}, + [903] = {.lex_state = 0, .external_lex_state = 39}, [904] = {.lex_state = 0, .external_lex_state = 34}, - [905] = {.lex_state = 0, .external_lex_state = 39}, - [906] = {.lex_state = 0, .external_lex_state = 40}, - [907] = {.lex_state = 0, .external_lex_state = 40}, + [905] = {.lex_state = 0, .external_lex_state = 34}, + [906] = {.lex_state = 0, .external_lex_state = 34}, + [907] = {.lex_state = 0, .external_lex_state = 39}, [908] = {.lex_state = 0, .external_lex_state = 34}, - [909] = {.lex_state = 0, .external_lex_state = 39}, - [910] = {.lex_state = 0, .external_lex_state = 34}, + [909] = {.lex_state = 0, .external_lex_state = 34}, + [910] = {.lex_state = 0}, [911] = {.lex_state = 0, .external_lex_state = 34}, [912] = {.lex_state = 0, .external_lex_state = 34}, - [913] = {.lex_state = 0, .external_lex_state = 34}, - [914] = {.lex_state = 0, .external_lex_state = 34}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 0}, + [913] = {.lex_state = 0, .external_lex_state = 40}, + [914] = {.lex_state = 0}, + [915] = {.lex_state = 0, .external_lex_state = 34}, + [916] = {.lex_state = 0, .external_lex_state = 34}, [917] = {.lex_state = 0, .external_lex_state = 34}, - [918] = {.lex_state = 0}, + [918] = {.lex_state = 0, .external_lex_state = 34}, [919] = {.lex_state = 0, .external_lex_state = 34}, [920] = {.lex_state = 0, .external_lex_state = 34}, - [921] = {.lex_state = 0}, + [921] = {.lex_state = 0, .external_lex_state = 34}, [922] = {.lex_state = 0, .external_lex_state = 34}, [923] = {.lex_state = 0, .external_lex_state = 34}, [924] = {.lex_state = 0, .external_lex_state = 34}, [925] = {.lex_state = 0, .external_lex_state = 34}, - [926] = {.lex_state = 0}, + [926] = {.lex_state = 0, .external_lex_state = 39}, [927] = {.lex_state = 0, .external_lex_state = 34}, - [928] = {.lex_state = 0, .external_lex_state = 34}, - [929] = {.lex_state = 0, .external_lex_state = 34}, - [930] = {.lex_state = 0, .external_lex_state = 34}, - [931] = {.lex_state = 0, .external_lex_state = 34}, - [932] = {.lex_state = 0, .external_lex_state = 34}, + [928] = {.lex_state = 0, .external_lex_state = 40}, + [929] = {.lex_state = 0}, + [930] = {.lex_state = 12, .external_lex_state = 34}, + [931] = {.lex_state = 0, .external_lex_state = 39}, + [932] = {.lex_state = 0}, [933] = {.lex_state = 0, .external_lex_state = 34}, [934] = {.lex_state = 0, .external_lex_state = 34}, - [935] = {.lex_state = 0, .external_lex_state = 34}, - [936] = {.lex_state = 0, .external_lex_state = 34}, + [935] = {.lex_state = 0, .external_lex_state = 39}, + [936] = {.lex_state = 0, .external_lex_state = 40}, [937] = {.lex_state = 0, .external_lex_state = 34}, [938] = {.lex_state = 0, .external_lex_state = 34}, [939] = {.lex_state = 0}, @@ -4128,15 +4201,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [941] = {.lex_state = 0, .external_lex_state = 34}, [942] = {.lex_state = 0, .external_lex_state = 34}, [943] = {.lex_state = 0, .external_lex_state = 34}, - [944] = {.lex_state = 12, .external_lex_state = 34}, + [944] = {.lex_state = 0}, [945] = {.lex_state = 0, .external_lex_state = 34}, - [946] = {.lex_state = 12, .external_lex_state = 34}, - [947] = {.lex_state = 0, .external_lex_state = 41}, + [946] = {.lex_state = 0, .external_lex_state = 34}, + [947] = {.lex_state = 0, .external_lex_state = 34}, [948] = {.lex_state = 0, .external_lex_state = 34}, [949] = {.lex_state = 0, .external_lex_state = 34}, - [950] = {.lex_state = 0, .external_lex_state = 34}, + [950] = {.lex_state = 12, .external_lex_state = 34}, [951] = {.lex_state = 0, .external_lex_state = 34}, - [952] = {.lex_state = 0, .external_lex_state = 34}, + [952] = {.lex_state = 0, .external_lex_state = 42}, [953] = {.lex_state = 0, .external_lex_state = 34}, [954] = {.lex_state = 0, .external_lex_state = 34}, [955] = {.lex_state = 0, .external_lex_state = 34}, @@ -4145,116 +4218,147 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [958] = {.lex_state = 0, .external_lex_state = 34}, [959] = {.lex_state = 0, .external_lex_state = 34}, [960] = {.lex_state = 0, .external_lex_state = 34}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0, .external_lex_state = 42}, - [963] = {.lex_state = 0, .external_lex_state = 43}, - [964] = {.lex_state = 0, .external_lex_state = 43}, + [961] = {.lex_state = 0, .external_lex_state = 34}, + [962] = {.lex_state = 0, .external_lex_state = 34}, + [963] = {.lex_state = 0, .external_lex_state = 34}, + [964] = {.lex_state = 0, .external_lex_state = 34}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 0, .external_lex_state = 43}, - [967] = {.lex_state = 0, .external_lex_state = 43}, - [968] = {.lex_state = 0, .external_lex_state = 43}, - [969] = {.lex_state = 0, .external_lex_state = 44}, - [970] = {.lex_state = 0, .external_lex_state = 43}, - [971] = {.lex_state = 0, .external_lex_state = 43}, - [972] = {.lex_state = 0, .external_lex_state = 43}, - [973] = {.lex_state = 0, .external_lex_state = 43}, - [974] = {.lex_state = 0, .external_lex_state = 43}, - [975] = {.lex_state = 0, .external_lex_state = 43}, - [976] = {.lex_state = 0, .external_lex_state = 44}, + [966] = {.lex_state = 0, .external_lex_state = 34}, + [967] = {.lex_state = 0, .external_lex_state = 34}, + [968] = {.lex_state = 0, .external_lex_state = 34}, + [969] = {.lex_state = 0, .external_lex_state = 34}, + [970] = {.lex_state = 0, .external_lex_state = 34}, + [971] = {.lex_state = 0, .external_lex_state = 34}, + [972] = {.lex_state = 0, .external_lex_state = 34}, + [973] = {.lex_state = 0, .external_lex_state = 34}, + [974] = {.lex_state = 0, .external_lex_state = 34}, + [975] = {.lex_state = 0, .external_lex_state = 34}, + [976] = {.lex_state = 0, .external_lex_state = 34}, [977] = {.lex_state = 0, .external_lex_state = 34}, - [978] = {.lex_state = 0, .external_lex_state = 43}, + [978] = {.lex_state = 0, .external_lex_state = 34}, [979] = {.lex_state = 0, .external_lex_state = 34}, - [980] = {.lex_state = 0, .external_lex_state = 43}, - [981] = {.lex_state = 0, .external_lex_state = 34}, - [982] = {.lex_state = 0, .external_lex_state = 43}, - [983] = {.lex_state = 0, .external_lex_state = 44}, - [984] = {.lex_state = 0, .external_lex_state = 43}, - [985] = {.lex_state = 0, .external_lex_state = 34}, - [986] = {.lex_state = 0, .external_lex_state = 44}, - [987] = {.lex_state = 0}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 0, .external_lex_state = 40}, + [982] = {.lex_state = 0, .external_lex_state = 34}, + [983] = {.lex_state = 0, .external_lex_state = 34}, + [984] = {.lex_state = 0, .external_lex_state = 34}, + [985] = {.lex_state = 0}, + [986] = {.lex_state = 0, .external_lex_state = 34}, + [987] = {.lex_state = 0, .external_lex_state = 40}, [988] = {.lex_state = 0, .external_lex_state = 43}, - [989] = {.lex_state = 0, .external_lex_state = 34}, - [990] = {.lex_state = 0, .external_lex_state = 43}, - [991] = {.lex_state = 0, .external_lex_state = 43}, - [992] = {.lex_state = 0, .external_lex_state = 43}, + [989] = {.lex_state = 0}, + [990] = {.lex_state = 0, .external_lex_state = 44}, + [991] = {.lex_state = 0, .external_lex_state = 44}, + [992] = {.lex_state = 0, .external_lex_state = 44}, [993] = {.lex_state = 0}, - [994] = {.lex_state = 0, .external_lex_state = 34}, + [994] = {.lex_state = 0, .external_lex_state = 44}, [995] = {.lex_state = 0, .external_lex_state = 44}, [996] = {.lex_state = 0, .external_lex_state = 44}, - [997] = {.lex_state = 0, .external_lex_state = 43}, - [998] = {.lex_state = 0, .external_lex_state = 43}, - [999] = {.lex_state = 0, .external_lex_state = 43}, - [1000] = {.lex_state = 0, .external_lex_state = 43}, + [997] = {.lex_state = 0, .external_lex_state = 44}, + [998] = {.lex_state = 0, .external_lex_state = 44}, + [999] = {.lex_state = 0, .external_lex_state = 44}, + [1000] = {.lex_state = 0, .external_lex_state = 44}, [1001] = {.lex_state = 0, .external_lex_state = 44}, - [1002] = {.lex_state = 0, .external_lex_state = 43}, - [1003] = {.lex_state = 0, .external_lex_state = 43}, - [1004] = {.lex_state = 0, .external_lex_state = 43}, - [1005] = {.lex_state = 0, .external_lex_state = 43}, - [1006] = {.lex_state = 0, .external_lex_state = 43}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 0, .external_lex_state = 43}, - [1009] = {.lex_state = 0, .external_lex_state = 43}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0, .external_lex_state = 43}, - [1012] = {.lex_state = 0, .external_lex_state = 43}, - [1013] = {.lex_state = 0}, + [1002] = {.lex_state = 0, .external_lex_state = 44}, + [1003] = {.lex_state = 0, .external_lex_state = 44}, + [1004] = {.lex_state = 0, .external_lex_state = 44}, + [1005] = {.lex_state = 0, .external_lex_state = 44}, + [1006] = {.lex_state = 0, .external_lex_state = 44}, + [1007] = {.lex_state = 0, .external_lex_state = 43}, + [1008] = {.lex_state = 0}, + [1009] = {.lex_state = 0, .external_lex_state = 34}, + [1010] = {.lex_state = 0, .external_lex_state = 43}, + [1011] = {.lex_state = 0, .external_lex_state = 44}, + [1012] = {.lex_state = 0, .external_lex_state = 44}, + [1013] = {.lex_state = 0, .external_lex_state = 43}, [1014] = {.lex_state = 0, .external_lex_state = 43}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0, .external_lex_state = 43}, - [1017] = {.lex_state = 0, .external_lex_state = 43}, - [1018] = {.lex_state = 0, .external_lex_state = 43}, - [1019] = {.lex_state = 0, .external_lex_state = 43}, + [1015] = {.lex_state = 0, .external_lex_state = 34}, + [1016] = {.lex_state = 0, .external_lex_state = 44}, + [1017] = {.lex_state = 0, .external_lex_state = 44}, + [1018] = {.lex_state = 0, .external_lex_state = 44}, + [1019] = {.lex_state = 0, .external_lex_state = 44}, [1020] = {.lex_state = 0, .external_lex_state = 43}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 0, .external_lex_state = 43}, - [1023] = {.lex_state = 0, .external_lex_state = 43}, + [1021] = {.lex_state = 0, .external_lex_state = 34}, + [1022] = {.lex_state = 0, .external_lex_state = 44}, + [1023] = {.lex_state = 0, .external_lex_state = 44}, [1024] = {.lex_state = 0, .external_lex_state = 44}, - [1025] = {.lex_state = 0, .external_lex_state = 43}, - [1026] = {.lex_state = 0, .external_lex_state = 43}, - [1027] = {.lex_state = 0, .external_lex_state = 43}, - [1028] = {.lex_state = 0, .external_lex_state = 34}, - [1029] = {.lex_state = 0, .external_lex_state = 43}, - [1030] = {.lex_state = 0, .external_lex_state = 43}, - [1031] = {.lex_state = 0, .external_lex_state = 43}, - [1032] = {.lex_state = 0, .external_lex_state = 43}, - [1033] = {.lex_state = 0, .external_lex_state = 43}, - [1034] = {.lex_state = 0, .external_lex_state = 43}, - [1035] = {.lex_state = 0, .external_lex_state = 43}, - [1036] = {.lex_state = 0, .external_lex_state = 43}, - [1037] = {.lex_state = 0, .external_lex_state = 43}, + [1025] = {.lex_state = 0, .external_lex_state = 34}, + [1026] = {.lex_state = 0, .external_lex_state = 44}, + [1027] = {.lex_state = 0, .external_lex_state = 44}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 0, .external_lex_state = 44}, + [1030] = {.lex_state = 0, .external_lex_state = 34}, + [1031] = {.lex_state = 0, .external_lex_state = 44}, + [1032] = {.lex_state = 0, .external_lex_state = 44}, + [1033] = {.lex_state = 0, .external_lex_state = 44}, + [1034] = {.lex_state = 0, .external_lex_state = 44}, + [1035] = {.lex_state = 0, .external_lex_state = 44}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 0, .external_lex_state = 44}, [1038] = {.lex_state = 0, .external_lex_state = 44}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0, .external_lex_state = 34}, + [1039] = {.lex_state = 0, .external_lex_state = 44}, + [1040] = {.lex_state = 0, .external_lex_state = 44}, [1041] = {.lex_state = 0, .external_lex_state = 44}, - [1042] = {.lex_state = 0, .external_lex_state = 43}, - [1043] = {.lex_state = 0, .external_lex_state = 34}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0, .external_lex_state = 34}, - [1046] = {.lex_state = 0, .external_lex_state = 43}, - [1047] = {.lex_state = 0}, + [1042] = {.lex_state = 0, .external_lex_state = 44}, + [1043] = {.lex_state = 0, .external_lex_state = 44}, + [1044] = {.lex_state = 0, .external_lex_state = 44}, + [1045] = {.lex_state = 0, .external_lex_state = 43}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 0, .external_lex_state = 44}, [1048] = {.lex_state = 0, .external_lex_state = 44}, - [1049] = {.lex_state = 0, .external_lex_state = 44}, - [1050] = {.lex_state = 0, .external_lex_state = 44}, - [1051] = {.lex_state = 0, .external_lex_state = 44}, + [1049] = {.lex_state = 0, .external_lex_state = 34}, + [1050] = {.lex_state = 0}, + [1051] = {.lex_state = 0, .external_lex_state = 34}, [1052] = {.lex_state = 0, .external_lex_state = 44}, - [1053] = {.lex_state = 0, .external_lex_state = 44}, - [1054] = {.lex_state = 0, .external_lex_state = 44}, - [1055] = {.lex_state = 0, .external_lex_state = 44}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0, .external_lex_state = 34}, + [1053] = {.lex_state = 0, .external_lex_state = 34}, + [1054] = {.lex_state = 0, .external_lex_state = 43}, + [1055] = {.lex_state = 12}, + [1056] = {.lex_state = 0, .external_lex_state = 44}, + [1057] = {.lex_state = 0, .external_lex_state = 43}, [1058] = {.lex_state = 0, .external_lex_state = 44}, - [1059] = {.lex_state = 0, .external_lex_state = 44}, - [1060] = {.lex_state = 0, .external_lex_state = 44}, + [1059] = {.lex_state = 0}, + [1060] = {.lex_state = 0, .external_lex_state = 34}, [1061] = {.lex_state = 0, .external_lex_state = 44}, - [1062] = {.lex_state = 0, .external_lex_state = 44}, + [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0, .external_lex_state = 44}, - [1064] = {.lex_state = 0, .external_lex_state = 44}, - [1065] = {.lex_state = 0, .external_lex_state = 44}, - [1066] = {.lex_state = 0, .external_lex_state = 43}, - [1067] = {.lex_state = 0, .external_lex_state = 43}, - [1068] = {.lex_state = 12}, + [1064] = {.lex_state = 0, .external_lex_state = 34}, + [1065] = {.lex_state = 0, .external_lex_state = 43}, + [1066] = {.lex_state = 0, .external_lex_state = 44}, + [1067] = {.lex_state = 0, .external_lex_state = 44}, + [1068] = {.lex_state = 0, .external_lex_state = 44}, [1069] = {.lex_state = 0, .external_lex_state = 44}, [1070] = {.lex_state = 0}, + [1071] = {.lex_state = 0, .external_lex_state = 44}, + [1072] = {.lex_state = 0, .external_lex_state = 44}, + [1073] = {.lex_state = 0, .external_lex_state = 44}, + [1074] = {.lex_state = 0, .external_lex_state = 43}, + [1075] = {.lex_state = 0}, + [1076] = {.lex_state = 0, .external_lex_state = 44}, + [1077] = {.lex_state = 0}, + [1078] = {.lex_state = 0, .external_lex_state = 44}, + [1079] = {.lex_state = 0, .external_lex_state = 43}, + [1080] = {.lex_state = 0, .external_lex_state = 43}, + [1081] = {.lex_state = 0, .external_lex_state = 43}, + [1082] = {.lex_state = 0, .external_lex_state = 43}, + [1083] = {.lex_state = 0, .external_lex_state = 43}, + [1084] = {.lex_state = 0, .external_lex_state = 44}, + [1085] = {.lex_state = 0, .external_lex_state = 43}, + [1086] = {.lex_state = 0, .external_lex_state = 43}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0, .external_lex_state = 44}, + [1089] = {.lex_state = 0, .external_lex_state = 43}, + [1090] = {.lex_state = 0, .external_lex_state = 43}, + [1091] = {.lex_state = 0, .external_lex_state = 43}, + [1092] = {.lex_state = 0, .external_lex_state = 43}, + [1093] = {.lex_state = 0, .external_lex_state = 43}, + [1094] = {.lex_state = 0, .external_lex_state = 43}, + [1095] = {.lex_state = 0, .external_lex_state = 43}, + [1096] = {.lex_state = 0, .external_lex_state = 43}, + [1097] = {.lex_state = 0, .external_lex_state = 44}, + [1098] = {.lex_state = 0, .external_lex_state = 44}, + [1099] = {.lex_state = 0, .external_lex_state = 43}, + [1100] = {.lex_state = 0, .external_lex_state = 44}, + [1101] = {.lex_state = 0, .external_lex_state = 34}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4328,6 +4432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(1), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1), + [sym__list_marker_example] = ACTIONS(1), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1), [sym__fenced_code_block_start_backtick] = ACTIONS(1), [sym__fenced_code_block_start_tilde] = ACTIONS(1), [sym__blank_line_start] = ACTIONS(1), @@ -4354,61 +4460,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_close] = ACTIONS(1), }, [STATE(1)] = { - [sym_document] = STATE(1013), - [sym__block_not_section] = STATE(351), - [sym_section] = STATE(664), - [sym__section1] = STATE(701), - [sym__section2] = STATE(701), - [sym__section3] = STATE(701), - [sym__section4] = STATE(701), - [sym__section5] = STATE(701), - [sym__section6] = STATE(701), - [sym_thematic_break] = STATE(351), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(351), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(351), - [sym_fenced_code_block] = STATE(351), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__blank_line] = STATE(351), - [sym_block_quote] = STATE(351), - [sym_list] = STATE(351), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(351), - [aux_sym_document_repeat1] = STATE(45), - [aux_sym_document_repeat2] = STATE(664), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), + [sym_document] = STATE(1008), + [sym__block_not_section] = STATE(474), + [sym_section] = STATE(691), + [sym__section1] = STATE(735), + [sym__section2] = STATE(735), + [sym__section3] = STATE(735), + [sym__section4] = STATE(735), + [sym__section5] = STATE(735), + [sym__section6] = STATE(735), + [sym_thematic_break] = STATE(474), + [sym__atx_heading1] = STATE(73), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(474), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(474), + [sym_fenced_code_block] = STATE(474), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__blank_line] = STATE(474), + [sym_block_quote] = STATE(474), + [sym_list] = STATE(474), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(474), + [aux_sym_document_repeat1] = STATE(50), + [aux_sym_document_repeat2] = STATE(691), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), [ts_builtin_sym_end] = ACTIONS(3), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -4463,13 +4573,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(47), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(49), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -4477,57 +4589,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(11), [sym__block_not_section] = STATE(11), [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(11), [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), [sym__blank_line] = STATE(11), [sym_block_quote] = STATE(11), [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4562,16 +4678,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(55), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(57), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4582,73 +4698,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(87), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(83), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(89), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(3)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1009), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1084), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4683,16 +4805,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(91), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(93), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4703,72 +4825,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(4)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1066), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1061), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4803,16 +4931,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(125), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(127), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4823,72 +4951,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(5)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1042), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1076), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4923,16 +5057,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(127), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(129), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -4943,72 +5077,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(6)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(999), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1056), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5043,16 +5183,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(129), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(131), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5063,13 +5203,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -5077,57 +5219,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(9), [sym__block_not_section] = STATE(9), [sym_section] = STATE(9), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(9), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(9), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(9), [sym_fenced_code_block] = STATE(9), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(9), [sym_note_definition_fenced_block] = STATE(9), [sym__blank_line] = STATE(9), [sym_block_quote] = STATE(9), [sym_list] = STATE(9), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(9), [aux_sym_fenced_div_block_repeat1] = STATE(9), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5162,16 +5308,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(131), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(133), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5182,14 +5328,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(133), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(135), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(135), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(137), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -5197,57 +5345,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(10), [sym__block_not_section] = STATE(10), [sym_section] = STATE(10), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(10), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(10), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(10), [sym_fenced_code_block] = STATE(10), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(10), [sym_note_definition_fenced_block] = STATE(10), [sym__blank_line] = STATE(10), [sym_block_quote] = STATE(10), [sym_list] = STATE(10), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(10), [aux_sym_fenced_div_block_repeat1] = STATE(10), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5282,16 +5434,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(137), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(139), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5302,14 +5454,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(139), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(141), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(141), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(143), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -5317,57 +5471,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(11), [sym__block_not_section] = STATE(11), [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(11), [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), [sym__blank_line] = STATE(11), [sym_block_quote] = STATE(11), [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5402,16 +5560,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(143), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(145), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5422,14 +5580,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(145), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(83), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(147), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -5437,57 +5597,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(11), [sym__block_not_section] = STATE(11), [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(11), [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), [sym__blank_line] = STATE(11), [sym_block_quote] = STATE(11), [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5522,16 +5686,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(147), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(149), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5542,14 +5706,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(149), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(83), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(151), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -5557,177 +5723,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(11), [sym__block_not_section] = STATE(11), [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(11), [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), [sym__blank_line] = STATE(11), [sym_block_quote] = STATE(11), [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_SQUOTE] = ACTIONS(154), - [anon_sym_BANG] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(154), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_AMP] = ACTIONS(154), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_QMARK] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_BSLASH] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_CARET] = ACTIONS(154), - [anon_sym__] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_PIPE] = ACTIONS(154), - [anon_sym_TILDE] = ACTIONS(154), - [sym__word] = ACTIONS(157), - [sym__soft_line_ending] = ACTIONS(160), - [sym__block_close] = ACTIONS(163), - [sym__block_quote_start] = ACTIONS(165), - [sym__indented_chunk_start] = ACTIONS(168), - [sym_atx_h1_marker] = ACTIONS(171), - [sym_atx_h2_marker] = ACTIONS(174), - [sym_atx_h3_marker] = ACTIONS(177), - [sym_atx_h4_marker] = ACTIONS(180), - [sym_atx_h5_marker] = ACTIONS(183), - [sym_atx_h6_marker] = ACTIONS(186), - [sym__thematic_break] = ACTIONS(189), - [sym__list_marker_minus] = ACTIONS(192), - [sym__list_marker_plus] = ACTIONS(195), - [sym__list_marker_star] = ACTIONS(198), - [sym__list_marker_parenthesis] = ACTIONS(201), - [sym__list_marker_dot] = ACTIONS(204), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(192), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(195), - [sym__list_marker_star_dont_interrupt] = ACTIONS(198), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(201), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(204), - [sym__fenced_code_block_start_backtick] = ACTIONS(207), - [sym__fenced_code_block_start_tilde] = ACTIONS(210), - [sym__blank_line_start] = ACTIONS(213), - [sym_minus_metadata] = ACTIONS(216), - [sym__pipe_table_start] = ACTIONS(219), - [sym__fenced_div_start] = ACTIONS(222), - [sym__fenced_div_end] = ACTIONS(163), - [sym_ref_id_specifier] = ACTIONS(225), - [sym__display_math_state_track_marker] = ACTIONS(157), - [sym__inline_math_state_track_marker] = ACTIONS(157), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(153), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(156), + [anon_sym_EQ] = ACTIONS(156), + [anon_sym_SQUOTE] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_DQUOTE] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_PERCENT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(156), + [anon_sym_LPAREN] = ACTIONS(156), + [anon_sym_RPAREN] = ACTIONS(156), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_COMMA] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_DOT] = ACTIONS(156), + [anon_sym_SLASH] = ACTIONS(156), + [anon_sym_SEMI] = ACTIONS(156), + [anon_sym_LT] = ACTIONS(156), + [anon_sym_GT] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_BSLASH] = ACTIONS(156), + [anon_sym_RBRACK] = ACTIONS(156), + [anon_sym_CARET] = ACTIONS(156), + [anon_sym__] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [sym__word] = ACTIONS(159), + [sym__soft_line_ending] = ACTIONS(162), + [sym__block_close] = ACTIONS(165), + [sym__block_quote_start] = ACTIONS(167), + [sym__indented_chunk_start] = ACTIONS(170), + [sym_atx_h1_marker] = ACTIONS(173), + [sym_atx_h2_marker] = ACTIONS(176), + [sym_atx_h3_marker] = ACTIONS(179), + [sym_atx_h4_marker] = ACTIONS(182), + [sym_atx_h5_marker] = ACTIONS(185), + [sym_atx_h6_marker] = ACTIONS(188), + [sym__thematic_break] = ACTIONS(191), + [sym__list_marker_minus] = ACTIONS(194), + [sym__list_marker_plus] = ACTIONS(197), + [sym__list_marker_star] = ACTIONS(200), + [sym__list_marker_parenthesis] = ACTIONS(203), + [sym__list_marker_dot] = ACTIONS(206), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(194), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(197), + [sym__list_marker_star_dont_interrupt] = ACTIONS(200), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(203), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(206), + [sym__list_marker_example] = ACTIONS(209), + [sym__list_marker_example_dont_interrupt] = ACTIONS(209), + [sym__fenced_code_block_start_backtick] = ACTIONS(212), + [sym__fenced_code_block_start_tilde] = ACTIONS(215), + [sym__blank_line_start] = ACTIONS(218), + [sym_minus_metadata] = ACTIONS(221), + [sym__pipe_table_start] = ACTIONS(224), + [sym__fenced_div_start] = ACTIONS(227), + [sym__fenced_div_end] = ACTIONS(165), + [sym_ref_id_specifier] = ACTIONS(230), + [sym__display_math_state_track_marker] = ACTIONS(159), + [sym__inline_math_state_track_marker] = ACTIONS(159), }, [STATE(12)] = { - [sym__block] = STATE(43), - [sym__block_not_section] = STATE(43), - [sym_section] = STATE(43), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(43), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(43), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(43), - [sym_fenced_code_block] = STATE(43), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(43), - [sym_note_definition_fenced_block] = STATE(43), - [sym__blank_line] = STATE(43), - [sym_block_quote] = STATE(43), - [sym_list] = STATE(43), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(43), - [aux_sym_fenced_div_block_repeat1] = STATE(43), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(48), + [sym__block_not_section] = STATE(48), + [sym_section] = STATE(48), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(48), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(48), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(48), + [sym_fenced_code_block] = STATE(48), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(48), + [sym_note_definition_fenced_block] = STATE(48), + [sym__blank_line] = STATE(48), + [sym_block_quote] = STATE(48), + [sym_list] = STATE(48), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(48), + [aux_sym_fenced_div_block_repeat1] = STATE(48), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5762,17 +5938,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(228), - [sym_block_continuation] = ACTIONS(230), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(233), + [sym_block_continuation] = ACTIONS(235), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5783,71 +5959,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(232), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(237), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(13)] = { - [sym__block] = STATE(15), - [sym__block_not_section] = STATE(15), - [sym_section] = STATE(15), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(15), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(15), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(15), - [sym_fenced_code_block] = STATE(15), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(15), - [sym_note_definition_fenced_block] = STATE(15), - [sym__blank_line] = STATE(15), - [sym_block_quote] = STATE(15), - [sym_list] = STATE(15), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(15), - [aux_sym_fenced_div_block_repeat1] = STATE(15), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(2), + [sym__block_not_section] = STATE(2), + [sym_section] = STATE(2), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(2), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(2), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(2), + [sym_fenced_code_block] = STATE(2), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(2), + [sym_note_definition_fenced_block] = STATE(2), + [sym__blank_line] = STATE(2), + [sym_block_quote] = STATE(2), + [sym_list] = STATE(2), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(2), + [aux_sym_fenced_div_block_repeat1] = STATE(2), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5882,16 +6064,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(234), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(239), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -5902,72 +6084,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(236), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(238), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(241), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(243), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(14)] = { - [sym__block] = STATE(2), - [sym__block_not_section] = STATE(2), - [sym_section] = STATE(2), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(2), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(2), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(2), - [sym_fenced_code_block] = STATE(2), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(2), - [sym_note_definition_fenced_block] = STATE(2), - [sym__blank_line] = STATE(2), - [sym_block_quote] = STATE(2), - [sym_list] = STATE(2), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(2), - [aux_sym_fenced_div_block_repeat1] = STATE(2), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(16), + [sym__block_not_section] = STATE(16), + [sym_section] = STATE(16), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(16), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(16), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(16), + [sym_fenced_code_block] = STATE(16), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(16), + [sym_note_definition_fenced_block] = STATE(16), + [sym__blank_line] = STATE(16), + [sym_block_quote] = STATE(16), + [sym_list] = STATE(16), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(16), + [aux_sym_fenced_div_block_repeat1] = STATE(16), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6002,16 +6190,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(240), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(245), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6022,72 +6210,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(242), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(244), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(247), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(249), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(15)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(54), + [sym__block_not_section] = STATE(54), + [sym_section] = STATE(54), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(54), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(54), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(54), + [sym_fenced_code_block] = STATE(54), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(54), + [sym_note_definition_fenced_block] = STATE(54), + [sym__blank_line] = STATE(54), + [sym_block_quote] = STATE(54), + [sym_list] = STATE(54), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(54), + [aux_sym_fenced_div_block_repeat1] = STATE(54), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6122,16 +6316,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(246), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(251), + [sym_block_continuation] = ACTIONS(253), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6142,72 +6337,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(248), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(255), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(16)] = { - [sym__block] = STATE(50), - [sym__block_not_section] = STATE(50), - [sym_section] = STATE(50), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(50), + [sym__block] = STATE(11), + [sym__block_not_section] = STATE(11), + [sym_section] = STATE(11), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(11), [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(50), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(50), - [sym_fenced_code_block] = STATE(50), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(50), - [sym_note_definition_fenced_block] = STATE(50), - [sym__blank_line] = STATE(50), - [sym_block_quote] = STATE(50), - [sym_list] = STATE(50), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(50), - [aux_sym_fenced_div_block_repeat1] = STATE(50), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(11), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(11), + [sym_fenced_code_block] = STATE(11), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(11), + [sym_note_definition_fenced_block] = STATE(11), + [sym__blank_line] = STATE(11), + [sym_block_quote] = STATE(11), + [sym_list] = STATE(11), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(11), + [aux_sym_fenced_div_block_repeat1] = STATE(11), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6242,17 +6442,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(250), - [sym_block_continuation] = ACTIONS(252), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(257), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6263,71 +6462,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(254), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(83), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(259), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(17)] = { - [sym__block] = STATE(47), - [sym__block_not_section] = STATE(47), - [sym_section] = STATE(47), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(47), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(47), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(47), - [sym_fenced_code_block] = STATE(47), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(47), - [sym_note_definition_fenced_block] = STATE(47), - [sym__blank_line] = STATE(47), - [sym_block_quote] = STATE(47), - [sym_list] = STATE(47), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(47), - [aux_sym_fenced_div_block_repeat1] = STATE(47), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(52), + [sym__block_not_section] = STATE(52), + [sym_section] = STATE(52), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(52), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(52), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(52), + [sym_fenced_code_block] = STATE(52), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(52), + [sym_note_definition_fenced_block] = STATE(52), + [sym__blank_line] = STATE(52), + [sym_block_quote] = STATE(52), + [sym_list] = STATE(52), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(52), + [aux_sym_fenced_div_block_repeat1] = STATE(52), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6362,17 +6568,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(256), - [sym_block_continuation] = ACTIONS(258), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(261), + [sym_block_continuation] = ACTIONS(263), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6383,71 +6589,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(260), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(265), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(18)] = { - [sym__block] = STATE(20), - [sym__block_not_section] = STATE(20), - [sym_section] = STATE(20), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(20), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(20), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(20), - [sym_fenced_code_block] = STATE(20), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(20), - [sym_note_definition_fenced_block] = STATE(20), - [sym__blank_line] = STATE(20), - [sym_block_quote] = STATE(20), - [sym_list] = STATE(20), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(20), - [aux_sym_fenced_div_block_repeat1] = STATE(20), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(996), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6482,16 +6695,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(262), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym_block_continuation] = ACTIONS(267), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6502,14 +6715,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(264), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(266), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -6517,57 +6731,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(21), [sym__block_not_section] = STATE(21), [sym_section] = STATE(21), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(21), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(21), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(21), [sym_fenced_code_block] = STATE(21), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(21), [sym_note_definition_fenced_block] = STATE(21), [sym__blank_line] = STATE(21), [sym_block_quote] = STATE(21), [sym_list] = STATE(21), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(21), [aux_sym_fenced_div_block_repeat1] = STATE(21), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6602,16 +6820,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(268), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(269), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6622,72 +6840,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(270), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(272), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(271), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(273), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(20)] = { - [sym__block] = STATE(11), - [sym__block_not_section] = STATE(11), - [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), - [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(11), - [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(11), - [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), - [sym_block_quote] = STATE(11), - [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(11), - [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(22), + [sym__block_not_section] = STATE(22), + [sym_section] = STATE(22), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(22), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(22), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(22), + [sym_fenced_code_block] = STATE(22), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(22), + [sym_note_definition_fenced_block] = STATE(22), + [sym__blank_line] = STATE(22), + [sym_block_quote] = STATE(22), + [sym_list] = STATE(22), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(22), + [aux_sym_fenced_div_block_repeat1] = STATE(22), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6722,16 +6946,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(274), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(275), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6742,14 +6966,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(276), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(277), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(279), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, @@ -6757,57 +6983,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(11), [sym__block_not_section] = STATE(11), [sym_section] = STATE(11), - [sym__section1] = STATE(255), - [sym__section2] = STATE(255), - [sym__section3] = STATE(255), - [sym__section4] = STATE(255), - [sym__section5] = STATE(255), - [sym__section6] = STATE(255), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(63), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading1] = STATE(69), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), [sym_indented_code_block] = STATE(11), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(11), [sym_fenced_code_block] = STATE(11), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(142), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), [sym__blank_line] = STATE(11), [sym_block_quote] = STATE(11), [sym_list] = STATE(11), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(11), [aux_sym_fenced_div_block_repeat1] = STATE(11), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6842,16 +7072,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(278), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(61), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(281), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6862,73 +7092,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(81), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(280), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(83), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(283), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(22)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), + [sym__block] = STATE(11), + [sym__block_not_section] = STATE(11), + [sym_section] = STATE(11), + [sym__section1] = STATE(232), + [sym__section2] = STATE(232), + [sym__section3] = STATE(232), + [sym__section4] = STATE(232), + [sym__section5] = STATE(232), + [sym__section6] = STATE(232), + [sym_thematic_break] = STATE(11), [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1018), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(11), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(11), + [sym_fenced_code_block] = STATE(11), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(11), + [sym_note_definition_fenced_block] = STATE(11), + [sym__blank_line] = STATE(11), + [sym_block_quote] = STATE(11), + [sym_list] = STATE(11), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(11), + [aux_sym_fenced_div_block_repeat1] = STATE(11), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6963,16 +7198,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(282), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(285), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(63), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -6983,72 +7218,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(83), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(287), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(23)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(988), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1078), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7083,16 +7325,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(284), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(289), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7103,72 +7345,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(24)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(973), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1088), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7203,16 +7451,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(286), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(291), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7223,72 +7471,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(25)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(978), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1048), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7323,16 +7577,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(288), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(293), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7343,72 +7597,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(26)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(980), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1047), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7443,16 +7703,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(290), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(295), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7463,72 +7723,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(27)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(964), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1052), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7563,16 +7829,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(292), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(297), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7583,72 +7849,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(28)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1003), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1098), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7683,16 +7955,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(294), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(299), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7703,72 +7975,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(29)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1004), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1031), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7803,16 +8081,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(296), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(301), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7823,72 +8101,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(30)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1005), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1032), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7923,16 +8207,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(298), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(303), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -7943,72 +8227,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(31)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1006), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1033), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8043,16 +8333,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(300), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(305), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8063,72 +8353,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(32)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1008), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1034), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8163,16 +8459,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym_block_continuation] = ACTIONS(302), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(307), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8183,72 +8479,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(33)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1046), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1035), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8283,15 +8585,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(309), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8302,71 +8605,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(34)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1037), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8401,16 +8711,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(304), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(311), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8421,72 +8731,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(35)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1014), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1072), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8521,15 +8837,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym_block_continuation] = ACTIONS(313), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8540,72 +8857,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(36)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1017), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8640,15 +8962,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(315), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8659,72 +8982,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(37)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(998), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8759,15 +9087,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(319), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8778,72 +9107,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(38)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1023), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1016), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8878,15 +9213,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -8897,71 +9232,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(39)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1019), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8996,16 +9338,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(308), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9016,191 +9357,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(40)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(151), - [anon_sym_LBRACE] = ACTIONS(154), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_EQ] = ACTIONS(154), - [anon_sym_SQUOTE] = ACTIONS(154), - [anon_sym_BANG] = ACTIONS(154), - [anon_sym_DQUOTE] = ACTIONS(154), - [anon_sym_POUND] = ACTIONS(154), - [anon_sym_DOLLAR] = ACTIONS(154), - [anon_sym_PERCENT] = ACTIONS(154), - [anon_sym_AMP] = ACTIONS(154), - [anon_sym_LPAREN] = ACTIONS(154), - [anon_sym_RPAREN] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_PLUS] = ACTIONS(154), - [anon_sym_COMMA] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(154), - [anon_sym_DOT] = ACTIONS(154), - [anon_sym_SLASH] = ACTIONS(154), - [anon_sym_SEMI] = ACTIONS(154), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_QMARK] = ACTIONS(154), - [anon_sym_AT] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(154), - [anon_sym_BSLASH] = ACTIONS(154), - [anon_sym_RBRACK] = ACTIONS(154), - [anon_sym_CARET] = ACTIONS(154), - [anon_sym__] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(154), - [anon_sym_PIPE] = ACTIONS(154), - [anon_sym_TILDE] = ACTIONS(154), - [sym__word] = ACTIONS(157), - [sym__soft_line_ending] = ACTIONS(160), - [sym__block_close] = ACTIONS(163), - [sym__block_quote_start] = ACTIONS(310), - [sym__indented_chunk_start] = ACTIONS(313), - [sym_atx_h1_marker] = ACTIONS(316), - [sym_atx_h2_marker] = ACTIONS(319), - [sym_atx_h3_marker] = ACTIONS(322), - [sym_atx_h4_marker] = ACTIONS(325), - [sym_atx_h5_marker] = ACTIONS(328), - [sym_atx_h6_marker] = ACTIONS(331), - [sym__thematic_break] = ACTIONS(334), - [sym__list_marker_minus] = ACTIONS(192), - [sym__list_marker_plus] = ACTIONS(195), - [sym__list_marker_star] = ACTIONS(198), - [sym__list_marker_parenthesis] = ACTIONS(201), - [sym__list_marker_dot] = ACTIONS(204), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(192), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(195), - [sym__list_marker_star_dont_interrupt] = ACTIONS(198), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(201), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(204), - [sym__fenced_code_block_start_backtick] = ACTIONS(337), - [sym__fenced_code_block_start_tilde] = ACTIONS(340), - [sym__blank_line_start] = ACTIONS(343), - [sym_minus_metadata] = ACTIONS(346), - [sym__pipe_table_start] = ACTIONS(349), - [sym__fenced_div_start] = ACTIONS(352), - [sym_ref_id_specifier] = ACTIONS(355), - [sym__display_math_state_track_marker] = ACTIONS(157), - [sym__inline_math_state_track_marker] = ACTIONS(157), - }, - [STATE(41)] = { - [sym__block_not_section] = STATE(351), - [sym_section] = STATE(666), - [sym__section1] = STATE(701), - [sym__section2] = STATE(701), - [sym__section3] = STATE(701), - [sym__section4] = STATE(701), - [sym__section5] = STATE(701), - [sym__section6] = STATE(701), - [sym_thematic_break] = STATE(351), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(351), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(351), - [sym_fenced_code_block] = STATE(351), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__blank_line] = STATE(351), - [sym_block_quote] = STATE(351), - [sym_list] = STATE(351), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(351), - [aux_sym_document_repeat1] = STATE(51), - [aux_sym_document_repeat2] = STATE(666), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(358), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1022), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9235,15 +9463,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(17), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9254,71 +9482,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(42)] = { - [sym__block] = STATE(44), - [sym__block_not_section] = STATE(44), - [sym_section] = STATE(44), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(44), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(44), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(44), - [sym_fenced_code_block] = STATE(44), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(44), - [sym_note_definition_fenced_block] = STATE(44), - [sym__blank_line] = STATE(44), - [sym_block_quote] = STATE(44), - [sym_list] = STATE(44), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(44), - [aux_sym_fenced_div_block_repeat1] = STATE(44), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(41)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1026), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9353,16 +9588,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(362), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9373,71 +9607,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(364), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(43)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(42)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1042), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9472,16 +9713,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(362), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9492,71 +9732,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(44)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(43)] = { + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9591,16 +9837,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(366), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(321), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9611,72 +9857,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, + [STATE(44)] = { + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(153), + [anon_sym_LBRACE] = ACTIONS(156), + [anon_sym_RBRACE] = ACTIONS(156), + [anon_sym_EQ] = ACTIONS(156), + [anon_sym_SQUOTE] = ACTIONS(156), + [anon_sym_BANG] = ACTIONS(156), + [anon_sym_DQUOTE] = ACTIONS(156), + [anon_sym_POUND] = ACTIONS(156), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_PERCENT] = ACTIONS(156), + [anon_sym_AMP] = ACTIONS(156), + [anon_sym_LPAREN] = ACTIONS(156), + [anon_sym_RPAREN] = ACTIONS(156), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_PLUS] = ACTIONS(156), + [anon_sym_COMMA] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [anon_sym_DOT] = ACTIONS(156), + [anon_sym_SLASH] = ACTIONS(156), + [anon_sym_SEMI] = ACTIONS(156), + [anon_sym_LT] = ACTIONS(156), + [anon_sym_GT] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(156), + [anon_sym_BSLASH] = ACTIONS(156), + [anon_sym_RBRACK] = ACTIONS(156), + [anon_sym_CARET] = ACTIONS(156), + [anon_sym__] = ACTIONS(156), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_PIPE] = ACTIONS(156), + [anon_sym_TILDE] = ACTIONS(156), + [sym__word] = ACTIONS(159), + [sym__soft_line_ending] = ACTIONS(162), + [sym__block_close] = ACTIONS(165), + [sym__block_quote_start] = ACTIONS(323), + [sym__indented_chunk_start] = ACTIONS(326), + [sym_atx_h1_marker] = ACTIONS(329), + [sym_atx_h2_marker] = ACTIONS(332), + [sym_atx_h3_marker] = ACTIONS(335), + [sym_atx_h4_marker] = ACTIONS(338), + [sym_atx_h5_marker] = ACTIONS(341), + [sym_atx_h6_marker] = ACTIONS(344), + [sym__thematic_break] = ACTIONS(347), + [sym__list_marker_minus] = ACTIONS(194), + [sym__list_marker_plus] = ACTIONS(197), + [sym__list_marker_star] = ACTIONS(200), + [sym__list_marker_parenthesis] = ACTIONS(203), + [sym__list_marker_dot] = ACTIONS(206), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(194), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(197), + [sym__list_marker_star_dont_interrupt] = ACTIONS(200), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(203), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(206), + [sym__list_marker_example] = ACTIONS(209), + [sym__list_marker_example_dont_interrupt] = ACTIONS(209), + [sym__fenced_code_block_start_backtick] = ACTIONS(350), + [sym__fenced_code_block_start_tilde] = ACTIONS(353), + [sym__blank_line_start] = ACTIONS(356), + [sym_minus_metadata] = ACTIONS(359), + [sym__pipe_table_start] = ACTIONS(362), + [sym__fenced_div_start] = ACTIONS(365), + [sym_ref_id_specifier] = ACTIONS(368), + [sym__display_math_state_track_marker] = ACTIONS(159), + [sym__inline_math_state_track_marker] = ACTIONS(159), + }, [STATE(45)] = { - [sym__block_not_section] = STATE(351), - [sym_section] = STATE(663), - [sym__section1] = STATE(701), - [sym__section2] = STATE(701), - [sym__section3] = STATE(701), - [sym__section4] = STATE(701), - [sym__section5] = STATE(701), - [sym__section6] = STATE(701), - [sym_thematic_break] = STATE(351), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(351), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(351), - [sym_fenced_code_block] = STATE(351), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__blank_line] = STATE(351), - [sym_block_quote] = STATE(351), - [sym_list] = STATE(351), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(351), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_document_repeat2] = STATE(663), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(368), + [sym__block_not_section] = STATE(474), + [sym_section] = STATE(688), + [sym__section1] = STATE(735), + [sym__section2] = STATE(735), + [sym__section3] = STATE(735), + [sym__section4] = STATE(735), + [sym__section5] = STATE(735), + [sym__section6] = STATE(735), + [sym_thematic_break] = STATE(474), + [sym__atx_heading1] = STATE(73), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(474), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(474), + [sym_fenced_code_block] = STATE(474), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__blank_line] = STATE(474), + [sym_block_quote] = STATE(474), + [sym_list] = STATE(474), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(474), + [aux_sym_document_repeat1] = STATE(55), + [aux_sym_document_repeat2] = STATE(688), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(371), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9730,71 +10107,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(373), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(46)] = { - [sym__block] = STATE(48), - [sym__block_not_section] = STATE(48), - [sym_section] = STATE(48), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(48), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(48), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(48), - [sym_fenced_code_block] = STATE(48), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(48), - [sym_note_definition_fenced_block] = STATE(48), - [sym__blank_line] = STATE(48), - [sym_block_quote] = STATE(48), - [sym_list] = STATE(48), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(48), - [aux_sym_fenced_div_block_repeat1] = STATE(48), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1012), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9829,16 +10213,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(370), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9849,71 +10232,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(372), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(47)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(49), + [sym__block_not_section] = STATE(49), + [sym_section] = STATE(49), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(49), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(49), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(49), + [sym_fenced_code_block] = STATE(49), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(49), + [sym_note_definition_fenced_block] = STATE(49), + [sym__blank_line] = STATE(49), + [sym_block_quote] = STATE(49), + [sym_list] = STATE(49), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(49), + [aux_sym_fenced_div_block_repeat1] = STATE(49), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9948,16 +10337,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(370), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(375), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -9968,77 +10357,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(377), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(48)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(7), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(7), [anon_sym_DOLLAR] = ACTIONS(7), @@ -10067,16 +10462,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(374), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(375), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10087,71 +10482,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(49)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(39), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(39), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(39), - [sym_fenced_code_block] = STATE(39), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(39), - [sym_note_definition_fenced_block] = STATE(39), - [sym__blank_line] = STATE(39), - [sym_block_quote] = STATE(39), - [sym_list] = STATE(39), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(39), - [aux_sym_fenced_div_block_repeat1] = STATE(39), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10186,16 +10587,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(376), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(379), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10206,71 +10607,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(378), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(50)] = { - [sym__block] = STATE(40), - [sym__block_not_section] = STATE(40), - [sym_section] = STATE(40), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(40), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(40), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(40), - [sym_fenced_code_block] = STATE(40), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(40), - [sym_note_definition_fenced_block] = STATE(40), - [sym__blank_line] = STATE(40), - [sym_block_quote] = STATE(40), - [sym_list] = STATE(40), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(40), - [aux_sym_fenced_div_block_repeat1] = STATE(40), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block_not_section] = STATE(474), + [sym_section] = STATE(689), + [sym__section1] = STATE(735), + [sym__section2] = STATE(735), + [sym__section3] = STATE(735), + [sym__section4] = STATE(735), + [sym__section5] = STATE(735), + [sym__section6] = STATE(735), + [sym_thematic_break] = STATE(474), + [sym__atx_heading1] = STATE(73), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(474), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(474), + [sym_fenced_code_block] = STATE(474), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__blank_line] = STATE(474), + [sym_block_quote] = STATE(474), + [sym_list] = STATE(474), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(474), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_document_repeat2] = STATE(689), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(381), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10305,16 +10713,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(376), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10325,72 +10732,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(306), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(373), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(51)] = { - [sym__block_not_section] = STATE(351), - [sym_section] = STATE(665), - [sym__section1] = STATE(701), - [sym__section2] = STATE(701), - [sym__section3] = STATE(701), - [sym__section4] = STATE(701), - [sym__section5] = STATE(701), - [sym__section6] = STATE(701), - [sym_thematic_break] = STATE(351), - [sym__atx_heading1] = STATE(66), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(351), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(351), - [sym_fenced_code_block] = STATE(351), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__blank_line] = STATE(351), - [sym_block_quote] = STATE(351), - [sym_list] = STATE(351), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(351), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_document_repeat2] = STATE(665), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(380), + [sym__block] = STATE(36), + [sym__block_not_section] = STATE(36), + [sym_section] = STATE(36), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(36), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(36), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(36), + [sym_fenced_code_block] = STATE(36), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(36), + [sym_note_definition_fenced_block] = STATE(36), + [sym__blank_line] = STATE(36), + [sym_block_quote] = STATE(36), + [sym_list] = STATE(36), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(36), + [aux_sym_fenced_div_block_repeat1] = STATE(36), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10425,15 +10837,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(17), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(383), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10444,72 +10857,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(385), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(52)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(991), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10544,15 +10962,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(383), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10563,72 +10982,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(53)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(992), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(43), + [sym__block_not_section] = STATE(43), + [sym_section] = STATE(43), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(43), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(43), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(43), + [sym_fenced_code_block] = STATE(43), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(43), + [sym_note_definition_fenced_block] = STATE(43), + [sym__blank_line] = STATE(43), + [sym_block_quote] = STATE(43), + [sym_list] = STATE(43), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(43), + [aux_sym_fenced_div_block_repeat1] = STATE(43), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10663,15 +11087,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(387), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10682,72 +11107,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(389), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(54)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1012), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(44), + [sym__block_not_section] = STATE(44), + [sym_section] = STATE(44), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(44), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(44), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(44), + [sym_fenced_code_block] = STATE(44), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(44), + [sym_note_definition_fenced_block] = STATE(44), + [sym__blank_line] = STATE(44), + [sym_block_quote] = STATE(44), + [sym_list] = STATE(44), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(44), + [aux_sym_fenced_div_block_repeat1] = STATE(44), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10782,15 +11212,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(387), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10801,72 +11232,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(317), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(55)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1031), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block_not_section] = STATE(474), + [sym_section] = STATE(692), + [sym__section1] = STATE(735), + [sym__section2] = STATE(735), + [sym__section3] = STATE(735), + [sym__section4] = STATE(735), + [sym__section5] = STATE(735), + [sym__section6] = STATE(735), + [sym_thematic_break] = STATE(474), + [sym__atx_heading1] = STATE(73), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(474), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(474), + [sym_fenced_code_block] = STATE(474), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__blank_line] = STATE(474), + [sym_block_quote] = STATE(474), + [sym_list] = STATE(474), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(474), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_document_repeat2] = STATE(692), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(391), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10901,15 +11338,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(17), + [sym_atx_h2_marker] = ACTIONS(19), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -10920,72 +11357,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(373), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(56)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1032), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(991), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11020,15 +11463,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11039,72 +11482,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(57)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1033), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(992), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11139,15 +11588,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11158,72 +11607,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(58)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1034), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1003), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11258,15 +11713,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11277,72 +11732,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(59)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1035), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1004), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11377,15 +11838,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11396,72 +11857,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(60)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1036), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1018), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11496,15 +11963,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11515,72 +11982,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(61)] = { - [sym__block] = STATE(34), - [sym__block_not_section] = STATE(34), - [sym_section] = STATE(34), - [sym__section1] = STATE(330), - [sym__section2] = STATE(330), - [sym__section3] = STATE(330), - [sym__section4] = STATE(330), - [sym__section5] = STATE(330), - [sym__section6] = STATE(330), - [sym_thematic_break] = STATE(34), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(34), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(34), - [sym_fenced_code_block] = STATE(34), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(34), - [sym_note_definition_fenced_block] = STATE(34), - [sym__blank_line] = STATE(290), - [sym_block_quote] = STATE(34), - [sym_list] = STATE(34), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__list_item_content] = STATE(1020), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(34), - [aux_sym_fenced_div_block_repeat1] = STATE(34), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1039), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11615,15 +12088,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(97), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11634,183 +12107,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(117), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(62)] = { - [sym__block_not_section] = STATE(62), - [sym__section2] = STATE(199), - [sym__section3] = STATE(199), - [sym__section4] = STATE(199), - [sym__section5] = STATE(199), - [sym__section6] = STATE(199), - [sym_thematic_break] = STATE(62), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(62), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(62), - [sym_fenced_code_block] = STATE(62), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(62), - [sym_note_definition_fenced_block] = STATE(62), - [sym__blank_line] = STATE(62), - [sym_block_quote] = STATE(62), - [sym_list] = STATE(62), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(62), - [aux_sym__section1_repeat1] = STATE(62), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_BSLASH] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym__] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(385), - [sym__word] = ACTIONS(388), - [sym__soft_line_ending] = ACTIONS(391), - [sym__block_close] = ACTIONS(394), - [sym__block_quote_start] = ACTIONS(396), - [sym__indented_chunk_start] = ACTIONS(399), - [sym_atx_h1_marker] = ACTIONS(394), - [sym_atx_h2_marker] = ACTIONS(402), - [sym_atx_h3_marker] = ACTIONS(405), - [sym_atx_h4_marker] = ACTIONS(408), - [sym_atx_h5_marker] = ACTIONS(411), - [sym_atx_h6_marker] = ACTIONS(414), - [sym__thematic_break] = ACTIONS(417), - [sym__list_marker_minus] = ACTIONS(420), - [sym__list_marker_plus] = ACTIONS(423), - [sym__list_marker_star] = ACTIONS(426), - [sym__list_marker_parenthesis] = ACTIONS(429), - [sym__list_marker_dot] = ACTIONS(432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(426), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(432), - [sym__fenced_code_block_start_backtick] = ACTIONS(435), - [sym__fenced_code_block_start_tilde] = ACTIONS(438), - [sym__blank_line_start] = ACTIONS(441), - [sym_minus_metadata] = ACTIONS(444), - [sym__pipe_table_start] = ACTIONS(447), - [sym__fenced_div_start] = ACTIONS(450), - [sym__fenced_div_end] = ACTIONS(394), - [sym_ref_id_specifier] = ACTIONS(453), - [sym__display_math_state_track_marker] = ACTIONS(388), - [sym__inline_math_state_track_marker] = ACTIONS(388), - }, - [STATE(63)] = { - [sym__block_not_section] = STATE(64), - [sym__section2] = STATE(199), - [sym__section3] = STATE(199), - [sym__section4] = STATE(199), - [sym__section5] = STATE(199), - [sym__section6] = STATE(199), - [sym_thematic_break] = STATE(64), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(64), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(64), - [sym_fenced_code_block] = STATE(64), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__blank_line] = STATE(64), - [sym_block_quote] = STATE(64), - [sym_list] = STATE(64), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(64), - [aux_sym__section1_repeat1] = STATE(64), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1066), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11845,16 +12213,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(456), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(456), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11865,68 +12232,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(458), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(456), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(64)] = { - [sym__block_not_section] = STATE(62), - [sym__section2] = STATE(199), - [sym__section3] = STATE(199), - [sym__section4] = STATE(199), - [sym__section5] = STATE(199), - [sym__section6] = STATE(199), - [sym_thematic_break] = STATE(62), - [sym__atx_heading2] = STATE(73), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(62), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(62), - [sym_fenced_code_block] = STATE(62), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(62), - [sym_note_definition_fenced_block] = STATE(62), - [sym__blank_line] = STATE(62), - [sym_block_quote] = STATE(62), - [sym_list] = STATE(62), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(62), - [aux_sym__section1_repeat1] = STATE(62), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(63)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1067), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11961,16 +12338,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(460), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(460), - [sym_atx_h2_marker] = ACTIONS(63), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -11981,184 +12357,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(462), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(460), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(65)] = { - [sym__block_not_section] = STATE(65), + [STATE(64)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), [sym__section2] = STATE(346), [sym__section3] = STATE(346), [sym__section4] = STATE(346), [sym__section5] = STATE(346), [sym__section6] = STATE(346), - [sym_thematic_break] = STATE(65), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(65), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(65), - [sym_fenced_code_block] = STATE(65), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(65), - [sym_note_definition_fenced_block] = STATE(65), - [sym__blank_line] = STATE(65), - [sym_block_quote] = STATE(65), - [sym_list] = STATE(65), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(65), - [aux_sym__section1_repeat1] = STATE(65), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_BSLASH] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym__] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(385), - [sym__word] = ACTIONS(388), - [sym__soft_line_ending] = ACTIONS(391), - [sym__block_close] = ACTIONS(394), - [sym__block_quote_start] = ACTIONS(464), - [sym__indented_chunk_start] = ACTIONS(467), - [sym_atx_h1_marker] = ACTIONS(394), - [sym_atx_h2_marker] = ACTIONS(470), - [sym_atx_h3_marker] = ACTIONS(473), - [sym_atx_h4_marker] = ACTIONS(476), - [sym_atx_h5_marker] = ACTIONS(479), - [sym_atx_h6_marker] = ACTIONS(482), - [sym__thematic_break] = ACTIONS(485), - [sym__list_marker_minus] = ACTIONS(420), - [sym__list_marker_plus] = ACTIONS(423), - [sym__list_marker_star] = ACTIONS(426), - [sym__list_marker_parenthesis] = ACTIONS(429), - [sym__list_marker_dot] = ACTIONS(432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(426), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(432), - [sym__fenced_code_block_start_backtick] = ACTIONS(488), - [sym__fenced_code_block_start_tilde] = ACTIONS(491), - [sym__blank_line_start] = ACTIONS(494), - [sym_minus_metadata] = ACTIONS(497), - [sym__pipe_table_start] = ACTIONS(500), - [sym__fenced_div_start] = ACTIONS(503), - [sym_ref_id_specifier] = ACTIONS(506), - [sym__display_math_state_track_marker] = ACTIONS(388), - [sym__inline_math_state_track_marker] = ACTIONS(388), - }, - [STATE(66)] = { - [sym__block_not_section] = STATE(70), - [sym__section2] = STATE(370), - [sym__section3] = STATE(370), - [sym__section4] = STATE(370), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), - [sym_thematic_break] = STATE(70), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(70), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(70), - [sym_fenced_code_block] = STATE(70), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(70), - [sym_note_definition_fenced_block] = STATE(70), - [sym__blank_line] = STATE(70), - [sym_block_quote] = STATE(70), - [sym_list] = STATE(70), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(70), - [aux_sym__section1_repeat1] = STATE(70), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(456), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1068), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12193,15 +12463,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(456), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12212,182 +12482,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(509), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(67)] = { - [sym__block_not_section] = STATE(67), - [sym__section2] = STATE(370), - [sym__section3] = STATE(370), - [sym__section4] = STATE(370), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), - [sym_thematic_break] = STATE(67), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(67), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(67), - [sym_fenced_code_block] = STATE(67), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__blank_line] = STATE(67), - [sym_block_quote] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(67), - [aux_sym__section1_repeat1] = STATE(67), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(394), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_SQUOTE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(385), - [anon_sym_POUND] = ACTIONS(385), - [anon_sym_DOLLAR] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_BSLASH] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym__] = ACTIONS(385), - [anon_sym_BQUOTE] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(385), - [anon_sym_TILDE] = ACTIONS(385), - [sym__word] = ACTIONS(388), - [sym__soft_line_ending] = ACTIONS(391), - [sym__block_quote_start] = ACTIONS(511), - [sym__indented_chunk_start] = ACTIONS(514), - [sym_atx_h1_marker] = ACTIONS(394), - [sym_atx_h2_marker] = ACTIONS(517), - [sym_atx_h3_marker] = ACTIONS(520), - [sym_atx_h4_marker] = ACTIONS(523), - [sym_atx_h5_marker] = ACTIONS(526), - [sym_atx_h6_marker] = ACTIONS(529), - [sym__thematic_break] = ACTIONS(532), - [sym__list_marker_minus] = ACTIONS(420), - [sym__list_marker_plus] = ACTIONS(423), - [sym__list_marker_star] = ACTIONS(426), - [sym__list_marker_parenthesis] = ACTIONS(429), - [sym__list_marker_dot] = ACTIONS(432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(423), - [sym__list_marker_star_dont_interrupt] = ACTIONS(426), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(429), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(432), - [sym__fenced_code_block_start_backtick] = ACTIONS(535), - [sym__fenced_code_block_start_tilde] = ACTIONS(538), - [sym__blank_line_start] = ACTIONS(541), - [sym_minus_metadata] = ACTIONS(544), - [sym__pipe_table_start] = ACTIONS(547), - [sym__fenced_div_start] = ACTIONS(550), - [sym_ref_id_specifier] = ACTIONS(553), - [sym__display_math_state_track_marker] = ACTIONS(388), - [sym__inline_math_state_track_marker] = ACTIONS(388), - }, - [STATE(68)] = { - [sym__block_not_section] = STATE(65), + [STATE(65)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), [sym__section2] = STATE(346), [sym__section3] = STATE(346), [sym__section4] = STATE(346), [sym__section5] = STATE(346), [sym__section6] = STATE(346), - [sym_thematic_break] = STATE(65), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(65), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(65), - [sym_fenced_code_block] = STATE(65), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(65), - [sym_note_definition_fenced_block] = STATE(65), - [sym__blank_line] = STATE(65), - [sym_block_quote] = STATE(65), - [sym_list] = STATE(65), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(65), - [aux_sym__section1_repeat1] = STATE(65), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1069), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12422,16 +12588,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(460), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(460), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12442,67 +12607,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(556), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(69)] = { - [sym__block_not_section] = STATE(68), + [STATE(66)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), [sym__section2] = STATE(346), [sym__section3] = STATE(346), [sym__section4] = STATE(346), [sym__section5] = STATE(346), [sym__section6] = STATE(346), - [sym_thematic_break] = STATE(68), - [sym__atx_heading2] = STATE(76), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(68), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(68), - [sym_fenced_code_block] = STATE(68), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(68), - [sym_note_definition_fenced_block] = STATE(68), - [sym__blank_line] = STATE(68), - [sym_block_quote] = STATE(68), - [sym_list] = STATE(68), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(68), - [aux_sym__section1_repeat1] = STATE(68), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1071), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12537,16 +12713,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(456), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(456), - [sym_atx_h2_marker] = ACTIONS(99), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12557,68 +12732,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(558), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(70)] = { - [sym__block_not_section] = STATE(67), - [sym__section2] = STATE(370), - [sym__section3] = STATE(370), - [sym__section4] = STATE(370), - [sym__section5] = STATE(370), - [sym__section6] = STATE(370), - [sym_thematic_break] = STATE(67), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(67), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(67), - [sym_fenced_code_block] = STATE(67), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(67), - [sym_note_definition_fenced_block] = STATE(67), - [sym__blank_line] = STATE(67), - [sym_block_quote] = STATE(67), - [sym_list] = STATE(67), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(67), - [aux_sym__section1_repeat1] = STATE(67), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(460), + [STATE(67)] = { + [sym__block] = STATE(37), + [sym__block_not_section] = STATE(37), + [sym_section] = STATE(37), + [sym__section1] = STATE(346), + [sym__section2] = STATE(346), + [sym__section3] = STATE(346), + [sym__section4] = STATE(346), + [sym__section5] = STATE(346), + [sym__section6] = STATE(346), + [sym_thematic_break] = STATE(37), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(37), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(37), + [sym_fenced_code_block] = STATE(37), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(37), + [sym_note_definition_fenced_block] = STATE(37), + [sym__blank_line] = STATE(239), + [sym_block_quote] = STATE(37), + [sym_list] = STATE(37), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__list_item_content] = STATE(1073), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(37), + [aux_sym_fenced_div_block_repeat1] = STATE(37), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12653,15 +12838,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(460), - [sym_atx_h2_marker] = ACTIONS(19), - [sym_atx_h3_marker] = ACTIONS(21), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(99), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12672,179 +12857,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(560), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(71)] = { - [sym__block_not_section] = STATE(71), - [sym__section3] = STATE(201), - [sym__section4] = STATE(201), - [sym__section5] = STATE(201), - [sym__section6] = STATE(201), - [sym_thematic_break] = STATE(71), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(71), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(71), - [sym_fenced_code_block] = STATE(71), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(71), - [sym_note_definition_fenced_block] = STATE(71), - [sym__blank_line] = STATE(71), - [sym_block_quote] = STATE(71), - [sym_list] = STATE(71), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(71), - [aux_sym__section2_repeat1] = STATE(71), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [sym__word] = ACTIONS(568), - [sym__soft_line_ending] = ACTIONS(571), - [sym__block_close] = ACTIONS(574), - [sym__block_quote_start] = ACTIONS(576), - [sym__indented_chunk_start] = ACTIONS(579), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(582), - [sym_atx_h4_marker] = ACTIONS(585), - [sym_atx_h5_marker] = ACTIONS(588), - [sym_atx_h6_marker] = ACTIONS(591), - [sym__thematic_break] = ACTIONS(594), - [sym__list_marker_minus] = ACTIONS(597), - [sym__list_marker_plus] = ACTIONS(600), - [sym__list_marker_star] = ACTIONS(603), - [sym__list_marker_parenthesis] = ACTIONS(606), - [sym__list_marker_dot] = ACTIONS(609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(600), - [sym__list_marker_star_dont_interrupt] = ACTIONS(603), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(606), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(609), - [sym__fenced_code_block_start_backtick] = ACTIONS(612), - [sym__fenced_code_block_start_tilde] = ACTIONS(615), - [sym__blank_line_start] = ACTIONS(618), - [sym_minus_metadata] = ACTIONS(621), - [sym__pipe_table_start] = ACTIONS(624), - [sym__fenced_div_start] = ACTIONS(627), - [sym__fenced_div_end] = ACTIONS(574), - [sym_ref_id_specifier] = ACTIONS(630), - [sym__display_math_state_track_marker] = ACTIONS(568), - [sym__inline_math_state_track_marker] = ACTIONS(568), - }, - [STATE(72)] = { - [sym__block_not_section] = STATE(71), - [sym__section3] = STATE(201), - [sym__section4] = STATE(201), - [sym__section5] = STATE(201), - [sym__section6] = STATE(201), - [sym_thematic_break] = STATE(71), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(71), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(71), - [sym_fenced_code_block] = STATE(71), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(71), - [sym_note_definition_fenced_block] = STATE(71), - [sym__blank_line] = STATE(71), - [sym_block_quote] = STATE(71), - [sym_list] = STATE(71), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(71), - [aux_sym__section2_repeat1] = STATE(71), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(68)] = { + [sym__block_not_section] = STATE(70), + [sym__section2] = STATE(226), + [sym__section3] = STATE(226), + [sym__section4] = STATE(226), + [sym__section5] = STATE(226), + [sym__section6] = STATE(226), + [sym_thematic_break] = STATE(70), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(70), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(70), + [sym_fenced_code_block] = STATE(70), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(70), + [sym_note_definition_fenced_block] = STATE(70), + [sym__blank_line] = STATE(70), + [sym_block_quote] = STATE(70), + [sym_list] = STATE(70), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(70), + [aux_sym__section1_repeat1] = STATE(70), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12879,16 +12958,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(633), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(633), - [sym_atx_h2_marker] = ACTIONS(633), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(393), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(393), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -12899,66 +12978,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(635), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(633), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(395), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(393), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(73)] = { - [sym__block_not_section] = STATE(72), - [sym__section3] = STATE(201), - [sym__section4] = STATE(201), - [sym__section5] = STATE(201), - [sym__section6] = STATE(201), - [sym_thematic_break] = STATE(72), - [sym__atx_heading3] = STATE(81), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(72), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(72), - [sym_fenced_code_block] = STATE(72), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(72), - [sym_note_definition_fenced_block] = STATE(72), - [sym__blank_line] = STATE(72), - [sym_block_quote] = STATE(72), - [sym_list] = STATE(72), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(72), - [aux_sym__section2_repeat1] = STATE(72), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(69)] = { + [sym__block_not_section] = STATE(68), + [sym__section2] = STATE(226), + [sym__section3] = STATE(226), + [sym__section4] = STATE(226), + [sym__section5] = STATE(226), + [sym__section6] = STATE(226), + [sym_thematic_break] = STATE(68), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(68), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(68), + [sym_fenced_code_block] = STATE(68), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(68), + [sym_note_definition_fenced_block] = STATE(68), + [sym__blank_line] = STATE(68), + [sym_block_quote] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(68), + [aux_sym__section1_repeat1] = STATE(68), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12993,16 +13080,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(637), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(637), - [sym_atx_h2_marker] = ACTIONS(637), - [sym_atx_h3_marker] = ACTIONS(65), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h2_marker] = ACTIONS(65), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13013,180 +13100,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(639), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(637), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(399), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(397), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(74)] = { - [sym__block_not_section] = STATE(74), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym_thematic_break] = STATE(74), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(74), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(74), - [sym_fenced_code_block] = STATE(74), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(74), - [sym_note_definition_fenced_block] = STATE(74), - [sym__blank_line] = STATE(74), - [sym_block_quote] = STATE(74), - [sym_list] = STATE(74), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(74), - [aux_sym__section2_repeat1] = STATE(74), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [sym__word] = ACTIONS(568), - [sym__soft_line_ending] = ACTIONS(571), - [sym__block_close] = ACTIONS(574), - [sym__block_quote_start] = ACTIONS(641), - [sym__indented_chunk_start] = ACTIONS(644), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(647), - [sym_atx_h4_marker] = ACTIONS(650), - [sym_atx_h5_marker] = ACTIONS(653), - [sym_atx_h6_marker] = ACTIONS(656), - [sym__thematic_break] = ACTIONS(659), - [sym__list_marker_minus] = ACTIONS(597), - [sym__list_marker_plus] = ACTIONS(600), - [sym__list_marker_star] = ACTIONS(603), - [sym__list_marker_parenthesis] = ACTIONS(606), - [sym__list_marker_dot] = ACTIONS(609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(600), - [sym__list_marker_star_dont_interrupt] = ACTIONS(603), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(606), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(609), - [sym__fenced_code_block_start_backtick] = ACTIONS(662), - [sym__fenced_code_block_start_tilde] = ACTIONS(665), - [sym__blank_line_start] = ACTIONS(668), - [sym_minus_metadata] = ACTIONS(671), - [sym__pipe_table_start] = ACTIONS(674), - [sym__fenced_div_start] = ACTIONS(677), - [sym_ref_id_specifier] = ACTIONS(680), - [sym__display_math_state_track_marker] = ACTIONS(568), - [sym__inline_math_state_track_marker] = ACTIONS(568), + [STATE(70)] = { + [sym__block_not_section] = STATE(70), + [sym__section2] = STATE(226), + [sym__section3] = STATE(226), + [sym__section4] = STATE(226), + [sym__section5] = STATE(226), + [sym__section6] = STATE(226), + [sym_thematic_break] = STATE(70), + [sym__atx_heading2] = STATE(77), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(70), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(70), + [sym_fenced_code_block] = STATE(70), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(70), + [sym_note_definition_fenced_block] = STATE(70), + [sym__blank_line] = STATE(70), + [sym_block_quote] = STATE(70), + [sym_list] = STATE(70), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(70), + [aux_sym__section1_repeat1] = STATE(70), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(404), + [anon_sym_POUND] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym__] = ACTIONS(404), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_TILDE] = ACTIONS(404), + [sym__word] = ACTIONS(407), + [sym__soft_line_ending] = ACTIONS(410), + [sym__block_close] = ACTIONS(413), + [sym__block_quote_start] = ACTIONS(415), + [sym__indented_chunk_start] = ACTIONS(418), + [sym_atx_h1_marker] = ACTIONS(413), + [sym_atx_h2_marker] = ACTIONS(421), + [sym_atx_h3_marker] = ACTIONS(424), + [sym_atx_h4_marker] = ACTIONS(427), + [sym_atx_h5_marker] = ACTIONS(430), + [sym_atx_h6_marker] = ACTIONS(433), + [sym__thematic_break] = ACTIONS(436), + [sym__list_marker_minus] = ACTIONS(439), + [sym__list_marker_plus] = ACTIONS(442), + [sym__list_marker_star] = ACTIONS(445), + [sym__list_marker_parenthesis] = ACTIONS(448), + [sym__list_marker_dot] = ACTIONS(451), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(439), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(445), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(448), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(451), + [sym__list_marker_example] = ACTIONS(454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(454), + [sym__fenced_code_block_start_backtick] = ACTIONS(457), + [sym__fenced_code_block_start_tilde] = ACTIONS(460), + [sym__blank_line_start] = ACTIONS(463), + [sym_minus_metadata] = ACTIONS(466), + [sym__pipe_table_start] = ACTIONS(469), + [sym__fenced_div_start] = ACTIONS(472), + [sym__fenced_div_end] = ACTIONS(413), + [sym_ref_id_specifier] = ACTIONS(475), + [sym__display_math_state_track_marker] = ACTIONS(407), + [sym__inline_math_state_track_marker] = ACTIONS(407), }, - [STATE(75)] = { - [sym__block_not_section] = STATE(78), - [sym__section3] = STATE(371), - [sym__section4] = STATE(371), - [sym__section5] = STATE(371), - [sym__section6] = STATE(371), - [sym_thematic_break] = STATE(78), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(78), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(78), - [sym_fenced_code_block] = STATE(78), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(78), - [sym_note_definition_fenced_block] = STATE(78), - [sym__blank_line] = STATE(78), - [sym_block_quote] = STATE(78), - [sym_list] = STATE(78), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(78), - [aux_sym__section2_repeat1] = STATE(78), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(633), + [STATE(71)] = { + [sym__block_not_section] = STATE(71), + [sym__section2] = STATE(362), + [sym__section3] = STATE(362), + [sym__section4] = STATE(362), + [sym__section5] = STATE(362), + [sym__section6] = STATE(362), + [sym_thematic_break] = STATE(71), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(71), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(71), + [sym_fenced_code_block] = STATE(71), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(71), + [sym_block_quote] = STATE(71), + [sym_list] = STATE(71), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(71), + [aux_sym__section1_repeat1] = STATE(71), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(404), + [anon_sym_POUND] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym__] = ACTIONS(404), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_TILDE] = ACTIONS(404), + [sym__word] = ACTIONS(407), + [sym__soft_line_ending] = ACTIONS(410), + [sym__block_close] = ACTIONS(413), + [sym__block_quote_start] = ACTIONS(478), + [sym__indented_chunk_start] = ACTIONS(481), + [sym_atx_h1_marker] = ACTIONS(413), + [sym_atx_h2_marker] = ACTIONS(484), + [sym_atx_h3_marker] = ACTIONS(487), + [sym_atx_h4_marker] = ACTIONS(490), + [sym_atx_h5_marker] = ACTIONS(493), + [sym_atx_h6_marker] = ACTIONS(496), + [sym__thematic_break] = ACTIONS(499), + [sym__list_marker_minus] = ACTIONS(439), + [sym__list_marker_plus] = ACTIONS(442), + [sym__list_marker_star] = ACTIONS(445), + [sym__list_marker_parenthesis] = ACTIONS(448), + [sym__list_marker_dot] = ACTIONS(451), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(439), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(445), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(448), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(451), + [sym__list_marker_example] = ACTIONS(454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(454), + [sym__fenced_code_block_start_backtick] = ACTIONS(502), + [sym__fenced_code_block_start_tilde] = ACTIONS(505), + [sym__blank_line_start] = ACTIONS(508), + [sym_minus_metadata] = ACTIONS(511), + [sym__pipe_table_start] = ACTIONS(514), + [sym__fenced_div_start] = ACTIONS(517), + [sym_ref_id_specifier] = ACTIONS(520), + [sym__display_math_state_track_marker] = ACTIONS(407), + [sym__inline_math_state_track_marker] = ACTIONS(407), + }, + [STATE(72)] = { + [sym__block_not_section] = STATE(72), + [sym__section2] = STATE(368), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), + [sym_thematic_break] = STATE(72), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(72), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(72), + [sym_fenced_code_block] = STATE(72), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(72), + [sym_block_quote] = STATE(72), + [sym_list] = STATE(72), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(72), + [aux_sym__section1_repeat1] = STATE(72), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(413), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(404), + [anon_sym_RBRACE] = ACTIONS(404), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(404), + [anon_sym_DQUOTE] = ACTIONS(404), + [anon_sym_POUND] = ACTIONS(404), + [anon_sym_DOLLAR] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_AMP] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(404), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_SEMI] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(404), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_QMARK] = ACTIONS(404), + [anon_sym_AT] = ACTIONS(404), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_BSLASH] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym__] = ACTIONS(404), + [anon_sym_BQUOTE] = ACTIONS(404), + [anon_sym_PIPE] = ACTIONS(404), + [anon_sym_TILDE] = ACTIONS(404), + [sym__word] = ACTIONS(407), + [sym__soft_line_ending] = ACTIONS(410), + [sym__block_quote_start] = ACTIONS(523), + [sym__indented_chunk_start] = ACTIONS(526), + [sym_atx_h1_marker] = ACTIONS(413), + [sym_atx_h2_marker] = ACTIONS(529), + [sym_atx_h3_marker] = ACTIONS(532), + [sym_atx_h4_marker] = ACTIONS(535), + [sym_atx_h5_marker] = ACTIONS(538), + [sym_atx_h6_marker] = ACTIONS(541), + [sym__thematic_break] = ACTIONS(544), + [sym__list_marker_minus] = ACTIONS(439), + [sym__list_marker_plus] = ACTIONS(442), + [sym__list_marker_star] = ACTIONS(445), + [sym__list_marker_parenthesis] = ACTIONS(448), + [sym__list_marker_dot] = ACTIONS(451), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(439), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(445), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(448), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(451), + [sym__list_marker_example] = ACTIONS(454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(454), + [sym__fenced_code_block_start_backtick] = ACTIONS(547), + [sym__fenced_code_block_start_tilde] = ACTIONS(550), + [sym__blank_line_start] = ACTIONS(553), + [sym_minus_metadata] = ACTIONS(556), + [sym__pipe_table_start] = ACTIONS(559), + [sym__fenced_div_start] = ACTIONS(562), + [sym_ref_id_specifier] = ACTIONS(565), + [sym__display_math_state_track_marker] = ACTIONS(407), + [sym__inline_math_state_track_marker] = ACTIONS(407), + }, + [STATE(73)] = { + [sym__block_not_section] = STATE(75), + [sym__section2] = STATE(368), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), + [sym_thematic_break] = STATE(75), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(75), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(75), + [sym_fenced_code_block] = STATE(75), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__blank_line] = STATE(75), + [sym_block_quote] = STATE(75), + [sym_list] = STATE(75), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(75), + [aux_sym__section1_repeat1] = STATE(75), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(397), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13223,8 +13569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(633), - [sym_atx_h2_marker] = ACTIONS(633), + [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h2_marker] = ACTIONS(19), [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), [sym_atx_h5_marker] = ACTIONS(25), @@ -13240,65 +13586,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(683), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(568), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(76)] = { - [sym__block_not_section] = STATE(79), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym_thematic_break] = STATE(79), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(79), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(79), - [sym_fenced_code_block] = STATE(79), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(79), - [sym_note_definition_fenced_block] = STATE(79), - [sym__blank_line] = STATE(79), - [sym_block_quote] = STATE(79), - [sym_list] = STATE(79), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(79), - [aux_sym__section2_repeat1] = STATE(79), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(74)] = { + [sym__block_not_section] = STATE(76), + [sym__section2] = STATE(362), + [sym__section3] = STATE(362), + [sym__section4] = STATE(362), + [sym__section5] = STATE(362), + [sym__section6] = STATE(362), + [sym_thematic_break] = STATE(76), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(76), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(76), + [sym_fenced_code_block] = STATE(76), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(76), + [sym_note_definition_fenced_block] = STATE(76), + [sym__blank_line] = STATE(76), + [sym_block_quote] = STATE(76), + [sym_list] = STATE(76), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(76), + [aux_sym__section1_repeat1] = STATE(76), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13333,16 +13687,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(637), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(637), - [sym_atx_h2_marker] = ACTIONS(637), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(397), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13353,66 +13707,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(685), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(570), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(77)] = { - [sym__block_not_section] = STATE(75), - [sym__section3] = STATE(371), - [sym__section4] = STATE(371), - [sym__section5] = STATE(371), - [sym__section6] = STATE(371), - [sym_thematic_break] = STATE(75), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(75), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(75), - [sym_fenced_code_block] = STATE(75), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(75), - [sym_note_definition_fenced_block] = STATE(75), - [sym__blank_line] = STATE(75), - [sym_block_quote] = STATE(75), - [sym_list] = STATE(75), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(75), - [aux_sym__section2_repeat1] = STATE(75), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(637), + [STATE(75)] = { + [sym__block_not_section] = STATE(72), + [sym__section2] = STATE(368), + [sym__section3] = STATE(368), + [sym__section4] = STATE(368), + [sym__section5] = STATE(368), + [sym__section6] = STATE(368), + [sym_thematic_break] = STATE(72), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(72), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(72), + [sym_fenced_code_block] = STATE(72), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(72), + [sym_block_quote] = STATE(72), + [sym_list] = STATE(72), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(72), + [aux_sym__section1_repeat1] = STATE(72), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(393), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13449,8 +13811,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(637), - [sym_atx_h2_marker] = ACTIONS(637), + [sym_atx_h1_marker] = ACTIONS(393), + [sym_atx_h2_marker] = ACTIONS(19), [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), [sym_atx_h5_marker] = ACTIONS(25), @@ -13466,188 +13828,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(687), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(572), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(78)] = { - [sym__block_not_section] = STATE(78), - [sym__section3] = STATE(371), - [sym__section4] = STATE(371), - [sym__section5] = STATE(371), - [sym__section6] = STATE(371), - [sym_thematic_break] = STATE(78), - [sym__atx_heading3] = STATE(86), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(78), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(78), - [sym_fenced_code_block] = STATE(78), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(78), - [sym_note_definition_fenced_block] = STATE(78), - [sym__blank_line] = STATE(78), - [sym_block_quote] = STATE(78), - [sym_list] = STATE(78), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(78), - [aux_sym__section2_repeat1] = STATE(78), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(574), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(565), - [anon_sym_SQUOTE] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_POUND] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(565), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(565), - [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_SLASH] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(565), - [anon_sym_BSLASH] = ACTIONS(565), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym__] = ACTIONS(565), - [anon_sym_BQUOTE] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [sym__word] = ACTIONS(568), - [sym__soft_line_ending] = ACTIONS(571), - [sym__block_quote_start] = ACTIONS(689), - [sym__indented_chunk_start] = ACTIONS(692), - [sym_atx_h1_marker] = ACTIONS(574), - [sym_atx_h2_marker] = ACTIONS(574), - [sym_atx_h3_marker] = ACTIONS(695), - [sym_atx_h4_marker] = ACTIONS(698), - [sym_atx_h5_marker] = ACTIONS(701), - [sym_atx_h6_marker] = ACTIONS(704), - [sym__thematic_break] = ACTIONS(707), - [sym__list_marker_minus] = ACTIONS(597), - [sym__list_marker_plus] = ACTIONS(600), - [sym__list_marker_star] = ACTIONS(603), - [sym__list_marker_parenthesis] = ACTIONS(606), - [sym__list_marker_dot] = ACTIONS(609), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(597), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(600), - [sym__list_marker_star_dont_interrupt] = ACTIONS(603), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(606), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(609), - [sym__fenced_code_block_start_backtick] = ACTIONS(710), - [sym__fenced_code_block_start_tilde] = ACTIONS(713), - [sym__blank_line_start] = ACTIONS(716), - [sym_minus_metadata] = ACTIONS(719), - [sym__pipe_table_start] = ACTIONS(722), - [sym__fenced_div_start] = ACTIONS(725), - [sym_ref_id_specifier] = ACTIONS(728), - [sym__display_math_state_track_marker] = ACTIONS(568), - [sym__inline_math_state_track_marker] = ACTIONS(568), - }, - [STATE(79)] = { - [sym__block_not_section] = STATE(74), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym_thematic_break] = STATE(74), - [sym__atx_heading3] = STATE(85), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(74), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(74), - [sym_fenced_code_block] = STATE(74), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(74), - [sym_note_definition_fenced_block] = STATE(74), - [sym__blank_line] = STATE(74), - [sym_block_quote] = STATE(74), - [sym_list] = STATE(74), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(74), - [aux_sym__section2_repeat1] = STATE(74), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [anon_sym_RBRACE] = ACTIONS(7), - [anon_sym_EQ] = ACTIONS(7), - [anon_sym_SQUOTE] = ACTIONS(7), - [anon_sym_BANG] = ACTIONS(7), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(7), - [anon_sym_DOLLAR] = ACTIONS(7), - [anon_sym_PERCENT] = ACTIONS(7), + [STATE(76)] = { + [sym__block_not_section] = STATE(71), + [sym__section2] = STATE(362), + [sym__section3] = STATE(362), + [sym__section4] = STATE(362), + [sym__section5] = STATE(362), + [sym__section6] = STATE(362), + [sym_thematic_break] = STATE(71), + [sym__atx_heading2] = STATE(83), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(71), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(71), + [sym_fenced_code_block] = STATE(71), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(71), + [sym_note_definition_fenced_block] = STATE(71), + [sym__blank_line] = STATE(71), + [sym_block_quote] = STATE(71), + [sym_list] = STATE(71), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(71), + [aux_sym__section1_repeat1] = STATE(71), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), [anon_sym_AMP] = ACTIONS(7), [anon_sym_LPAREN] = ACTIONS(7), [anon_sym_RPAREN] = ACTIONS(7), @@ -13672,16 +13929,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(633), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(633), - [sym_atx_h2_marker] = ACTIONS(633), - [sym_atx_h3_marker] = ACTIONS(101), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(393), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(393), + [sym_atx_h2_marker] = ACTIONS(101), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13692,63 +13949,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(731), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(574), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(80)] = { - [sym__block_not_section] = STATE(82), - [sym__section4] = STATE(204), - [sym__section5] = STATE(204), - [sym__section6] = STATE(204), - [sym_thematic_break] = STATE(82), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(82), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(82), - [sym_fenced_code_block] = STATE(82), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(82), - [sym_note_definition_fenced_block] = STATE(82), - [sym__blank_line] = STATE(82), - [sym_block_quote] = STATE(82), - [sym_list] = STATE(82), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(82), - [aux_sym__section3_repeat1] = STATE(82), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(77)] = { + [sym__block_not_section] = STATE(79), + [sym__section3] = STATE(230), + [sym__section4] = STATE(230), + [sym__section5] = STATE(230), + [sym__section6] = STATE(230), + [sym_thematic_break] = STATE(79), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(79), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(79), + [sym_fenced_code_block] = STATE(79), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(79), + [sym_note_definition_fenced_block] = STATE(79), + [sym__blank_line] = STATE(79), + [sym_block_quote] = STATE(79), + [sym_list] = STATE(79), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(79), + [aux_sym__section2_repeat1] = STATE(79), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13783,16 +14048,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(733), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(733), - [sym_atx_h2_marker] = ACTIONS(733), - [sym_atx_h3_marker] = ACTIONS(733), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(576), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(576), + [sym_atx_h2_marker] = ACTIONS(576), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13803,64 +14068,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(735), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(733), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(578), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(576), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(81)] = { - [sym__block_not_section] = STATE(80), - [sym__section4] = STATE(204), - [sym__section5] = STATE(204), - [sym__section6] = STATE(204), - [sym_thematic_break] = STATE(80), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(80), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(80), - [sym_fenced_code_block] = STATE(80), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(80), - [sym_note_definition_fenced_block] = STATE(80), - [sym__blank_line] = STATE(80), - [sym_block_quote] = STATE(80), - [sym_list] = STATE(80), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(80), - [aux_sym__section3_repeat1] = STATE(80), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(78)] = { + [sym__block_not_section] = STATE(78), + [sym__section3] = STATE(230), + [sym__section4] = STATE(230), + [sym__section5] = STATE(230), + [sym__section6] = STATE(230), + [sym_thematic_break] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(78), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(78), + [sym_fenced_code_block] = STATE(78), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(78), + [sym_note_definition_fenced_block] = STATE(78), + [sym__blank_line] = STATE(78), + [sym_block_quote] = STATE(78), + [sym_list] = STATE(78), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(78), + [aux_sym__section2_repeat1] = STATE(78), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_POUND] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PERCENT] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_GT] = ACTIONS(583), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_BSLASH] = ACTIONS(583), + [anon_sym_RBRACK] = ACTIONS(583), + [anon_sym_CARET] = ACTIONS(583), + [anon_sym__] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(583), + [anon_sym_TILDE] = ACTIONS(583), + [sym__word] = ACTIONS(586), + [sym__soft_line_ending] = ACTIONS(589), + [sym__block_close] = ACTIONS(592), + [sym__block_quote_start] = ACTIONS(594), + [sym__indented_chunk_start] = ACTIONS(597), + [sym_atx_h1_marker] = ACTIONS(592), + [sym_atx_h2_marker] = ACTIONS(592), + [sym_atx_h3_marker] = ACTIONS(600), + [sym_atx_h4_marker] = ACTIONS(603), + [sym_atx_h5_marker] = ACTIONS(606), + [sym_atx_h6_marker] = ACTIONS(609), + [sym__thematic_break] = ACTIONS(612), + [sym__list_marker_minus] = ACTIONS(615), + [sym__list_marker_plus] = ACTIONS(618), + [sym__list_marker_star] = ACTIONS(621), + [sym__list_marker_parenthesis] = ACTIONS(624), + [sym__list_marker_dot] = ACTIONS(627), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(615), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(621), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(627), + [sym__list_marker_example] = ACTIONS(630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(630), + [sym__fenced_code_block_start_backtick] = ACTIONS(633), + [sym__fenced_code_block_start_tilde] = ACTIONS(636), + [sym__blank_line_start] = ACTIONS(639), + [sym_minus_metadata] = ACTIONS(642), + [sym__pipe_table_start] = ACTIONS(645), + [sym__fenced_div_start] = ACTIONS(648), + [sym__fenced_div_end] = ACTIONS(592), + [sym_ref_id_specifier] = ACTIONS(651), + [sym__display_math_state_track_marker] = ACTIONS(586), + [sym__inline_math_state_track_marker] = ACTIONS(586), + }, + [STATE(79)] = { + [sym__block_not_section] = STATE(78), + [sym__section3] = STATE(230), + [sym__section4] = STATE(230), + [sym__section5] = STATE(230), + [sym__section6] = STATE(230), + [sym_thematic_break] = STATE(78), + [sym__atx_heading3] = STATE(87), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(78), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(78), + [sym_fenced_code_block] = STATE(78), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(78), + [sym_note_definition_fenced_block] = STATE(78), + [sym__blank_line] = STATE(78), + [sym_block_quote] = STATE(78), + [sym_list] = STATE(78), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(78), + [aux_sym__section2_repeat1] = STATE(78), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13895,16 +14288,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(737), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(737), - [sym_atx_h2_marker] = ACTIONS(737), - [sym_atx_h3_marker] = ACTIONS(737), - [sym_atx_h4_marker] = ACTIONS(67), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(654), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(654), + [sym_atx_h2_marker] = ACTIONS(654), + [sym_atx_h3_marker] = ACTIONS(67), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -13915,398 +14308,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(739), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(737), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(656), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(654), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(82)] = { + [STATE(80)] = { [sym__block_not_section] = STATE(82), - [sym__section4] = STATE(204), - [sym__section5] = STATE(204), - [sym__section6] = STATE(204), + [sym__section3] = STATE(363), + [sym__section4] = STATE(363), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), [sym_thematic_break] = STATE(82), - [sym__atx_heading4] = STATE(89), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), [sym_indented_code_block] = STATE(82), - [sym__indented_chunk] = STATE(118), + [sym__indented_chunk] = STATE(143), [sym_fenced_div_block] = STATE(82), [sym_fenced_code_block] = STATE(82), - [sym_paragraph] = STATE(138), + [sym_paragraph] = STATE(179), [sym_inline_ref_def] = STATE(82), [sym_note_definition_fenced_block] = STATE(82), [sym__blank_line] = STATE(82), [sym_block_quote] = STATE(82), [sym_list] = STATE(82), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), [sym_pipe_table] = STATE(82), - [aux_sym__section3_repeat1] = STATE(82), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym__] = ACTIONS(744), - [anon_sym_BQUOTE] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [sym__word] = ACTIONS(747), - [sym__soft_line_ending] = ACTIONS(750), - [sym__block_close] = ACTIONS(753), - [sym__block_quote_start] = ACTIONS(755), - [sym__indented_chunk_start] = ACTIONS(758), - [sym_atx_h1_marker] = ACTIONS(753), - [sym_atx_h2_marker] = ACTIONS(753), - [sym_atx_h3_marker] = ACTIONS(753), - [sym_atx_h4_marker] = ACTIONS(761), - [sym_atx_h5_marker] = ACTIONS(764), - [sym_atx_h6_marker] = ACTIONS(767), - [sym__thematic_break] = ACTIONS(770), - [sym__list_marker_minus] = ACTIONS(773), - [sym__list_marker_plus] = ACTIONS(776), - [sym__list_marker_star] = ACTIONS(779), - [sym__list_marker_parenthesis] = ACTIONS(782), - [sym__list_marker_dot] = ACTIONS(785), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(779), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(782), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(785), - [sym__fenced_code_block_start_backtick] = ACTIONS(788), - [sym__fenced_code_block_start_tilde] = ACTIONS(791), - [sym__blank_line_start] = ACTIONS(794), - [sym_minus_metadata] = ACTIONS(797), - [sym__pipe_table_start] = ACTIONS(800), - [sym__fenced_div_start] = ACTIONS(803), - [sym__fenced_div_end] = ACTIONS(753), - [sym_ref_id_specifier] = ACTIONS(806), - [sym__display_math_state_track_marker] = ACTIONS(747), - [sym__inline_math_state_track_marker] = ACTIONS(747), - }, - [STATE(83)] = { - [sym__block_not_section] = STATE(83), - [sym__section4] = STATE(348), - [sym__section5] = STATE(348), - [sym__section6] = STATE(348), - [sym_thematic_break] = STATE(83), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(83), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(83), - [sym_fenced_code_block] = STATE(83), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(83), - [sym_note_definition_fenced_block] = STATE(83), - [sym__blank_line] = STATE(83), - [sym_block_quote] = STATE(83), - [sym_list] = STATE(83), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(83), - [aux_sym__section3_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym__] = ACTIONS(744), - [anon_sym_BQUOTE] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [sym__word] = ACTIONS(747), - [sym__soft_line_ending] = ACTIONS(750), - [sym__block_close] = ACTIONS(753), - [sym__block_quote_start] = ACTIONS(809), - [sym__indented_chunk_start] = ACTIONS(812), - [sym_atx_h1_marker] = ACTIONS(753), - [sym_atx_h2_marker] = ACTIONS(753), - [sym_atx_h3_marker] = ACTIONS(753), - [sym_atx_h4_marker] = ACTIONS(815), - [sym_atx_h5_marker] = ACTIONS(818), - [sym_atx_h6_marker] = ACTIONS(821), - [sym__thematic_break] = ACTIONS(824), - [sym__list_marker_minus] = ACTIONS(773), - [sym__list_marker_plus] = ACTIONS(776), - [sym__list_marker_star] = ACTIONS(779), - [sym__list_marker_parenthesis] = ACTIONS(782), - [sym__list_marker_dot] = ACTIONS(785), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(779), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(782), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(785), - [sym__fenced_code_block_start_backtick] = ACTIONS(827), - [sym__fenced_code_block_start_tilde] = ACTIONS(830), - [sym__blank_line_start] = ACTIONS(833), - [sym_minus_metadata] = ACTIONS(836), - [sym__pipe_table_start] = ACTIONS(839), - [sym__fenced_div_start] = ACTIONS(842), - [sym_ref_id_specifier] = ACTIONS(845), - [sym__display_math_state_track_marker] = ACTIONS(747), - [sym__inline_math_state_track_marker] = ACTIONS(747), - }, - [STATE(84)] = { - [sym__block_not_section] = STATE(84), - [sym__section4] = STATE(374), - [sym__section5] = STATE(374), - [sym__section6] = STATE(374), - [sym_thematic_break] = STATE(84), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(84), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(84), - [sym_fenced_code_block] = STATE(84), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(84), - [sym_note_definition_fenced_block] = STATE(84), - [sym__blank_line] = STATE(84), - [sym_block_quote] = STATE(84), - [sym_list] = STATE(84), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(84), - [aux_sym__section3_repeat1] = STATE(84), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(753), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(744), - [anon_sym_BANG] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_PERCENT] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_COMMA] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_QMARK] = ACTIONS(744), - [anon_sym_AT] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_BSLASH] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym__] = ACTIONS(744), - [anon_sym_BQUOTE] = ACTIONS(744), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_TILDE] = ACTIONS(744), - [sym__word] = ACTIONS(747), - [sym__soft_line_ending] = ACTIONS(750), - [sym__block_quote_start] = ACTIONS(848), - [sym__indented_chunk_start] = ACTIONS(851), - [sym_atx_h1_marker] = ACTIONS(753), - [sym_atx_h2_marker] = ACTIONS(753), - [sym_atx_h3_marker] = ACTIONS(753), - [sym_atx_h4_marker] = ACTIONS(854), - [sym_atx_h5_marker] = ACTIONS(857), - [sym_atx_h6_marker] = ACTIONS(860), - [sym__thematic_break] = ACTIONS(863), - [sym__list_marker_minus] = ACTIONS(773), - [sym__list_marker_plus] = ACTIONS(776), - [sym__list_marker_star] = ACTIONS(779), - [sym__list_marker_parenthesis] = ACTIONS(782), - [sym__list_marker_dot] = ACTIONS(785), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(773), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(776), - [sym__list_marker_star_dont_interrupt] = ACTIONS(779), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(782), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(785), - [sym__fenced_code_block_start_backtick] = ACTIONS(866), - [sym__fenced_code_block_start_tilde] = ACTIONS(869), - [sym__blank_line_start] = ACTIONS(872), - [sym_minus_metadata] = ACTIONS(875), - [sym__pipe_table_start] = ACTIONS(878), - [sym__fenced_div_start] = ACTIONS(881), - [sym_ref_id_specifier] = ACTIONS(884), - [sym__display_math_state_track_marker] = ACTIONS(747), - [sym__inline_math_state_track_marker] = ACTIONS(747), - }, - [STATE(85)] = { - [sym__block_not_section] = STATE(88), - [sym__section4] = STATE(348), - [sym__section5] = STATE(348), - [sym__section6] = STATE(348), - [sym_thematic_break] = STATE(88), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(88), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(88), - [sym_fenced_code_block] = STATE(88), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(88), - [sym_note_definition_fenced_block] = STATE(88), - [sym__blank_line] = STATE(88), - [sym_block_quote] = STATE(88), - [sym_list] = STATE(88), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(88), - [aux_sym__section3_repeat1] = STATE(88), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [aux_sym__section2_repeat1] = STATE(82), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14341,16 +14408,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(737), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(737), - [sym_atx_h2_marker] = ACTIONS(737), - [sym_atx_h3_marker] = ACTIONS(737), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(654), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(654), + [sym_atx_h2_marker] = ACTIONS(654), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14361,64 +14428,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(887), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(658), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(86)] = { - [sym__block_not_section] = STATE(87), - [sym__section4] = STATE(374), - [sym__section5] = STATE(374), - [sym__section6] = STATE(374), - [sym_thematic_break] = STATE(87), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(87), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(87), - [sym_fenced_code_block] = STATE(87), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(87), - [sym_note_definition_fenced_block] = STATE(87), - [sym__blank_line] = STATE(87), - [sym_block_quote] = STATE(87), - [sym_list] = STATE(87), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(87), - [aux_sym__section3_repeat1] = STATE(87), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(737), + [STATE(81)] = { + [sym__block_not_section] = STATE(81), + [sym__section3] = STATE(371), + [sym__section4] = STATE(371), + [sym__section5] = STATE(371), + [sym__section6] = STATE(371), + [sym_thematic_break] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(81), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(81), + [sym_fenced_code_block] = STATE(81), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(81), + [sym_note_definition_fenced_block] = STATE(81), + [sym__blank_line] = STATE(81), + [sym_block_quote] = STATE(81), + [sym_list] = STATE(81), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(81), + [aux_sym__section2_repeat1] = STATE(81), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(592), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_POUND] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PERCENT] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_GT] = ACTIONS(583), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_BSLASH] = ACTIONS(583), + [anon_sym_RBRACK] = ACTIONS(583), + [anon_sym_CARET] = ACTIONS(583), + [anon_sym__] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(583), + [anon_sym_TILDE] = ACTIONS(583), + [sym__word] = ACTIONS(586), + [sym__soft_line_ending] = ACTIONS(589), + [sym__block_quote_start] = ACTIONS(660), + [sym__indented_chunk_start] = ACTIONS(663), + [sym_atx_h1_marker] = ACTIONS(592), + [sym_atx_h2_marker] = ACTIONS(592), + [sym_atx_h3_marker] = ACTIONS(666), + [sym_atx_h4_marker] = ACTIONS(669), + [sym_atx_h5_marker] = ACTIONS(672), + [sym_atx_h6_marker] = ACTIONS(675), + [sym__thematic_break] = ACTIONS(678), + [sym__list_marker_minus] = ACTIONS(615), + [sym__list_marker_plus] = ACTIONS(618), + [sym__list_marker_star] = ACTIONS(621), + [sym__list_marker_parenthesis] = ACTIONS(624), + [sym__list_marker_dot] = ACTIONS(627), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(615), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(621), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(627), + [sym__list_marker_example] = ACTIONS(630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(630), + [sym__fenced_code_block_start_backtick] = ACTIONS(681), + [sym__fenced_code_block_start_tilde] = ACTIONS(684), + [sym__blank_line_start] = ACTIONS(687), + [sym_minus_metadata] = ACTIONS(690), + [sym__pipe_table_start] = ACTIONS(693), + [sym__fenced_div_start] = ACTIONS(696), + [sym_ref_id_specifier] = ACTIONS(699), + [sym__display_math_state_track_marker] = ACTIONS(586), + [sym__inline_math_state_track_marker] = ACTIONS(586), + }, + [STATE(82)] = { + [sym__block_not_section] = STATE(82), + [sym__section3] = STATE(363), + [sym__section4] = STATE(363), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), + [sym_thematic_break] = STATE(82), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(82), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(82), + [sym_fenced_code_block] = STATE(82), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(82), + [sym_note_definition_fenced_block] = STATE(82), + [sym__blank_line] = STATE(82), + [sym_block_quote] = STATE(82), + [sym_list] = STATE(82), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(82), + [aux_sym__section2_repeat1] = STATE(82), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_EQ] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(583), + [anon_sym_BANG] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_POUND] = ACTIONS(583), + [anon_sym_DOLLAR] = ACTIONS(583), + [anon_sym_PERCENT] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_RPAREN] = ACTIONS(583), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_PLUS] = ACTIONS(583), + [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_DASH] = ACTIONS(583), + [anon_sym_DOT] = ACTIONS(583), + [anon_sym_SLASH] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_GT] = ACTIONS(583), + [anon_sym_QMARK] = ACTIONS(583), + [anon_sym_AT] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_BSLASH] = ACTIONS(583), + [anon_sym_RBRACK] = ACTIONS(583), + [anon_sym_CARET] = ACTIONS(583), + [anon_sym__] = ACTIONS(583), + [anon_sym_BQUOTE] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(583), + [anon_sym_TILDE] = ACTIONS(583), + [sym__word] = ACTIONS(586), + [sym__soft_line_ending] = ACTIONS(589), + [sym__block_close] = ACTIONS(592), + [sym__block_quote_start] = ACTIONS(702), + [sym__indented_chunk_start] = ACTIONS(705), + [sym_atx_h1_marker] = ACTIONS(592), + [sym_atx_h2_marker] = ACTIONS(592), + [sym_atx_h3_marker] = ACTIONS(708), + [sym_atx_h4_marker] = ACTIONS(711), + [sym_atx_h5_marker] = ACTIONS(714), + [sym_atx_h6_marker] = ACTIONS(717), + [sym__thematic_break] = ACTIONS(720), + [sym__list_marker_minus] = ACTIONS(615), + [sym__list_marker_plus] = ACTIONS(618), + [sym__list_marker_star] = ACTIONS(621), + [sym__list_marker_parenthesis] = ACTIONS(624), + [sym__list_marker_dot] = ACTIONS(627), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(615), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(621), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(627), + [sym__list_marker_example] = ACTIONS(630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(630), + [sym__fenced_code_block_start_backtick] = ACTIONS(723), + [sym__fenced_code_block_start_tilde] = ACTIONS(726), + [sym__blank_line_start] = ACTIONS(729), + [sym_minus_metadata] = ACTIONS(732), + [sym__pipe_table_start] = ACTIONS(735), + [sym__fenced_div_start] = ACTIONS(738), + [sym_ref_id_specifier] = ACTIONS(741), + [sym__display_math_state_track_marker] = ACTIONS(586), + [sym__inline_math_state_track_marker] = ACTIONS(586), + }, + [STATE(83)] = { + [sym__block_not_section] = STATE(80), + [sym__section3] = STATE(363), + [sym__section4] = STATE(363), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), + [sym_thematic_break] = STATE(80), + [sym__atx_heading3] = STATE(94), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(80), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(80), + [sym_fenced_code_block] = STATE(80), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(80), + [sym_note_definition_fenced_block] = STATE(80), + [sym__blank_line] = STATE(80), + [sym_block_quote] = STATE(80), + [sym_list] = STATE(80), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(80), + [aux_sym__section2_repeat1] = STATE(80), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14453,15 +14765,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(737), - [sym_atx_h2_marker] = ACTIONS(737), - [sym_atx_h3_marker] = ACTIONS(737), - [sym_atx_h4_marker] = ACTIONS(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(576), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(576), + [sym_atx_h2_marker] = ACTIONS(576), + [sym_atx_h3_marker] = ACTIONS(103), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14472,64 +14785,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(889), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(744), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(87)] = { - [sym__block_not_section] = STATE(84), - [sym__section4] = STATE(374), - [sym__section5] = STATE(374), - [sym__section6] = STATE(374), - [sym_thematic_break] = STATE(84), - [sym__atx_heading4] = STATE(97), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(84), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(84), - [sym_fenced_code_block] = STATE(84), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(84), - [sym_note_definition_fenced_block] = STATE(84), - [sym__blank_line] = STATE(84), - [sym_block_quote] = STATE(84), - [sym_list] = STATE(84), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(84), - [aux_sym__section3_repeat1] = STATE(84), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(733), + [STATE(84)] = { + [sym__block_not_section] = STATE(81), + [sym__section3] = STATE(371), + [sym__section4] = STATE(371), + [sym__section5] = STATE(371), + [sym__section6] = STATE(371), + [sym_thematic_break] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(81), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(81), + [sym_fenced_code_block] = STATE(81), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(81), + [sym_note_definition_fenced_block] = STATE(81), + [sym__blank_line] = STATE(81), + [sym_block_quote] = STATE(81), + [sym_list] = STATE(81), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(81), + [aux_sym__section2_repeat1] = STATE(81), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(654), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14566,9 +14887,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(733), - [sym_atx_h2_marker] = ACTIONS(733), - [sym_atx_h3_marker] = ACTIONS(733), + [sym_atx_h1_marker] = ACTIONS(654), + [sym_atx_h2_marker] = ACTIONS(654), + [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), [sym_atx_h5_marker] = ACTIONS(25), [sym_atx_h6_marker] = ACTIONS(27), @@ -14583,63 +14904,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(891), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(746), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(88)] = { - [sym__block_not_section] = STATE(83), - [sym__section4] = STATE(348), - [sym__section5] = STATE(348), - [sym__section6] = STATE(348), - [sym_thematic_break] = STATE(83), - [sym__atx_heading4] = STATE(92), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(83), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(83), - [sym_fenced_code_block] = STATE(83), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(83), - [sym_note_definition_fenced_block] = STATE(83), - [sym__blank_line] = STATE(83), - [sym_block_quote] = STATE(83), - [sym_list] = STATE(83), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(83), - [aux_sym__section3_repeat1] = STATE(83), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(85)] = { + [sym__block_not_section] = STATE(84), + [sym__section3] = STATE(371), + [sym__section4] = STATE(371), + [sym__section5] = STATE(371), + [sym__section6] = STATE(371), + [sym_thematic_break] = STATE(84), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(84), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(84), + [sym_fenced_code_block] = STATE(84), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(84), + [sym_note_definition_fenced_block] = STATE(84), + [sym__blank_line] = STATE(84), + [sym_block_quote] = STATE(84), + [sym_list] = STATE(84), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(84), + [aux_sym__section2_repeat1] = STATE(84), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(576), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14674,16 +15004,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(733), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(733), - [sym_atx_h2_marker] = ACTIONS(733), - [sym_atx_h3_marker] = ACTIONS(733), - [sym_atx_h4_marker] = ACTIONS(103), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(576), + [sym_atx_h2_marker] = ACTIONS(576), + [sym_atx_h3_marker] = ACTIONS(21), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14694,61 +15023,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(893), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(748), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(89)] = { - [sym__block_not_section] = STATE(90), - [sym__section5] = STATE(215), - [sym__section6] = STATE(215), - [sym_thematic_break] = STATE(90), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(90), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(90), - [sym_fenced_code_block] = STATE(90), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(90), - [sym_note_definition_fenced_block] = STATE(90), - [sym__blank_line] = STATE(90), - [sym_block_quote] = STATE(90), - [sym_list] = STATE(90), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(90), - [aux_sym__section4_repeat1] = STATE(90), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(86)] = { + [sym__block_not_section] = STATE(86), + [sym__section4] = STATE(234), + [sym__section5] = STATE(234), + [sym__section6] = STATE(234), + [sym_thematic_break] = STATE(86), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(86), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(86), + [sym_fenced_code_block] = STATE(86), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(86), + [sym_note_definition_fenced_block] = STATE(86), + [sym__blank_line] = STATE(86), + [sym_block_quote] = STATE(86), + [sym_list] = STATE(86), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(86), + [aux_sym__section3_repeat1] = STATE(86), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PERCENT] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_BSLASH] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym__] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [sym__word] = ACTIONS(756), + [sym__soft_line_ending] = ACTIONS(759), + [sym__block_close] = ACTIONS(762), + [sym__block_quote_start] = ACTIONS(764), + [sym__indented_chunk_start] = ACTIONS(767), + [sym_atx_h1_marker] = ACTIONS(762), + [sym_atx_h2_marker] = ACTIONS(762), + [sym_atx_h3_marker] = ACTIONS(762), + [sym_atx_h4_marker] = ACTIONS(770), + [sym_atx_h5_marker] = ACTIONS(773), + [sym_atx_h6_marker] = ACTIONS(776), + [sym__thematic_break] = ACTIONS(779), + [sym__list_marker_minus] = ACTIONS(782), + [sym__list_marker_plus] = ACTIONS(785), + [sym__list_marker_star] = ACTIONS(788), + [sym__list_marker_parenthesis] = ACTIONS(791), + [sym__list_marker_dot] = ACTIONS(794), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(782), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(785), + [sym__list_marker_star_dont_interrupt] = ACTIONS(788), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(791), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(794), + [sym__list_marker_example] = ACTIONS(797), + [sym__list_marker_example_dont_interrupt] = ACTIONS(797), + [sym__fenced_code_block_start_backtick] = ACTIONS(800), + [sym__fenced_code_block_start_tilde] = ACTIONS(803), + [sym__blank_line_start] = ACTIONS(806), + [sym_minus_metadata] = ACTIONS(809), + [sym__pipe_table_start] = ACTIONS(812), + [sym__fenced_div_start] = ACTIONS(815), + [sym__fenced_div_end] = ACTIONS(762), + [sym_ref_id_specifier] = ACTIONS(818), + [sym__display_math_state_track_marker] = ACTIONS(756), + [sym__inline_math_state_track_marker] = ACTIONS(756), + }, + [STATE(87)] = { + [sym__block_not_section] = STATE(88), + [sym__section4] = STATE(234), + [sym__section5] = STATE(234), + [sym__section6] = STATE(234), + [sym_thematic_break] = STATE(88), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(88), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(88), + [sym_fenced_code_block] = STATE(88), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(88), + [sym_note_definition_fenced_block] = STATE(88), + [sym__blank_line] = STATE(88), + [sym_block_quote] = STATE(88), + [sym_list] = STATE(88), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(88), + [aux_sym__section3_repeat1] = STATE(88), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14783,16 +15238,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(895), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(895), - [sym_atx_h2_marker] = ACTIONS(895), - [sym_atx_h3_marker] = ACTIONS(895), - [sym_atx_h4_marker] = ACTIONS(895), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(821), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(821), + [sym_atx_h2_marker] = ACTIONS(821), + [sym_atx_h3_marker] = ACTIONS(821), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14803,62 +15258,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(897), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(895), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(823), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(821), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(90)] = { - [sym__block_not_section] = STATE(91), - [sym__section5] = STATE(215), - [sym__section6] = STATE(215), - [sym_thematic_break] = STATE(91), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(91), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(91), - [sym_fenced_code_block] = STATE(91), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(91), - [sym_note_definition_fenced_block] = STATE(91), - [sym__blank_line] = STATE(91), - [sym_block_quote] = STATE(91), - [sym_list] = STATE(91), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(91), - [aux_sym__section4_repeat1] = STATE(91), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(88)] = { + [sym__block_not_section] = STATE(86), + [sym__section4] = STATE(234), + [sym__section5] = STATE(234), + [sym__section6] = STATE(234), + [sym_thematic_break] = STATE(86), + [sym__atx_heading4] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(86), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(86), + [sym_fenced_code_block] = STATE(86), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(86), + [sym_note_definition_fenced_block] = STATE(86), + [sym__blank_line] = STATE(86), + [sym_block_quote] = STATE(86), + [sym_list] = STATE(86), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(86), + [aux_sym__section3_repeat1] = STATE(86), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14893,16 +15356,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(899), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(899), - [sym_atx_h4_marker] = ACTIONS(899), - [sym_atx_h5_marker] = ACTIONS(69), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(825), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(825), + [sym_atx_h2_marker] = ACTIONS(825), + [sym_atx_h3_marker] = ACTIONS(825), + [sym_atx_h4_marker] = ACTIONS(69), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -14913,172 +15376,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(901), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(899), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(827), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(825), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(91)] = { - [sym__block_not_section] = STATE(91), - [sym__section5] = STATE(215), - [sym__section6] = STATE(215), - [sym_thematic_break] = STATE(91), - [sym__atx_heading5] = STATE(100), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(91), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(91), - [sym_fenced_code_block] = STATE(91), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(91), - [sym_note_definition_fenced_block] = STATE(91), - [sym__blank_line] = STATE(91), - [sym_block_quote] = STATE(91), - [sym_list] = STATE(91), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(91), - [aux_sym__section4_repeat1] = STATE(91), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_BSLASH] = ACTIONS(906), - [anon_sym_RBRACK] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_BQUOTE] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [sym__word] = ACTIONS(909), - [sym__soft_line_ending] = ACTIONS(912), - [sym__block_close] = ACTIONS(915), - [sym__block_quote_start] = ACTIONS(917), - [sym__indented_chunk_start] = ACTIONS(920), - [sym_atx_h1_marker] = ACTIONS(915), - [sym_atx_h2_marker] = ACTIONS(915), - [sym_atx_h3_marker] = ACTIONS(915), - [sym_atx_h4_marker] = ACTIONS(915), - [sym_atx_h5_marker] = ACTIONS(923), - [sym_atx_h6_marker] = ACTIONS(926), - [sym__thematic_break] = ACTIONS(929), - [sym__list_marker_minus] = ACTIONS(932), - [sym__list_marker_plus] = ACTIONS(935), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(941), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(932), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(935), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(947), - [sym__fenced_code_block_start_tilde] = ACTIONS(950), - [sym__blank_line_start] = ACTIONS(953), - [sym_minus_metadata] = ACTIONS(956), - [sym__pipe_table_start] = ACTIONS(959), - [sym__fenced_div_start] = ACTIONS(962), - [sym__fenced_div_end] = ACTIONS(915), - [sym_ref_id_specifier] = ACTIONS(965), - [sym__display_math_state_track_marker] = ACTIONS(909), - [sym__inline_math_state_track_marker] = ACTIONS(909), + [STATE(89)] = { + [sym__block_not_section] = STATE(89), + [sym__section4] = STATE(386), + [sym__section5] = STATE(386), + [sym__section6] = STATE(386), + [sym_thematic_break] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(89), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(89), + [sym_fenced_code_block] = STATE(89), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(89), + [sym_note_definition_fenced_block] = STATE(89), + [sym__blank_line] = STATE(89), + [sym_block_quote] = STATE(89), + [sym_list] = STATE(89), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(89), + [aux_sym__section3_repeat1] = STATE(89), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(762), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PERCENT] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_BSLASH] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym__] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [sym__word] = ACTIONS(756), + [sym__soft_line_ending] = ACTIONS(759), + [sym__block_quote_start] = ACTIONS(829), + [sym__indented_chunk_start] = ACTIONS(832), + [sym_atx_h1_marker] = ACTIONS(762), + [sym_atx_h2_marker] = ACTIONS(762), + [sym_atx_h3_marker] = ACTIONS(762), + [sym_atx_h4_marker] = ACTIONS(835), + [sym_atx_h5_marker] = ACTIONS(838), + [sym_atx_h6_marker] = ACTIONS(841), + [sym__thematic_break] = ACTIONS(844), + [sym__list_marker_minus] = ACTIONS(782), + [sym__list_marker_plus] = ACTIONS(785), + [sym__list_marker_star] = ACTIONS(788), + [sym__list_marker_parenthesis] = ACTIONS(791), + [sym__list_marker_dot] = ACTIONS(794), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(782), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(785), + [sym__list_marker_star_dont_interrupt] = ACTIONS(788), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(791), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(794), + [sym__list_marker_example] = ACTIONS(797), + [sym__list_marker_example_dont_interrupt] = ACTIONS(797), + [sym__fenced_code_block_start_backtick] = ACTIONS(847), + [sym__fenced_code_block_start_tilde] = ACTIONS(850), + [sym__blank_line_start] = ACTIONS(853), + [sym_minus_metadata] = ACTIONS(856), + [sym__pipe_table_start] = ACTIONS(859), + [sym__fenced_div_start] = ACTIONS(862), + [sym_ref_id_specifier] = ACTIONS(865), + [sym__display_math_state_track_marker] = ACTIONS(756), + [sym__inline_math_state_track_marker] = ACTIONS(756), }, - [STATE(92)] = { - [sym__block_not_section] = STATE(94), - [sym__section5] = STATE(350), - [sym__section6] = STATE(350), - [sym_thematic_break] = STATE(94), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(94), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(94), - [sym_fenced_code_block] = STATE(94), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(94), - [sym_note_definition_fenced_block] = STATE(94), - [sym__blank_line] = STATE(94), - [sym_block_quote] = STATE(94), - [sym_list] = STATE(94), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(94), - [aux_sym__section4_repeat1] = STATE(94), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(90)] = { + [sym__block_not_section] = STATE(92), + [sym__section4] = STATE(386), + [sym__section5] = STATE(386), + [sym__section6] = STATE(386), + [sym_thematic_break] = STATE(92), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(92), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(92), + [sym_fenced_code_block] = STATE(92), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(92), + [sym_note_definition_fenced_block] = STATE(92), + [sym__blank_line] = STATE(92), + [sym_block_quote] = STATE(92), + [sym_list] = STATE(92), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(92), + [aux_sym__section3_repeat1] = STATE(92), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(821), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15113,16 +15592,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(895), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(895), - [sym_atx_h2_marker] = ACTIONS(895), - [sym_atx_h3_marker] = ACTIONS(895), - [sym_atx_h4_marker] = ACTIONS(895), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(821), + [sym_atx_h2_marker] = ACTIONS(821), + [sym_atx_h3_marker] = ACTIONS(821), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15133,170 +15611,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(968), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(868), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(93)] = { - [sym__block_not_section] = STATE(93), - [sym__section5] = STATE(375), - [sym__section6] = STATE(375), - [sym_thematic_break] = STATE(93), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(93), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(93), - [sym_fenced_code_block] = STATE(93), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(93), - [sym_note_definition_fenced_block] = STATE(93), - [sym__blank_line] = STATE(93), - [sym_block_quote] = STATE(93), - [sym_list] = STATE(93), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(93), - [aux_sym__section4_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(915), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_BSLASH] = ACTIONS(906), - [anon_sym_RBRACK] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_BQUOTE] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [sym__word] = ACTIONS(909), - [sym__soft_line_ending] = ACTIONS(912), - [sym__block_quote_start] = ACTIONS(970), - [sym__indented_chunk_start] = ACTIONS(973), - [sym_atx_h1_marker] = ACTIONS(915), - [sym_atx_h2_marker] = ACTIONS(915), - [sym_atx_h3_marker] = ACTIONS(915), - [sym_atx_h4_marker] = ACTIONS(915), - [sym_atx_h5_marker] = ACTIONS(976), - [sym_atx_h6_marker] = ACTIONS(979), - [sym__thematic_break] = ACTIONS(982), - [sym__list_marker_minus] = ACTIONS(932), - [sym__list_marker_plus] = ACTIONS(935), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(941), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(932), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(935), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(985), - [sym__fenced_code_block_start_tilde] = ACTIONS(988), - [sym__blank_line_start] = ACTIONS(991), - [sym_minus_metadata] = ACTIONS(994), - [sym__pipe_table_start] = ACTIONS(997), - [sym__fenced_div_start] = ACTIONS(1000), - [sym_ref_id_specifier] = ACTIONS(1003), - [sym__display_math_state_track_marker] = ACTIONS(909), - [sym__inline_math_state_track_marker] = ACTIONS(909), + [STATE(91)] = { + [sym__block_not_section] = STATE(91), + [sym__section4] = STATE(364), + [sym__section5] = STATE(364), + [sym__section6] = STATE(364), + [sym_thematic_break] = STATE(91), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(91), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(91), + [sym_fenced_code_block] = STATE(91), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(91), + [sym_note_definition_fenced_block] = STATE(91), + [sym__blank_line] = STATE(91), + [sym_block_quote] = STATE(91), + [sym_list] = STATE(91), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(91), + [aux_sym__section3_repeat1] = STATE(91), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_DQUOTE] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PERCENT] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(753), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_COMMA] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(753), + [anon_sym_GT] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(753), + [anon_sym_AT] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(753), + [anon_sym_BSLASH] = ACTIONS(753), + [anon_sym_RBRACK] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym__] = ACTIONS(753), + [anon_sym_BQUOTE] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_TILDE] = ACTIONS(753), + [sym__word] = ACTIONS(756), + [sym__soft_line_ending] = ACTIONS(759), + [sym__block_close] = ACTIONS(762), + [sym__block_quote_start] = ACTIONS(870), + [sym__indented_chunk_start] = ACTIONS(873), + [sym_atx_h1_marker] = ACTIONS(762), + [sym_atx_h2_marker] = ACTIONS(762), + [sym_atx_h3_marker] = ACTIONS(762), + [sym_atx_h4_marker] = ACTIONS(876), + [sym_atx_h5_marker] = ACTIONS(879), + [sym_atx_h6_marker] = ACTIONS(882), + [sym__thematic_break] = ACTIONS(885), + [sym__list_marker_minus] = ACTIONS(782), + [sym__list_marker_plus] = ACTIONS(785), + [sym__list_marker_star] = ACTIONS(788), + [sym__list_marker_parenthesis] = ACTIONS(791), + [sym__list_marker_dot] = ACTIONS(794), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(782), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(785), + [sym__list_marker_star_dont_interrupt] = ACTIONS(788), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(791), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(794), + [sym__list_marker_example] = ACTIONS(797), + [sym__list_marker_example_dont_interrupt] = ACTIONS(797), + [sym__fenced_code_block_start_backtick] = ACTIONS(888), + [sym__fenced_code_block_start_tilde] = ACTIONS(891), + [sym__blank_line_start] = ACTIONS(894), + [sym_minus_metadata] = ACTIONS(897), + [sym__pipe_table_start] = ACTIONS(900), + [sym__fenced_div_start] = ACTIONS(903), + [sym_ref_id_specifier] = ACTIONS(906), + [sym__display_math_state_track_marker] = ACTIONS(756), + [sym__inline_math_state_track_marker] = ACTIONS(756), }, - [STATE(94)] = { - [sym__block_not_section] = STATE(96), - [sym__section5] = STATE(350), - [sym__section6] = STATE(350), - [sym_thematic_break] = STATE(96), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(96), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(96), - [sym_fenced_code_block] = STATE(96), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(96), - [sym_note_definition_fenced_block] = STATE(96), - [sym__blank_line] = STATE(96), - [sym_block_quote] = STATE(96), - [sym_list] = STATE(96), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(96), - [aux_sym__section4_repeat1] = STATE(96), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(92)] = { + [sym__block_not_section] = STATE(89), + [sym__section4] = STATE(386), + [sym__section5] = STATE(386), + [sym__section6] = STATE(386), + [sym_thematic_break] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(89), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(89), + [sym_fenced_code_block] = STATE(89), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(89), + [sym_note_definition_fenced_block] = STATE(89), + [sym__blank_line] = STATE(89), + [sym_block_quote] = STATE(89), + [sym_list] = STATE(89), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(89), + [aux_sym__section3_repeat1] = STATE(89), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(825), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15331,16 +15826,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(899), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(899), - [sym_atx_h4_marker] = ACTIONS(899), - [sym_atx_h5_marker] = ACTIONS(105), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(825), + [sym_atx_h2_marker] = ACTIONS(825), + [sym_atx_h3_marker] = ACTIONS(825), + [sym_atx_h4_marker] = ACTIONS(23), + [sym_atx_h5_marker] = ACTIONS(25), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15351,62 +15845,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1006), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(909), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(95)] = { - [sym__block_not_section] = STATE(93), - [sym__section5] = STATE(375), - [sym__section6] = STATE(375), - [sym_thematic_break] = STATE(93), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(93), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(93), - [sym_fenced_code_block] = STATE(93), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(93), - [sym_note_definition_fenced_block] = STATE(93), - [sym__blank_line] = STATE(93), - [sym_block_quote] = STATE(93), - [sym_list] = STATE(93), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(93), - [aux_sym__section4_repeat1] = STATE(93), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(899), + [STATE(93)] = { + [sym__block_not_section] = STATE(91), + [sym__section4] = STATE(364), + [sym__section5] = STATE(364), + [sym__section6] = STATE(364), + [sym_thematic_break] = STATE(91), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(91), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(91), + [sym_fenced_code_block] = STATE(91), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(91), + [sym_note_definition_fenced_block] = STATE(91), + [sym__blank_line] = STATE(91), + [sym_block_quote] = STATE(91), + [sym_list] = STATE(91), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(91), + [aux_sym__section3_repeat1] = STATE(91), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15441,15 +15942,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(899), - [sym_atx_h2_marker] = ACTIONS(899), - [sym_atx_h3_marker] = ACTIONS(899), - [sym_atx_h4_marker] = ACTIONS(899), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(825), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(825), + [sym_atx_h2_marker] = ACTIONS(825), + [sym_atx_h3_marker] = ACTIONS(825), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15460,171 +15962,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1008), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(911), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(96)] = { - [sym__block_not_section] = STATE(96), - [sym__section5] = STATE(350), - [sym__section6] = STATE(350), - [sym_thematic_break] = STATE(96), - [sym__atx_heading5] = STATE(103), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(96), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(96), - [sym_fenced_code_block] = STATE(96), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(96), - [sym_note_definition_fenced_block] = STATE(96), - [sym__blank_line] = STATE(96), - [sym_block_quote] = STATE(96), - [sym_list] = STATE(96), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(96), - [aux_sym__section4_repeat1] = STATE(96), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_RBRACE] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_DQUOTE] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(906), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(906), - [anon_sym_AT] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_BSLASH] = ACTIONS(906), - [anon_sym_RBRACK] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_BQUOTE] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_TILDE] = ACTIONS(906), - [sym__word] = ACTIONS(909), - [sym__soft_line_ending] = ACTIONS(912), - [sym__block_close] = ACTIONS(915), - [sym__block_quote_start] = ACTIONS(1010), - [sym__indented_chunk_start] = ACTIONS(1013), - [sym_atx_h1_marker] = ACTIONS(915), - [sym_atx_h2_marker] = ACTIONS(915), - [sym_atx_h3_marker] = ACTIONS(915), - [sym_atx_h4_marker] = ACTIONS(915), - [sym_atx_h5_marker] = ACTIONS(1016), - [sym_atx_h6_marker] = ACTIONS(1019), - [sym__thematic_break] = ACTIONS(1022), - [sym__list_marker_minus] = ACTIONS(932), - [sym__list_marker_plus] = ACTIONS(935), - [sym__list_marker_star] = ACTIONS(938), - [sym__list_marker_parenthesis] = ACTIONS(941), - [sym__list_marker_dot] = ACTIONS(944), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(932), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(935), - [sym__list_marker_star_dont_interrupt] = ACTIONS(938), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(941), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(944), - [sym__fenced_code_block_start_backtick] = ACTIONS(1025), - [sym__fenced_code_block_start_tilde] = ACTIONS(1028), - [sym__blank_line_start] = ACTIONS(1031), - [sym_minus_metadata] = ACTIONS(1034), - [sym__pipe_table_start] = ACTIONS(1037), - [sym__fenced_div_start] = ACTIONS(1040), - [sym_ref_id_specifier] = ACTIONS(1043), - [sym__display_math_state_track_marker] = ACTIONS(909), - [sym__inline_math_state_track_marker] = ACTIONS(909), - }, - [STATE(97)] = { - [sym__block_not_section] = STATE(95), - [sym__section5] = STATE(375), - [sym__section6] = STATE(375), - [sym_thematic_break] = STATE(95), - [sym__atx_heading5] = STATE(105), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(95), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(95), - [sym_fenced_code_block] = STATE(95), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(95), - [sym_note_definition_fenced_block] = STATE(95), - [sym__blank_line] = STATE(95), - [sym_block_quote] = STATE(95), - [sym_list] = STATE(95), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(95), - [aux_sym__section4_repeat1] = STATE(95), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(895), + [STATE(94)] = { + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(364), + [sym__section5] = STATE(364), + [sym__section6] = STATE(364), + [sym_thematic_break] = STATE(93), + [sym__atx_heading4] = STATE(101), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(93), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(93), + [sym_fenced_code_block] = STATE(93), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__blank_line] = STATE(93), + [sym_block_quote] = STATE(93), + [sym_list] = STATE(93), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(93), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15659,15 +16059,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(895), - [sym_atx_h2_marker] = ACTIONS(895), - [sym_atx_h3_marker] = ACTIONS(895), - [sym_atx_h4_marker] = ACTIONS(895), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(821), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(821), + [sym_atx_h2_marker] = ACTIONS(821), + [sym_atx_h3_marker] = ACTIONS(821), + [sym_atx_h4_marker] = ACTIONS(105), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15678,167 +16079,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1046), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(913), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(98)] = { - [sym__block_not_section] = STATE(98), - [sym__section6] = STATE(219), - [sym_thematic_break] = STATE(98), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(98), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(98), - [sym_fenced_code_block] = STATE(98), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(98), - [sym_note_definition_fenced_block] = STATE(98), - [sym__blank_line] = STATE(98), - [sym_block_quote] = STATE(98), - [sym_list] = STATE(98), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(98), - [aux_sym__section5_repeat1] = STATE(98), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [sym__word] = ACTIONS(1054), - [sym__soft_line_ending] = ACTIONS(1057), - [sym__block_close] = ACTIONS(1060), - [sym__block_quote_start] = ACTIONS(1062), - [sym__indented_chunk_start] = ACTIONS(1065), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(1060), - [sym_atx_h5_marker] = ACTIONS(1060), - [sym_atx_h6_marker] = ACTIONS(1068), - [sym__thematic_break] = ACTIONS(1071), - [sym__list_marker_minus] = ACTIONS(1074), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1080), - [sym__list_marker_parenthesis] = ACTIONS(1083), - [sym__list_marker_dot] = ACTIONS(1086), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1074), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1086), - [sym__fenced_code_block_start_backtick] = ACTIONS(1089), - [sym__fenced_code_block_start_tilde] = ACTIONS(1092), - [sym__blank_line_start] = ACTIONS(1095), - [sym_minus_metadata] = ACTIONS(1098), - [sym__pipe_table_start] = ACTIONS(1101), - [sym__fenced_div_start] = ACTIONS(1104), - [sym__fenced_div_end] = ACTIONS(1060), - [sym_ref_id_specifier] = ACTIONS(1107), - [sym__display_math_state_track_marker] = ACTIONS(1054), - [sym__inline_math_state_track_marker] = ACTIONS(1054), - }, - [STATE(99)] = { - [sym__block_not_section] = STATE(98), - [sym__section6] = STATE(219), - [sym_thematic_break] = STATE(98), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(98), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(98), - [sym_fenced_code_block] = STATE(98), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(98), - [sym_note_definition_fenced_block] = STATE(98), - [sym__blank_line] = STATE(98), - [sym_block_quote] = STATE(98), - [sym_list] = STATE(98), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(98), - [aux_sym__section5_repeat1] = STATE(98), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(95)] = { + [sym__block_not_section] = STATE(97), + [sym__section5] = STATE(240), + [sym__section6] = STATE(240), + [sym_thematic_break] = STATE(97), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(97), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(97), + [sym_fenced_code_block] = STATE(97), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(97), + [sym_note_definition_fenced_block] = STATE(97), + [sym__blank_line] = STATE(97), + [sym_block_quote] = STATE(97), + [sym_list] = STATE(97), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(97), + [aux_sym__section4_repeat1] = STATE(97), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15873,16 +16174,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1110), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1110), - [sym_atx_h2_marker] = ACTIONS(1110), - [sym_atx_h3_marker] = ACTIONS(1110), - [sym_atx_h4_marker] = ACTIONS(1110), - [sym_atx_h5_marker] = ACTIONS(1110), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(915), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(915), + [sym_atx_h2_marker] = ACTIONS(915), + [sym_atx_h3_marker] = ACTIONS(915), + [sym_atx_h4_marker] = ACTIONS(915), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -15893,60 +16194,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1112), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1110), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(917), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(915), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(100)] = { - [sym__block_not_section] = STATE(99), - [sym__section6] = STATE(219), - [sym_thematic_break] = STATE(99), - [sym__atx_heading6] = STATE(107), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(99), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(99), - [sym_fenced_code_block] = STATE(99), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(99), - [sym_note_definition_fenced_block] = STATE(99), - [sym__blank_line] = STATE(99), - [sym_block_quote] = STATE(99), - [sym_list] = STATE(99), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(99), - [aux_sym__section5_repeat1] = STATE(99), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(96)] = { + [sym__block_not_section] = STATE(95), + [sym__section5] = STATE(240), + [sym__section6] = STATE(240), + [sym_thematic_break] = STATE(95), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(95), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(95), + [sym_fenced_code_block] = STATE(95), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(95), + [sym_note_definition_fenced_block] = STATE(95), + [sym__blank_line] = STATE(95), + [sym_block_quote] = STATE(95), + [sym_list] = STATE(95), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(95), + [aux_sym__section4_repeat1] = STATE(95), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15981,16 +16290,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1114), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1114), - [sym_atx_h5_marker] = ACTIONS(1114), - [sym_atx_h6_marker] = ACTIONS(71), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(919), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(919), + [sym_atx_h2_marker] = ACTIONS(919), + [sym_atx_h3_marker] = ACTIONS(919), + [sym_atx_h4_marker] = ACTIONS(919), + [sym_atx_h5_marker] = ACTIONS(71), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16001,61 +16310,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1116), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1114), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(921), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(919), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(101)] = { - [sym__block_not_section] = STATE(104), - [sym__section6] = STATE(376), - [sym_thematic_break] = STATE(104), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(104), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(104), - [sym_fenced_code_block] = STATE(104), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(104), - [sym_note_definition_fenced_block] = STATE(104), - [sym__blank_line] = STATE(104), - [sym_block_quote] = STATE(104), - [sym_list] = STATE(104), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(104), - [aux_sym__section5_repeat1] = STATE(104), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1110), + [STATE(97)] = { + [sym__block_not_section] = STATE(97), + [sym__section5] = STATE(240), + [sym__section6] = STATE(240), + [sym_thematic_break] = STATE(97), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(97), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(97), + [sym_fenced_code_block] = STATE(97), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(97), + [sym_note_definition_fenced_block] = STATE(97), + [sym__blank_line] = STATE(97), + [sym_block_quote] = STATE(97), + [sym_list] = STATE(97), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(97), + [aux_sym__section4_repeat1] = STATE(97), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym__] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [sym__word] = ACTIONS(929), + [sym__soft_line_ending] = ACTIONS(932), + [sym__block_close] = ACTIONS(935), + [sym__block_quote_start] = ACTIONS(937), + [sym__indented_chunk_start] = ACTIONS(940), + [sym_atx_h1_marker] = ACTIONS(935), + [sym_atx_h2_marker] = ACTIONS(935), + [sym_atx_h3_marker] = ACTIONS(935), + [sym_atx_h4_marker] = ACTIONS(935), + [sym_atx_h5_marker] = ACTIONS(943), + [sym_atx_h6_marker] = ACTIONS(946), + [sym__thematic_break] = ACTIONS(949), + [sym__list_marker_minus] = ACTIONS(952), + [sym__list_marker_plus] = ACTIONS(955), + [sym__list_marker_star] = ACTIONS(958), + [sym__list_marker_parenthesis] = ACTIONS(961), + [sym__list_marker_dot] = ACTIONS(964), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(952), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(955), + [sym__list_marker_star_dont_interrupt] = ACTIONS(958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(961), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(964), + [sym__list_marker_example] = ACTIONS(967), + [sym__list_marker_example_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(970), + [sym__fenced_code_block_start_tilde] = ACTIONS(973), + [sym__blank_line_start] = ACTIONS(976), + [sym_minus_metadata] = ACTIONS(979), + [sym__pipe_table_start] = ACTIONS(982), + [sym__fenced_div_start] = ACTIONS(985), + [sym__fenced_div_end] = ACTIONS(935), + [sym_ref_id_specifier] = ACTIONS(988), + [sym__display_math_state_track_marker] = ACTIONS(929), + [sym__inline_math_state_track_marker] = ACTIONS(929), + }, + [STATE(98)] = { + [sym__block_not_section] = STATE(98), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym_thematic_break] = STATE(98), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(98), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(98), + [sym_fenced_code_block] = STATE(98), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(98), + [sym_note_definition_fenced_block] = STATE(98), + [sym__blank_line] = STATE(98), + [sym_block_quote] = STATE(98), + [sym_list] = STATE(98), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(98), + [aux_sym__section4_repeat1] = STATE(98), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym__] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [sym__word] = ACTIONS(929), + [sym__soft_line_ending] = ACTIONS(932), + [sym__block_close] = ACTIONS(935), + [sym__block_quote_start] = ACTIONS(991), + [sym__indented_chunk_start] = ACTIONS(994), + [sym_atx_h1_marker] = ACTIONS(935), + [sym_atx_h2_marker] = ACTIONS(935), + [sym_atx_h3_marker] = ACTIONS(935), + [sym_atx_h4_marker] = ACTIONS(935), + [sym_atx_h5_marker] = ACTIONS(997), + [sym_atx_h6_marker] = ACTIONS(1000), + [sym__thematic_break] = ACTIONS(1003), + [sym__list_marker_minus] = ACTIONS(952), + [sym__list_marker_plus] = ACTIONS(955), + [sym__list_marker_star] = ACTIONS(958), + [sym__list_marker_parenthesis] = ACTIONS(961), + [sym__list_marker_dot] = ACTIONS(964), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(952), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(955), + [sym__list_marker_star_dont_interrupt] = ACTIONS(958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(961), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(964), + [sym__list_marker_example] = ACTIONS(967), + [sym__list_marker_example_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(1006), + [sym__fenced_code_block_start_tilde] = ACTIONS(1009), + [sym__blank_line_start] = ACTIONS(1012), + [sym_minus_metadata] = ACTIONS(1015), + [sym__pipe_table_start] = ACTIONS(1018), + [sym__fenced_div_start] = ACTIONS(1021), + [sym_ref_id_specifier] = ACTIONS(1024), + [sym__display_math_state_track_marker] = ACTIONS(929), + [sym__inline_math_state_track_marker] = ACTIONS(929), + }, + [STATE(99)] = { + [sym__block_not_section] = STATE(102), + [sym__section5] = STATE(387), + [sym__section6] = STATE(387), + [sym_thematic_break] = STATE(102), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(102), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(102), + [sym_fenced_code_block] = STATE(102), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(102), + [sym_note_definition_fenced_block] = STATE(102), + [sym__blank_line] = STATE(102), + [sym_block_quote] = STATE(102), + [sym_list] = STATE(102), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(102), + [aux_sym__section4_repeat1] = STATE(102), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(919), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16092,11 +16640,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1110), - [sym_atx_h2_marker] = ACTIONS(1110), - [sym_atx_h3_marker] = ACTIONS(1110), - [sym_atx_h4_marker] = ACTIONS(1110), - [sym_atx_h5_marker] = ACTIONS(1110), + [sym_atx_h1_marker] = ACTIONS(919), + [sym_atx_h2_marker] = ACTIONS(919), + [sym_atx_h3_marker] = ACTIONS(919), + [sym_atx_h4_marker] = ACTIONS(919), + [sym_atx_h5_marker] = ACTIONS(25), [sym_atx_h6_marker] = ACTIONS(27), [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), @@ -16109,166 +16657,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1118), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1027), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(102)] = { - [sym__block_not_section] = STATE(102), - [sym__section6] = STATE(352), - [sym_thematic_break] = STATE(102), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(102), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(102), - [sym_fenced_code_block] = STATE(102), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(102), - [sym_note_definition_fenced_block] = STATE(102), - [sym__blank_line] = STATE(102), - [sym_block_quote] = STATE(102), - [sym_list] = STATE(102), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(102), - [aux_sym__section5_repeat1] = STATE(102), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [sym__word] = ACTIONS(1054), - [sym__soft_line_ending] = ACTIONS(1057), - [sym__block_close] = ACTIONS(1060), - [sym__block_quote_start] = ACTIONS(1120), - [sym__indented_chunk_start] = ACTIONS(1123), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(1060), - [sym_atx_h5_marker] = ACTIONS(1060), - [sym_atx_h6_marker] = ACTIONS(1126), - [sym__thematic_break] = ACTIONS(1129), - [sym__list_marker_minus] = ACTIONS(1074), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1080), - [sym__list_marker_parenthesis] = ACTIONS(1083), - [sym__list_marker_dot] = ACTIONS(1086), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1074), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1086), - [sym__fenced_code_block_start_backtick] = ACTIONS(1132), - [sym__fenced_code_block_start_tilde] = ACTIONS(1135), - [sym__blank_line_start] = ACTIONS(1138), - [sym_minus_metadata] = ACTIONS(1141), - [sym__pipe_table_start] = ACTIONS(1144), - [sym__fenced_div_start] = ACTIONS(1147), - [sym_ref_id_specifier] = ACTIONS(1150), - [sym__display_math_state_track_marker] = ACTIONS(1054), - [sym__inline_math_state_track_marker] = ACTIONS(1054), + [STATE(100)] = { + [sym__block_not_section] = STATE(100), + [sym__section5] = STATE(387), + [sym__section6] = STATE(387), + [sym_thematic_break] = STATE(100), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(100), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(100), + [sym_fenced_code_block] = STATE(100), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(100), + [sym_note_definition_fenced_block] = STATE(100), + [sym__blank_line] = STATE(100), + [sym_block_quote] = STATE(100), + [sym_list] = STATE(100), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(100), + [aux_sym__section4_repeat1] = STATE(100), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(935), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_SQUOTE] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_DOLLAR] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(926), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_STAR] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_DASH] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(926), + [anon_sym_SLASH] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LT] = ACTIONS(926), + [anon_sym_GT] = ACTIONS(926), + [anon_sym_QMARK] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_BSLASH] = ACTIONS(926), + [anon_sym_RBRACK] = ACTIONS(926), + [anon_sym_CARET] = ACTIONS(926), + [anon_sym__] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [sym__word] = ACTIONS(929), + [sym__soft_line_ending] = ACTIONS(932), + [sym__block_quote_start] = ACTIONS(1029), + [sym__indented_chunk_start] = ACTIONS(1032), + [sym_atx_h1_marker] = ACTIONS(935), + [sym_atx_h2_marker] = ACTIONS(935), + [sym_atx_h3_marker] = ACTIONS(935), + [sym_atx_h4_marker] = ACTIONS(935), + [sym_atx_h5_marker] = ACTIONS(1035), + [sym_atx_h6_marker] = ACTIONS(1038), + [sym__thematic_break] = ACTIONS(1041), + [sym__list_marker_minus] = ACTIONS(952), + [sym__list_marker_plus] = ACTIONS(955), + [sym__list_marker_star] = ACTIONS(958), + [sym__list_marker_parenthesis] = ACTIONS(961), + [sym__list_marker_dot] = ACTIONS(964), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(952), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(955), + [sym__list_marker_star_dont_interrupt] = ACTIONS(958), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(961), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(964), + [sym__list_marker_example] = ACTIONS(967), + [sym__list_marker_example_dont_interrupt] = ACTIONS(967), + [sym__fenced_code_block_start_backtick] = ACTIONS(1044), + [sym__fenced_code_block_start_tilde] = ACTIONS(1047), + [sym__blank_line_start] = ACTIONS(1050), + [sym_minus_metadata] = ACTIONS(1053), + [sym__pipe_table_start] = ACTIONS(1056), + [sym__fenced_div_start] = ACTIONS(1059), + [sym_ref_id_specifier] = ACTIONS(1062), + [sym__display_math_state_track_marker] = ACTIONS(929), + [sym__inline_math_state_track_marker] = ACTIONS(929), }, - [STATE(103)] = { - [sym__block_not_section] = STATE(106), - [sym__section6] = STATE(352), - [sym_thematic_break] = STATE(106), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(106), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(106), - [sym_fenced_code_block] = STATE(106), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(106), - [sym_note_definition_fenced_block] = STATE(106), - [sym__blank_line] = STATE(106), - [sym_block_quote] = STATE(106), - [sym_list] = STATE(106), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(106), - [aux_sym__section5_repeat1] = STATE(106), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(101)] = { + [sym__block_not_section] = STATE(103), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym_thematic_break] = STATE(103), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(103), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(103), + [sym_fenced_code_block] = STATE(103), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(103), + [sym_note_definition_fenced_block] = STATE(103), + [sym__blank_line] = STATE(103), + [sym_block_quote] = STATE(103), + [sym_list] = STATE(103), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(103), + [aux_sym__section4_repeat1] = STATE(103), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16303,16 +16867,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1114), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1114), - [sym_atx_h5_marker] = ACTIONS(1114), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(919), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(919), + [sym_atx_h2_marker] = ACTIONS(919), + [sym_atx_h3_marker] = ACTIONS(919), + [sym_atx_h4_marker] = ACTIONS(919), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16323,167 +16887,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1153), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1065), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(104)] = { - [sym__block_not_section] = STATE(104), - [sym__section6] = STATE(376), - [sym_thematic_break] = STATE(104), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(104), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(104), - [sym_fenced_code_block] = STATE(104), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(104), - [sym_note_definition_fenced_block] = STATE(104), - [sym__blank_line] = STATE(104), - [sym_block_quote] = STATE(104), - [sym_list] = STATE(104), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(104), - [aux_sym__section5_repeat1] = STATE(104), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1060), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_DASH] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1051), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1051), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_BSLASH] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1051), - [anon_sym_BQUOTE] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1051), - [sym__word] = ACTIONS(1054), - [sym__soft_line_ending] = ACTIONS(1057), - [sym__block_quote_start] = ACTIONS(1155), - [sym__indented_chunk_start] = ACTIONS(1158), - [sym_atx_h1_marker] = ACTIONS(1060), - [sym_atx_h2_marker] = ACTIONS(1060), - [sym_atx_h3_marker] = ACTIONS(1060), - [sym_atx_h4_marker] = ACTIONS(1060), - [sym_atx_h5_marker] = ACTIONS(1060), - [sym_atx_h6_marker] = ACTIONS(1161), - [sym__thematic_break] = ACTIONS(1164), - [sym__list_marker_minus] = ACTIONS(1074), - [sym__list_marker_plus] = ACTIONS(1077), - [sym__list_marker_star] = ACTIONS(1080), - [sym__list_marker_parenthesis] = ACTIONS(1083), - [sym__list_marker_dot] = ACTIONS(1086), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1074), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1077), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1080), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1086), - [sym__fenced_code_block_start_backtick] = ACTIONS(1167), - [sym__fenced_code_block_start_tilde] = ACTIONS(1170), - [sym__blank_line_start] = ACTIONS(1173), - [sym_minus_metadata] = ACTIONS(1176), - [sym__pipe_table_start] = ACTIONS(1179), - [sym__fenced_div_start] = ACTIONS(1182), - [sym_ref_id_specifier] = ACTIONS(1185), - [sym__display_math_state_track_marker] = ACTIONS(1054), - [sym__inline_math_state_track_marker] = ACTIONS(1054), - }, - [STATE(105)] = { - [sym__block_not_section] = STATE(101), - [sym__section6] = STATE(376), - [sym_thematic_break] = STATE(101), - [sym__atx_heading6] = STATE(114), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(101), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(101), - [sym_fenced_code_block] = STATE(101), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(101), - [sym_note_definition_fenced_block] = STATE(101), - [sym__blank_line] = STATE(101), - [sym_block_quote] = STATE(101), - [sym_list] = STATE(101), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(101), - [aux_sym__section5_repeat1] = STATE(101), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1114), + [STATE(102)] = { + [sym__block_not_section] = STATE(100), + [sym__section5] = STATE(387), + [sym__section6] = STATE(387), + [sym_thematic_break] = STATE(100), + [sym__atx_heading5] = STATE(107), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(100), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(100), + [sym_fenced_code_block] = STATE(100), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(100), + [sym_note_definition_fenced_block] = STATE(100), + [sym__blank_line] = STATE(100), + [sym_block_quote] = STATE(100), + [sym_list] = STATE(100), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(100), + [aux_sym__section4_repeat1] = STATE(100), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(915), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16520,11 +16985,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1114), - [sym_atx_h5_marker] = ACTIONS(1114), + [sym_atx_h1_marker] = ACTIONS(915), + [sym_atx_h2_marker] = ACTIONS(915), + [sym_atx_h3_marker] = ACTIONS(915), + [sym_atx_h4_marker] = ACTIONS(915), + [sym_atx_h5_marker] = ACTIONS(25), [sym_atx_h6_marker] = ACTIONS(27), [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), @@ -16537,59 +17002,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1188), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1067), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(106)] = { - [sym__block_not_section] = STATE(102), - [sym__section6] = STATE(352), - [sym_thematic_break] = STATE(102), - [sym__atx_heading6] = STATE(111), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(102), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(102), - [sym_fenced_code_block] = STATE(102), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(102), - [sym_note_definition_fenced_block] = STATE(102), - [sym__blank_line] = STATE(102), - [sym_block_quote] = STATE(102), - [sym_list] = STATE(102), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(102), - [aux_sym__section5_repeat1] = STATE(102), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(103)] = { + [sym__block_not_section] = STATE(98), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym_thematic_break] = STATE(98), + [sym__atx_heading5] = STATE(110), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(98), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(98), + [sym_fenced_code_block] = STATE(98), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(98), + [sym_note_definition_fenced_block] = STATE(98), + [sym__blank_line] = STATE(98), + [sym_block_quote] = STATE(98), + [sym_list] = STATE(98), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(98), + [aux_sym__section4_repeat1] = STATE(98), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16624,16 +17097,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1110), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1110), - [sym_atx_h2_marker] = ACTIONS(1110), - [sym_atx_h3_marker] = ACTIONS(1110), - [sym_atx_h4_marker] = ACTIONS(1110), - [sym_atx_h5_marker] = ACTIONS(1110), - [sym_atx_h6_marker] = ACTIONS(107), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(915), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(915), + [sym_atx_h2_marker] = ACTIONS(915), + [sym_atx_h3_marker] = ACTIONS(915), + [sym_atx_h4_marker] = ACTIONS(915), + [sym_atx_h5_marker] = ACTIONS(107), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16644,57 +17117,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1190), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1069), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(107)] = { - [sym__block_not_section] = STATE(252), - [sym_thematic_break] = STATE(252), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(252), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(252), - [sym_fenced_code_block] = STATE(252), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(252), - [sym_note_definition_fenced_block] = STATE(252), - [sym__blank_line] = STATE(252), - [sym_block_quote] = STATE(252), - [sym_list] = STATE(252), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(252), - [aux_sym_document_repeat1] = STATE(108), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(104)] = { + [sym__block_not_section] = STATE(104), + [sym__section6] = STATE(266), + [sym_thematic_break] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(104), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(104), + [sym_fenced_code_block] = STATE(104), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(104), + [sym_note_definition_fenced_block] = STATE(104), + [sym__blank_line] = STATE(104), + [sym_block_quote] = STATE(104), + [sym_list] = STATE(104), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(104), + [aux_sym__section5_repeat1] = STATE(104), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_PERCENT] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_BSLASH] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [sym__word] = ACTIONS(1077), + [sym__soft_line_ending] = ACTIONS(1080), + [sym__block_close] = ACTIONS(1083), + [sym__block_quote_start] = ACTIONS(1085), + [sym__indented_chunk_start] = ACTIONS(1088), + [sym_atx_h1_marker] = ACTIONS(1083), + [sym_atx_h2_marker] = ACTIONS(1083), + [sym_atx_h3_marker] = ACTIONS(1083), + [sym_atx_h4_marker] = ACTIONS(1083), + [sym_atx_h5_marker] = ACTIONS(1083), + [sym_atx_h6_marker] = ACTIONS(1091), + [sym__thematic_break] = ACTIONS(1094), + [sym__list_marker_minus] = ACTIONS(1097), + [sym__list_marker_plus] = ACTIONS(1100), + [sym__list_marker_star] = ACTIONS(1103), + [sym__list_marker_parenthesis] = ACTIONS(1106), + [sym__list_marker_dot] = ACTIONS(1109), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1097), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1100), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1103), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1109), + [sym__list_marker_example] = ACTIONS(1112), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1112), + [sym__fenced_code_block_start_backtick] = ACTIONS(1115), + [sym__fenced_code_block_start_tilde] = ACTIONS(1118), + [sym__blank_line_start] = ACTIONS(1121), + [sym_minus_metadata] = ACTIONS(1124), + [sym__pipe_table_start] = ACTIONS(1127), + [sym__fenced_div_start] = ACTIONS(1130), + [sym__fenced_div_end] = ACTIONS(1083), + [sym_ref_id_specifier] = ACTIONS(1133), + [sym__display_math_state_track_marker] = ACTIONS(1077), + [sym__inline_math_state_track_marker] = ACTIONS(1077), + }, + [STATE(105)] = { + [sym__block_not_section] = STATE(104), + [sym__section6] = STATE(266), + [sym_thematic_break] = STATE(104), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(104), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(104), + [sym_fenced_code_block] = STATE(104), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(104), + [sym_note_definition_fenced_block] = STATE(104), + [sym__blank_line] = STATE(104), + [sym_block_quote] = STATE(104), + [sym_list] = STATE(104), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(104), + [aux_sym__section5_repeat1] = STATE(104), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16729,16 +17324,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1192), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1192), - [sym_atx_h2_marker] = ACTIONS(1192), - [sym_atx_h3_marker] = ACTIONS(1192), - [sym_atx_h4_marker] = ACTIONS(1192), - [sym_atx_h5_marker] = ACTIONS(1192), - [sym_atx_h6_marker] = ACTIONS(1192), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(1136), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1136), + [sym_atx_h2_marker] = ACTIONS(1136), + [sym_atx_h3_marker] = ACTIONS(1136), + [sym_atx_h4_marker] = ACTIONS(1136), + [sym_atx_h5_marker] = ACTIONS(1136), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16749,58 +17344,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1194), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1192), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1138), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1136), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(108)] = { - [sym__block_not_section] = STATE(252), - [sym_thematic_break] = STATE(252), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(252), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(252), - [sym_fenced_code_block] = STATE(252), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(252), - [sym_note_definition_fenced_block] = STATE(252), - [sym__blank_line] = STATE(252), - [sym_block_quote] = STATE(252), - [sym_list] = STATE(252), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(252), - [aux_sym_document_repeat1] = STATE(109), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), + [STATE(106)] = { + [sym__block_not_section] = STATE(105), + [sym__section6] = STATE(266), + [sym_thematic_break] = STATE(105), + [sym__atx_heading6] = STATE(113), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(105), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(105), + [sym_fenced_code_block] = STATE(105), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(105), + [sym_note_definition_fenced_block] = STATE(105), + [sym__blank_line] = STATE(105), + [sym_block_quote] = STATE(105), + [sym_list] = STATE(105), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(105), + [aux_sym__section5_repeat1] = STATE(105), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16835,16 +17438,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1196), - [sym__block_quote_start] = ACTIONS(57), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1196), - [sym_atx_h2_marker] = ACTIONS(1196), - [sym_atx_h3_marker] = ACTIONS(1196), - [sym_atx_h4_marker] = ACTIONS(1196), - [sym_atx_h5_marker] = ACTIONS(1196), - [sym_atx_h6_marker] = ACTIONS(1196), - [sym__thematic_break] = ACTIONS(73), + [sym__block_close] = ACTIONS(1140), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1140), + [sym_atx_h2_marker] = ACTIONS(1140), + [sym_atx_h3_marker] = ACTIONS(1140), + [sym_atx_h4_marker] = ACTIONS(1140), + [sym_atx_h5_marker] = ACTIONS(1140), + [sym_atx_h6_marker] = ACTIONS(73), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -16855,269 +17458,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(75), - [sym__fenced_code_block_start_tilde] = ACTIONS(77), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1194), - [sym__pipe_table_start] = ACTIONS(83), - [sym__fenced_div_start] = ACTIONS(85), - [sym__fenced_div_end] = ACTIONS(1196), - [sym_ref_id_specifier] = ACTIONS(89), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1142), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1140), + [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(109)] = { - [sym__block_not_section] = STATE(252), - [sym_thematic_break] = STATE(252), - [sym__setext_heading1] = STATE(217), - [sym__setext_heading2] = STATE(221), - [sym_indented_code_block] = STATE(252), - [sym__indented_chunk] = STATE(118), - [sym_fenced_div_block] = STATE(252), - [sym_fenced_code_block] = STATE(252), - [sym_paragraph] = STATE(138), - [sym_inline_ref_def] = STATE(252), - [sym_note_definition_fenced_block] = STATE(252), - [sym__blank_line] = STATE(252), - [sym_block_quote] = STATE(252), - [sym_list] = STATE(252), - [sym__list_plus] = STATE(250), - [sym__list_minus] = STATE(250), - [sym__list_star] = STATE(250), - [sym__list_dot] = STATE(250), - [sym__list_parenthesis] = STATE(250), - [sym_list_marker_plus] = STATE(28), - [sym_list_marker_minus] = STATE(29), - [sym_list_marker_star] = STATE(30), - [sym_list_marker_dot] = STATE(31), - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_plus] = STATE(119), - [sym__list_item_minus] = STATE(120), - [sym__list_item_star] = STATE(121), - [sym__list_item_dot] = STATE(122), - [sym__list_item_parenthesis] = STATE(123), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(252), - [aux_sym_document_repeat1] = STATE(109), - [aux_sym_paragraph_repeat1] = STATE(547), - [aux_sym__list_plus_repeat1] = STATE(119), - [aux_sym__list_minus_repeat1] = STATE(120), - [aux_sym__list_star_repeat1] = STATE(121), - [aux_sym__list_dot_repeat1] = STATE(122), - [aux_sym__list_parenthesis_repeat1] = STATE(123), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym__] = ACTIONS(1201), - [anon_sym_BQUOTE] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [sym__word] = ACTIONS(1204), - [sym__soft_line_ending] = ACTIONS(1207), - [sym__block_close] = ACTIONS(1210), - [sym__block_quote_start] = ACTIONS(1212), - [sym__indented_chunk_start] = ACTIONS(1215), - [sym_atx_h1_marker] = ACTIONS(1210), - [sym_atx_h2_marker] = ACTIONS(1210), - [sym_atx_h3_marker] = ACTIONS(1210), - [sym_atx_h4_marker] = ACTIONS(1210), - [sym_atx_h5_marker] = ACTIONS(1210), - [sym_atx_h6_marker] = ACTIONS(1210), - [sym__thematic_break] = ACTIONS(1218), - [sym__list_marker_minus] = ACTIONS(1221), - [sym__list_marker_plus] = ACTIONS(1224), - [sym__list_marker_star] = ACTIONS(1227), - [sym__list_marker_parenthesis] = ACTIONS(1230), - [sym__list_marker_dot] = ACTIONS(1233), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1227), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), - [sym__fenced_code_block_start_backtick] = ACTIONS(1236), - [sym__fenced_code_block_start_tilde] = ACTIONS(1239), - [sym__blank_line_start] = ACTIONS(1242), - [sym_minus_metadata] = ACTIONS(1245), - [sym__pipe_table_start] = ACTIONS(1248), - [sym__fenced_div_start] = ACTIONS(1251), - [sym__fenced_div_end] = ACTIONS(1210), - [sym_ref_id_specifier] = ACTIONS(1254), - [sym__display_math_state_track_marker] = ACTIONS(1204), - [sym__inline_math_state_track_marker] = ACTIONS(1204), - }, - [STATE(110)] = { - [sym__block_not_section] = STATE(351), - [sym_thematic_break] = STATE(351), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(351), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(351), - [sym_fenced_code_block] = STATE(351), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__blank_line] = STATE(351), - [sym_block_quote] = STATE(351), - [sym_list] = STATE(351), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(351), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1210), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym__] = ACTIONS(1201), - [anon_sym_BQUOTE] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [sym__word] = ACTIONS(1204), - [sym__soft_line_ending] = ACTIONS(1207), - [sym__block_quote_start] = ACTIONS(1257), - [sym__indented_chunk_start] = ACTIONS(1260), - [sym_atx_h1_marker] = ACTIONS(1210), - [sym_atx_h2_marker] = ACTIONS(1210), - [sym_atx_h3_marker] = ACTIONS(1210), - [sym_atx_h4_marker] = ACTIONS(1210), - [sym_atx_h5_marker] = ACTIONS(1210), - [sym_atx_h6_marker] = ACTIONS(1210), - [sym__thematic_break] = ACTIONS(1263), - [sym__list_marker_minus] = ACTIONS(1221), - [sym__list_marker_plus] = ACTIONS(1224), - [sym__list_marker_star] = ACTIONS(1227), - [sym__list_marker_parenthesis] = ACTIONS(1230), - [sym__list_marker_dot] = ACTIONS(1233), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1227), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), - [sym__fenced_code_block_start_backtick] = ACTIONS(1266), - [sym__fenced_code_block_start_tilde] = ACTIONS(1269), - [sym__blank_line_start] = ACTIONS(1272), - [sym_minus_metadata] = ACTIONS(1275), - [sym__pipe_table_start] = ACTIONS(1278), - [sym__fenced_div_start] = ACTIONS(1281), - [sym_ref_id_specifier] = ACTIONS(1284), - [sym__display_math_state_track_marker] = ACTIONS(1204), - [sym__inline_math_state_track_marker] = ACTIONS(1204), - }, - [STATE(111)] = { - [sym__block_not_section] = STATE(329), - [sym_thematic_break] = STATE(329), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(329), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(329), - [sym_fenced_code_block] = STATE(329), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(329), - [sym_note_definition_fenced_block] = STATE(329), - [sym__blank_line] = STATE(329), - [sym_block_quote] = STATE(329), - [sym_list] = STATE(329), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(329), - [aux_sym_document_repeat1] = STATE(115), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(107)] = { + [sym__block_not_section] = STATE(111), + [sym__section6] = STATE(388), + [sym_thematic_break] = STATE(111), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(111), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(111), + [sym_fenced_code_block] = STATE(111), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(111), + [sym_note_definition_fenced_block] = STATE(111), + [sym__blank_line] = STATE(111), + [sym_block_quote] = STATE(111), + [sym_list] = STATE(111), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(111), + [aux_sym__section5_repeat1] = STATE(111), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(1140), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17152,16 +17553,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1192), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1192), - [sym_atx_h2_marker] = ACTIONS(1192), - [sym_atx_h3_marker] = ACTIONS(1192), - [sym_atx_h4_marker] = ACTIONS(1192), - [sym_atx_h5_marker] = ACTIONS(1192), - [sym_atx_h6_marker] = ACTIONS(1192), - [sym__thematic_break] = ACTIONS(109), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1140), + [sym_atx_h2_marker] = ACTIONS(1140), + [sym_atx_h3_marker] = ACTIONS(1140), + [sym_atx_h4_marker] = ACTIONS(1140), + [sym_atx_h5_marker] = ACTIONS(1140), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -17172,163 +17572,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1287), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1144), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(112)] = { - [sym__block_not_section] = STATE(329), - [sym_thematic_break] = STATE(329), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(329), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(329), - [sym_fenced_code_block] = STATE(329), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(329), - [sym_note_definition_fenced_block] = STATE(329), - [sym__blank_line] = STATE(329), - [sym_block_quote] = STATE(329), - [sym_list] = STATE(329), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(329), - [aux_sym_document_repeat1] = STATE(112), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1198), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_DOLLAR] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_SLASH] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym__] = ACTIONS(1201), - [anon_sym_BQUOTE] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [sym__word] = ACTIONS(1204), - [sym__soft_line_ending] = ACTIONS(1207), - [sym__block_close] = ACTIONS(1210), - [sym__block_quote_start] = ACTIONS(1289), - [sym__indented_chunk_start] = ACTIONS(1292), - [sym_atx_h1_marker] = ACTIONS(1210), - [sym_atx_h2_marker] = ACTIONS(1210), - [sym_atx_h3_marker] = ACTIONS(1210), - [sym_atx_h4_marker] = ACTIONS(1210), - [sym_atx_h5_marker] = ACTIONS(1210), - [sym_atx_h6_marker] = ACTIONS(1210), - [sym__thematic_break] = ACTIONS(1295), - [sym__list_marker_minus] = ACTIONS(1221), - [sym__list_marker_plus] = ACTIONS(1224), - [sym__list_marker_star] = ACTIONS(1227), - [sym__list_marker_parenthesis] = ACTIONS(1230), - [sym__list_marker_dot] = ACTIONS(1233), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1221), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1227), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1230), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1233), - [sym__fenced_code_block_start_backtick] = ACTIONS(1298), - [sym__fenced_code_block_start_tilde] = ACTIONS(1301), - [sym__blank_line_start] = ACTIONS(1304), - [sym_minus_metadata] = ACTIONS(1307), - [sym__pipe_table_start] = ACTIONS(1310), - [sym__fenced_div_start] = ACTIONS(1313), - [sym_ref_id_specifier] = ACTIONS(1316), - [sym__display_math_state_track_marker] = ACTIONS(1204), - [sym__inline_math_state_track_marker] = ACTIONS(1204), + [STATE(108)] = { + [sym__block_not_section] = STATE(108), + [sym__section6] = STATE(388), + [sym_thematic_break] = STATE(108), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(108), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(108), + [sym_fenced_code_block] = STATE(108), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(108), + [sym_note_definition_fenced_block] = STATE(108), + [sym__blank_line] = STATE(108), + [sym_block_quote] = STATE(108), + [sym_list] = STATE(108), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(108), + [aux_sym__section5_repeat1] = STATE(108), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(1083), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_PERCENT] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_BSLASH] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [sym__word] = ACTIONS(1077), + [sym__soft_line_ending] = ACTIONS(1080), + [sym__block_quote_start] = ACTIONS(1146), + [sym__indented_chunk_start] = ACTIONS(1149), + [sym_atx_h1_marker] = ACTIONS(1083), + [sym_atx_h2_marker] = ACTIONS(1083), + [sym_atx_h3_marker] = ACTIONS(1083), + [sym_atx_h4_marker] = ACTIONS(1083), + [sym_atx_h5_marker] = ACTIONS(1083), + [sym_atx_h6_marker] = ACTIONS(1152), + [sym__thematic_break] = ACTIONS(1155), + [sym__list_marker_minus] = ACTIONS(1097), + [sym__list_marker_plus] = ACTIONS(1100), + [sym__list_marker_star] = ACTIONS(1103), + [sym__list_marker_parenthesis] = ACTIONS(1106), + [sym__list_marker_dot] = ACTIONS(1109), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1097), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1100), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1103), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1109), + [sym__list_marker_example] = ACTIONS(1112), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1112), + [sym__fenced_code_block_start_backtick] = ACTIONS(1158), + [sym__fenced_code_block_start_tilde] = ACTIONS(1161), + [sym__blank_line_start] = ACTIONS(1164), + [sym_minus_metadata] = ACTIONS(1167), + [sym__pipe_table_start] = ACTIONS(1170), + [sym__fenced_div_start] = ACTIONS(1173), + [sym_ref_id_specifier] = ACTIONS(1176), + [sym__display_math_state_track_marker] = ACTIONS(1077), + [sym__inline_math_state_track_marker] = ACTIONS(1077), }, - [STATE(113)] = { - [sym__block_not_section] = STATE(351), - [sym_thematic_break] = STATE(351), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(351), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(351), - [sym_fenced_code_block] = STATE(351), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__blank_line] = STATE(351), - [sym_block_quote] = STATE(351), - [sym_list] = STATE(351), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(351), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1196), + [STATE(109)] = { + [sym__block_not_section] = STATE(109), + [sym__section6] = STATE(366), + [sym_thematic_break] = STATE(109), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(109), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(109), + [sym_fenced_code_block] = STATE(109), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(109), + [sym_note_definition_fenced_block] = STATE(109), + [sym__blank_line] = STATE(109), + [sym_block_quote] = STATE(109), + [sym_list] = STATE(109), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(109), + [aux_sym__section5_repeat1] = STATE(109), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1071), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_SQUOTE] = ACTIONS(1074), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_PERCENT] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1074), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_COMMA] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_SLASH] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_LT] = ACTIONS(1074), + [anon_sym_GT] = ACTIONS(1074), + [anon_sym_QMARK] = ACTIONS(1074), + [anon_sym_AT] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(1074), + [anon_sym_BSLASH] = ACTIONS(1074), + [anon_sym_RBRACK] = ACTIONS(1074), + [anon_sym_CARET] = ACTIONS(1074), + [anon_sym__] = ACTIONS(1074), + [anon_sym_BQUOTE] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1074), + [anon_sym_TILDE] = ACTIONS(1074), + [sym__word] = ACTIONS(1077), + [sym__soft_line_ending] = ACTIONS(1080), + [sym__block_close] = ACTIONS(1083), + [sym__block_quote_start] = ACTIONS(1179), + [sym__indented_chunk_start] = ACTIONS(1182), + [sym_atx_h1_marker] = ACTIONS(1083), + [sym_atx_h2_marker] = ACTIONS(1083), + [sym_atx_h3_marker] = ACTIONS(1083), + [sym_atx_h4_marker] = ACTIONS(1083), + [sym_atx_h5_marker] = ACTIONS(1083), + [sym_atx_h6_marker] = ACTIONS(1185), + [sym__thematic_break] = ACTIONS(1188), + [sym__list_marker_minus] = ACTIONS(1097), + [sym__list_marker_plus] = ACTIONS(1100), + [sym__list_marker_star] = ACTIONS(1103), + [sym__list_marker_parenthesis] = ACTIONS(1106), + [sym__list_marker_dot] = ACTIONS(1109), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1097), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1100), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1103), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1106), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1109), + [sym__list_marker_example] = ACTIONS(1112), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1112), + [sym__fenced_code_block_start_backtick] = ACTIONS(1191), + [sym__fenced_code_block_start_tilde] = ACTIONS(1194), + [sym__blank_line_start] = ACTIONS(1197), + [sym_minus_metadata] = ACTIONS(1200), + [sym__pipe_table_start] = ACTIONS(1203), + [sym__fenced_div_start] = ACTIONS(1206), + [sym_ref_id_specifier] = ACTIONS(1209), + [sym__display_math_state_track_marker] = ACTIONS(1077), + [sym__inline_math_state_track_marker] = ACTIONS(1077), + }, + [STATE(110)] = { + [sym__block_not_section] = STATE(112), + [sym__section6] = STATE(366), + [sym_thematic_break] = STATE(112), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(112), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(112), + [sym_fenced_code_block] = STATE(112), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(112), + [sym_note_definition_fenced_block] = STATE(112), + [sym__blank_line] = STATE(112), + [sym_block_quote] = STATE(112), + [sym_list] = STATE(112), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(112), + [aux_sym__section5_repeat1] = STATE(112), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17363,15 +17891,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_quote_start] = ACTIONS(13), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1196), - [sym_atx_h2_marker] = ACTIONS(1196), - [sym_atx_h3_marker] = ACTIONS(1196), - [sym_atx_h4_marker] = ACTIONS(1196), - [sym_atx_h5_marker] = ACTIONS(1196), - [sym_atx_h6_marker] = ACTIONS(1196), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(1140), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1140), + [sym_atx_h2_marker] = ACTIONS(1140), + [sym_atx_h3_marker] = ACTIONS(1140), + [sym_atx_h4_marker] = ACTIONS(1140), + [sym_atx_h5_marker] = ACTIONS(1140), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -17382,58 +17911,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1212), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(114)] = { - [sym__block_not_section] = STATE(351), - [sym_thematic_break] = STATE(351), - [sym__setext_heading1] = STATE(390), - [sym__setext_heading2] = STATE(394), - [sym_indented_code_block] = STATE(351), - [sym__indented_chunk] = STATE(130), - [sym_fenced_div_block] = STATE(351), - [sym_fenced_code_block] = STATE(351), - [sym_paragraph] = STATE(173), - [sym_inline_ref_def] = STATE(351), - [sym_note_definition_fenced_block] = STATE(351), - [sym__blank_line] = STATE(351), - [sym_block_quote] = STATE(351), - [sym_list] = STATE(351), - [sym__list_plus] = STATE(418), - [sym__list_minus] = STATE(418), - [sym__list_star] = STATE(418), - [sym__list_dot] = STATE(418), - [sym__list_parenthesis] = STATE(418), - [sym_list_marker_plus] = STATE(27), - [sym_list_marker_minus] = STATE(3), - [sym_list_marker_star] = STATE(4), - [sym_list_marker_dot] = STATE(5), - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_plus] = STATE(153), - [sym__list_item_minus] = STATE(155), - [sym__list_item_star] = STATE(156), - [sym__list_item_dot] = STATE(157), - [sym__list_item_parenthesis] = STATE(158), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(351), - [aux_sym_document_repeat1] = STATE(113), - [aux_sym_paragraph_repeat1] = STATE(537), - [aux_sym__list_plus_repeat1] = STATE(153), - [aux_sym__list_minus_repeat1] = STATE(155), - [aux_sym__list_star_repeat1] = STATE(156), - [aux_sym__list_dot_repeat1] = STATE(157), - [aux_sym__list_parenthesis_repeat1] = STATE(158), - [ts_builtin_sym_end] = ACTIONS(1192), + [STATE(111)] = { + [sym__block_not_section] = STATE(108), + [sym__section6] = STATE(388), + [sym_thematic_break] = STATE(108), + [sym__atx_heading6] = STATE(118), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(108), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(108), + [sym_fenced_code_block] = STATE(108), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(108), + [sym_note_definition_fenced_block] = STATE(108), + [sym__blank_line] = STATE(108), + [sym_block_quote] = STATE(108), + [sym_list] = STATE(108), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(108), + [aux_sym__section5_repeat1] = STATE(108), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(1136), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17470,12 +18007,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(11), [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1192), - [sym_atx_h2_marker] = ACTIONS(1192), - [sym_atx_h3_marker] = ACTIONS(1192), - [sym_atx_h4_marker] = ACTIONS(1192), - [sym_atx_h5_marker] = ACTIONS(1192), - [sym_atx_h6_marker] = ACTIONS(1192), + [sym_atx_h1_marker] = ACTIONS(1136), + [sym_atx_h2_marker] = ACTIONS(1136), + [sym_atx_h3_marker] = ACTIONS(1136), + [sym_atx_h4_marker] = ACTIONS(1136), + [sym_atx_h5_marker] = ACTIONS(1136), + [sym_atx_h6_marker] = ACTIONS(27), [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), @@ -17487,57 +18024,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(41), - [sym__fenced_code_block_start_tilde] = ACTIONS(43), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(360), - [sym__pipe_table_start] = ACTIONS(49), - [sym__fenced_div_start] = ACTIONS(51), - [sym_ref_id_specifier] = ACTIONS(53), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1214), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(115)] = { - [sym__block_not_section] = STATE(329), - [sym_thematic_break] = STATE(329), - [sym__setext_heading1] = STATE(333), - [sym__setext_heading2] = STATE(334), - [sym_indented_code_block] = STATE(329), - [sym__indented_chunk] = STATE(137), - [sym_fenced_div_block] = STATE(329), - [sym_fenced_code_block] = STATE(329), - [sym_paragraph] = STATE(166), - [sym_inline_ref_def] = STATE(329), - [sym_note_definition_fenced_block] = STATE(329), - [sym__blank_line] = STATE(329), - [sym_block_quote] = STATE(329), - [sym_list] = STATE(329), - [sym__list_plus] = STATE(335), - [sym__list_minus] = STATE(335), - [sym__list_star] = STATE(335), - [sym__list_dot] = STATE(335), - [sym__list_parenthesis] = STATE(335), - [sym_list_marker_plus] = STATE(22), - [sym_list_marker_minus] = STATE(23), - [sym_list_marker_star] = STATE(24), - [sym_list_marker_dot] = STATE(25), - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_plus] = STATE(140), - [sym__list_item_minus] = STATE(141), - [sym__list_item_star] = STATE(142), - [sym__list_item_dot] = STATE(143), - [sym__list_item_parenthesis] = STATE(150), - [sym__soft_line_break] = STATE(632), - [sym__line] = STATE(632), - [sym__whitespace] = STATE(579), - [sym_pipe_table] = STATE(329), - [aux_sym_document_repeat1] = STATE(112), - [aux_sym_paragraph_repeat1] = STATE(536), - [aux_sym__list_plus_repeat1] = STATE(140), - [aux_sym__list_minus_repeat1] = STATE(141), - [aux_sym__list_star_repeat1] = STATE(142), - [aux_sym__list_dot_repeat1] = STATE(143), - [aux_sym__list_parenthesis_repeat1] = STATE(150), + [STATE(112)] = { + [sym__block_not_section] = STATE(109), + [sym__section6] = STATE(366), + [sym_thematic_break] = STATE(109), + [sym__atx_heading6] = STATE(121), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(109), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(109), + [sym_fenced_code_block] = STATE(109), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(109), + [sym_note_definition_fenced_block] = STATE(109), + [sym__blank_line] = STATE(109), + [sym_block_quote] = STATE(109), + [sym_list] = STATE(109), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(109), + [aux_sym__section5_repeat1] = STATE(109), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17572,16 +18117,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(7), [sym__word] = ACTIONS(9), [sym__soft_line_ending] = ACTIONS(11), - [sym__block_close] = ACTIONS(1196), - [sym__block_quote_start] = ACTIONS(93), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1196), - [sym_atx_h2_marker] = ACTIONS(1196), - [sym_atx_h3_marker] = ACTIONS(1196), - [sym_atx_h4_marker] = ACTIONS(1196), - [sym_atx_h5_marker] = ACTIONS(1196), - [sym_atx_h6_marker] = ACTIONS(1196), - [sym__thematic_break] = ACTIONS(109), + [sym__block_close] = ACTIONS(1136), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1136), + [sym_atx_h2_marker] = ACTIONS(1136), + [sym_atx_h3_marker] = ACTIONS(1136), + [sym_atx_h4_marker] = ACTIONS(1136), + [sym_atx_h5_marker] = ACTIONS(1136), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -17592,2483 +18137,1450 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(111), - [sym__fenced_code_block_start_tilde] = ACTIONS(113), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1287), - [sym__pipe_table_start] = ACTIONS(119), - [sym__fenced_div_start] = ACTIONS(121), - [sym_ref_id_specifier] = ACTIONS(123), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1216), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(116)] = { - [sym__indented_chunk] = STATE(129), - [sym__blank_line] = STATE(129), - [aux_sym_indented_code_block_repeat1] = STATE(129), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym__] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [sym__word] = ACTIONS(1319), - [sym__soft_line_ending] = ACTIONS(1319), - [sym__block_close] = ACTIONS(1319), - [sym__block_quote_start] = ACTIONS(1319), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1319), - [sym_atx_h2_marker] = ACTIONS(1319), - [sym_atx_h3_marker] = ACTIONS(1319), - [sym_atx_h4_marker] = ACTIONS(1319), - [sym_atx_h5_marker] = ACTIONS(1319), - [sym_atx_h6_marker] = ACTIONS(1319), - [sym__thematic_break] = ACTIONS(1319), - [sym__list_marker_minus] = ACTIONS(1319), - [sym__list_marker_plus] = ACTIONS(1319), - [sym__list_marker_star] = ACTIONS(1319), - [sym__list_marker_parenthesis] = ACTIONS(1319), - [sym__list_marker_dot] = ACTIONS(1319), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1319), - [sym__fenced_code_block_start_backtick] = ACTIONS(1319), - [sym__fenced_code_block_start_tilde] = ACTIONS(1319), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1319), - [sym__pipe_table_start] = ACTIONS(1319), - [sym__fenced_div_start] = ACTIONS(1319), - [sym__fenced_div_end] = ACTIONS(1319), - [sym_ref_id_specifier] = ACTIONS(1319), - [sym__display_math_state_track_marker] = ACTIONS(1319), - [sym__inline_math_state_track_marker] = ACTIONS(1319), - }, - [STATE(117)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym__block_close] = ACTIONS(1321), - [sym_block_continuation] = ACTIONS(1323), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym_setext_h1_underline] = ACTIONS(1321), - [sym_setext_h2_underline] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym__fenced_div_end] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), - }, - [STATE(118)] = { - [sym__indented_chunk] = STATE(116), - [sym__blank_line] = STATE(116), - [aux_sym_indented_code_block_repeat1] = STATE(116), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1325), - [anon_sym_RBRACK] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym__] = ACTIONS(1325), - [anon_sym_BQUOTE] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [sym__word] = ACTIONS(1325), - [sym__soft_line_ending] = ACTIONS(1325), - [sym__block_close] = ACTIONS(1325), - [sym__block_quote_start] = ACTIONS(1325), - [sym__indented_chunk_start] = ACTIONS(59), - [sym_atx_h1_marker] = ACTIONS(1325), - [sym_atx_h2_marker] = ACTIONS(1325), - [sym_atx_h3_marker] = ACTIONS(1325), - [sym_atx_h4_marker] = ACTIONS(1325), - [sym_atx_h5_marker] = ACTIONS(1325), - [sym_atx_h6_marker] = ACTIONS(1325), - [sym__thematic_break] = ACTIONS(1325), - [sym__list_marker_minus] = ACTIONS(1325), - [sym__list_marker_plus] = ACTIONS(1325), - [sym__list_marker_star] = ACTIONS(1325), - [sym__list_marker_parenthesis] = ACTIONS(1325), - [sym__list_marker_dot] = ACTIONS(1325), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1325), - [sym__fenced_code_block_start_backtick] = ACTIONS(1325), - [sym__fenced_code_block_start_tilde] = ACTIONS(1325), - [sym__blank_line_start] = ACTIONS(79), - [sym_minus_metadata] = ACTIONS(1325), - [sym__pipe_table_start] = ACTIONS(1325), - [sym__fenced_div_start] = ACTIONS(1325), - [sym__fenced_div_end] = ACTIONS(1325), - [sym_ref_id_specifier] = ACTIONS(1325), - [sym__display_math_state_track_marker] = ACTIONS(1325), - [sym__inline_math_state_track_marker] = ACTIONS(1325), - }, - [STATE(119)] = { - [sym_list_marker_plus] = STATE(28), - [sym__list_item_plus] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(124), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym__] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [sym__word] = ACTIONS(1327), - [sym__soft_line_ending] = ACTIONS(1327), - [sym__block_close] = ACTIONS(1327), - [sym__block_quote_start] = ACTIONS(1327), - [sym__indented_chunk_start] = ACTIONS(1327), - [sym_atx_h1_marker] = ACTIONS(1327), - [sym_atx_h2_marker] = ACTIONS(1327), - [sym_atx_h3_marker] = ACTIONS(1327), - [sym_atx_h4_marker] = ACTIONS(1327), - [sym_atx_h5_marker] = ACTIONS(1327), - [sym_atx_h6_marker] = ACTIONS(1327), - [sym__thematic_break] = ACTIONS(1327), - [sym__list_marker_minus] = ACTIONS(1327), - [sym__list_marker_plus] = ACTIONS(33), - [sym__list_marker_star] = ACTIONS(1327), - [sym__list_marker_parenthesis] = ACTIONS(1327), - [sym__list_marker_dot] = ACTIONS(1327), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1327), - [sym__fenced_code_block_start_backtick] = ACTIONS(1327), - [sym__fenced_code_block_start_tilde] = ACTIONS(1327), - [sym__blank_line_start] = ACTIONS(1327), - [sym_minus_metadata] = ACTIONS(1327), - [sym__pipe_table_start] = ACTIONS(1327), - [sym__fenced_div_start] = ACTIONS(1327), - [sym__fenced_div_end] = ACTIONS(1327), - [sym_ref_id_specifier] = ACTIONS(1327), - [sym__display_math_state_track_marker] = ACTIONS(1327), - [sym__inline_math_state_track_marker] = ACTIONS(1327), - }, - [STATE(120)] = { - [sym_list_marker_minus] = STATE(29), - [sym__list_item_minus] = STATE(125), - [aux_sym__list_minus_repeat1] = STATE(125), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1329), - [anon_sym_BQUOTE] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [sym__word] = ACTIONS(1329), - [sym__soft_line_ending] = ACTIONS(1329), - [sym__block_close] = ACTIONS(1329), - [sym__block_quote_start] = ACTIONS(1329), - [sym__indented_chunk_start] = ACTIONS(1329), - [sym_atx_h1_marker] = ACTIONS(1329), - [sym_atx_h2_marker] = ACTIONS(1329), - [sym_atx_h3_marker] = ACTIONS(1329), - [sym_atx_h4_marker] = ACTIONS(1329), - [sym_atx_h5_marker] = ACTIONS(1329), - [sym_atx_h6_marker] = ACTIONS(1329), - [sym__thematic_break] = ACTIONS(1329), + [STATE(113)] = { + [sym__block_not_section] = STATE(228), + [sym_thematic_break] = STATE(228), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(228), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(228), + [sym_fenced_code_block] = STATE(228), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(228), + [sym_note_definition_fenced_block] = STATE(228), + [sym__blank_line] = STATE(228), + [sym_block_quote] = STATE(228), + [sym_list] = STATE(228), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(228), + [aux_sym_document_repeat1] = STATE(114), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1218), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), - [sym__list_marker_plus] = ACTIONS(1329), - [sym__list_marker_star] = ACTIONS(1329), - [sym__list_marker_parenthesis] = ACTIONS(1329), - [sym__list_marker_dot] = ACTIONS(1329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1329), - [sym__fenced_code_block_start_backtick] = ACTIONS(1329), - [sym__fenced_code_block_start_tilde] = ACTIONS(1329), - [sym__blank_line_start] = ACTIONS(1329), - [sym_minus_metadata] = ACTIONS(1329), - [sym__pipe_table_start] = ACTIONS(1329), - [sym__fenced_div_start] = ACTIONS(1329), - [sym__fenced_div_end] = ACTIONS(1329), - [sym_ref_id_specifier] = ACTIONS(1329), - [sym__display_math_state_track_marker] = ACTIONS(1329), - [sym__inline_math_state_track_marker] = ACTIONS(1329), - }, - [STATE(121)] = { - [sym_list_marker_star] = STATE(30), - [sym__list_item_star] = STATE(126), - [aux_sym__list_star_repeat1] = STATE(126), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [sym__word] = ACTIONS(1331), - [sym__soft_line_ending] = ACTIONS(1331), - [sym__block_close] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(1331), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), + [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_star_dont_interrupt] = ACTIONS(35), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(1331), - [sym_minus_metadata] = ACTIONS(1331), - [sym__pipe_table_start] = ACTIONS(1331), - [sym__fenced_div_start] = ACTIONS(1331), - [sym__fenced_div_end] = ACTIONS(1331), - [sym_ref_id_specifier] = ACTIONS(1331), - [sym__display_math_state_track_marker] = ACTIONS(1331), - [sym__inline_math_state_track_marker] = ACTIONS(1331), - }, - [STATE(122)] = { - [sym_list_marker_dot] = STATE(31), - [sym__list_item_dot] = STATE(127), - [aux_sym__list_dot_repeat1] = STATE(127), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_AT] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1333), - [anon_sym_BQUOTE] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [sym__word] = ACTIONS(1333), - [sym__soft_line_ending] = ACTIONS(1333), - [sym__block_close] = ACTIONS(1333), - [sym__block_quote_start] = ACTIONS(1333), - [sym__indented_chunk_start] = ACTIONS(1333), - [sym_atx_h1_marker] = ACTIONS(1333), - [sym_atx_h2_marker] = ACTIONS(1333), - [sym_atx_h3_marker] = ACTIONS(1333), - [sym_atx_h4_marker] = ACTIONS(1333), - [sym_atx_h5_marker] = ACTIONS(1333), - [sym_atx_h6_marker] = ACTIONS(1333), - [sym__thematic_break] = ACTIONS(1333), - [sym__list_marker_minus] = ACTIONS(1333), - [sym__list_marker_plus] = ACTIONS(1333), - [sym__list_marker_star] = ACTIONS(1333), - [sym__list_marker_parenthesis] = ACTIONS(1333), + [sym__list_marker_parenthesis] = ACTIONS(37), [sym__list_marker_dot] = ACTIONS(39), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(1333), - [sym__fenced_code_block_start_tilde] = ACTIONS(1333), - [sym__blank_line_start] = ACTIONS(1333), - [sym_minus_metadata] = ACTIONS(1333), - [sym__pipe_table_start] = ACTIONS(1333), - [sym__fenced_div_start] = ACTIONS(1333), - [sym__fenced_div_end] = ACTIONS(1333), - [sym_ref_id_specifier] = ACTIONS(1333), - [sym__display_math_state_track_marker] = ACTIONS(1333), - [sym__inline_math_state_track_marker] = ACTIONS(1333), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1220), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1218), + [sym_ref_id_specifier] = ACTIONS(91), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(123)] = { - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_parenthesis] = STATE(128), - [aux_sym__list_parenthesis_repeat1] = STATE(128), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [sym__word] = ACTIONS(1335), - [sym__soft_line_ending] = ACTIONS(1335), - [sym__block_close] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), + [STATE(114)] = { + [sym__block_not_section] = STATE(228), + [sym_thematic_break] = STATE(228), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(228), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(228), + [sym_fenced_code_block] = STATE(228), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(228), + [sym_note_definition_fenced_block] = STATE(228), + [sym__blank_line] = STATE(228), + [sym_block_quote] = STATE(228), + [sym_list] = STATE(228), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(228), + [aux_sym_document_repeat1] = STATE(115), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1222), + [sym__block_quote_start] = ACTIONS(59), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1222), + [sym_atx_h2_marker] = ACTIONS(1222), + [sym_atx_h3_marker] = ACTIONS(1222), + [sym_atx_h4_marker] = ACTIONS(1222), + [sym_atx_h5_marker] = ACTIONS(1222), + [sym_atx_h6_marker] = ACTIONS(1222), + [sym__thematic_break] = ACTIONS(75), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), [sym__list_marker_parenthesis] = ACTIONS(37), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym_minus_metadata] = ACTIONS(1335), - [sym__pipe_table_start] = ACTIONS(1335), - [sym__fenced_div_start] = ACTIONS(1335), - [sym__fenced_div_end] = ACTIONS(1335), - [sym_ref_id_specifier] = ACTIONS(1335), - [sym__display_math_state_track_marker] = ACTIONS(1335), - [sym__inline_math_state_track_marker] = ACTIONS(1335), - }, - [STATE(124)] = { - [sym_list_marker_plus] = STATE(28), - [sym__list_item_plus] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(124), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1337), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [sym__word] = ACTIONS(1337), - [sym__soft_line_ending] = ACTIONS(1337), - [sym__block_close] = ACTIONS(1337), - [sym__block_quote_start] = ACTIONS(1337), - [sym__indented_chunk_start] = ACTIONS(1337), - [sym_atx_h1_marker] = ACTIONS(1337), - [sym_atx_h2_marker] = ACTIONS(1337), - [sym_atx_h3_marker] = ACTIONS(1337), - [sym_atx_h4_marker] = ACTIONS(1337), - [sym_atx_h5_marker] = ACTIONS(1337), - [sym_atx_h6_marker] = ACTIONS(1337), - [sym__thematic_break] = ACTIONS(1337), - [sym__list_marker_minus] = ACTIONS(1337), - [sym__list_marker_plus] = ACTIONS(1339), - [sym__list_marker_star] = ACTIONS(1337), - [sym__list_marker_parenthesis] = ACTIONS(1337), - [sym__list_marker_dot] = ACTIONS(1337), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1339), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1337), - [sym__fenced_code_block_start_backtick] = ACTIONS(1337), - [sym__fenced_code_block_start_tilde] = ACTIONS(1337), - [sym__blank_line_start] = ACTIONS(1337), - [sym_minus_metadata] = ACTIONS(1337), - [sym__pipe_table_start] = ACTIONS(1337), - [sym__fenced_div_start] = ACTIONS(1337), - [sym__fenced_div_end] = ACTIONS(1337), - [sym_ref_id_specifier] = ACTIONS(1337), - [sym__display_math_state_track_marker] = ACTIONS(1337), - [sym__inline_math_state_track_marker] = ACTIONS(1337), - }, - [STATE(125)] = { - [sym_list_marker_minus] = STATE(29), - [sym__list_item_minus] = STATE(125), - [aux_sym__list_minus_repeat1] = STATE(125), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym__] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [sym__word] = ACTIONS(1342), - [sym__soft_line_ending] = ACTIONS(1342), - [sym__block_close] = ACTIONS(1342), - [sym__block_quote_start] = ACTIONS(1342), - [sym__indented_chunk_start] = ACTIONS(1342), - [sym_atx_h1_marker] = ACTIONS(1342), - [sym_atx_h2_marker] = ACTIONS(1342), - [sym_atx_h3_marker] = ACTIONS(1342), - [sym_atx_h4_marker] = ACTIONS(1342), - [sym_atx_h5_marker] = ACTIONS(1342), - [sym_atx_h6_marker] = ACTIONS(1342), - [sym__thematic_break] = ACTIONS(1342), - [sym__list_marker_minus] = ACTIONS(1344), - [sym__list_marker_plus] = ACTIONS(1342), - [sym__list_marker_star] = ACTIONS(1342), - [sym__list_marker_parenthesis] = ACTIONS(1342), - [sym__list_marker_dot] = ACTIONS(1342), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), - [sym__fenced_code_block_start_backtick] = ACTIONS(1342), - [sym__fenced_code_block_start_tilde] = ACTIONS(1342), - [sym__blank_line_start] = ACTIONS(1342), - [sym_minus_metadata] = ACTIONS(1342), - [sym__pipe_table_start] = ACTIONS(1342), - [sym__fenced_div_start] = ACTIONS(1342), - [sym__fenced_div_end] = ACTIONS(1342), - [sym_ref_id_specifier] = ACTIONS(1342), - [sym__display_math_state_track_marker] = ACTIONS(1342), - [sym__inline_math_state_track_marker] = ACTIONS(1342), - }, - [STATE(126)] = { - [sym_list_marker_star] = STATE(30), - [sym__list_item_star] = STATE(126), - [aux_sym__list_star_repeat1] = STATE(126), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_EQ] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym__] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [sym__word] = ACTIONS(1347), - [sym__soft_line_ending] = ACTIONS(1347), - [sym__block_close] = ACTIONS(1347), - [sym__block_quote_start] = ACTIONS(1347), - [sym__indented_chunk_start] = ACTIONS(1347), - [sym_atx_h1_marker] = ACTIONS(1347), - [sym_atx_h2_marker] = ACTIONS(1347), - [sym_atx_h3_marker] = ACTIONS(1347), - [sym_atx_h4_marker] = ACTIONS(1347), - [sym_atx_h5_marker] = ACTIONS(1347), - [sym_atx_h6_marker] = ACTIONS(1347), - [sym__thematic_break] = ACTIONS(1347), - [sym__list_marker_minus] = ACTIONS(1347), - [sym__list_marker_plus] = ACTIONS(1347), - [sym__list_marker_star] = ACTIONS(1349), - [sym__list_marker_parenthesis] = ACTIONS(1347), - [sym__list_marker_dot] = ACTIONS(1347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1347), - [sym__fenced_code_block_start_backtick] = ACTIONS(1347), - [sym__fenced_code_block_start_tilde] = ACTIONS(1347), - [sym__blank_line_start] = ACTIONS(1347), - [sym_minus_metadata] = ACTIONS(1347), - [sym__pipe_table_start] = ACTIONS(1347), - [sym__fenced_div_start] = ACTIONS(1347), - [sym__fenced_div_end] = ACTIONS(1347), - [sym_ref_id_specifier] = ACTIONS(1347), - [sym__display_math_state_track_marker] = ACTIONS(1347), - [sym__inline_math_state_track_marker] = ACTIONS(1347), - }, - [STATE(127)] = { - [sym_list_marker_dot] = STATE(31), - [sym__list_item_dot] = STATE(127), - [aux_sym__list_dot_repeat1] = STATE(127), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [sym__word] = ACTIONS(1352), - [sym__soft_line_ending] = ACTIONS(1352), - [sym__block_close] = ACTIONS(1352), - [sym__block_quote_start] = ACTIONS(1352), - [sym__indented_chunk_start] = ACTIONS(1352), - [sym_atx_h1_marker] = ACTIONS(1352), - [sym_atx_h2_marker] = ACTIONS(1352), - [sym_atx_h3_marker] = ACTIONS(1352), - [sym_atx_h4_marker] = ACTIONS(1352), - [sym_atx_h5_marker] = ACTIONS(1352), - [sym_atx_h6_marker] = ACTIONS(1352), - [sym__thematic_break] = ACTIONS(1352), - [sym__list_marker_minus] = ACTIONS(1352), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1352), - [sym__list_marker_parenthesis] = ACTIONS(1352), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1352), - [sym__fenced_code_block_start_tilde] = ACTIONS(1352), - [sym__blank_line_start] = ACTIONS(1352), - [sym_minus_metadata] = ACTIONS(1352), - [sym__pipe_table_start] = ACTIONS(1352), - [sym__fenced_div_start] = ACTIONS(1352), - [sym__fenced_div_end] = ACTIONS(1352), - [sym_ref_id_specifier] = ACTIONS(1352), - [sym__display_math_state_track_marker] = ACTIONS(1352), - [sym__inline_math_state_track_marker] = ACTIONS(1352), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(77), + [sym__fenced_code_block_start_tilde] = ACTIONS(79), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1220), + [sym__pipe_table_start] = ACTIONS(85), + [sym__fenced_div_start] = ACTIONS(87), + [sym__fenced_div_end] = ACTIONS(1222), + [sym_ref_id_specifier] = ACTIONS(91), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(128)] = { - [sym_list_marker_parenthesis] = STATE(32), - [sym__list_item_parenthesis] = STATE(128), - [aux_sym__list_parenthesis_repeat1] = STATE(128), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1357), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [sym__word] = ACTIONS(1357), - [sym__soft_line_ending] = ACTIONS(1357), - [sym__block_close] = ACTIONS(1357), - [sym__block_quote_start] = ACTIONS(1357), - [sym__indented_chunk_start] = ACTIONS(1357), - [sym_atx_h1_marker] = ACTIONS(1357), - [sym_atx_h2_marker] = ACTIONS(1357), - [sym_atx_h3_marker] = ACTIONS(1357), - [sym_atx_h4_marker] = ACTIONS(1357), - [sym_atx_h5_marker] = ACTIONS(1357), - [sym_atx_h6_marker] = ACTIONS(1357), - [sym__thematic_break] = ACTIONS(1357), - [sym__list_marker_minus] = ACTIONS(1357), - [sym__list_marker_plus] = ACTIONS(1357), - [sym__list_marker_star] = ACTIONS(1357), - [sym__list_marker_parenthesis] = ACTIONS(1359), - [sym__list_marker_dot] = ACTIONS(1357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1357), - [sym__fenced_code_block_start_backtick] = ACTIONS(1357), - [sym__fenced_code_block_start_tilde] = ACTIONS(1357), - [sym__blank_line_start] = ACTIONS(1357), - [sym_minus_metadata] = ACTIONS(1357), - [sym__pipe_table_start] = ACTIONS(1357), - [sym__fenced_div_start] = ACTIONS(1357), - [sym__fenced_div_end] = ACTIONS(1357), - [sym_ref_id_specifier] = ACTIONS(1357), - [sym__display_math_state_track_marker] = ACTIONS(1357), - [sym__inline_math_state_track_marker] = ACTIONS(1357), + [STATE(115)] = { + [sym__block_not_section] = STATE(228), + [sym_thematic_break] = STATE(228), + [sym__setext_heading1] = STATE(275), + [sym__setext_heading2] = STATE(276), + [sym_indented_code_block] = STATE(228), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(228), + [sym_fenced_code_block] = STATE(228), + [sym_paragraph] = STATE(142), + [sym_inline_ref_def] = STATE(228), + [sym_note_definition_fenced_block] = STATE(228), + [sym__blank_line] = STATE(228), + [sym_block_quote] = STATE(228), + [sym_list] = STATE(228), + [sym__list_plus] = STATE(279), + [sym__list_minus] = STATE(279), + [sym__list_star] = STATE(279), + [sym__list_dot] = STATE(279), + [sym__list_parenthesis] = STATE(279), + [sym__list_example] = STATE(279), + [sym_list_marker_plus] = STATE(29), + [sym_list_marker_minus] = STATE(30), + [sym_list_marker_star] = STATE(31), + [sym_list_marker_dot] = STATE(32), + [sym_list_marker_parenthesis] = STATE(33), + [sym_list_marker_example] = STATE(34), + [sym__list_item_plus] = STATE(125), + [sym__list_item_minus] = STATE(126), + [sym__list_item_star] = STATE(127), + [sym__list_item_dot] = STATE(128), + [sym__list_item_parenthesis] = STATE(129), + [sym__list_item_example] = STATE(130), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(228), + [aux_sym_document_repeat1] = STATE(115), + [aux_sym_paragraph_repeat1] = STATE(570), + [aux_sym__list_plus_repeat1] = STATE(125), + [aux_sym__list_minus_repeat1] = STATE(126), + [aux_sym__list_star_repeat1] = STATE(127), + [aux_sym__list_dot_repeat1] = STATE(128), + [aux_sym__list_parenthesis_repeat1] = STATE(129), + [aux_sym__list_example_repeat1] = STATE(130), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [sym__word] = ACTIONS(1230), + [sym__soft_line_ending] = ACTIONS(1233), + [sym__block_close] = ACTIONS(1236), + [sym__block_quote_start] = ACTIONS(1238), + [sym__indented_chunk_start] = ACTIONS(1241), + [sym_atx_h1_marker] = ACTIONS(1236), + [sym_atx_h2_marker] = ACTIONS(1236), + [sym_atx_h3_marker] = ACTIONS(1236), + [sym_atx_h4_marker] = ACTIONS(1236), + [sym_atx_h5_marker] = ACTIONS(1236), + [sym_atx_h6_marker] = ACTIONS(1236), + [sym__thematic_break] = ACTIONS(1244), + [sym__list_marker_minus] = ACTIONS(1247), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1253), + [sym__list_marker_parenthesis] = ACTIONS(1256), + [sym__list_marker_dot] = ACTIONS(1259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1247), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1253), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1256), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1259), + [sym__list_marker_example] = ACTIONS(1262), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1262), + [sym__fenced_code_block_start_backtick] = ACTIONS(1265), + [sym__fenced_code_block_start_tilde] = ACTIONS(1268), + [sym__blank_line_start] = ACTIONS(1271), + [sym_minus_metadata] = ACTIONS(1274), + [sym__pipe_table_start] = ACTIONS(1277), + [sym__fenced_div_start] = ACTIONS(1280), + [sym__fenced_div_end] = ACTIONS(1236), + [sym_ref_id_specifier] = ACTIONS(1283), + [sym__display_math_state_track_marker] = ACTIONS(1230), + [sym__inline_math_state_track_marker] = ACTIONS(1230), }, - [STATE(129)] = { - [sym__indented_chunk] = STATE(129), - [sym__blank_line] = STATE(129), - [aux_sym_indented_code_block_repeat1] = STATE(129), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [sym__word] = ACTIONS(1362), - [sym__soft_line_ending] = ACTIONS(1362), - [sym__block_close] = ACTIONS(1362), - [sym__block_quote_start] = ACTIONS(1362), - [sym__indented_chunk_start] = ACTIONS(1364), - [sym_atx_h1_marker] = ACTIONS(1362), - [sym_atx_h2_marker] = ACTIONS(1362), - [sym_atx_h3_marker] = ACTIONS(1362), - [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(1362), - [sym_atx_h6_marker] = ACTIONS(1362), - [sym__thematic_break] = ACTIONS(1362), - [sym__list_marker_minus] = ACTIONS(1362), - [sym__list_marker_plus] = ACTIONS(1362), - [sym__list_marker_star] = ACTIONS(1362), - [sym__list_marker_parenthesis] = ACTIONS(1362), - [sym__list_marker_dot] = ACTIONS(1362), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), - [sym__fenced_code_block_start_backtick] = ACTIONS(1362), - [sym__fenced_code_block_start_tilde] = ACTIONS(1362), - [sym__blank_line_start] = ACTIONS(1367), - [sym_minus_metadata] = ACTIONS(1362), - [sym__pipe_table_start] = ACTIONS(1362), - [sym__fenced_div_start] = ACTIONS(1362), - [sym__fenced_div_end] = ACTIONS(1362), - [sym_ref_id_specifier] = ACTIONS(1362), - [sym__display_math_state_track_marker] = ACTIONS(1362), - [sym__inline_math_state_track_marker] = ACTIONS(1362), - }, - [STATE(130)] = { - [sym__indented_chunk] = STATE(136), - [sym__blank_line] = STATE(136), - [aux_sym_indented_code_block_repeat1] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(1325), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1325), - [anon_sym_RBRACK] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym__] = ACTIONS(1325), - [anon_sym_BQUOTE] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [sym__word] = ACTIONS(1325), - [sym__soft_line_ending] = ACTIONS(1325), - [sym__block_quote_start] = ACTIONS(1325), - [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1325), - [sym_atx_h2_marker] = ACTIONS(1325), - [sym_atx_h3_marker] = ACTIONS(1325), - [sym_atx_h4_marker] = ACTIONS(1325), - [sym_atx_h5_marker] = ACTIONS(1325), - [sym_atx_h6_marker] = ACTIONS(1325), - [sym__thematic_break] = ACTIONS(1325), - [sym__list_marker_minus] = ACTIONS(1325), - [sym__list_marker_plus] = ACTIONS(1325), - [sym__list_marker_star] = ACTIONS(1325), - [sym__list_marker_parenthesis] = ACTIONS(1325), - [sym__list_marker_dot] = ACTIONS(1325), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1325), - [sym__fenced_code_block_start_backtick] = ACTIONS(1325), - [sym__fenced_code_block_start_tilde] = ACTIONS(1325), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1325), - [sym__pipe_table_start] = ACTIONS(1325), - [sym__fenced_div_start] = ACTIONS(1325), - [sym_ref_id_specifier] = ACTIONS(1325), - [sym__display_math_state_track_marker] = ACTIONS(1325), - [sym__inline_math_state_track_marker] = ACTIONS(1325), - }, - [STATE(131)] = { - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_parenthesis] = STATE(131), - [aux_sym__list_parenthesis_repeat1] = STATE(131), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1357), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [sym__word] = ACTIONS(1357), - [sym__soft_line_ending] = ACTIONS(1357), - [sym__block_close] = ACTIONS(1357), - [sym__block_quote_start] = ACTIONS(1357), - [sym__indented_chunk_start] = ACTIONS(1357), - [sym_atx_h1_marker] = ACTIONS(1357), - [sym_atx_h2_marker] = ACTIONS(1357), - [sym_atx_h3_marker] = ACTIONS(1357), - [sym_atx_h4_marker] = ACTIONS(1357), - [sym_atx_h5_marker] = ACTIONS(1357), - [sym_atx_h6_marker] = ACTIONS(1357), - [sym__thematic_break] = ACTIONS(1357), - [sym__list_marker_minus] = ACTIONS(1357), - [sym__list_marker_plus] = ACTIONS(1357), - [sym__list_marker_star] = ACTIONS(1357), - [sym__list_marker_parenthesis] = ACTIONS(1359), - [sym__list_marker_dot] = ACTIONS(1357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1357), - [sym__fenced_code_block_start_backtick] = ACTIONS(1357), - [sym__fenced_code_block_start_tilde] = ACTIONS(1357), - [sym__blank_line_start] = ACTIONS(1357), - [sym_minus_metadata] = ACTIONS(1357), - [sym__pipe_table_start] = ACTIONS(1357), - [sym__fenced_div_start] = ACTIONS(1357), - [sym_ref_id_specifier] = ACTIONS(1357), - [sym__display_math_state_track_marker] = ACTIONS(1357), - [sym__inline_math_state_track_marker] = ACTIONS(1357), - }, - [STATE(132)] = { - [sym_list_marker_plus] = STATE(27), - [sym__list_item_plus] = STATE(132), - [aux_sym__list_plus_repeat1] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(1337), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1337), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [sym__word] = ACTIONS(1337), - [sym__soft_line_ending] = ACTIONS(1337), - [sym__block_quote_start] = ACTIONS(1337), - [sym__indented_chunk_start] = ACTIONS(1337), - [sym_atx_h1_marker] = ACTIONS(1337), - [sym_atx_h2_marker] = ACTIONS(1337), - [sym_atx_h3_marker] = ACTIONS(1337), - [sym_atx_h4_marker] = ACTIONS(1337), - [sym_atx_h5_marker] = ACTIONS(1337), - [sym_atx_h6_marker] = ACTIONS(1337), - [sym__thematic_break] = ACTIONS(1337), - [sym__list_marker_minus] = ACTIONS(1337), - [sym__list_marker_plus] = ACTIONS(1339), - [sym__list_marker_star] = ACTIONS(1337), - [sym__list_marker_parenthesis] = ACTIONS(1337), - [sym__list_marker_dot] = ACTIONS(1337), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1339), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1337), - [sym__fenced_code_block_start_backtick] = ACTIONS(1337), - [sym__fenced_code_block_start_tilde] = ACTIONS(1337), - [sym__blank_line_start] = ACTIONS(1337), - [sym_minus_metadata] = ACTIONS(1337), - [sym__pipe_table_start] = ACTIONS(1337), - [sym__fenced_div_start] = ACTIONS(1337), - [sym_ref_id_specifier] = ACTIONS(1337), - [sym__display_math_state_track_marker] = ACTIONS(1337), - [sym__inline_math_state_track_marker] = ACTIONS(1337), - }, - [STATE(133)] = { - [sym_list_marker_minus] = STATE(3), - [sym__list_item_minus] = STATE(133), - [aux_sym__list_minus_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1342), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym__] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [sym__word] = ACTIONS(1342), - [sym__soft_line_ending] = ACTIONS(1342), - [sym__block_quote_start] = ACTIONS(1342), - [sym__indented_chunk_start] = ACTIONS(1342), - [sym_atx_h1_marker] = ACTIONS(1342), - [sym_atx_h2_marker] = ACTIONS(1342), - [sym_atx_h3_marker] = ACTIONS(1342), - [sym_atx_h4_marker] = ACTIONS(1342), - [sym_atx_h5_marker] = ACTIONS(1342), - [sym_atx_h6_marker] = ACTIONS(1342), - [sym__thematic_break] = ACTIONS(1342), - [sym__list_marker_minus] = ACTIONS(1344), - [sym__list_marker_plus] = ACTIONS(1342), - [sym__list_marker_star] = ACTIONS(1342), - [sym__list_marker_parenthesis] = ACTIONS(1342), - [sym__list_marker_dot] = ACTIONS(1342), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), - [sym__fenced_code_block_start_backtick] = ACTIONS(1342), - [sym__fenced_code_block_start_tilde] = ACTIONS(1342), - [sym__blank_line_start] = ACTIONS(1342), - [sym_minus_metadata] = ACTIONS(1342), - [sym__pipe_table_start] = ACTIONS(1342), - [sym__fenced_div_start] = ACTIONS(1342), - [sym_ref_id_specifier] = ACTIONS(1342), - [sym__display_math_state_track_marker] = ACTIONS(1342), - [sym__inline_math_state_track_marker] = ACTIONS(1342), - }, - [STATE(134)] = { - [sym_list_marker_star] = STATE(4), - [sym__list_item_star] = STATE(134), - [aux_sym__list_star_repeat1] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(1347), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_EQ] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym__] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [sym__word] = ACTIONS(1347), - [sym__soft_line_ending] = ACTIONS(1347), - [sym__block_quote_start] = ACTIONS(1347), - [sym__indented_chunk_start] = ACTIONS(1347), - [sym_atx_h1_marker] = ACTIONS(1347), - [sym_atx_h2_marker] = ACTIONS(1347), - [sym_atx_h3_marker] = ACTIONS(1347), - [sym_atx_h4_marker] = ACTIONS(1347), - [sym_atx_h5_marker] = ACTIONS(1347), - [sym_atx_h6_marker] = ACTIONS(1347), - [sym__thematic_break] = ACTIONS(1347), - [sym__list_marker_minus] = ACTIONS(1347), - [sym__list_marker_plus] = ACTIONS(1347), - [sym__list_marker_star] = ACTIONS(1349), - [sym__list_marker_parenthesis] = ACTIONS(1347), - [sym__list_marker_dot] = ACTIONS(1347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1347), - [sym__fenced_code_block_start_backtick] = ACTIONS(1347), - [sym__fenced_code_block_start_tilde] = ACTIONS(1347), - [sym__blank_line_start] = ACTIONS(1347), - [sym_minus_metadata] = ACTIONS(1347), - [sym__pipe_table_start] = ACTIONS(1347), - [sym__fenced_div_start] = ACTIONS(1347), - [sym_ref_id_specifier] = ACTIONS(1347), - [sym__display_math_state_track_marker] = ACTIONS(1347), - [sym__inline_math_state_track_marker] = ACTIONS(1347), - }, - [STATE(135)] = { - [sym_list_marker_dot] = STATE(5), - [sym__list_item_dot] = STATE(135), - [aux_sym__list_dot_repeat1] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(1352), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [sym__word] = ACTIONS(1352), - [sym__soft_line_ending] = ACTIONS(1352), - [sym__block_quote_start] = ACTIONS(1352), - [sym__indented_chunk_start] = ACTIONS(1352), - [sym_atx_h1_marker] = ACTIONS(1352), - [sym_atx_h2_marker] = ACTIONS(1352), - [sym_atx_h3_marker] = ACTIONS(1352), - [sym_atx_h4_marker] = ACTIONS(1352), - [sym_atx_h5_marker] = ACTIONS(1352), - [sym_atx_h6_marker] = ACTIONS(1352), - [sym__thematic_break] = ACTIONS(1352), - [sym__list_marker_minus] = ACTIONS(1352), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1352), - [sym__list_marker_parenthesis] = ACTIONS(1352), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1352), - [sym__fenced_code_block_start_tilde] = ACTIONS(1352), - [sym__blank_line_start] = ACTIONS(1352), - [sym_minus_metadata] = ACTIONS(1352), - [sym__pipe_table_start] = ACTIONS(1352), - [sym__fenced_div_start] = ACTIONS(1352), - [sym_ref_id_specifier] = ACTIONS(1352), - [sym__display_math_state_track_marker] = ACTIONS(1352), - [sym__inline_math_state_track_marker] = ACTIONS(1352), - }, - [STATE(136)] = { - [sym__indented_chunk] = STATE(152), - [sym__blank_line] = STATE(152), - [aux_sym_indented_code_block_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(1319), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym__] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [sym__word] = ACTIONS(1319), - [sym__soft_line_ending] = ACTIONS(1319), - [sym__block_quote_start] = ACTIONS(1319), + [STATE(116)] = { + [sym__block_not_section] = STATE(474), + [sym_thematic_break] = STATE(474), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(474), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(474), + [sym_fenced_code_block] = STATE(474), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__blank_line] = STATE(474), + [sym_block_quote] = STATE(474), + [sym_list] = STATE(474), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(474), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(1222), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), [sym__indented_chunk_start] = ACTIONS(15), - [sym_atx_h1_marker] = ACTIONS(1319), - [sym_atx_h2_marker] = ACTIONS(1319), - [sym_atx_h3_marker] = ACTIONS(1319), - [sym_atx_h4_marker] = ACTIONS(1319), - [sym_atx_h5_marker] = ACTIONS(1319), - [sym_atx_h6_marker] = ACTIONS(1319), - [sym__thematic_break] = ACTIONS(1319), - [sym__list_marker_minus] = ACTIONS(1319), - [sym__list_marker_plus] = ACTIONS(1319), - [sym__list_marker_star] = ACTIONS(1319), - [sym__list_marker_parenthesis] = ACTIONS(1319), - [sym__list_marker_dot] = ACTIONS(1319), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1319), - [sym__fenced_code_block_start_backtick] = ACTIONS(1319), - [sym__fenced_code_block_start_tilde] = ACTIONS(1319), - [sym__blank_line_start] = ACTIONS(45), - [sym_minus_metadata] = ACTIONS(1319), - [sym__pipe_table_start] = ACTIONS(1319), - [sym__fenced_div_start] = ACTIONS(1319), - [sym_ref_id_specifier] = ACTIONS(1319), - [sym__display_math_state_track_marker] = ACTIONS(1319), - [sym__inline_math_state_track_marker] = ACTIONS(1319), - }, - [STATE(137)] = { - [sym__indented_chunk] = STATE(154), - [sym__blank_line] = STATE(154), - [aux_sym_indented_code_block_repeat1] = STATE(154), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_EQ] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_DQUOTE] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_DOLLAR] = ACTIONS(1325), - [anon_sym_PERCENT] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_DOT] = ACTIONS(1325), - [anon_sym_SLASH] = ACTIONS(1325), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_GT] = ACTIONS(1325), - [anon_sym_QMARK] = ACTIONS(1325), - [anon_sym_AT] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_BSLASH] = ACTIONS(1325), - [anon_sym_RBRACK] = ACTIONS(1325), - [anon_sym_CARET] = ACTIONS(1325), - [anon_sym__] = ACTIONS(1325), - [anon_sym_BQUOTE] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_TILDE] = ACTIONS(1325), - [sym__word] = ACTIONS(1325), - [sym__soft_line_ending] = ACTIONS(1325), - [sym__block_close] = ACTIONS(1325), - [sym__block_quote_start] = ACTIONS(1325), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1325), - [sym_atx_h2_marker] = ACTIONS(1325), - [sym_atx_h3_marker] = ACTIONS(1325), - [sym_atx_h4_marker] = ACTIONS(1325), - [sym_atx_h5_marker] = ACTIONS(1325), - [sym_atx_h6_marker] = ACTIONS(1325), - [sym__thematic_break] = ACTIONS(1325), - [sym__list_marker_minus] = ACTIONS(1325), - [sym__list_marker_plus] = ACTIONS(1325), - [sym__list_marker_star] = ACTIONS(1325), - [sym__list_marker_parenthesis] = ACTIONS(1325), - [sym__list_marker_dot] = ACTIONS(1325), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1325), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1325), - [sym__fenced_code_block_start_backtick] = ACTIONS(1325), - [sym__fenced_code_block_start_tilde] = ACTIONS(1325), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1325), - [sym__pipe_table_start] = ACTIONS(1325), - [sym__fenced_div_start] = ACTIONS(1325), - [sym_ref_id_specifier] = ACTIONS(1325), - [sym__display_math_state_track_marker] = ACTIONS(1325), - [sym__inline_math_state_track_marker] = ACTIONS(1325), - }, - [STATE(138)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [sym__word] = ACTIONS(1370), - [sym__soft_line_ending] = ACTIONS(1370), - [sym__block_close] = ACTIONS(1370), - [sym__block_quote_start] = ACTIONS(1370), - [sym__indented_chunk_start] = ACTIONS(1370), - [sym_atx_h1_marker] = ACTIONS(1370), - [sym_atx_h2_marker] = ACTIONS(1370), - [sym_atx_h3_marker] = ACTIONS(1370), - [sym_atx_h4_marker] = ACTIONS(1370), - [sym_atx_h5_marker] = ACTIONS(1370), - [sym_atx_h6_marker] = ACTIONS(1370), - [sym_setext_h1_underline] = ACTIONS(1372), - [sym_setext_h2_underline] = ACTIONS(1374), - [sym__thematic_break] = ACTIONS(1370), - [sym__list_marker_minus] = ACTIONS(1370), - [sym__list_marker_plus] = ACTIONS(1370), - [sym__list_marker_star] = ACTIONS(1370), - [sym__list_marker_parenthesis] = ACTIONS(1370), - [sym__list_marker_dot] = ACTIONS(1370), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), - [sym__fenced_code_block_start_backtick] = ACTIONS(1370), - [sym__fenced_code_block_start_tilde] = ACTIONS(1370), - [sym__blank_line_start] = ACTIONS(1370), - [sym_minus_metadata] = ACTIONS(1370), - [sym__pipe_table_start] = ACTIONS(1370), - [sym__fenced_div_start] = ACTIONS(1370), - [sym__fenced_div_end] = ACTIONS(1370), - [sym_ref_id_specifier] = ACTIONS(1370), - [sym__display_math_state_track_marker] = ACTIONS(1370), - [sym__inline_math_state_track_marker] = ACTIONS(1370), - }, - [STATE(139)] = { - [sym__indented_chunk] = STATE(139), - [sym__blank_line] = STATE(139), - [aux_sym_indented_code_block_repeat1] = STATE(139), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_COMMA] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_AT] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_BSLASH] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym__] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [sym__word] = ACTIONS(1362), - [sym__soft_line_ending] = ACTIONS(1362), - [sym__block_close] = ACTIONS(1362), - [sym__block_quote_start] = ACTIONS(1362), - [sym__indented_chunk_start] = ACTIONS(1376), - [sym_atx_h1_marker] = ACTIONS(1362), - [sym_atx_h2_marker] = ACTIONS(1362), - [sym_atx_h3_marker] = ACTIONS(1362), - [sym_atx_h4_marker] = ACTIONS(1362), - [sym_atx_h5_marker] = ACTIONS(1362), - [sym_atx_h6_marker] = ACTIONS(1362), - [sym__thematic_break] = ACTIONS(1362), - [sym__list_marker_minus] = ACTIONS(1362), - [sym__list_marker_plus] = ACTIONS(1362), - [sym__list_marker_star] = ACTIONS(1362), - [sym__list_marker_parenthesis] = ACTIONS(1362), - [sym__list_marker_dot] = ACTIONS(1362), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), - [sym__fenced_code_block_start_backtick] = ACTIONS(1362), - [sym__fenced_code_block_start_tilde] = ACTIONS(1362), - [sym__blank_line_start] = ACTIONS(1379), - [sym_minus_metadata] = ACTIONS(1362), - [sym__pipe_table_start] = ACTIONS(1362), - [sym__fenced_div_start] = ACTIONS(1362), - [sym_ref_id_specifier] = ACTIONS(1362), - [sym__display_math_state_track_marker] = ACTIONS(1362), - [sym__inline_math_state_track_marker] = ACTIONS(1362), - }, - [STATE(140)] = { - [sym_list_marker_plus] = STATE(22), - [sym__list_item_plus] = STATE(159), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym__] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [sym__word] = ACTIONS(1327), - [sym__soft_line_ending] = ACTIONS(1327), - [sym__block_close] = ACTIONS(1327), - [sym__block_quote_start] = ACTIONS(1327), - [sym__indented_chunk_start] = ACTIONS(1327), - [sym_atx_h1_marker] = ACTIONS(1327), - [sym_atx_h2_marker] = ACTIONS(1327), - [sym_atx_h3_marker] = ACTIONS(1327), - [sym_atx_h4_marker] = ACTIONS(1327), - [sym_atx_h5_marker] = ACTIONS(1327), - [sym_atx_h6_marker] = ACTIONS(1327), - [sym__thematic_break] = ACTIONS(1327), - [sym__list_marker_minus] = ACTIONS(1327), - [sym__list_marker_plus] = ACTIONS(33), - [sym__list_marker_star] = ACTIONS(1327), - [sym__list_marker_parenthesis] = ACTIONS(1327), - [sym__list_marker_dot] = ACTIONS(1327), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1327), - [sym__fenced_code_block_start_backtick] = ACTIONS(1327), - [sym__fenced_code_block_start_tilde] = ACTIONS(1327), - [sym__blank_line_start] = ACTIONS(1327), - [sym_minus_metadata] = ACTIONS(1327), - [sym__pipe_table_start] = ACTIONS(1327), - [sym__fenced_div_start] = ACTIONS(1327), - [sym_ref_id_specifier] = ACTIONS(1327), - [sym__display_math_state_track_marker] = ACTIONS(1327), - [sym__inline_math_state_track_marker] = ACTIONS(1327), - }, - [STATE(141)] = { - [sym_list_marker_minus] = STATE(23), - [sym__list_item_minus] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(160), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1329), - [anon_sym_BQUOTE] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [sym__word] = ACTIONS(1329), - [sym__soft_line_ending] = ACTIONS(1329), - [sym__block_close] = ACTIONS(1329), - [sym__block_quote_start] = ACTIONS(1329), - [sym__indented_chunk_start] = ACTIONS(1329), - [sym_atx_h1_marker] = ACTIONS(1329), - [sym_atx_h2_marker] = ACTIONS(1329), - [sym_atx_h3_marker] = ACTIONS(1329), - [sym_atx_h4_marker] = ACTIONS(1329), - [sym_atx_h5_marker] = ACTIONS(1329), - [sym_atx_h6_marker] = ACTIONS(1329), - [sym__thematic_break] = ACTIONS(1329), + [sym_atx_h1_marker] = ACTIONS(1222), + [sym_atx_h2_marker] = ACTIONS(1222), + [sym_atx_h3_marker] = ACTIONS(1222), + [sym_atx_h4_marker] = ACTIONS(1222), + [sym_atx_h5_marker] = ACTIONS(1222), + [sym_atx_h6_marker] = ACTIONS(1222), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), - [sym__list_marker_plus] = ACTIONS(1329), - [sym__list_marker_star] = ACTIONS(1329), - [sym__list_marker_parenthesis] = ACTIONS(1329), - [sym__list_marker_dot] = ACTIONS(1329), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1329), - [sym__fenced_code_block_start_backtick] = ACTIONS(1329), - [sym__fenced_code_block_start_tilde] = ACTIONS(1329), - [sym__blank_line_start] = ACTIONS(1329), - [sym_minus_metadata] = ACTIONS(1329), - [sym__pipe_table_start] = ACTIONS(1329), - [sym__fenced_div_start] = ACTIONS(1329), - [sym_ref_id_specifier] = ACTIONS(1329), - [sym__display_math_state_track_marker] = ACTIONS(1329), - [sym__inline_math_state_track_marker] = ACTIONS(1329), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(373), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(142)] = { - [sym_list_marker_star] = STATE(24), + [STATE(117)] = { + [sym__block_not_section] = STATE(474), + [sym_thematic_break] = STATE(474), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(474), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(474), + [sym_fenced_code_block] = STATE(474), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__blank_line] = STATE(474), + [sym_block_quote] = STATE(474), + [sym_list] = STATE(474), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), [sym__list_item_star] = STATE(161), + [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(474), + [aux_sym_document_repeat1] = STATE(117), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), [aux_sym__list_star_repeat1] = STATE(161), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [sym__word] = ACTIONS(1331), - [sym__soft_line_ending] = ACTIONS(1331), - [sym__block_close] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(1331), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), - [sym__list_marker_star] = ACTIONS(35), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_star_dont_interrupt] = ACTIONS(35), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(1331), - [sym_minus_metadata] = ACTIONS(1331), - [sym__pipe_table_start] = ACTIONS(1331), - [sym__fenced_div_start] = ACTIONS(1331), - [sym_ref_id_specifier] = ACTIONS(1331), - [sym__display_math_state_track_marker] = ACTIONS(1331), - [sym__inline_math_state_track_marker] = ACTIONS(1331), + [aux_sym__list_dot_repeat1] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(1236), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [sym__word] = ACTIONS(1230), + [sym__soft_line_ending] = ACTIONS(1233), + [sym__block_quote_start] = ACTIONS(1286), + [sym__indented_chunk_start] = ACTIONS(1289), + [sym_atx_h1_marker] = ACTIONS(1236), + [sym_atx_h2_marker] = ACTIONS(1236), + [sym_atx_h3_marker] = ACTIONS(1236), + [sym_atx_h4_marker] = ACTIONS(1236), + [sym_atx_h5_marker] = ACTIONS(1236), + [sym_atx_h6_marker] = ACTIONS(1236), + [sym__thematic_break] = ACTIONS(1292), + [sym__list_marker_minus] = ACTIONS(1247), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1253), + [sym__list_marker_parenthesis] = ACTIONS(1256), + [sym__list_marker_dot] = ACTIONS(1259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1247), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1253), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1256), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1259), + [sym__list_marker_example] = ACTIONS(1262), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1262), + [sym__fenced_code_block_start_backtick] = ACTIONS(1295), + [sym__fenced_code_block_start_tilde] = ACTIONS(1298), + [sym__blank_line_start] = ACTIONS(1301), + [sym_minus_metadata] = ACTIONS(1304), + [sym__pipe_table_start] = ACTIONS(1307), + [sym__fenced_div_start] = ACTIONS(1310), + [sym_ref_id_specifier] = ACTIONS(1313), + [sym__display_math_state_track_marker] = ACTIONS(1230), + [sym__inline_math_state_track_marker] = ACTIONS(1230), }, - [STATE(143)] = { - [sym_list_marker_dot] = STATE(25), + [STATE(118)] = { + [sym__block_not_section] = STATE(474), + [sym_thematic_break] = STATE(474), + [sym__setext_heading1] = STATE(391), + [sym__setext_heading2] = STATE(392), + [sym_indented_code_block] = STATE(474), + [sym__indented_chunk] = STATE(173), + [sym_fenced_div_block] = STATE(474), + [sym_fenced_code_block] = STATE(474), + [sym_paragraph] = STATE(202), + [sym_inline_ref_def] = STATE(474), + [sym_note_definition_fenced_block] = STATE(474), + [sym__blank_line] = STATE(474), + [sym_block_quote] = STATE(474), + [sym_list] = STATE(474), + [sym__list_plus] = STATE(404), + [sym__list_minus] = STATE(404), + [sym__list_star] = STATE(404), + [sym__list_dot] = STATE(404), + [sym__list_parenthesis] = STATE(404), + [sym__list_example] = STATE(404), + [sym_list_marker_plus] = STATE(18), + [sym_list_marker_minus] = STATE(6), + [sym_list_marker_star] = STATE(35), + [sym_list_marker_dot] = STATE(3), + [sym_list_marker_parenthesis] = STATE(4), + [sym_list_marker_example] = STATE(5), + [sym__list_item_plus] = STATE(158), + [sym__list_item_minus] = STATE(159), + [sym__list_item_star] = STATE(161), [sym__list_item_dot] = STATE(162), + [sym__list_item_parenthesis] = STATE(163), + [sym__list_item_example] = STATE(164), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(474), + [aux_sym_document_repeat1] = STATE(116), + [aux_sym_paragraph_repeat1] = STATE(554), + [aux_sym__list_plus_repeat1] = STATE(158), + [aux_sym__list_minus_repeat1] = STATE(159), + [aux_sym__list_star_repeat1] = STATE(161), [aux_sym__list_dot_repeat1] = STATE(162), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_AT] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1333), - [anon_sym_BQUOTE] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [sym__word] = ACTIONS(1333), - [sym__soft_line_ending] = ACTIONS(1333), - [sym__block_close] = ACTIONS(1333), - [sym__block_quote_start] = ACTIONS(1333), - [sym__indented_chunk_start] = ACTIONS(1333), - [sym_atx_h1_marker] = ACTIONS(1333), - [sym_atx_h2_marker] = ACTIONS(1333), - [sym_atx_h3_marker] = ACTIONS(1333), - [sym_atx_h4_marker] = ACTIONS(1333), - [sym_atx_h5_marker] = ACTIONS(1333), - [sym_atx_h6_marker] = ACTIONS(1333), - [sym__thematic_break] = ACTIONS(1333), - [sym__list_marker_minus] = ACTIONS(1333), - [sym__list_marker_plus] = ACTIONS(1333), - [sym__list_marker_star] = ACTIONS(1333), - [sym__list_marker_parenthesis] = ACTIONS(1333), + [aux_sym__list_parenthesis_repeat1] = STATE(163), + [aux_sym__list_example_repeat1] = STATE(164), + [ts_builtin_sym_end] = ACTIONS(1218), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(29), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), [sym__list_marker_dot] = ACTIONS(39), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1333), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(1333), - [sym__fenced_code_block_start_tilde] = ACTIONS(1333), - [sym__blank_line_start] = ACTIONS(1333), - [sym_minus_metadata] = ACTIONS(1333), - [sym__pipe_table_start] = ACTIONS(1333), - [sym__fenced_div_start] = ACTIONS(1333), - [sym_ref_id_specifier] = ACTIONS(1333), - [sym__display_math_state_track_marker] = ACTIONS(1333), - [sym__inline_math_state_track_marker] = ACTIONS(1333), - }, - [STATE(144)] = { - [sym__blank_line] = STATE(1039), - [sym_table_caption] = STATE(234), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_BSLASH] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [sym__word] = ACTIONS(1382), - [sym__soft_line_ending] = ACTIONS(1382), - [sym__block_close] = ACTIONS(1382), - [sym__block_quote_start] = ACTIONS(1382), - [sym__indented_chunk_start] = ACTIONS(1382), - [sym_atx_h1_marker] = ACTIONS(1382), - [sym_atx_h2_marker] = ACTIONS(1382), - [sym_atx_h3_marker] = ACTIONS(1382), - [sym_atx_h4_marker] = ACTIONS(1382), - [sym_atx_h5_marker] = ACTIONS(1382), - [sym_atx_h6_marker] = ACTIONS(1382), - [sym__thematic_break] = ACTIONS(1382), - [sym__list_marker_minus] = ACTIONS(1382), - [sym__list_marker_plus] = ACTIONS(1382), - [sym__list_marker_star] = ACTIONS(1382), - [sym__list_marker_parenthesis] = ACTIONS(1382), - [sym__list_marker_dot] = ACTIONS(1382), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), - [sym__fenced_code_block_start_backtick] = ACTIONS(1382), - [sym__fenced_code_block_start_tilde] = ACTIONS(1382), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1382), - [sym__pipe_table_start] = ACTIONS(1382), - [sym__fenced_div_start] = ACTIONS(1382), - [sym__fenced_div_end] = ACTIONS(1382), - [sym_ref_id_specifier] = ACTIONS(1382), - [sym__display_math_state_track_marker] = ACTIONS(1382), - [sym__inline_math_state_track_marker] = ACTIONS(1382), - }, - [STATE(145)] = { - [sym__blank_line] = STATE(1039), - [sym_table_caption] = STATE(239), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [sym__word] = ACTIONS(1386), - [sym__soft_line_ending] = ACTIONS(1386), - [sym__block_close] = ACTIONS(1386), - [sym__block_quote_start] = ACTIONS(1386), - [sym__indented_chunk_start] = ACTIONS(1386), - [sym_atx_h1_marker] = ACTIONS(1386), - [sym_atx_h2_marker] = ACTIONS(1386), - [sym_atx_h3_marker] = ACTIONS(1386), - [sym_atx_h4_marker] = ACTIONS(1386), - [sym_atx_h5_marker] = ACTIONS(1386), - [sym_atx_h6_marker] = ACTIONS(1386), - [sym__thematic_break] = ACTIONS(1386), - [sym__list_marker_minus] = ACTIONS(1386), - [sym__list_marker_plus] = ACTIONS(1386), - [sym__list_marker_star] = ACTIONS(1386), - [sym__list_marker_parenthesis] = ACTIONS(1386), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__fenced_code_block_start_backtick] = ACTIONS(1386), - [sym__fenced_code_block_start_tilde] = ACTIONS(1386), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1386), - [sym__pipe_table_start] = ACTIONS(1386), - [sym__fenced_div_start] = ACTIONS(1386), - [sym__fenced_div_end] = ACTIONS(1386), - [sym_ref_id_specifier] = ACTIONS(1386), - [sym__display_math_state_track_marker] = ACTIONS(1386), - [sym__inline_math_state_track_marker] = ACTIONS(1386), - }, - [STATE(146)] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym_block_continuation] = ACTIONS(1388), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym_setext_h1_underline] = ACTIONS(1321), - [sym_setext_h2_underline] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), - }, - [STATE(147)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1390), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1390), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [sym__word] = ACTIONS(1390), - [sym__soft_line_ending] = ACTIONS(1390), - [sym__block_close] = ACTIONS(1390), - [sym__block_quote_start] = ACTIONS(1390), - [sym__indented_chunk_start] = ACTIONS(1390), - [sym_atx_h1_marker] = ACTIONS(1390), - [sym_atx_h2_marker] = ACTIONS(1390), - [sym_atx_h3_marker] = ACTIONS(1390), - [sym_atx_h4_marker] = ACTIONS(1390), - [sym_atx_h5_marker] = ACTIONS(1390), - [sym_atx_h6_marker] = ACTIONS(1390), - [sym_setext_h1_underline] = ACTIONS(1390), - [sym_setext_h2_underline] = ACTIONS(1390), - [sym__thematic_break] = ACTIONS(1390), - [sym__list_marker_minus] = ACTIONS(1390), - [sym__list_marker_plus] = ACTIONS(1390), - [sym__list_marker_star] = ACTIONS(1390), - [sym__list_marker_parenthesis] = ACTIONS(1390), - [sym__list_marker_dot] = ACTIONS(1390), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), - [sym__fenced_code_block_start_backtick] = ACTIONS(1390), - [sym__fenced_code_block_start_tilde] = ACTIONS(1390), - [sym__blank_line_start] = ACTIONS(1390), - [sym_minus_metadata] = ACTIONS(1390), - [sym__pipe_table_start] = ACTIONS(1390), - [sym__fenced_div_start] = ACTIONS(1390), - [sym__fenced_div_end] = ACTIONS(1390), - [sym_ref_id_specifier] = ACTIONS(1390), - [sym__display_math_state_track_marker] = ACTIONS(1390), - [sym__inline_math_state_track_marker] = ACTIONS(1390), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(373), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(148)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym__block_close] = ACTIONS(1321), - [sym_block_continuation] = ACTIONS(1392), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym_setext_h1_underline] = ACTIONS(1321), - [sym_setext_h2_underline] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), + [STATE(119)] = { + [sym__block_not_section] = STATE(345), + [sym_thematic_break] = STATE(345), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(345), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(345), + [sym_fenced_code_block] = STATE(345), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(345), + [sym_note_definition_fenced_block] = STATE(345), + [sym__blank_line] = STATE(345), + [sym_block_quote] = STATE(345), + [sym_list] = STATE(345), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(345), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1222), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1222), + [sym_atx_h2_marker] = ACTIONS(1222), + [sym_atx_h3_marker] = ACTIONS(1222), + [sym_atx_h4_marker] = ACTIONS(1222), + [sym_atx_h5_marker] = ACTIONS(1222), + [sym_atx_h6_marker] = ACTIONS(1222), + [sym__thematic_break] = ACTIONS(111), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1316), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(149)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_BSLASH] = ACTIONS(1394), - [anon_sym_RBRACK] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [sym__word] = ACTIONS(1394), - [sym__soft_line_ending] = ACTIONS(1394), - [sym__block_close] = ACTIONS(1394), - [sym__block_quote_start] = ACTIONS(1394), - [sym__indented_chunk_start] = ACTIONS(1394), - [sym_atx_h1_marker] = ACTIONS(1394), - [sym_atx_h2_marker] = ACTIONS(1394), - [sym_atx_h3_marker] = ACTIONS(1394), - [sym_atx_h4_marker] = ACTIONS(1394), - [sym_atx_h5_marker] = ACTIONS(1394), - [sym_atx_h6_marker] = ACTIONS(1394), - [sym_setext_h1_underline] = ACTIONS(1394), - [sym_setext_h2_underline] = ACTIONS(1394), - [sym__thematic_break] = ACTIONS(1394), - [sym__list_marker_minus] = ACTIONS(1394), - [sym__list_marker_plus] = ACTIONS(1394), - [sym__list_marker_star] = ACTIONS(1394), - [sym__list_marker_parenthesis] = ACTIONS(1394), - [sym__list_marker_dot] = ACTIONS(1394), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), - [sym__fenced_code_block_start_backtick] = ACTIONS(1394), - [sym__fenced_code_block_start_tilde] = ACTIONS(1394), - [sym__blank_line_start] = ACTIONS(1394), - [sym_minus_metadata] = ACTIONS(1394), - [sym__pipe_table_start] = ACTIONS(1394), - [sym__fenced_div_start] = ACTIONS(1394), - [sym__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), + [STATE(120)] = { + [sym__block_not_section] = STATE(345), + [sym_thematic_break] = STATE(345), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(345), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(345), + [sym_fenced_code_block] = STATE(345), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(345), + [sym_note_definition_fenced_block] = STATE(345), + [sym__blank_line] = STATE(345), + [sym_block_quote] = STATE(345), + [sym_list] = STATE(345), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(345), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_BSLASH] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1227), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [sym__word] = ACTIONS(1230), + [sym__soft_line_ending] = ACTIONS(1233), + [sym__block_close] = ACTIONS(1236), + [sym__block_quote_start] = ACTIONS(1318), + [sym__indented_chunk_start] = ACTIONS(1321), + [sym_atx_h1_marker] = ACTIONS(1236), + [sym_atx_h2_marker] = ACTIONS(1236), + [sym_atx_h3_marker] = ACTIONS(1236), + [sym_atx_h4_marker] = ACTIONS(1236), + [sym_atx_h5_marker] = ACTIONS(1236), + [sym_atx_h6_marker] = ACTIONS(1236), + [sym__thematic_break] = ACTIONS(1324), + [sym__list_marker_minus] = ACTIONS(1247), + [sym__list_marker_plus] = ACTIONS(1250), + [sym__list_marker_star] = ACTIONS(1253), + [sym__list_marker_parenthesis] = ACTIONS(1256), + [sym__list_marker_dot] = ACTIONS(1259), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1247), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1250), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1253), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1256), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1259), + [sym__list_marker_example] = ACTIONS(1262), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1262), + [sym__fenced_code_block_start_backtick] = ACTIONS(1327), + [sym__fenced_code_block_start_tilde] = ACTIONS(1330), + [sym__blank_line_start] = ACTIONS(1333), + [sym_minus_metadata] = ACTIONS(1336), + [sym__pipe_table_start] = ACTIONS(1339), + [sym__fenced_div_start] = ACTIONS(1342), + [sym_ref_id_specifier] = ACTIONS(1345), + [sym__display_math_state_track_marker] = ACTIONS(1230), + [sym__inline_math_state_track_marker] = ACTIONS(1230), }, - [STATE(150)] = { - [sym_list_marker_parenthesis] = STATE(26), - [sym__list_item_parenthesis] = STATE(131), - [aux_sym__list_parenthesis_repeat1] = STATE(131), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [sym__word] = ACTIONS(1335), - [sym__soft_line_ending] = ACTIONS(1335), - [sym__block_close] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), + [STATE(121)] = { + [sym__block_not_section] = STATE(345), + [sym_thematic_break] = STATE(345), + [sym__setext_heading1] = STATE(349), + [sym__setext_heading2] = STATE(350), + [sym_indented_code_block] = STATE(345), + [sym__indented_chunk] = STATE(143), + [sym_fenced_div_block] = STATE(345), + [sym_fenced_code_block] = STATE(345), + [sym_paragraph] = STATE(179), + [sym_inline_ref_def] = STATE(345), + [sym_note_definition_fenced_block] = STATE(345), + [sym__blank_line] = STATE(345), + [sym_block_quote] = STATE(345), + [sym_list] = STATE(345), + [sym__list_plus] = STATE(352), + [sym__list_minus] = STATE(352), + [sym__list_star] = STATE(352), + [sym__list_dot] = STATE(352), + [sym__list_parenthesis] = STATE(352), + [sym__list_example] = STATE(352), + [sym_list_marker_plus] = STATE(23), + [sym_list_marker_minus] = STATE(24), + [sym_list_marker_star] = STATE(25), + [sym_list_marker_dot] = STATE(26), + [sym_list_marker_parenthesis] = STATE(27), + [sym_list_marker_example] = STATE(28), + [sym__list_item_plus] = STATE(144), + [sym__list_item_minus] = STATE(145), + [sym__list_item_star] = STATE(146), + [sym__list_item_dot] = STATE(154), + [sym__list_item_parenthesis] = STATE(155), + [sym__list_item_example] = STATE(156), + [sym__soft_line_break] = STATE(659), + [sym__line] = STATE(659), + [sym__whitespace] = STATE(603), + [sym_pipe_table] = STATE(345), + [aux_sym_document_repeat1] = STATE(119), + [aux_sym_paragraph_repeat1] = STATE(560), + [aux_sym__list_plus_repeat1] = STATE(144), + [aux_sym__list_minus_repeat1] = STATE(145), + [aux_sym__list_star_repeat1] = STATE(146), + [aux_sym__list_dot_repeat1] = STATE(154), + [aux_sym__list_parenthesis_repeat1] = STATE(155), + [aux_sym__list_example_repeat1] = STATE(156), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [anon_sym_RBRACE] = ACTIONS(7), + [anon_sym_EQ] = ACTIONS(7), + [anon_sym_SQUOTE] = ACTIONS(7), + [anon_sym_BANG] = ACTIONS(7), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(7), + [anon_sym_DOLLAR] = ACTIONS(7), + [anon_sym_PERCENT] = ACTIONS(7), + [anon_sym_AMP] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(7), + [anon_sym_PLUS] = ACTIONS(7), + [anon_sym_COMMA] = ACTIONS(7), + [anon_sym_DASH] = ACTIONS(7), + [anon_sym_DOT] = ACTIONS(7), + [anon_sym_SLASH] = ACTIONS(7), + [anon_sym_SEMI] = ACTIONS(7), + [anon_sym_LT] = ACTIONS(7), + [anon_sym_GT] = ACTIONS(7), + [anon_sym_QMARK] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(7), + [anon_sym_LBRACK] = ACTIONS(7), + [anon_sym_BSLASH] = ACTIONS(7), + [anon_sym_RBRACK] = ACTIONS(7), + [anon_sym_CARET] = ACTIONS(7), + [anon_sym__] = ACTIONS(7), + [anon_sym_BQUOTE] = ACTIONS(7), + [anon_sym_PIPE] = ACTIONS(7), + [anon_sym_TILDE] = ACTIONS(7), + [sym__word] = ACTIONS(9), + [sym__soft_line_ending] = ACTIONS(11), + [sym__block_close] = ACTIONS(1218), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1218), + [sym_atx_h2_marker] = ACTIONS(1218), + [sym_atx_h3_marker] = ACTIONS(1218), + [sym_atx_h4_marker] = ACTIONS(1218), + [sym_atx_h5_marker] = ACTIONS(1218), + [sym_atx_h6_marker] = ACTIONS(1218), + [sym__thematic_break] = ACTIONS(111), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(35), [sym__list_marker_parenthesis] = ACTIONS(37), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym_minus_metadata] = ACTIONS(1335), - [sym__pipe_table_start] = ACTIONS(1335), - [sym__fenced_div_start] = ACTIONS(1335), - [sym_ref_id_specifier] = ACTIONS(1335), - [sym__display_math_state_track_marker] = ACTIONS(1335), - [sym__inline_math_state_track_marker] = ACTIONS(1335), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1316), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), + [sym__display_math_state_track_marker] = ACTIONS(9), + [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(151)] = { - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_parenthesis] = STATE(151), - [aux_sym__list_parenthesis_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(1357), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_RPAREN] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_BSLASH] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1357), - [anon_sym_BQUOTE] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [sym__word] = ACTIONS(1357), - [sym__soft_line_ending] = ACTIONS(1357), - [sym__block_quote_start] = ACTIONS(1357), - [sym__indented_chunk_start] = ACTIONS(1357), - [sym_atx_h1_marker] = ACTIONS(1357), - [sym_atx_h2_marker] = ACTIONS(1357), - [sym_atx_h3_marker] = ACTIONS(1357), - [sym_atx_h4_marker] = ACTIONS(1357), - [sym_atx_h5_marker] = ACTIONS(1357), - [sym_atx_h6_marker] = ACTIONS(1357), - [sym__thematic_break] = ACTIONS(1357), - [sym__list_marker_minus] = ACTIONS(1357), - [sym__list_marker_plus] = ACTIONS(1357), - [sym__list_marker_star] = ACTIONS(1357), - [sym__list_marker_parenthesis] = ACTIONS(1359), - [sym__list_marker_dot] = ACTIONS(1357), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1357), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1359), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1357), - [sym__fenced_code_block_start_backtick] = ACTIONS(1357), - [sym__fenced_code_block_start_tilde] = ACTIONS(1357), - [sym__blank_line_start] = ACTIONS(1357), - [sym_minus_metadata] = ACTIONS(1357), - [sym__pipe_table_start] = ACTIONS(1357), - [sym__fenced_div_start] = ACTIONS(1357), - [sym_ref_id_specifier] = ACTIONS(1357), - [sym__display_math_state_track_marker] = ACTIONS(1357), - [sym__inline_math_state_track_marker] = ACTIONS(1357), + [STATE(122)] = { + [sym__indented_chunk] = STATE(137), + [sym__blank_line] = STATE(137), + [aux_sym_indented_code_block_repeat1] = STATE(137), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [sym__word] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_close] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_example] = ACTIONS(1348), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + [sym__fenced_div_start] = ACTIONS(1348), + [sym__fenced_div_end] = ACTIONS(1348), + [sym_ref_id_specifier] = ACTIONS(1348), + [sym__display_math_state_track_marker] = ACTIONS(1348), + [sym__inline_math_state_track_marker] = ACTIONS(1348), }, - [STATE(152)] = { - [sym__indented_chunk] = STATE(152), - [sym__blank_line] = STATE(152), - [aux_sym_indented_code_block_repeat1] = STATE(152), - [ts_builtin_sym_end] = ACTIONS(1362), + [STATE(123)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym__] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [sym__word] = ACTIONS(1350), + [sym__soft_line_ending] = ACTIONS(1350), + [sym__block_close] = ACTIONS(1350), + [sym_block_continuation] = ACTIONS(1352), + [sym__block_quote_start] = ACTIONS(1350), + [sym__indented_chunk_start] = ACTIONS(1350), + [sym_atx_h1_marker] = ACTIONS(1350), + [sym_atx_h2_marker] = ACTIONS(1350), + [sym_atx_h3_marker] = ACTIONS(1350), + [sym_atx_h4_marker] = ACTIONS(1350), + [sym_atx_h5_marker] = ACTIONS(1350), + [sym_atx_h6_marker] = ACTIONS(1350), + [sym_setext_h1_underline] = ACTIONS(1350), + [sym_setext_h2_underline] = ACTIONS(1350), + [sym__thematic_break] = ACTIONS(1350), + [sym__list_marker_minus] = ACTIONS(1350), + [sym__list_marker_plus] = ACTIONS(1350), + [sym__list_marker_star] = ACTIONS(1350), + [sym__list_marker_parenthesis] = ACTIONS(1350), + [sym__list_marker_dot] = ACTIONS(1350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_example] = ACTIONS(1350), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1350), + [sym__fenced_code_block_start_backtick] = ACTIONS(1350), + [sym__fenced_code_block_start_tilde] = ACTIONS(1350), + [sym__blank_line_start] = ACTIONS(1350), + [sym_minus_metadata] = ACTIONS(1350), + [sym__pipe_table_start] = ACTIONS(1350), + [sym__fenced_div_start] = ACTIONS(1350), + [sym__fenced_div_end] = ACTIONS(1350), + [sym_ref_id_specifier] = ACTIONS(1350), + [sym__display_math_state_track_marker] = ACTIONS(1350), + [sym__inline_math_state_track_marker] = ACTIONS(1350), + }, + [STATE(124)] = { + [sym__indented_chunk] = STATE(122), + [sym__blank_line] = STATE(122), + [aux_sym_indented_code_block_repeat1] = STATE(122), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [sym__word] = ACTIONS(1354), + [sym__soft_line_ending] = ACTIONS(1354), + [sym__block_close] = ACTIONS(1354), + [sym__block_quote_start] = ACTIONS(1354), + [sym__indented_chunk_start] = ACTIONS(61), + [sym_atx_h1_marker] = ACTIONS(1354), + [sym_atx_h2_marker] = ACTIONS(1354), + [sym_atx_h3_marker] = ACTIONS(1354), + [sym_atx_h4_marker] = ACTIONS(1354), + [sym_atx_h5_marker] = ACTIONS(1354), + [sym_atx_h6_marker] = ACTIONS(1354), + [sym__thematic_break] = ACTIONS(1354), + [sym__list_marker_minus] = ACTIONS(1354), + [sym__list_marker_plus] = ACTIONS(1354), + [sym__list_marker_star] = ACTIONS(1354), + [sym__list_marker_parenthesis] = ACTIONS(1354), + [sym__list_marker_dot] = ACTIONS(1354), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_example] = ACTIONS(1354), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1354), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1354), + [sym__pipe_table_start] = ACTIONS(1354), + [sym__fenced_div_start] = ACTIONS(1354), + [sym__fenced_div_end] = ACTIONS(1354), + [sym_ref_id_specifier] = ACTIONS(1354), + [sym__display_math_state_track_marker] = ACTIONS(1354), + [sym__inline_math_state_track_marker] = ACTIONS(1354), + }, + [STATE(125)] = { + [sym_list_marker_plus] = STATE(29), + [sym__list_item_plus] = STATE(131), + [aux_sym__list_plus_repeat1] = STATE(131), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym__block_close] = ACTIONS(1356), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym__fenced_div_end] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(126)] = { + [sym_list_marker_minus] = STATE(30), + [sym__list_item_minus] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_BSLASH] = ACTIONS(1358), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym__] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [sym__word] = ACTIONS(1358), + [sym__soft_line_ending] = ACTIONS(1358), + [sym__block_close] = ACTIONS(1358), + [sym__block_quote_start] = ACTIONS(1358), + [sym__indented_chunk_start] = ACTIONS(1358), + [sym_atx_h1_marker] = ACTIONS(1358), + [sym_atx_h2_marker] = ACTIONS(1358), + [sym_atx_h3_marker] = ACTIONS(1358), + [sym_atx_h4_marker] = ACTIONS(1358), + [sym_atx_h5_marker] = ACTIONS(1358), + [sym_atx_h6_marker] = ACTIONS(1358), + [sym__thematic_break] = ACTIONS(1358), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(1358), + [sym__list_marker_star] = ACTIONS(1358), + [sym__list_marker_parenthesis] = ACTIONS(1358), + [sym__list_marker_dot] = ACTIONS(1358), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_example] = ACTIONS(1358), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1358), + [sym__fenced_code_block_start_backtick] = ACTIONS(1358), + [sym__fenced_code_block_start_tilde] = ACTIONS(1358), + [sym__blank_line_start] = ACTIONS(1358), + [sym_minus_metadata] = ACTIONS(1358), + [sym__pipe_table_start] = ACTIONS(1358), + [sym__fenced_div_start] = ACTIONS(1358), + [sym__fenced_div_end] = ACTIONS(1358), + [sym_ref_id_specifier] = ACTIONS(1358), + [sym__display_math_state_track_marker] = ACTIONS(1358), + [sym__inline_math_state_track_marker] = ACTIONS(1358), + }, + [STATE(127)] = { + [sym_list_marker_star] = STATE(31), + [sym__list_item_star] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(133), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [sym__word] = ACTIONS(1360), + [sym__soft_line_ending] = ACTIONS(1360), + [sym__block_close] = ACTIONS(1360), + [sym__block_quote_start] = ACTIONS(1360), + [sym__indented_chunk_start] = ACTIONS(1360), + [sym_atx_h1_marker] = ACTIONS(1360), + [sym_atx_h2_marker] = ACTIONS(1360), + [sym_atx_h3_marker] = ACTIONS(1360), + [sym_atx_h4_marker] = ACTIONS(1360), + [sym_atx_h5_marker] = ACTIONS(1360), + [sym_atx_h6_marker] = ACTIONS(1360), + [sym__thematic_break] = ACTIONS(1360), + [sym__list_marker_minus] = ACTIONS(1360), + [sym__list_marker_plus] = ACTIONS(1360), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(1360), + [sym__list_marker_dot] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_example] = ACTIONS(1360), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1360), + [sym__fenced_code_block_start_backtick] = ACTIONS(1360), + [sym__fenced_code_block_start_tilde] = ACTIONS(1360), + [sym__blank_line_start] = ACTIONS(1360), + [sym_minus_metadata] = ACTIONS(1360), + [sym__pipe_table_start] = ACTIONS(1360), + [sym__fenced_div_start] = ACTIONS(1360), + [sym__fenced_div_end] = ACTIONS(1360), + [sym_ref_id_specifier] = ACTIONS(1360), + [sym__display_math_state_track_marker] = ACTIONS(1360), + [sym__inline_math_state_track_marker] = ACTIONS(1360), + }, + [STATE(128)] = { + [sym_list_marker_dot] = STATE(32), + [sym__list_item_dot] = STATE(134), + [aux_sym__list_dot_repeat1] = STATE(134), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), [anon_sym_LBRACE] = ACTIONS(1362), [anon_sym_RBRACE] = ACTIONS(1362), @@ -20103,8 +19615,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1362), [sym__word] = ACTIONS(1362), [sym__soft_line_ending] = ACTIONS(1362), + [sym__block_close] = ACTIONS(1362), [sym__block_quote_start] = ACTIONS(1362), - [sym__indented_chunk_start] = ACTIONS(1396), + [sym__indented_chunk_start] = ACTIONS(1362), [sym_atx_h1_marker] = ACTIONS(1362), [sym_atx_h2_marker] = ACTIONS(1362), [sym_atx_h3_marker] = ACTIONS(1362), @@ -20116,770 +19629,945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_plus] = ACTIONS(1362), [sym__list_marker_star] = ACTIONS(1362), [sym__list_marker_parenthesis] = ACTIONS(1362), - [sym__list_marker_dot] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(39), [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(1362), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1362), [sym__fenced_code_block_start_backtick] = ACTIONS(1362), [sym__fenced_code_block_start_tilde] = ACTIONS(1362), - [sym__blank_line_start] = ACTIONS(1399), + [sym__blank_line_start] = ACTIONS(1362), [sym_minus_metadata] = ACTIONS(1362), [sym__pipe_table_start] = ACTIONS(1362), [sym__fenced_div_start] = ACTIONS(1362), + [sym__fenced_div_end] = ACTIONS(1362), [sym_ref_id_specifier] = ACTIONS(1362), [sym__display_math_state_track_marker] = ACTIONS(1362), [sym__inline_math_state_track_marker] = ACTIONS(1362), }, - [STATE(153)] = { - [sym_list_marker_plus] = STATE(27), - [sym__list_item_plus] = STATE(132), - [aux_sym__list_plus_repeat1] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(1327), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1327), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1327), - [anon_sym_DOLLAR] = ACTIONS(1327), - [anon_sym_PERCENT] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_LPAREN] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_COMMA] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_DOT] = ACTIONS(1327), - [anon_sym_SLASH] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1327), - [anon_sym_GT] = ACTIONS(1327), - [anon_sym_QMARK] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BSLASH] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym__] = ACTIONS(1327), - [anon_sym_BQUOTE] = ACTIONS(1327), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [sym__word] = ACTIONS(1327), - [sym__soft_line_ending] = ACTIONS(1327), - [sym__block_quote_start] = ACTIONS(1327), - [sym__indented_chunk_start] = ACTIONS(1327), - [sym_atx_h1_marker] = ACTIONS(1327), - [sym_atx_h2_marker] = ACTIONS(1327), - [sym_atx_h3_marker] = ACTIONS(1327), - [sym_atx_h4_marker] = ACTIONS(1327), - [sym_atx_h5_marker] = ACTIONS(1327), - [sym_atx_h6_marker] = ACTIONS(1327), - [sym__thematic_break] = ACTIONS(1327), - [sym__list_marker_minus] = ACTIONS(1327), - [sym__list_marker_plus] = ACTIONS(33), - [sym__list_marker_star] = ACTIONS(1327), - [sym__list_marker_parenthesis] = ACTIONS(1327), - [sym__list_marker_dot] = ACTIONS(1327), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1327), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1327), - [sym__fenced_code_block_start_backtick] = ACTIONS(1327), - [sym__fenced_code_block_start_tilde] = ACTIONS(1327), - [sym__blank_line_start] = ACTIONS(1327), - [sym_minus_metadata] = ACTIONS(1327), - [sym__pipe_table_start] = ACTIONS(1327), - [sym__fenced_div_start] = ACTIONS(1327), - [sym_ref_id_specifier] = ACTIONS(1327), - [sym__display_math_state_track_marker] = ACTIONS(1327), - [sym__inline_math_state_track_marker] = ACTIONS(1327), + [STATE(129)] = { + [sym_list_marker_parenthesis] = STATE(33), + [sym__list_item_parenthesis] = STATE(135), + [aux_sym__list_parenthesis_repeat1] = STATE(135), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_COMMA] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_BSLASH] = ACTIONS(1364), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym__] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [sym__word] = ACTIONS(1364), + [sym__soft_line_ending] = ACTIONS(1364), + [sym__block_close] = ACTIONS(1364), + [sym__block_quote_start] = ACTIONS(1364), + [sym__indented_chunk_start] = ACTIONS(1364), + [sym_atx_h1_marker] = ACTIONS(1364), + [sym_atx_h2_marker] = ACTIONS(1364), + [sym_atx_h3_marker] = ACTIONS(1364), + [sym_atx_h4_marker] = ACTIONS(1364), + [sym_atx_h5_marker] = ACTIONS(1364), + [sym_atx_h6_marker] = ACTIONS(1364), + [sym__thematic_break] = ACTIONS(1364), + [sym__list_marker_minus] = ACTIONS(1364), + [sym__list_marker_plus] = ACTIONS(1364), + [sym__list_marker_star] = ACTIONS(1364), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1364), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_example] = ACTIONS(1364), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), + [sym__fenced_code_block_start_backtick] = ACTIONS(1364), + [sym__fenced_code_block_start_tilde] = ACTIONS(1364), + [sym__blank_line_start] = ACTIONS(1364), + [sym_minus_metadata] = ACTIONS(1364), + [sym__pipe_table_start] = ACTIONS(1364), + [sym__fenced_div_start] = ACTIONS(1364), + [sym__fenced_div_end] = ACTIONS(1364), + [sym_ref_id_specifier] = ACTIONS(1364), + [sym__display_math_state_track_marker] = ACTIONS(1364), + [sym__inline_math_state_track_marker] = ACTIONS(1364), }, - [STATE(154)] = { - [sym__indented_chunk] = STATE(139), - [sym__blank_line] = STATE(139), - [aux_sym_indented_code_block_repeat1] = STATE(139), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1319), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_EQ] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_PERCENT] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_LPAREN] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1319), - [anon_sym_COMMA] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1319), - [anon_sym_SLASH] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1319), - [anon_sym_GT] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_BSLASH] = ACTIONS(1319), - [anon_sym_RBRACK] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym__] = ACTIONS(1319), - [anon_sym_BQUOTE] = ACTIONS(1319), - [anon_sym_PIPE] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [sym__word] = ACTIONS(1319), - [sym__soft_line_ending] = ACTIONS(1319), - [sym__block_close] = ACTIONS(1319), - [sym__block_quote_start] = ACTIONS(1319), - [sym__indented_chunk_start] = ACTIONS(95), - [sym_atx_h1_marker] = ACTIONS(1319), - [sym_atx_h2_marker] = ACTIONS(1319), - [sym_atx_h3_marker] = ACTIONS(1319), - [sym_atx_h4_marker] = ACTIONS(1319), - [sym_atx_h5_marker] = ACTIONS(1319), - [sym_atx_h6_marker] = ACTIONS(1319), - [sym__thematic_break] = ACTIONS(1319), - [sym__list_marker_minus] = ACTIONS(1319), - [sym__list_marker_plus] = ACTIONS(1319), - [sym__list_marker_star] = ACTIONS(1319), - [sym__list_marker_parenthesis] = ACTIONS(1319), - [sym__list_marker_dot] = ACTIONS(1319), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1319), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1319), - [sym__fenced_code_block_start_backtick] = ACTIONS(1319), - [sym__fenced_code_block_start_tilde] = ACTIONS(1319), - [sym__blank_line_start] = ACTIONS(115), - [sym_minus_metadata] = ACTIONS(1319), - [sym__pipe_table_start] = ACTIONS(1319), - [sym__fenced_div_start] = ACTIONS(1319), - [sym_ref_id_specifier] = ACTIONS(1319), - [sym__display_math_state_track_marker] = ACTIONS(1319), - [sym__inline_math_state_track_marker] = ACTIONS(1319), + [STATE(130)] = { + [sym_list_marker_example] = STATE(34), + [sym__list_item_example] = STATE(136), + [aux_sym__list_example_repeat1] = STATE(136), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [sym__word] = ACTIONS(1366), + [sym__soft_line_ending] = ACTIONS(1366), + [sym__block_close] = ACTIONS(1366), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym_minus_metadata] = ACTIONS(1366), + [sym__pipe_table_start] = ACTIONS(1366), + [sym__fenced_div_start] = ACTIONS(1366), + [sym__fenced_div_end] = ACTIONS(1366), + [sym_ref_id_specifier] = ACTIONS(1366), + [sym__display_math_state_track_marker] = ACTIONS(1366), + [sym__inline_math_state_track_marker] = ACTIONS(1366), }, - [STATE(155)] = { - [sym_list_marker_minus] = STATE(3), - [sym__list_item_minus] = STATE(133), - [aux_sym__list_minus_repeat1] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(1329), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1329), - [anon_sym_SQUOTE] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOT] = ACTIONS(1329), - [anon_sym_SLASH] = ACTIONS(1329), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1329), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_AT] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_BSLASH] = ACTIONS(1329), - [anon_sym_RBRACK] = ACTIONS(1329), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1329), - [anon_sym_BQUOTE] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_TILDE] = ACTIONS(1329), - [sym__word] = ACTIONS(1329), - [sym__soft_line_ending] = ACTIONS(1329), - [sym__block_quote_start] = ACTIONS(1329), - [sym__indented_chunk_start] = ACTIONS(1329), - [sym_atx_h1_marker] = ACTIONS(1329), - [sym_atx_h2_marker] = ACTIONS(1329), - [sym_atx_h3_marker] = ACTIONS(1329), - [sym_atx_h4_marker] = ACTIONS(1329), - [sym_atx_h5_marker] = ACTIONS(1329), - [sym_atx_h6_marker] = ACTIONS(1329), - [sym__thematic_break] = ACTIONS(1329), - [sym__list_marker_minus] = ACTIONS(31), - [sym__list_marker_plus] = ACTIONS(1329), - [sym__list_marker_star] = ACTIONS(1329), - [sym__list_marker_parenthesis] = ACTIONS(1329), - [sym__list_marker_dot] = ACTIONS(1329), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1329), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1329), - [sym__fenced_code_block_start_backtick] = ACTIONS(1329), - [sym__fenced_code_block_start_tilde] = ACTIONS(1329), - [sym__blank_line_start] = ACTIONS(1329), - [sym_minus_metadata] = ACTIONS(1329), - [sym__pipe_table_start] = ACTIONS(1329), - [sym__fenced_div_start] = ACTIONS(1329), - [sym_ref_id_specifier] = ACTIONS(1329), - [sym__display_math_state_track_marker] = ACTIONS(1329), - [sym__inline_math_state_track_marker] = ACTIONS(1329), + [STATE(131)] = { + [sym_list_marker_plus] = STATE(29), + [sym__list_item_plus] = STATE(131), + [aux_sym__list_plus_repeat1] = STATE(131), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_BSLASH] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym__] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [sym__word] = ACTIONS(1368), + [sym__soft_line_ending] = ACTIONS(1368), + [sym__block_close] = ACTIONS(1368), + [sym__block_quote_start] = ACTIONS(1368), + [sym__indented_chunk_start] = ACTIONS(1368), + [sym_atx_h1_marker] = ACTIONS(1368), + [sym_atx_h2_marker] = ACTIONS(1368), + [sym_atx_h3_marker] = ACTIONS(1368), + [sym_atx_h4_marker] = ACTIONS(1368), + [sym_atx_h5_marker] = ACTIONS(1368), + [sym_atx_h6_marker] = ACTIONS(1368), + [sym__thematic_break] = ACTIONS(1368), + [sym__list_marker_minus] = ACTIONS(1368), + [sym__list_marker_plus] = ACTIONS(1370), + [sym__list_marker_star] = ACTIONS(1368), + [sym__list_marker_parenthesis] = ACTIONS(1368), + [sym__list_marker_dot] = ACTIONS(1368), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_example] = ACTIONS(1368), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1368), + [sym__fenced_code_block_start_backtick] = ACTIONS(1368), + [sym__fenced_code_block_start_tilde] = ACTIONS(1368), + [sym__blank_line_start] = ACTIONS(1368), + [sym_minus_metadata] = ACTIONS(1368), + [sym__pipe_table_start] = ACTIONS(1368), + [sym__fenced_div_start] = ACTIONS(1368), + [sym__fenced_div_end] = ACTIONS(1368), + [sym_ref_id_specifier] = ACTIONS(1368), + [sym__display_math_state_track_marker] = ACTIONS(1368), + [sym__inline_math_state_track_marker] = ACTIONS(1368), }, - [STATE(156)] = { - [sym_list_marker_star] = STATE(4), - [sym__list_item_star] = STATE(134), - [aux_sym__list_star_repeat1] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(1331), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_COMMA] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_BSLASH] = ACTIONS(1331), - [anon_sym_RBRACK] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym__] = ACTIONS(1331), - [anon_sym_BQUOTE] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [sym__word] = ACTIONS(1331), - [sym__soft_line_ending] = ACTIONS(1331), - [sym__block_quote_start] = ACTIONS(1331), - [sym__indented_chunk_start] = ACTIONS(1331), - [sym_atx_h1_marker] = ACTIONS(1331), - [sym_atx_h2_marker] = ACTIONS(1331), - [sym_atx_h3_marker] = ACTIONS(1331), - [sym_atx_h4_marker] = ACTIONS(1331), - [sym_atx_h5_marker] = ACTIONS(1331), - [sym_atx_h6_marker] = ACTIONS(1331), - [sym__thematic_break] = ACTIONS(1331), - [sym__list_marker_minus] = ACTIONS(1331), - [sym__list_marker_plus] = ACTIONS(1331), - [sym__list_marker_star] = ACTIONS(35), - [sym__list_marker_parenthesis] = ACTIONS(1331), - [sym__list_marker_dot] = ACTIONS(1331), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_star_dont_interrupt] = ACTIONS(35), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1331), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1331), - [sym__fenced_code_block_start_backtick] = ACTIONS(1331), - [sym__fenced_code_block_start_tilde] = ACTIONS(1331), - [sym__blank_line_start] = ACTIONS(1331), - [sym_minus_metadata] = ACTIONS(1331), - [sym__pipe_table_start] = ACTIONS(1331), - [sym__fenced_div_start] = ACTIONS(1331), - [sym_ref_id_specifier] = ACTIONS(1331), - [sym__display_math_state_track_marker] = ACTIONS(1331), - [sym__inline_math_state_track_marker] = ACTIONS(1331), + [STATE(132)] = { + [sym_list_marker_minus] = STATE(30), + [sym__list_item_minus] = STATE(132), + [aux_sym__list_minus_repeat1] = STATE(132), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_BSLASH] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym__] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [sym__word] = ACTIONS(1373), + [sym__soft_line_ending] = ACTIONS(1373), + [sym__block_close] = ACTIONS(1373), + [sym__block_quote_start] = ACTIONS(1373), + [sym__indented_chunk_start] = ACTIONS(1373), + [sym_atx_h1_marker] = ACTIONS(1373), + [sym_atx_h2_marker] = ACTIONS(1373), + [sym_atx_h3_marker] = ACTIONS(1373), + [sym_atx_h4_marker] = ACTIONS(1373), + [sym_atx_h5_marker] = ACTIONS(1373), + [sym_atx_h6_marker] = ACTIONS(1373), + [sym__thematic_break] = ACTIONS(1373), + [sym__list_marker_minus] = ACTIONS(1375), + [sym__list_marker_plus] = ACTIONS(1373), + [sym__list_marker_star] = ACTIONS(1373), + [sym__list_marker_parenthesis] = ACTIONS(1373), + [sym__list_marker_dot] = ACTIONS(1373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_example] = ACTIONS(1373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1373), + [sym__fenced_code_block_start_backtick] = ACTIONS(1373), + [sym__fenced_code_block_start_tilde] = ACTIONS(1373), + [sym__blank_line_start] = ACTIONS(1373), + [sym_minus_metadata] = ACTIONS(1373), + [sym__pipe_table_start] = ACTIONS(1373), + [sym__fenced_div_start] = ACTIONS(1373), + [sym__fenced_div_end] = ACTIONS(1373), + [sym_ref_id_specifier] = ACTIONS(1373), + [sym__display_math_state_track_marker] = ACTIONS(1373), + [sym__inline_math_state_track_marker] = ACTIONS(1373), }, - [STATE(157)] = { - [sym_list_marker_dot] = STATE(5), - [sym__list_item_dot] = STATE(135), - [aux_sym__list_dot_repeat1] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(1333), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_SQUOTE] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_DQUOTE] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_PERCENT] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_DOT] = ACTIONS(1333), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_AT] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_BSLASH] = ACTIONS(1333), - [anon_sym_RBRACK] = ACTIONS(1333), - [anon_sym_CARET] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1333), - [anon_sym_BQUOTE] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_TILDE] = ACTIONS(1333), - [sym__word] = ACTIONS(1333), - [sym__soft_line_ending] = ACTIONS(1333), - [sym__block_quote_start] = ACTIONS(1333), - [sym__indented_chunk_start] = ACTIONS(1333), - [sym_atx_h1_marker] = ACTIONS(1333), - [sym_atx_h2_marker] = ACTIONS(1333), - [sym_atx_h3_marker] = ACTIONS(1333), - [sym_atx_h4_marker] = ACTIONS(1333), - [sym_atx_h5_marker] = ACTIONS(1333), - [sym_atx_h6_marker] = ACTIONS(1333), - [sym__thematic_break] = ACTIONS(1333), - [sym__list_marker_minus] = ACTIONS(1333), - [sym__list_marker_plus] = ACTIONS(1333), - [sym__list_marker_star] = ACTIONS(1333), - [sym__list_marker_parenthesis] = ACTIONS(1333), - [sym__list_marker_dot] = ACTIONS(39), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1333), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), - [sym__fenced_code_block_start_backtick] = ACTIONS(1333), - [sym__fenced_code_block_start_tilde] = ACTIONS(1333), - [sym__blank_line_start] = ACTIONS(1333), - [sym_minus_metadata] = ACTIONS(1333), - [sym__pipe_table_start] = ACTIONS(1333), - [sym__fenced_div_start] = ACTIONS(1333), - [sym_ref_id_specifier] = ACTIONS(1333), - [sym__display_math_state_track_marker] = ACTIONS(1333), - [sym__inline_math_state_track_marker] = ACTIONS(1333), + [STATE(133)] = { + [sym_list_marker_star] = STATE(31), + [sym__list_item_star] = STATE(133), + [aux_sym__list_star_repeat1] = STATE(133), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_PERCENT] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_SLASH] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1378), + [anon_sym_GT] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_AT] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_CARET] = ACTIONS(1378), + [anon_sym__] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [sym__word] = ACTIONS(1378), + [sym__soft_line_ending] = ACTIONS(1378), + [sym__block_close] = ACTIONS(1378), + [sym__block_quote_start] = ACTIONS(1378), + [sym__indented_chunk_start] = ACTIONS(1378), + [sym_atx_h1_marker] = ACTIONS(1378), + [sym_atx_h2_marker] = ACTIONS(1378), + [sym_atx_h3_marker] = ACTIONS(1378), + [sym_atx_h4_marker] = ACTIONS(1378), + [sym_atx_h5_marker] = ACTIONS(1378), + [sym_atx_h6_marker] = ACTIONS(1378), + [sym__thematic_break] = ACTIONS(1378), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1378), + [sym__list_marker_star] = ACTIONS(1380), + [sym__list_marker_parenthesis] = ACTIONS(1378), + [sym__list_marker_dot] = ACTIONS(1378), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1380), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_example] = ACTIONS(1378), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1378), + [sym__fenced_code_block_start_backtick] = ACTIONS(1378), + [sym__fenced_code_block_start_tilde] = ACTIONS(1378), + [sym__blank_line_start] = ACTIONS(1378), + [sym_minus_metadata] = ACTIONS(1378), + [sym__pipe_table_start] = ACTIONS(1378), + [sym__fenced_div_start] = ACTIONS(1378), + [sym__fenced_div_end] = ACTIONS(1378), + [sym_ref_id_specifier] = ACTIONS(1378), + [sym__display_math_state_track_marker] = ACTIONS(1378), + [sym__inline_math_state_track_marker] = ACTIONS(1378), }, - [STATE(158)] = { - [sym_list_marker_parenthesis] = STATE(6), - [sym__list_item_parenthesis] = STATE(151), - [aux_sym__list_parenthesis_repeat1] = STATE(151), - [ts_builtin_sym_end] = ACTIONS(1335), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1335), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_BSLASH] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), - [anon_sym_BQUOTE] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [sym__word] = ACTIONS(1335), - [sym__soft_line_ending] = ACTIONS(1335), - [sym__block_quote_start] = ACTIONS(1335), - [sym__indented_chunk_start] = ACTIONS(1335), - [sym_atx_h1_marker] = ACTIONS(1335), - [sym_atx_h2_marker] = ACTIONS(1335), - [sym_atx_h3_marker] = ACTIONS(1335), - [sym_atx_h4_marker] = ACTIONS(1335), - [sym_atx_h5_marker] = ACTIONS(1335), - [sym_atx_h6_marker] = ACTIONS(1335), - [sym__thematic_break] = ACTIONS(1335), - [sym__list_marker_minus] = ACTIONS(1335), - [sym__list_marker_plus] = ACTIONS(1335), - [sym__list_marker_star] = ACTIONS(1335), - [sym__list_marker_parenthesis] = ACTIONS(37), - [sym__list_marker_dot] = ACTIONS(1335), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1335), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1335), - [sym__fenced_code_block_start_backtick] = ACTIONS(1335), - [sym__fenced_code_block_start_tilde] = ACTIONS(1335), - [sym__blank_line_start] = ACTIONS(1335), - [sym_minus_metadata] = ACTIONS(1335), - [sym__pipe_table_start] = ACTIONS(1335), - [sym__fenced_div_start] = ACTIONS(1335), - [sym_ref_id_specifier] = ACTIONS(1335), - [sym__display_math_state_track_marker] = ACTIONS(1335), - [sym__inline_math_state_track_marker] = ACTIONS(1335), + [STATE(134)] = { + [sym_list_marker_dot] = STATE(32), + [sym__list_item_dot] = STATE(134), + [aux_sym__list_dot_repeat1] = STATE(134), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_AT] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_BSLASH] = ACTIONS(1383), + [anon_sym_RBRACK] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym__] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [sym__word] = ACTIONS(1383), + [sym__soft_line_ending] = ACTIONS(1383), + [sym__block_close] = ACTIONS(1383), + [sym__block_quote_start] = ACTIONS(1383), + [sym__indented_chunk_start] = ACTIONS(1383), + [sym_atx_h1_marker] = ACTIONS(1383), + [sym_atx_h2_marker] = ACTIONS(1383), + [sym_atx_h3_marker] = ACTIONS(1383), + [sym_atx_h4_marker] = ACTIONS(1383), + [sym_atx_h5_marker] = ACTIONS(1383), + [sym_atx_h6_marker] = ACTIONS(1383), + [sym__thematic_break] = ACTIONS(1383), + [sym__list_marker_minus] = ACTIONS(1383), + [sym__list_marker_plus] = ACTIONS(1383), + [sym__list_marker_star] = ACTIONS(1383), + [sym__list_marker_parenthesis] = ACTIONS(1383), + [sym__list_marker_dot] = ACTIONS(1385), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1385), + [sym__list_marker_example] = ACTIONS(1383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1383), + [sym__fenced_code_block_start_backtick] = ACTIONS(1383), + [sym__fenced_code_block_start_tilde] = ACTIONS(1383), + [sym__blank_line_start] = ACTIONS(1383), + [sym_minus_metadata] = ACTIONS(1383), + [sym__pipe_table_start] = ACTIONS(1383), + [sym__fenced_div_start] = ACTIONS(1383), + [sym__fenced_div_end] = ACTIONS(1383), + [sym_ref_id_specifier] = ACTIONS(1383), + [sym__display_math_state_track_marker] = ACTIONS(1383), + [sym__inline_math_state_track_marker] = ACTIONS(1383), }, - [STATE(159)] = { - [sym_list_marker_plus] = STATE(22), - [sym__list_item_plus] = STATE(159), - [aux_sym__list_plus_repeat1] = STATE(159), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_RPAREN] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_DOT] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_BSLASH] = ACTIONS(1337), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [sym__word] = ACTIONS(1337), - [sym__soft_line_ending] = ACTIONS(1337), - [sym__block_close] = ACTIONS(1337), - [sym__block_quote_start] = ACTIONS(1337), - [sym__indented_chunk_start] = ACTIONS(1337), - [sym_atx_h1_marker] = ACTIONS(1337), - [sym_atx_h2_marker] = ACTIONS(1337), - [sym_atx_h3_marker] = ACTIONS(1337), - [sym_atx_h4_marker] = ACTIONS(1337), - [sym_atx_h5_marker] = ACTIONS(1337), - [sym_atx_h6_marker] = ACTIONS(1337), - [sym__thematic_break] = ACTIONS(1337), - [sym__list_marker_minus] = ACTIONS(1337), - [sym__list_marker_plus] = ACTIONS(1339), - [sym__list_marker_star] = ACTIONS(1337), - [sym__list_marker_parenthesis] = ACTIONS(1337), - [sym__list_marker_dot] = ACTIONS(1337), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1339), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1337), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1337), - [sym__fenced_code_block_start_backtick] = ACTIONS(1337), - [sym__fenced_code_block_start_tilde] = ACTIONS(1337), - [sym__blank_line_start] = ACTIONS(1337), - [sym_minus_metadata] = ACTIONS(1337), - [sym__pipe_table_start] = ACTIONS(1337), - [sym__fenced_div_start] = ACTIONS(1337), - [sym_ref_id_specifier] = ACTIONS(1337), - [sym__display_math_state_track_marker] = ACTIONS(1337), - [sym__inline_math_state_track_marker] = ACTIONS(1337), + [STATE(135)] = { + [sym_list_marker_parenthesis] = STATE(33), + [sym__list_item_parenthesis] = STATE(135), + [aux_sym__list_parenthesis_repeat1] = STATE(135), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_BSLASH] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [sym__word] = ACTIONS(1388), + [sym__soft_line_ending] = ACTIONS(1388), + [sym__block_close] = ACTIONS(1388), + [sym__block_quote_start] = ACTIONS(1388), + [sym__indented_chunk_start] = ACTIONS(1388), + [sym_atx_h1_marker] = ACTIONS(1388), + [sym_atx_h2_marker] = ACTIONS(1388), + [sym_atx_h3_marker] = ACTIONS(1388), + [sym_atx_h4_marker] = ACTIONS(1388), + [sym_atx_h5_marker] = ACTIONS(1388), + [sym_atx_h6_marker] = ACTIONS(1388), + [sym__thematic_break] = ACTIONS(1388), + [sym__list_marker_minus] = ACTIONS(1388), + [sym__list_marker_plus] = ACTIONS(1388), + [sym__list_marker_star] = ACTIONS(1388), + [sym__list_marker_parenthesis] = ACTIONS(1390), + [sym__list_marker_dot] = ACTIONS(1388), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_example] = ACTIONS(1388), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1388), + [sym__fenced_code_block_start_backtick] = ACTIONS(1388), + [sym__fenced_code_block_start_tilde] = ACTIONS(1388), + [sym__blank_line_start] = ACTIONS(1388), + [sym_minus_metadata] = ACTIONS(1388), + [sym__pipe_table_start] = ACTIONS(1388), + [sym__fenced_div_start] = ACTIONS(1388), + [sym__fenced_div_end] = ACTIONS(1388), + [sym_ref_id_specifier] = ACTIONS(1388), + [sym__display_math_state_track_marker] = ACTIONS(1388), + [sym__inline_math_state_track_marker] = ACTIONS(1388), }, - [STATE(160)] = { - [sym_list_marker_minus] = STATE(23), - [sym__list_item_minus] = STATE(160), - [aux_sym__list_minus_repeat1] = STATE(160), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_BSLASH] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym__] = ACTIONS(1342), - [anon_sym_BQUOTE] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [sym__word] = ACTIONS(1342), - [sym__soft_line_ending] = ACTIONS(1342), - [sym__block_close] = ACTIONS(1342), - [sym__block_quote_start] = ACTIONS(1342), - [sym__indented_chunk_start] = ACTIONS(1342), - [sym_atx_h1_marker] = ACTIONS(1342), - [sym_atx_h2_marker] = ACTIONS(1342), - [sym_atx_h3_marker] = ACTIONS(1342), - [sym_atx_h4_marker] = ACTIONS(1342), - [sym_atx_h5_marker] = ACTIONS(1342), - [sym_atx_h6_marker] = ACTIONS(1342), - [sym__thematic_break] = ACTIONS(1342), - [sym__list_marker_minus] = ACTIONS(1344), - [sym__list_marker_plus] = ACTIONS(1342), - [sym__list_marker_star] = ACTIONS(1342), - [sym__list_marker_parenthesis] = ACTIONS(1342), - [sym__list_marker_dot] = ACTIONS(1342), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1342), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1342), - [sym__fenced_code_block_start_backtick] = ACTIONS(1342), - [sym__fenced_code_block_start_tilde] = ACTIONS(1342), - [sym__blank_line_start] = ACTIONS(1342), - [sym_minus_metadata] = ACTIONS(1342), - [sym__pipe_table_start] = ACTIONS(1342), - [sym__fenced_div_start] = ACTIONS(1342), - [sym_ref_id_specifier] = ACTIONS(1342), - [sym__display_math_state_track_marker] = ACTIONS(1342), - [sym__inline_math_state_track_marker] = ACTIONS(1342), + [STATE(136)] = { + [sym_list_marker_example] = STATE(34), + [sym__list_item_example] = STATE(136), + [aux_sym__list_example_repeat1] = STATE(136), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_BSLASH] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym__] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [sym__word] = ACTIONS(1393), + [sym__soft_line_ending] = ACTIONS(1393), + [sym__block_close] = ACTIONS(1393), + [sym__block_quote_start] = ACTIONS(1393), + [sym__indented_chunk_start] = ACTIONS(1393), + [sym_atx_h1_marker] = ACTIONS(1393), + [sym_atx_h2_marker] = ACTIONS(1393), + [sym_atx_h3_marker] = ACTIONS(1393), + [sym_atx_h4_marker] = ACTIONS(1393), + [sym_atx_h5_marker] = ACTIONS(1393), + [sym_atx_h6_marker] = ACTIONS(1393), + [sym__thematic_break] = ACTIONS(1393), + [sym__list_marker_minus] = ACTIONS(1393), + [sym__list_marker_plus] = ACTIONS(1393), + [sym__list_marker_star] = ACTIONS(1393), + [sym__list_marker_parenthesis] = ACTIONS(1393), + [sym__list_marker_dot] = ACTIONS(1393), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_example] = ACTIONS(1395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1395), + [sym__fenced_code_block_start_backtick] = ACTIONS(1393), + [sym__fenced_code_block_start_tilde] = ACTIONS(1393), + [sym__blank_line_start] = ACTIONS(1393), + [sym_minus_metadata] = ACTIONS(1393), + [sym__pipe_table_start] = ACTIONS(1393), + [sym__fenced_div_start] = ACTIONS(1393), + [sym__fenced_div_end] = ACTIONS(1393), + [sym_ref_id_specifier] = ACTIONS(1393), + [sym__display_math_state_track_marker] = ACTIONS(1393), + [sym__inline_math_state_track_marker] = ACTIONS(1393), }, - [STATE(161)] = { - [sym_list_marker_star] = STATE(24), - [sym__list_item_star] = STATE(161), - [aux_sym__list_star_repeat1] = STATE(161), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_EQ] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR] = ACTIONS(1347), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_COMMA] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_BSLASH] = ACTIONS(1347), - [anon_sym_RBRACK] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym__] = ACTIONS(1347), - [anon_sym_BQUOTE] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [sym__word] = ACTIONS(1347), - [sym__soft_line_ending] = ACTIONS(1347), - [sym__block_close] = ACTIONS(1347), - [sym__block_quote_start] = ACTIONS(1347), - [sym__indented_chunk_start] = ACTIONS(1347), - [sym_atx_h1_marker] = ACTIONS(1347), - [sym_atx_h2_marker] = ACTIONS(1347), - [sym_atx_h3_marker] = ACTIONS(1347), - [sym_atx_h4_marker] = ACTIONS(1347), - [sym_atx_h5_marker] = ACTIONS(1347), - [sym_atx_h6_marker] = ACTIONS(1347), - [sym__thematic_break] = ACTIONS(1347), - [sym__list_marker_minus] = ACTIONS(1347), - [sym__list_marker_plus] = ACTIONS(1347), - [sym__list_marker_star] = ACTIONS(1349), - [sym__list_marker_parenthesis] = ACTIONS(1347), - [sym__list_marker_dot] = ACTIONS(1347), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1349), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1347), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1347), - [sym__fenced_code_block_start_backtick] = ACTIONS(1347), - [sym__fenced_code_block_start_tilde] = ACTIONS(1347), - [sym__blank_line_start] = ACTIONS(1347), - [sym_minus_metadata] = ACTIONS(1347), - [sym__pipe_table_start] = ACTIONS(1347), - [sym__fenced_div_start] = ACTIONS(1347), - [sym_ref_id_specifier] = ACTIONS(1347), - [sym__display_math_state_track_marker] = ACTIONS(1347), - [sym__inline_math_state_track_marker] = ACTIONS(1347), + [STATE(137)] = { + [sym__indented_chunk] = STATE(137), + [sym__blank_line] = STATE(137), + [aux_sym_indented_code_block_repeat1] = STATE(137), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1398), + [anon_sym_QMARK] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1398), + [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), + [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(1400), + [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), + [sym__list_marker_plus] = ACTIONS(1398), + [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_plus_dont_interrupt] = ACTIONS(1398), + [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(1403), + [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), }, - [STATE(162)] = { - [sym_list_marker_dot] = STATE(25), - [sym__list_item_dot] = STATE(162), - [aux_sym__list_dot_repeat1] = STATE(162), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_DOT] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_BSLASH] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym__] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [sym__word] = ACTIONS(1352), - [sym__soft_line_ending] = ACTIONS(1352), - [sym__block_close] = ACTIONS(1352), - [sym__block_quote_start] = ACTIONS(1352), - [sym__indented_chunk_start] = ACTIONS(1352), - [sym_atx_h1_marker] = ACTIONS(1352), - [sym_atx_h2_marker] = ACTIONS(1352), - [sym_atx_h3_marker] = ACTIONS(1352), - [sym_atx_h4_marker] = ACTIONS(1352), - [sym_atx_h5_marker] = ACTIONS(1352), - [sym_atx_h6_marker] = ACTIONS(1352), - [sym__thematic_break] = ACTIONS(1352), - [sym__list_marker_minus] = ACTIONS(1352), - [sym__list_marker_plus] = ACTIONS(1352), - [sym__list_marker_star] = ACTIONS(1352), - [sym__list_marker_parenthesis] = ACTIONS(1352), - [sym__list_marker_dot] = ACTIONS(1354), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), - [sym__fenced_code_block_start_backtick] = ACTIONS(1352), - [sym__fenced_code_block_start_tilde] = ACTIONS(1352), - [sym__blank_line_start] = ACTIONS(1352), - [sym_minus_metadata] = ACTIONS(1352), - [sym__pipe_table_start] = ACTIONS(1352), - [sym__fenced_div_start] = ACTIONS(1352), - [sym_ref_id_specifier] = ACTIONS(1352), - [sym__display_math_state_track_marker] = ACTIONS(1352), - [sym__inline_math_state_track_marker] = ACTIONS(1352), + [STATE(138)] = { + [sym_list_marker_dot] = STATE(26), + [sym__list_item_dot] = STATE(138), + [aux_sym__list_dot_repeat1] = STATE(138), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_AT] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_BSLASH] = ACTIONS(1383), + [anon_sym_RBRACK] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym__] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [sym__word] = ACTIONS(1383), + [sym__soft_line_ending] = ACTIONS(1383), + [sym__block_close] = ACTIONS(1383), + [sym__block_quote_start] = ACTIONS(1383), + [sym__indented_chunk_start] = ACTIONS(1383), + [sym_atx_h1_marker] = ACTIONS(1383), + [sym_atx_h2_marker] = ACTIONS(1383), + [sym_atx_h3_marker] = ACTIONS(1383), + [sym_atx_h4_marker] = ACTIONS(1383), + [sym_atx_h5_marker] = ACTIONS(1383), + [sym_atx_h6_marker] = ACTIONS(1383), + [sym__thematic_break] = ACTIONS(1383), + [sym__list_marker_minus] = ACTIONS(1383), + [sym__list_marker_plus] = ACTIONS(1383), + [sym__list_marker_star] = ACTIONS(1383), + [sym__list_marker_parenthesis] = ACTIONS(1383), + [sym__list_marker_dot] = ACTIONS(1385), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1385), + [sym__list_marker_example] = ACTIONS(1383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1383), + [sym__fenced_code_block_start_backtick] = ACTIONS(1383), + [sym__fenced_code_block_start_tilde] = ACTIONS(1383), + [sym__blank_line_start] = ACTIONS(1383), + [sym_minus_metadata] = ACTIONS(1383), + [sym__pipe_table_start] = ACTIONS(1383), + [sym__fenced_div_start] = ACTIONS(1383), + [sym_ref_id_specifier] = ACTIONS(1383), + [sym__display_math_state_track_marker] = ACTIONS(1383), + [sym__inline_math_state_track_marker] = ACTIONS(1383), }, - [STATE(163)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_BSLASH] = ACTIONS(1402), - [anon_sym_RBRACK] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym__] = ACTIONS(1402), - [anon_sym_BQUOTE] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1402), - [sym__word] = ACTIONS(1402), - [sym__soft_line_ending] = ACTIONS(1402), - [sym__block_close] = ACTIONS(1402), - [sym_block_continuation] = ACTIONS(1404), - [sym__block_quote_start] = ACTIONS(1402), - [sym__indented_chunk_start] = ACTIONS(1402), - [sym_atx_h1_marker] = ACTIONS(1402), - [sym_atx_h2_marker] = ACTIONS(1402), - [sym_atx_h3_marker] = ACTIONS(1402), - [sym_atx_h4_marker] = ACTIONS(1402), - [sym_atx_h5_marker] = ACTIONS(1402), - [sym_atx_h6_marker] = ACTIONS(1402), - [sym__thematic_break] = ACTIONS(1402), - [sym__list_marker_minus] = ACTIONS(1402), - [sym__list_marker_plus] = ACTIONS(1402), - [sym__list_marker_star] = ACTIONS(1402), - [sym__list_marker_parenthesis] = ACTIONS(1402), - [sym__list_marker_dot] = ACTIONS(1402), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1402), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1402), - [sym__fenced_code_block_start_backtick] = ACTIONS(1402), - [sym__fenced_code_block_start_tilde] = ACTIONS(1402), - [sym__blank_line_start] = ACTIONS(1402), - [sym_minus_metadata] = ACTIONS(1402), - [sym__pipe_table_start] = ACTIONS(1402), - [sym__fenced_div_start] = ACTIONS(1402), - [sym__fenced_div_end] = ACTIONS(1402), - [sym_ref_id_specifier] = ACTIONS(1402), - [sym__display_math_state_track_marker] = ACTIONS(1402), - [sym__inline_math_state_track_marker] = ACTIONS(1402), + [STATE(139)] = { + [sym_list_marker_minus] = STATE(6), + [sym__list_item_minus] = STATE(139), + [aux_sym__list_minus_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(1373), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_BSLASH] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym__] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [sym__word] = ACTIONS(1373), + [sym__soft_line_ending] = ACTIONS(1373), + [sym__block_quote_start] = ACTIONS(1373), + [sym__indented_chunk_start] = ACTIONS(1373), + [sym_atx_h1_marker] = ACTIONS(1373), + [sym_atx_h2_marker] = ACTIONS(1373), + [sym_atx_h3_marker] = ACTIONS(1373), + [sym_atx_h4_marker] = ACTIONS(1373), + [sym_atx_h5_marker] = ACTIONS(1373), + [sym_atx_h6_marker] = ACTIONS(1373), + [sym__thematic_break] = ACTIONS(1373), + [sym__list_marker_minus] = ACTIONS(1375), + [sym__list_marker_plus] = ACTIONS(1373), + [sym__list_marker_star] = ACTIONS(1373), + [sym__list_marker_parenthesis] = ACTIONS(1373), + [sym__list_marker_dot] = ACTIONS(1373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_example] = ACTIONS(1373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1373), + [sym__fenced_code_block_start_backtick] = ACTIONS(1373), + [sym__fenced_code_block_start_tilde] = ACTIONS(1373), + [sym__blank_line_start] = ACTIONS(1373), + [sym_minus_metadata] = ACTIONS(1373), + [sym__pipe_table_start] = ACTIONS(1373), + [sym__fenced_div_start] = ACTIONS(1373), + [sym_ref_id_specifier] = ACTIONS(1373), + [sym__display_math_state_track_marker] = ACTIONS(1373), + [sym__inline_math_state_track_marker] = ACTIONS(1373), }, - [STATE(164)] = { + [STATE(140)] = { + [sym_list_marker_star] = STATE(35), + [sym__list_item_star] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(140), + [ts_builtin_sym_end] = ACTIONS(1378), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_PERCENT] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_SLASH] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1378), + [anon_sym_GT] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_AT] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_CARET] = ACTIONS(1378), + [anon_sym__] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [sym__word] = ACTIONS(1378), + [sym__soft_line_ending] = ACTIONS(1378), + [sym__block_quote_start] = ACTIONS(1378), + [sym__indented_chunk_start] = ACTIONS(1378), + [sym_atx_h1_marker] = ACTIONS(1378), + [sym_atx_h2_marker] = ACTIONS(1378), + [sym_atx_h3_marker] = ACTIONS(1378), + [sym_atx_h4_marker] = ACTIONS(1378), + [sym_atx_h5_marker] = ACTIONS(1378), + [sym_atx_h6_marker] = ACTIONS(1378), + [sym__thematic_break] = ACTIONS(1378), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1378), + [sym__list_marker_star] = ACTIONS(1380), + [sym__list_marker_parenthesis] = ACTIONS(1378), + [sym__list_marker_dot] = ACTIONS(1378), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1380), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_example] = ACTIONS(1378), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1378), + [sym__fenced_code_block_start_backtick] = ACTIONS(1378), + [sym__fenced_code_block_start_tilde] = ACTIONS(1378), + [sym__blank_line_start] = ACTIONS(1378), + [sym_minus_metadata] = ACTIONS(1378), + [sym__pipe_table_start] = ACTIONS(1378), + [sym__fenced_div_start] = ACTIONS(1378), + [sym_ref_id_specifier] = ACTIONS(1378), + [sym__display_math_state_track_marker] = ACTIONS(1378), + [sym__inline_math_state_track_marker] = ACTIONS(1378), + }, + [STATE(141)] = { + [sym_list_marker_dot] = STATE(3), + [sym__list_item_dot] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(141), + [ts_builtin_sym_end] = ACTIONS(1383), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_AT] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(1383), + [anon_sym_BSLASH] = ACTIONS(1383), + [anon_sym_RBRACK] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym__] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [sym__word] = ACTIONS(1383), + [sym__soft_line_ending] = ACTIONS(1383), + [sym__block_quote_start] = ACTIONS(1383), + [sym__indented_chunk_start] = ACTIONS(1383), + [sym_atx_h1_marker] = ACTIONS(1383), + [sym_atx_h2_marker] = ACTIONS(1383), + [sym_atx_h3_marker] = ACTIONS(1383), + [sym_atx_h4_marker] = ACTIONS(1383), + [sym_atx_h5_marker] = ACTIONS(1383), + [sym_atx_h6_marker] = ACTIONS(1383), + [sym__thematic_break] = ACTIONS(1383), + [sym__list_marker_minus] = ACTIONS(1383), + [sym__list_marker_plus] = ACTIONS(1383), + [sym__list_marker_star] = ACTIONS(1383), + [sym__list_marker_parenthesis] = ACTIONS(1383), + [sym__list_marker_dot] = ACTIONS(1385), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1383), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1385), + [sym__list_marker_example] = ACTIONS(1383), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1383), + [sym__fenced_code_block_start_backtick] = ACTIONS(1383), + [sym__fenced_code_block_start_tilde] = ACTIONS(1383), + [sym__blank_line_start] = ACTIONS(1383), + [sym_minus_metadata] = ACTIONS(1383), + [sym__pipe_table_start] = ACTIONS(1383), + [sym__fenced_div_start] = ACTIONS(1383), + [sym_ref_id_specifier] = ACTIONS(1383), + [sym__display_math_state_track_marker] = ACTIONS(1383), + [sym__inline_math_state_track_marker] = ACTIONS(1383), + }, + [STATE(142)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_RBRACE] = ACTIONS(1406), @@ -20915,7 +20603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(1406), [sym__soft_line_ending] = ACTIONS(1406), [sym__block_close] = ACTIONS(1406), - [sym_block_continuation] = ACTIONS(1408), [sym__block_quote_start] = ACTIONS(1406), [sym__indented_chunk_start] = ACTIONS(1406), [sym_atx_h1_marker] = ACTIONS(1406), @@ -20924,6 +20611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(1406), [sym_atx_h5_marker] = ACTIONS(1406), [sym_atx_h6_marker] = ACTIONS(1406), + [sym_setext_h1_underline] = ACTIONS(1408), + [sym_setext_h2_underline] = ACTIONS(1410), [sym__thematic_break] = ACTIONS(1406), [sym__list_marker_minus] = ACTIONS(1406), [sym__list_marker_plus] = ACTIONS(1406), @@ -20935,6 +20624,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__list_marker_star_dont_interrupt] = ACTIONS(1406), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1406), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_example] = ACTIONS(1406), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1406), [sym__fenced_code_block_start_backtick] = ACTIONS(1406), [sym__fenced_code_block_start_tilde] = ACTIONS(1406), [sym__blank_line_start] = ACTIONS(1406), @@ -20946,476 +20637,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1406), [sym__inline_math_state_track_marker] = ACTIONS(1406), }, - [STATE(165)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_BSLASH] = ACTIONS(1410), - [anon_sym_RBRACK] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1410), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1410), - [sym__word] = ACTIONS(1410), - [sym__soft_line_ending] = ACTIONS(1410), - [sym__block_close] = ACTIONS(1410), - [sym_block_continuation] = ACTIONS(1412), - [sym__block_quote_start] = ACTIONS(1410), - [sym__indented_chunk_start] = ACTIONS(1410), - [sym_atx_h1_marker] = ACTIONS(1410), - [sym_atx_h2_marker] = ACTIONS(1410), - [sym_atx_h3_marker] = ACTIONS(1410), - [sym_atx_h4_marker] = ACTIONS(1410), - [sym_atx_h5_marker] = ACTIONS(1410), - [sym_atx_h6_marker] = ACTIONS(1410), - [sym__thematic_break] = ACTIONS(1410), - [sym__list_marker_minus] = ACTIONS(1410), - [sym__list_marker_plus] = ACTIONS(1410), - [sym__list_marker_star] = ACTIONS(1410), - [sym__list_marker_parenthesis] = ACTIONS(1410), - [sym__list_marker_dot] = ACTIONS(1410), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1410), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1410), - [sym__fenced_code_block_start_backtick] = ACTIONS(1410), - [sym__fenced_code_block_start_tilde] = ACTIONS(1410), - [sym__blank_line_start] = ACTIONS(1410), - [sym_minus_metadata] = ACTIONS(1410), - [sym__pipe_table_start] = ACTIONS(1410), - [sym__fenced_div_start] = ACTIONS(1410), - [sym__fenced_div_end] = ACTIONS(1410), - [sym_ref_id_specifier] = ACTIONS(1410), - [sym__display_math_state_track_marker] = ACTIONS(1410), - [sym__inline_math_state_track_marker] = ACTIONS(1410), + [STATE(143)] = { + [sym__indented_chunk] = STATE(165), + [sym__blank_line] = STATE(165), + [aux_sym_indented_code_block_repeat1] = STATE(165), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [sym__word] = ACTIONS(1354), + [sym__soft_line_ending] = ACTIONS(1354), + [sym__block_close] = ACTIONS(1354), + [sym__block_quote_start] = ACTIONS(1354), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1354), + [sym_atx_h2_marker] = ACTIONS(1354), + [sym_atx_h3_marker] = ACTIONS(1354), + [sym_atx_h4_marker] = ACTIONS(1354), + [sym_atx_h5_marker] = ACTIONS(1354), + [sym_atx_h6_marker] = ACTIONS(1354), + [sym__thematic_break] = ACTIONS(1354), + [sym__list_marker_minus] = ACTIONS(1354), + [sym__list_marker_plus] = ACTIONS(1354), + [sym__list_marker_star] = ACTIONS(1354), + [sym__list_marker_parenthesis] = ACTIONS(1354), + [sym__list_marker_dot] = ACTIONS(1354), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_example] = ACTIONS(1354), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1354), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1354), + [sym__pipe_table_start] = ACTIONS(1354), + [sym__fenced_div_start] = ACTIONS(1354), + [sym_ref_id_specifier] = ACTIONS(1354), + [sym__display_math_state_track_marker] = ACTIONS(1354), + [sym__inline_math_state_track_marker] = ACTIONS(1354), }, - [STATE(166)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [sym__word] = ACTIONS(1370), - [sym__soft_line_ending] = ACTIONS(1370), - [sym__block_close] = ACTIONS(1370), - [sym__block_quote_start] = ACTIONS(1370), - [sym__indented_chunk_start] = ACTIONS(1370), - [sym_atx_h1_marker] = ACTIONS(1370), - [sym_atx_h2_marker] = ACTIONS(1370), - [sym_atx_h3_marker] = ACTIONS(1370), - [sym_atx_h4_marker] = ACTIONS(1370), - [sym_atx_h5_marker] = ACTIONS(1370), - [sym_atx_h6_marker] = ACTIONS(1370), - [sym_setext_h1_underline] = ACTIONS(1414), - [sym_setext_h2_underline] = ACTIONS(1416), - [sym__thematic_break] = ACTIONS(1370), - [sym__list_marker_minus] = ACTIONS(1370), - [sym__list_marker_plus] = ACTIONS(1370), - [sym__list_marker_star] = ACTIONS(1370), - [sym__list_marker_parenthesis] = ACTIONS(1370), - [sym__list_marker_dot] = ACTIONS(1370), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), - [sym__fenced_code_block_start_backtick] = ACTIONS(1370), - [sym__fenced_code_block_start_tilde] = ACTIONS(1370), - [sym__blank_line_start] = ACTIONS(1370), - [sym_minus_metadata] = ACTIONS(1370), - [sym__pipe_table_start] = ACTIONS(1370), - [sym__fenced_div_start] = ACTIONS(1370), - [sym_ref_id_specifier] = ACTIONS(1370), - [sym__display_math_state_track_marker] = ACTIONS(1370), - [sym__inline_math_state_track_marker] = ACTIONS(1370), + [STATE(144)] = { + [sym_list_marker_plus] = STATE(23), + [sym__list_item_plus] = STATE(166), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym__block_close] = ACTIONS(1356), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), }, - [STATE(167)] = { - [sym__blank_line] = STATE(1056), - [sym_table_caption] = STATE(313), - [ts_builtin_sym_end] = ACTIONS(1382), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_BSLASH] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [sym__word] = ACTIONS(1382), - [sym__soft_line_ending] = ACTIONS(1382), - [sym__block_quote_start] = ACTIONS(1382), - [sym__indented_chunk_start] = ACTIONS(1382), - [sym_atx_h1_marker] = ACTIONS(1382), - [sym_atx_h2_marker] = ACTIONS(1382), - [sym_atx_h3_marker] = ACTIONS(1382), - [sym_atx_h4_marker] = ACTIONS(1382), - [sym_atx_h5_marker] = ACTIONS(1382), - [sym_atx_h6_marker] = ACTIONS(1382), - [sym__thematic_break] = ACTIONS(1382), - [sym__list_marker_minus] = ACTIONS(1382), - [sym__list_marker_plus] = ACTIONS(1382), - [sym__list_marker_star] = ACTIONS(1382), - [sym__list_marker_parenthesis] = ACTIONS(1382), - [sym__list_marker_dot] = ACTIONS(1382), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), - [sym__fenced_code_block_start_backtick] = ACTIONS(1382), - [sym__fenced_code_block_start_tilde] = ACTIONS(1382), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1382), - [sym__pipe_table_start] = ACTIONS(1382), - [sym__fenced_div_start] = ACTIONS(1382), - [sym_ref_id_specifier] = ACTIONS(1382), - [sym__display_math_state_track_marker] = ACTIONS(1382), - [sym__inline_math_state_track_marker] = ACTIONS(1382), + [STATE(145)] = { + [sym_list_marker_minus] = STATE(24), + [sym__list_item_minus] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(167), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_BSLASH] = ACTIONS(1358), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym__] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [sym__word] = ACTIONS(1358), + [sym__soft_line_ending] = ACTIONS(1358), + [sym__block_close] = ACTIONS(1358), + [sym__block_quote_start] = ACTIONS(1358), + [sym__indented_chunk_start] = ACTIONS(1358), + [sym_atx_h1_marker] = ACTIONS(1358), + [sym_atx_h2_marker] = ACTIONS(1358), + [sym_atx_h3_marker] = ACTIONS(1358), + [sym_atx_h4_marker] = ACTIONS(1358), + [sym_atx_h5_marker] = ACTIONS(1358), + [sym_atx_h6_marker] = ACTIONS(1358), + [sym__thematic_break] = ACTIONS(1358), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(1358), + [sym__list_marker_star] = ACTIONS(1358), + [sym__list_marker_parenthesis] = ACTIONS(1358), + [sym__list_marker_dot] = ACTIONS(1358), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_example] = ACTIONS(1358), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1358), + [sym__fenced_code_block_start_backtick] = ACTIONS(1358), + [sym__fenced_code_block_start_tilde] = ACTIONS(1358), + [sym__blank_line_start] = ACTIONS(1358), + [sym_minus_metadata] = ACTIONS(1358), + [sym__pipe_table_start] = ACTIONS(1358), + [sym__fenced_div_start] = ACTIONS(1358), + [sym_ref_id_specifier] = ACTIONS(1358), + [sym__display_math_state_track_marker] = ACTIONS(1358), + [sym__inline_math_state_track_marker] = ACTIONS(1358), }, - [STATE(168)] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_BSLASH] = ACTIONS(1394), - [anon_sym_RBRACK] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [sym__word] = ACTIONS(1394), - [sym__soft_line_ending] = ACTIONS(1394), - [sym__block_quote_start] = ACTIONS(1394), - [sym__indented_chunk_start] = ACTIONS(1394), - [sym_atx_h1_marker] = ACTIONS(1394), - [sym_atx_h2_marker] = ACTIONS(1394), - [sym_atx_h3_marker] = ACTIONS(1394), - [sym_atx_h4_marker] = ACTIONS(1394), - [sym_atx_h5_marker] = ACTIONS(1394), - [sym_atx_h6_marker] = ACTIONS(1394), - [sym_setext_h1_underline] = ACTIONS(1394), - [sym_setext_h2_underline] = ACTIONS(1394), - [sym__thematic_break] = ACTIONS(1394), - [sym__list_marker_minus] = ACTIONS(1394), - [sym__list_marker_plus] = ACTIONS(1394), - [sym__list_marker_star] = ACTIONS(1394), - [sym__list_marker_parenthesis] = ACTIONS(1394), - [sym__list_marker_dot] = ACTIONS(1394), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), - [sym__fenced_code_block_start_backtick] = ACTIONS(1394), - [sym__fenced_code_block_start_tilde] = ACTIONS(1394), - [sym__blank_line_start] = ACTIONS(1394), - [sym_minus_metadata] = ACTIONS(1394), - [sym__pipe_table_start] = ACTIONS(1394), - [sym__fenced_div_start] = ACTIONS(1394), - [sym_ref_id_specifier] = ACTIONS(1394), - [sym__display_math_state_track_marker] = ACTIONS(1394), - [sym__inline_math_state_track_marker] = ACTIONS(1394), + [STATE(146)] = { + [sym_list_marker_star] = STATE(25), + [sym__list_item_star] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [sym__word] = ACTIONS(1360), + [sym__soft_line_ending] = ACTIONS(1360), + [sym__block_close] = ACTIONS(1360), + [sym__block_quote_start] = ACTIONS(1360), + [sym__indented_chunk_start] = ACTIONS(1360), + [sym_atx_h1_marker] = ACTIONS(1360), + [sym_atx_h2_marker] = ACTIONS(1360), + [sym_atx_h3_marker] = ACTIONS(1360), + [sym_atx_h4_marker] = ACTIONS(1360), + [sym_atx_h5_marker] = ACTIONS(1360), + [sym_atx_h6_marker] = ACTIONS(1360), + [sym__thematic_break] = ACTIONS(1360), + [sym__list_marker_minus] = ACTIONS(1360), + [sym__list_marker_plus] = ACTIONS(1360), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(1360), + [sym__list_marker_dot] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_example] = ACTIONS(1360), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1360), + [sym__fenced_code_block_start_backtick] = ACTIONS(1360), + [sym__fenced_code_block_start_tilde] = ACTIONS(1360), + [sym__blank_line_start] = ACTIONS(1360), + [sym_minus_metadata] = ACTIONS(1360), + [sym__pipe_table_start] = ACTIONS(1360), + [sym__fenced_div_start] = ACTIONS(1360), + [sym_ref_id_specifier] = ACTIONS(1360), + [sym__display_math_state_track_marker] = ACTIONS(1360), + [sym__inline_math_state_track_marker] = ACTIONS(1360), }, - [STATE(169)] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1390), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1390), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [sym__word] = ACTIONS(1390), - [sym__soft_line_ending] = ACTIONS(1390), - [sym__block_quote_start] = ACTIONS(1390), - [sym__indented_chunk_start] = ACTIONS(1390), - [sym_atx_h1_marker] = ACTIONS(1390), - [sym_atx_h2_marker] = ACTIONS(1390), - [sym_atx_h3_marker] = ACTIONS(1390), - [sym_atx_h4_marker] = ACTIONS(1390), - [sym_atx_h5_marker] = ACTIONS(1390), - [sym_atx_h6_marker] = ACTIONS(1390), - [sym_setext_h1_underline] = ACTIONS(1390), - [sym_setext_h2_underline] = ACTIONS(1390), - [sym__thematic_break] = ACTIONS(1390), - [sym__list_marker_minus] = ACTIONS(1390), - [sym__list_marker_plus] = ACTIONS(1390), - [sym__list_marker_star] = ACTIONS(1390), - [sym__list_marker_parenthesis] = ACTIONS(1390), - [sym__list_marker_dot] = ACTIONS(1390), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), - [sym__fenced_code_block_start_backtick] = ACTIONS(1390), - [sym__fenced_code_block_start_tilde] = ACTIONS(1390), - [sym__blank_line_start] = ACTIONS(1390), - [sym_minus_metadata] = ACTIONS(1390), - [sym__pipe_table_start] = ACTIONS(1390), - [sym__fenced_div_start] = ACTIONS(1390), - [sym_ref_id_specifier] = ACTIONS(1390), - [sym__display_math_state_track_marker] = ACTIONS(1390), - [sym__inline_math_state_track_marker] = ACTIONS(1390), + [STATE(147)] = { + [sym__blank_line] = STATE(1070), + [sym_table_caption] = STATE(250), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [sym__word] = ACTIONS(1412), + [sym__soft_line_ending] = ACTIONS(1412), + [sym__block_close] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1412), + [sym__indented_chunk_start] = ACTIONS(1412), + [sym_atx_h1_marker] = ACTIONS(1412), + [sym_atx_h2_marker] = ACTIONS(1412), + [sym_atx_h3_marker] = ACTIONS(1412), + [sym_atx_h4_marker] = ACTIONS(1412), + [sym_atx_h5_marker] = ACTIONS(1412), + [sym_atx_h6_marker] = ACTIONS(1412), + [sym__thematic_break] = ACTIONS(1412), + [sym__list_marker_minus] = ACTIONS(1412), + [sym__list_marker_plus] = ACTIONS(1412), + [sym__list_marker_star] = ACTIONS(1412), + [sym__list_marker_parenthesis] = ACTIONS(1412), + [sym__list_marker_dot] = ACTIONS(1412), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_example] = ACTIONS(1412), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1412), + [sym__fenced_code_block_start_backtick] = ACTIONS(1412), + [sym__fenced_code_block_start_tilde] = ACTIONS(1412), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1412), + [sym__pipe_table_start] = ACTIONS(1412), + [sym__fenced_div_start] = ACTIONS(1412), + [sym__fenced_div_end] = ACTIONS(1412), + [sym_ref_id_specifier] = ACTIONS(1412), + [sym__display_math_state_track_marker] = ACTIONS(1412), + [sym__inline_math_state_track_marker] = ACTIONS(1412), }, - [STATE(170)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_BSLASH] = ACTIONS(1394), - [anon_sym_RBRACK] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1394), - [anon_sym_BQUOTE] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1394), - [sym__word] = ACTIONS(1394), - [sym__soft_line_ending] = ACTIONS(1394), - [sym__block_close] = ACTIONS(1394), - [sym__block_quote_start] = ACTIONS(1394), - [sym__indented_chunk_start] = ACTIONS(1394), - [sym_atx_h1_marker] = ACTIONS(1394), - [sym_atx_h2_marker] = ACTIONS(1394), - [sym_atx_h3_marker] = ACTIONS(1394), - [sym_atx_h4_marker] = ACTIONS(1394), - [sym_atx_h5_marker] = ACTIONS(1394), - [sym_atx_h6_marker] = ACTIONS(1394), - [sym_setext_h1_underline] = ACTIONS(1394), - [sym_setext_h2_underline] = ACTIONS(1394), - [sym__thematic_break] = ACTIONS(1394), - [sym__list_marker_minus] = ACTIONS(1394), - [sym__list_marker_plus] = ACTIONS(1394), - [sym__list_marker_star] = ACTIONS(1394), - [sym__list_marker_parenthesis] = ACTIONS(1394), - [sym__list_marker_dot] = ACTIONS(1394), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1394), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1394), - [sym__fenced_code_block_start_backtick] = ACTIONS(1394), - [sym__fenced_code_block_start_tilde] = ACTIONS(1394), - [sym__blank_line_start] = ACTIONS(1394), - [sym_minus_metadata] = ACTIONS(1394), - [sym__pipe_table_start] = ACTIONS(1394), - [sym__fenced_div_start] = ACTIONS(1394), - [sym_ref_id_specifier] = ACTIONS(1394), - [sym__display_math_state_track_marker] = ACTIONS(1394), - [sym__inline_math_state_track_marker] = ACTIONS(1394), + [STATE(148)] = { + [sym__blank_line] = STATE(1070), + [sym_table_caption] = STATE(255), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [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), + [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(1416), + [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(1416), + [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(1414), + [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), }, - [STATE(171)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DOLLAR] = ACTIONS(1321), - [anon_sym_PERCENT] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_RPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1321), - [anon_sym_SLASH] = ACTIONS(1321), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_AT] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_BSLASH] = ACTIONS(1321), - [anon_sym_RBRACK] = ACTIONS(1321), - [anon_sym_CARET] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1321), - [anon_sym_BQUOTE] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1321), - [sym__word] = ACTIONS(1321), - [sym__soft_line_ending] = ACTIONS(1321), - [sym__block_close] = ACTIONS(1321), + [STATE(149)] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym__] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [sym__word] = ACTIONS(1350), + [sym__soft_line_ending] = ACTIONS(1350), [sym_block_continuation] = ACTIONS(1418), - [sym__block_quote_start] = ACTIONS(1321), - [sym__indented_chunk_start] = ACTIONS(1321), - [sym_atx_h1_marker] = ACTIONS(1321), - [sym_atx_h2_marker] = ACTIONS(1321), - [sym_atx_h3_marker] = ACTIONS(1321), - [sym_atx_h4_marker] = ACTIONS(1321), - [sym_atx_h5_marker] = ACTIONS(1321), - [sym_atx_h6_marker] = ACTIONS(1321), - [sym__thematic_break] = ACTIONS(1321), - [sym__list_marker_minus] = ACTIONS(1321), - [sym__list_marker_plus] = ACTIONS(1321), - [sym__list_marker_star] = ACTIONS(1321), - [sym__list_marker_parenthesis] = ACTIONS(1321), - [sym__list_marker_dot] = ACTIONS(1321), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1321), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1321), - [sym__fenced_code_block_start_backtick] = ACTIONS(1321), - [sym__fenced_code_block_start_tilde] = ACTIONS(1321), - [sym__blank_line_start] = ACTIONS(1321), - [sym_minus_metadata] = ACTIONS(1321), - [sym__pipe_table_start] = ACTIONS(1321), - [sym__fenced_div_start] = ACTIONS(1321), - [sym__fenced_div_end] = ACTIONS(1321), - [sym_ref_id_specifier] = ACTIONS(1321), - [sym__display_math_state_track_marker] = ACTIONS(1321), - [sym__inline_math_state_track_marker] = ACTIONS(1321), + [sym__block_quote_start] = ACTIONS(1350), + [sym__indented_chunk_start] = ACTIONS(1350), + [sym_atx_h1_marker] = ACTIONS(1350), + [sym_atx_h2_marker] = ACTIONS(1350), + [sym_atx_h3_marker] = ACTIONS(1350), + [sym_atx_h4_marker] = ACTIONS(1350), + [sym_atx_h5_marker] = ACTIONS(1350), + [sym_atx_h6_marker] = ACTIONS(1350), + [sym_setext_h1_underline] = ACTIONS(1350), + [sym_setext_h2_underline] = ACTIONS(1350), + [sym__thematic_break] = ACTIONS(1350), + [sym__list_marker_minus] = ACTIONS(1350), + [sym__list_marker_plus] = ACTIONS(1350), + [sym__list_marker_star] = ACTIONS(1350), + [sym__list_marker_parenthesis] = ACTIONS(1350), + [sym__list_marker_dot] = ACTIONS(1350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_example] = ACTIONS(1350), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1350), + [sym__fenced_code_block_start_backtick] = ACTIONS(1350), + [sym__fenced_code_block_start_tilde] = ACTIONS(1350), + [sym__blank_line_start] = ACTIONS(1350), + [sym_minus_metadata] = ACTIONS(1350), + [sym__pipe_table_start] = ACTIONS(1350), + [sym__fenced_div_start] = ACTIONS(1350), + [sym_ref_id_specifier] = ACTIONS(1350), + [sym__display_math_state_track_marker] = ACTIONS(1350), + [sym__inline_math_state_track_marker] = ACTIONS(1350), }, - [STATE(172)] = { + [STATE(150)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1420), [anon_sym_LBRACE] = ACTIONS(1420), [anon_sym_RBRACE] = ACTIONS(1420), @@ -21451,7 +21163,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(1420), [sym__soft_line_ending] = ACTIONS(1420), [sym__block_close] = ACTIONS(1420), - [sym_block_continuation] = ACTIONS(1422), [sym__block_quote_start] = ACTIONS(1420), [sym__indented_chunk_start] = ACTIONS(1420), [sym_atx_h1_marker] = ACTIONS(1420), @@ -21460,6 +21171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_atx_h4_marker] = ACTIONS(1420), [sym_atx_h5_marker] = ACTIONS(1420), [sym_atx_h6_marker] = ACTIONS(1420), + [sym_setext_h1_underline] = ACTIONS(1420), + [sym_setext_h2_underline] = ACTIONS(1420), [sym__thematic_break] = ACTIONS(1420), [sym__list_marker_minus] = ACTIONS(1420), [sym__list_marker_plus] = ACTIONS(1420), @@ -21471,6 +21184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21482,18483 +21197,22262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1420), [sym__inline_math_state_track_marker] = ACTIONS(1420), }, - [STATE(173)] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_AT] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_BSLASH] = ACTIONS(1370), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1370), - [anon_sym_BQUOTE] = ACTIONS(1370), - [anon_sym_PIPE] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1370), - [sym__word] = ACTIONS(1370), - [sym__soft_line_ending] = ACTIONS(1370), - [sym__block_quote_start] = ACTIONS(1370), - [sym__indented_chunk_start] = ACTIONS(1370), - [sym_atx_h1_marker] = ACTIONS(1370), - [sym_atx_h2_marker] = ACTIONS(1370), - [sym_atx_h3_marker] = ACTIONS(1370), - [sym_atx_h4_marker] = ACTIONS(1370), - [sym_atx_h5_marker] = ACTIONS(1370), - [sym_atx_h6_marker] = ACTIONS(1370), - [sym_setext_h1_underline] = ACTIONS(1424), - [sym_setext_h2_underline] = ACTIONS(1426), - [sym__thematic_break] = ACTIONS(1370), - [sym__list_marker_minus] = ACTIONS(1370), + [STATE(151)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym__] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [sym__word] = ACTIONS(1350), + [sym__soft_line_ending] = ACTIONS(1350), + [sym__block_close] = ACTIONS(1350), + [sym_block_continuation] = ACTIONS(1422), + [sym__block_quote_start] = ACTIONS(1350), + [sym__indented_chunk_start] = ACTIONS(1350), + [sym_atx_h1_marker] = ACTIONS(1350), + [sym_atx_h2_marker] = ACTIONS(1350), + [sym_atx_h3_marker] = ACTIONS(1350), + [sym_atx_h4_marker] = ACTIONS(1350), + [sym_atx_h5_marker] = ACTIONS(1350), + [sym_atx_h6_marker] = ACTIONS(1350), + [sym_setext_h1_underline] = ACTIONS(1350), + [sym_setext_h2_underline] = ACTIONS(1350), + [sym__thematic_break] = ACTIONS(1350), + [sym__list_marker_minus] = ACTIONS(1350), + [sym__list_marker_plus] = ACTIONS(1350), + [sym__list_marker_star] = ACTIONS(1350), + [sym__list_marker_parenthesis] = ACTIONS(1350), + [sym__list_marker_dot] = ACTIONS(1350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_example] = ACTIONS(1350), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1350), + [sym__fenced_code_block_start_backtick] = ACTIONS(1350), + [sym__fenced_code_block_start_tilde] = ACTIONS(1350), + [sym__blank_line_start] = ACTIONS(1350), + [sym_minus_metadata] = ACTIONS(1350), + [sym__pipe_table_start] = ACTIONS(1350), + [sym__fenced_div_start] = ACTIONS(1350), + [sym_ref_id_specifier] = ACTIONS(1350), + [sym__display_math_state_track_marker] = ACTIONS(1350), + [sym__inline_math_state_track_marker] = ACTIONS(1350), + }, + [STATE(152)] = { + [sym_list_marker_plus] = STATE(18), + [sym__list_item_plus] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(1368), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_BSLASH] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym__] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [sym__word] = ACTIONS(1368), + [sym__soft_line_ending] = ACTIONS(1368), + [sym__block_quote_start] = ACTIONS(1368), + [sym__indented_chunk_start] = ACTIONS(1368), + [sym_atx_h1_marker] = ACTIONS(1368), + [sym_atx_h2_marker] = ACTIONS(1368), + [sym_atx_h3_marker] = ACTIONS(1368), + [sym_atx_h4_marker] = ACTIONS(1368), + [sym_atx_h5_marker] = ACTIONS(1368), + [sym_atx_h6_marker] = ACTIONS(1368), + [sym__thematic_break] = ACTIONS(1368), + [sym__list_marker_minus] = ACTIONS(1368), [sym__list_marker_plus] = ACTIONS(1370), - [sym__list_marker_star] = ACTIONS(1370), - [sym__list_marker_parenthesis] = ACTIONS(1370), - [sym__list_marker_dot] = ACTIONS(1370), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_star] = ACTIONS(1368), + [sym__list_marker_parenthesis] = ACTIONS(1368), + [sym__list_marker_dot] = ACTIONS(1368), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1368), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1370), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1370), - [sym__fenced_code_block_start_backtick] = ACTIONS(1370), - [sym__fenced_code_block_start_tilde] = ACTIONS(1370), - [sym__blank_line_start] = ACTIONS(1370), - [sym_minus_metadata] = ACTIONS(1370), - [sym__pipe_table_start] = ACTIONS(1370), - [sym__fenced_div_start] = ACTIONS(1370), - [sym_ref_id_specifier] = ACTIONS(1370), - [sym__display_math_state_track_marker] = ACTIONS(1370), - [sym__inline_math_state_track_marker] = ACTIONS(1370), - }, - [STATE(174)] = { - [sym__blank_line] = STATE(1056), - [sym_table_caption] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(1386), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [sym__word] = ACTIONS(1386), - [sym__soft_line_ending] = ACTIONS(1386), - [sym__block_quote_start] = ACTIONS(1386), - [sym__indented_chunk_start] = ACTIONS(1386), - [sym_atx_h1_marker] = ACTIONS(1386), - [sym_atx_h2_marker] = ACTIONS(1386), - [sym_atx_h3_marker] = ACTIONS(1386), - [sym_atx_h4_marker] = ACTIONS(1386), - [sym_atx_h5_marker] = ACTIONS(1386), - [sym_atx_h6_marker] = ACTIONS(1386), - [sym__thematic_break] = ACTIONS(1386), - [sym__list_marker_minus] = ACTIONS(1386), - [sym__list_marker_plus] = ACTIONS(1386), - [sym__list_marker_star] = ACTIONS(1386), - [sym__list_marker_parenthesis] = ACTIONS(1386), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__fenced_code_block_start_backtick] = ACTIONS(1386), - [sym__fenced_code_block_start_tilde] = ACTIONS(1386), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1386), - [sym__pipe_table_start] = ACTIONS(1386), - [sym__fenced_div_start] = ACTIONS(1386), - [sym_ref_id_specifier] = ACTIONS(1386), - [sym__display_math_state_track_marker] = ACTIONS(1386), - [sym__inline_math_state_track_marker] = ACTIONS(1386), - }, - [STATE(175)] = { - [sym__blank_line] = STATE(1007), - [sym_table_caption] = STATE(407), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_DQUOTE] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1386), - [anon_sym_AT] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_BSLASH] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym__] = ACTIONS(1386), - [anon_sym_BQUOTE] = ACTIONS(1386), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_TILDE] = ACTIONS(1386), - [sym__word] = ACTIONS(1386), - [sym__soft_line_ending] = ACTIONS(1386), - [sym__block_close] = ACTIONS(1386), - [sym__block_quote_start] = ACTIONS(1386), - [sym__indented_chunk_start] = ACTIONS(1386), - [sym_atx_h1_marker] = ACTIONS(1386), - [sym_atx_h2_marker] = ACTIONS(1386), - [sym_atx_h3_marker] = ACTIONS(1386), - [sym_atx_h4_marker] = ACTIONS(1386), - [sym_atx_h5_marker] = ACTIONS(1386), - [sym_atx_h6_marker] = ACTIONS(1386), - [sym__thematic_break] = ACTIONS(1386), - [sym__list_marker_minus] = ACTIONS(1386), - [sym__list_marker_plus] = ACTIONS(1386), - [sym__list_marker_star] = ACTIONS(1386), - [sym__list_marker_parenthesis] = ACTIONS(1386), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__fenced_code_block_start_backtick] = ACTIONS(1386), - [sym__fenced_code_block_start_tilde] = ACTIONS(1386), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1386), - [sym__pipe_table_start] = ACTIONS(1386), - [sym__fenced_div_start] = ACTIONS(1386), - [sym_ref_id_specifier] = ACTIONS(1386), - [sym__display_math_state_track_marker] = ACTIONS(1386), - [sym__inline_math_state_track_marker] = ACTIONS(1386), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_example] = ACTIONS(1368), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1368), + [sym__fenced_code_block_start_backtick] = ACTIONS(1368), + [sym__fenced_code_block_start_tilde] = ACTIONS(1368), + [sym__blank_line_start] = ACTIONS(1368), + [sym_minus_metadata] = ACTIONS(1368), + [sym__pipe_table_start] = ACTIONS(1368), + [sym__fenced_div_start] = ACTIONS(1368), + [sym_ref_id_specifier] = ACTIONS(1368), + [sym__display_math_state_track_marker] = ACTIONS(1368), + [sym__inline_math_state_track_marker] = ACTIONS(1368), }, - [STATE(176)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PERCENT] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_BSLASH] = ACTIONS(1428), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_CARET] = ACTIONS(1428), - [anon_sym__] = ACTIONS(1428), - [anon_sym_BQUOTE] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [sym__word] = ACTIONS(1428), - [sym__soft_line_ending] = ACTIONS(1428), - [sym__block_close] = ACTIONS(1428), - [sym_block_continuation] = ACTIONS(1430), - [sym__block_quote_start] = ACTIONS(1428), - [sym__indented_chunk_start] = ACTIONS(1428), - [sym_atx_h1_marker] = ACTIONS(1428), - [sym_atx_h2_marker] = ACTIONS(1428), - [sym_atx_h3_marker] = ACTIONS(1428), - [sym_atx_h4_marker] = ACTIONS(1428), - [sym_atx_h5_marker] = ACTIONS(1428), - [sym_atx_h6_marker] = ACTIONS(1428), - [sym__thematic_break] = ACTIONS(1428), - [sym__list_marker_minus] = ACTIONS(1428), - [sym__list_marker_plus] = ACTIONS(1428), - [sym__list_marker_star] = ACTIONS(1428), - [sym__list_marker_parenthesis] = ACTIONS(1428), - [sym__list_marker_dot] = ACTIONS(1428), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), - [sym__fenced_code_block_start_backtick] = ACTIONS(1428), - [sym__fenced_code_block_start_tilde] = ACTIONS(1428), - [sym__blank_line_start] = ACTIONS(1428), - [sym_minus_metadata] = ACTIONS(1428), - [sym__pipe_table_start] = ACTIONS(1428), - [sym__fenced_div_start] = ACTIONS(1428), - [sym__fenced_div_end] = ACTIONS(1428), - [sym_ref_id_specifier] = ACTIONS(1428), - [sym__display_math_state_track_marker] = ACTIONS(1428), - [sym__inline_math_state_track_marker] = ACTIONS(1428), - }, - [STATE(177)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_PERCENT] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_GT] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1432), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_BSLASH] = ACTIONS(1432), - [anon_sym_RBRACK] = ACTIONS(1432), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym__] = ACTIONS(1432), - [anon_sym_BQUOTE] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [sym__word] = ACTIONS(1432), - [sym__soft_line_ending] = ACTIONS(1432), - [sym__block_close] = ACTIONS(1432), - [sym_block_continuation] = ACTIONS(1434), - [sym__block_quote_start] = ACTIONS(1432), - [sym__indented_chunk_start] = ACTIONS(1432), - [sym_atx_h1_marker] = ACTIONS(1432), - [sym_atx_h2_marker] = ACTIONS(1432), - [sym_atx_h3_marker] = ACTIONS(1432), - [sym_atx_h4_marker] = ACTIONS(1432), - [sym_atx_h5_marker] = ACTIONS(1432), - [sym_atx_h6_marker] = ACTIONS(1432), - [sym__thematic_break] = ACTIONS(1432), - [sym__list_marker_minus] = ACTIONS(1432), - [sym__list_marker_plus] = ACTIONS(1432), - [sym__list_marker_star] = ACTIONS(1432), - [sym__list_marker_parenthesis] = ACTIONS(1432), - [sym__list_marker_dot] = ACTIONS(1432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1432), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1432), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1432), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1432), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1432), - [sym__fenced_code_block_start_backtick] = ACTIONS(1432), - [sym__fenced_code_block_start_tilde] = ACTIONS(1432), - [sym__blank_line_start] = ACTIONS(1432), - [sym_minus_metadata] = ACTIONS(1432), - [sym__pipe_table_start] = ACTIONS(1432), - [sym__fenced_div_start] = ACTIONS(1432), - [sym__fenced_div_end] = ACTIONS(1432), - [sym_ref_id_specifier] = ACTIONS(1432), - [sym__display_math_state_track_marker] = ACTIONS(1432), - [sym__inline_math_state_track_marker] = ACTIONS(1432), - }, - [STATE(178)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_EQ] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(1436), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_BSLASH] = ACTIONS(1436), - [anon_sym_RBRACK] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym__] = ACTIONS(1436), - [anon_sym_BQUOTE] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [sym__word] = ACTIONS(1436), - [sym__soft_line_ending] = ACTIONS(1436), - [sym__block_close] = ACTIONS(1436), - [sym_block_continuation] = ACTIONS(1438), - [sym__block_quote_start] = ACTIONS(1436), - [sym__indented_chunk_start] = ACTIONS(1436), - [sym_atx_h1_marker] = ACTIONS(1436), - [sym_atx_h2_marker] = ACTIONS(1436), - [sym_atx_h3_marker] = ACTIONS(1436), - [sym_atx_h4_marker] = ACTIONS(1436), - [sym_atx_h5_marker] = ACTIONS(1436), - [sym_atx_h6_marker] = ACTIONS(1436), - [sym__thematic_break] = ACTIONS(1436), - [sym__list_marker_minus] = ACTIONS(1436), - [sym__list_marker_plus] = ACTIONS(1436), - [sym__list_marker_star] = ACTIONS(1436), - [sym__list_marker_parenthesis] = ACTIONS(1436), - [sym__list_marker_dot] = ACTIONS(1436), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1436), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1436), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1436), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1436), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1436), - [sym__fenced_code_block_start_backtick] = ACTIONS(1436), - [sym__fenced_code_block_start_tilde] = ACTIONS(1436), - [sym__blank_line_start] = ACTIONS(1436), - [sym_minus_metadata] = ACTIONS(1436), - [sym__pipe_table_start] = ACTIONS(1436), - [sym__fenced_div_start] = ACTIONS(1436), - [sym__fenced_div_end] = ACTIONS(1436), - [sym_ref_id_specifier] = ACTIONS(1436), - [sym__display_math_state_track_marker] = ACTIONS(1436), - [sym__inline_math_state_track_marker] = ACTIONS(1436), - }, - [STATE(179)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_BSLASH] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym__] = ACTIONS(1440), - [anon_sym_BQUOTE] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [sym__word] = ACTIONS(1440), - [sym__soft_line_ending] = ACTIONS(1440), - [sym__block_close] = ACTIONS(1440), - [sym_block_continuation] = ACTIONS(1442), - [sym__block_quote_start] = ACTIONS(1440), - [sym__indented_chunk_start] = ACTIONS(1440), - [sym_atx_h1_marker] = ACTIONS(1440), - [sym_atx_h2_marker] = ACTIONS(1440), - [sym_atx_h3_marker] = ACTIONS(1440), - [sym_atx_h4_marker] = ACTIONS(1440), - [sym_atx_h5_marker] = ACTIONS(1440), - [sym_atx_h6_marker] = ACTIONS(1440), - [sym__thematic_break] = ACTIONS(1440), - [sym__list_marker_minus] = ACTIONS(1440), - [sym__list_marker_plus] = ACTIONS(1440), - [sym__list_marker_star] = ACTIONS(1440), - [sym__list_marker_parenthesis] = ACTIONS(1440), - [sym__list_marker_dot] = ACTIONS(1440), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1440), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1440), - [sym__fenced_code_block_start_backtick] = ACTIONS(1440), - [sym__fenced_code_block_start_tilde] = ACTIONS(1440), - [sym__blank_line_start] = ACTIONS(1440), - [sym_minus_metadata] = ACTIONS(1440), - [sym__pipe_table_start] = ACTIONS(1440), - [sym__fenced_div_start] = ACTIONS(1440), - [sym__fenced_div_end] = ACTIONS(1440), - [sym_ref_id_specifier] = ACTIONS(1440), - [sym__display_math_state_track_marker] = ACTIONS(1440), - [sym__inline_math_state_track_marker] = ACTIONS(1440), + [STATE(153)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_close] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym_setext_h1_underline] = ACTIONS(1424), + [sym_setext_h2_underline] = 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(1424), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym__fenced_div_end] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), }, - [STATE(180)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_BSLASH] = ACTIONS(1444), - [anon_sym_RBRACK] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym__] = ACTIONS(1444), - [anon_sym_BQUOTE] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [sym__word] = ACTIONS(1444), - [sym__soft_line_ending] = ACTIONS(1444), - [sym__block_close] = ACTIONS(1444), - [sym_block_continuation] = ACTIONS(1446), - [sym__block_quote_start] = ACTIONS(1444), - [sym__indented_chunk_start] = ACTIONS(1444), - [sym_atx_h1_marker] = ACTIONS(1444), - [sym_atx_h2_marker] = ACTIONS(1444), - [sym_atx_h3_marker] = ACTIONS(1444), - [sym_atx_h4_marker] = ACTIONS(1444), - [sym_atx_h5_marker] = ACTIONS(1444), - [sym_atx_h6_marker] = ACTIONS(1444), - [sym__thematic_break] = ACTIONS(1444), - [sym__list_marker_minus] = ACTIONS(1444), - [sym__list_marker_plus] = ACTIONS(1444), - [sym__list_marker_star] = ACTIONS(1444), - [sym__list_marker_parenthesis] = ACTIONS(1444), - [sym__list_marker_dot] = ACTIONS(1444), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1444), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1444), - [sym__fenced_code_block_start_backtick] = ACTIONS(1444), - [sym__fenced_code_block_start_tilde] = ACTIONS(1444), - [sym__blank_line_start] = ACTIONS(1444), - [sym_minus_metadata] = ACTIONS(1444), - [sym__pipe_table_start] = ACTIONS(1444), - [sym__fenced_div_start] = ACTIONS(1444), - [sym__fenced_div_end] = ACTIONS(1444), - [sym_ref_id_specifier] = ACTIONS(1444), - [sym__display_math_state_track_marker] = ACTIONS(1444), - [sym__inline_math_state_track_marker] = ACTIONS(1444), + [STATE(154)] = { + [sym_list_marker_dot] = STATE(26), + [sym__list_item_dot] = STATE(138), + [aux_sym__list_dot_repeat1] = STATE(138), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym__] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [sym__word] = ACTIONS(1362), + [sym__soft_line_ending] = ACTIONS(1362), + [sym__block_close] = ACTIONS(1362), + [sym__block_quote_start] = ACTIONS(1362), + [sym__indented_chunk_start] = ACTIONS(1362), + [sym_atx_h1_marker] = ACTIONS(1362), + [sym_atx_h2_marker] = ACTIONS(1362), + [sym_atx_h3_marker] = ACTIONS(1362), + [sym_atx_h4_marker] = ACTIONS(1362), + [sym_atx_h5_marker] = ACTIONS(1362), + [sym_atx_h6_marker] = ACTIONS(1362), + [sym__thematic_break] = ACTIONS(1362), + [sym__list_marker_minus] = ACTIONS(1362), + [sym__list_marker_plus] = ACTIONS(1362), + [sym__list_marker_star] = ACTIONS(1362), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(1362), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1362), + [sym__fenced_code_block_start_backtick] = ACTIONS(1362), + [sym__fenced_code_block_start_tilde] = ACTIONS(1362), + [sym__blank_line_start] = ACTIONS(1362), + [sym_minus_metadata] = ACTIONS(1362), + [sym__pipe_table_start] = ACTIONS(1362), + [sym__fenced_div_start] = ACTIONS(1362), + [sym_ref_id_specifier] = ACTIONS(1362), + [sym__display_math_state_track_marker] = ACTIONS(1362), + [sym__inline_math_state_track_marker] = ACTIONS(1362), }, - [STATE(181)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_AT] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_BSLASH] = ACTIONS(1448), - [anon_sym_RBRACK] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym__] = ACTIONS(1448), - [anon_sym_BQUOTE] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [sym__word] = ACTIONS(1448), - [sym__soft_line_ending] = ACTIONS(1448), - [sym__block_close] = ACTIONS(1448), - [sym_block_continuation] = ACTIONS(1450), - [sym__block_quote_start] = ACTIONS(1448), - [sym__indented_chunk_start] = ACTIONS(1448), - [sym_atx_h1_marker] = ACTIONS(1448), - [sym_atx_h2_marker] = ACTIONS(1448), - [sym_atx_h3_marker] = ACTIONS(1448), - [sym_atx_h4_marker] = ACTIONS(1448), - [sym_atx_h5_marker] = ACTIONS(1448), - [sym_atx_h6_marker] = ACTIONS(1448), - [sym__thematic_break] = ACTIONS(1448), - [sym__list_marker_minus] = ACTIONS(1448), - [sym__list_marker_plus] = ACTIONS(1448), - [sym__list_marker_star] = ACTIONS(1448), - [sym__list_marker_parenthesis] = ACTIONS(1448), - [sym__list_marker_dot] = ACTIONS(1448), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1448), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1448), - [sym__fenced_code_block_start_backtick] = ACTIONS(1448), - [sym__fenced_code_block_start_tilde] = ACTIONS(1448), - [sym__blank_line_start] = ACTIONS(1448), - [sym_minus_metadata] = ACTIONS(1448), - [sym__pipe_table_start] = ACTIONS(1448), - [sym__fenced_div_start] = ACTIONS(1448), - [sym__fenced_div_end] = ACTIONS(1448), - [sym_ref_id_specifier] = ACTIONS(1448), - [sym__display_math_state_track_marker] = ACTIONS(1448), - [sym__inline_math_state_track_marker] = ACTIONS(1448), + [STATE(155)] = { + [sym_list_marker_parenthesis] = STATE(27), + [sym__list_item_parenthesis] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(170), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_COMMA] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_BSLASH] = ACTIONS(1364), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym__] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [sym__word] = ACTIONS(1364), + [sym__soft_line_ending] = ACTIONS(1364), + [sym__block_close] = ACTIONS(1364), + [sym__block_quote_start] = ACTIONS(1364), + [sym__indented_chunk_start] = ACTIONS(1364), + [sym_atx_h1_marker] = ACTIONS(1364), + [sym_atx_h2_marker] = ACTIONS(1364), + [sym_atx_h3_marker] = ACTIONS(1364), + [sym_atx_h4_marker] = ACTIONS(1364), + [sym_atx_h5_marker] = ACTIONS(1364), + [sym_atx_h6_marker] = ACTIONS(1364), + [sym__thematic_break] = ACTIONS(1364), + [sym__list_marker_minus] = ACTIONS(1364), + [sym__list_marker_plus] = ACTIONS(1364), + [sym__list_marker_star] = ACTIONS(1364), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1364), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_example] = ACTIONS(1364), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), + [sym__fenced_code_block_start_backtick] = ACTIONS(1364), + [sym__fenced_code_block_start_tilde] = ACTIONS(1364), + [sym__blank_line_start] = ACTIONS(1364), + [sym_minus_metadata] = ACTIONS(1364), + [sym__pipe_table_start] = ACTIONS(1364), + [sym__fenced_div_start] = ACTIONS(1364), + [sym_ref_id_specifier] = ACTIONS(1364), + [sym__display_math_state_track_marker] = ACTIONS(1364), + [sym__inline_math_state_track_marker] = ACTIONS(1364), }, - [STATE(182)] = { - [sym__blank_line] = STATE(1007), - [sym_table_caption] = STATE(403), - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_QMARK] = ACTIONS(1382), - [anon_sym_AT] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_BSLASH] = ACTIONS(1382), - [anon_sym_RBRACK] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1382), - [anon_sym__] = ACTIONS(1382), - [anon_sym_BQUOTE] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1382), - [sym__word] = ACTIONS(1382), - [sym__soft_line_ending] = ACTIONS(1382), - [sym__block_close] = ACTIONS(1382), - [sym__block_quote_start] = ACTIONS(1382), - [sym__indented_chunk_start] = ACTIONS(1382), - [sym_atx_h1_marker] = ACTIONS(1382), - [sym_atx_h2_marker] = ACTIONS(1382), - [sym_atx_h3_marker] = ACTIONS(1382), - [sym_atx_h4_marker] = ACTIONS(1382), - [sym_atx_h5_marker] = ACTIONS(1382), - [sym_atx_h6_marker] = ACTIONS(1382), - [sym__thematic_break] = ACTIONS(1382), - [sym__list_marker_minus] = ACTIONS(1382), - [sym__list_marker_plus] = ACTIONS(1382), - [sym__list_marker_star] = ACTIONS(1382), - [sym__list_marker_parenthesis] = ACTIONS(1382), - [sym__list_marker_dot] = ACTIONS(1382), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1382), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1382), - [sym__fenced_code_block_start_backtick] = ACTIONS(1382), - [sym__fenced_code_block_start_tilde] = ACTIONS(1382), - [sym__blank_line_start] = ACTIONS(1384), - [sym_minus_metadata] = ACTIONS(1382), - [sym__pipe_table_start] = ACTIONS(1382), - [sym__fenced_div_start] = ACTIONS(1382), - [sym_ref_id_specifier] = ACTIONS(1382), - [sym__display_math_state_track_marker] = ACTIONS(1382), - [sym__inline_math_state_track_marker] = ACTIONS(1382), + [STATE(156)] = { + [sym_list_marker_example] = STATE(28), + [sym__list_item_example] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(171), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [sym__word] = ACTIONS(1366), + [sym__soft_line_ending] = ACTIONS(1366), + [sym__block_close] = ACTIONS(1366), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym_minus_metadata] = ACTIONS(1366), + [sym__pipe_table_start] = ACTIONS(1366), + [sym__fenced_div_start] = ACTIONS(1366), + [sym_ref_id_specifier] = ACTIONS(1366), + [sym__display_math_state_track_marker] = ACTIONS(1366), + [sym__inline_math_state_track_marker] = ACTIONS(1366), }, - [STATE(183)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_COMMA] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_BSLASH] = ACTIONS(1390), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym__] = ACTIONS(1390), - [anon_sym_BQUOTE] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_TILDE] = ACTIONS(1390), - [sym__word] = ACTIONS(1390), - [sym__soft_line_ending] = ACTIONS(1390), - [sym__block_close] = ACTIONS(1390), - [sym__block_quote_start] = ACTIONS(1390), - [sym__indented_chunk_start] = ACTIONS(1390), - [sym_atx_h1_marker] = ACTIONS(1390), - [sym_atx_h2_marker] = ACTIONS(1390), - [sym_atx_h3_marker] = ACTIONS(1390), - [sym_atx_h4_marker] = ACTIONS(1390), - [sym_atx_h5_marker] = ACTIONS(1390), - [sym_atx_h6_marker] = ACTIONS(1390), - [sym_setext_h1_underline] = ACTIONS(1390), - [sym_setext_h2_underline] = ACTIONS(1390), - [sym__thematic_break] = ACTIONS(1390), - [sym__list_marker_minus] = ACTIONS(1390), - [sym__list_marker_plus] = ACTIONS(1390), - [sym__list_marker_star] = ACTIONS(1390), - [sym__list_marker_parenthesis] = ACTIONS(1390), - [sym__list_marker_dot] = ACTIONS(1390), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1390), - [sym__fenced_code_block_start_backtick] = ACTIONS(1390), - [sym__fenced_code_block_start_tilde] = ACTIONS(1390), - [sym__blank_line_start] = ACTIONS(1390), - [sym_minus_metadata] = ACTIONS(1390), - [sym__pipe_table_start] = ACTIONS(1390), - [sym__fenced_div_start] = ACTIONS(1390), - [sym_ref_id_specifier] = ACTIONS(1390), - [sym__display_math_state_track_marker] = ACTIONS(1390), - [sym__inline_math_state_track_marker] = ACTIONS(1390), + [STATE(157)] = { + [sym_list_marker_example] = STATE(5), + [sym__list_item_example] = STATE(157), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1393), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_BSLASH] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym__] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [sym__word] = ACTIONS(1393), + [sym__soft_line_ending] = ACTIONS(1393), + [sym__block_quote_start] = ACTIONS(1393), + [sym__indented_chunk_start] = ACTIONS(1393), + [sym_atx_h1_marker] = ACTIONS(1393), + [sym_atx_h2_marker] = ACTIONS(1393), + [sym_atx_h3_marker] = ACTIONS(1393), + [sym_atx_h4_marker] = ACTIONS(1393), + [sym_atx_h5_marker] = ACTIONS(1393), + [sym_atx_h6_marker] = ACTIONS(1393), + [sym__thematic_break] = ACTIONS(1393), + [sym__list_marker_minus] = ACTIONS(1393), + [sym__list_marker_plus] = ACTIONS(1393), + [sym__list_marker_star] = ACTIONS(1393), + [sym__list_marker_parenthesis] = ACTIONS(1393), + [sym__list_marker_dot] = ACTIONS(1393), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_example] = ACTIONS(1395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1395), + [sym__fenced_code_block_start_backtick] = ACTIONS(1393), + [sym__fenced_code_block_start_tilde] = ACTIONS(1393), + [sym__blank_line_start] = ACTIONS(1393), + [sym_minus_metadata] = ACTIONS(1393), + [sym__pipe_table_start] = ACTIONS(1393), + [sym__fenced_div_start] = ACTIONS(1393), + [sym_ref_id_specifier] = ACTIONS(1393), + [sym__display_math_state_track_marker] = ACTIONS(1393), + [sym__inline_math_state_track_marker] = ACTIONS(1393), }, - [STATE(184)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_DOLLAR] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_BSLASH] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym__] = ACTIONS(1452), - [anon_sym_BQUOTE] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [sym__word] = ACTIONS(1452), - [sym__soft_line_ending] = ACTIONS(1452), - [sym__block_close] = ACTIONS(1452), - [sym_block_continuation] = ACTIONS(1454), - [sym__block_quote_start] = ACTIONS(1452), - [sym__indented_chunk_start] = ACTIONS(1452), - [sym_atx_h1_marker] = ACTIONS(1452), - [sym_atx_h2_marker] = ACTIONS(1452), - [sym_atx_h3_marker] = ACTIONS(1452), - [sym_atx_h4_marker] = ACTIONS(1452), - [sym_atx_h5_marker] = ACTIONS(1452), - [sym_atx_h6_marker] = ACTIONS(1452), - [sym__thematic_break] = ACTIONS(1452), - [sym__list_marker_minus] = ACTIONS(1452), - [sym__list_marker_plus] = ACTIONS(1452), - [sym__list_marker_star] = ACTIONS(1452), - [sym__list_marker_parenthesis] = ACTIONS(1452), - [sym__list_marker_dot] = ACTIONS(1452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1452), - [sym__fenced_code_block_start_backtick] = ACTIONS(1452), - [sym__fenced_code_block_start_tilde] = ACTIONS(1452), - [sym__blank_line_start] = ACTIONS(1452), - [sym_minus_metadata] = ACTIONS(1452), - [sym__pipe_table_start] = ACTIONS(1452), - [sym__fenced_div_start] = ACTIONS(1452), - [sym__fenced_div_end] = ACTIONS(1452), - [sym_ref_id_specifier] = ACTIONS(1452), - [sym__display_math_state_track_marker] = ACTIONS(1452), - [sym__inline_math_state_track_marker] = ACTIONS(1452), + [STATE(158)] = { + [sym_list_marker_plus] = STATE(18), + [sym__list_item_plus] = STATE(152), + [aux_sym__list_plus_repeat1] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(1356), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_AT] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_BSLASH] = ACTIONS(1356), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym__] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [sym__word] = ACTIONS(1356), + [sym__soft_line_ending] = ACTIONS(1356), + [sym__block_quote_start] = ACTIONS(1356), + [sym__indented_chunk_start] = ACTIONS(1356), + [sym_atx_h1_marker] = ACTIONS(1356), + [sym_atx_h2_marker] = ACTIONS(1356), + [sym_atx_h3_marker] = ACTIONS(1356), + [sym_atx_h4_marker] = ACTIONS(1356), + [sym_atx_h5_marker] = ACTIONS(1356), + [sym_atx_h6_marker] = ACTIONS(1356), + [sym__thematic_break] = ACTIONS(1356), + [sym__list_marker_minus] = ACTIONS(1356), + [sym__list_marker_plus] = ACTIONS(33), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(33), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), }, - [STATE(185)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1456), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_BSLASH] = ACTIONS(1456), - [anon_sym_RBRACK] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym__] = ACTIONS(1456), - [anon_sym_BQUOTE] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [sym__word] = ACTIONS(1456), - [sym__soft_line_ending] = ACTIONS(1456), - [sym__block_close] = ACTIONS(1456), - [sym_block_continuation] = ACTIONS(1458), - [sym__block_quote_start] = ACTIONS(1456), - [sym__indented_chunk_start] = ACTIONS(1456), - [sym_atx_h1_marker] = ACTIONS(1456), - [sym_atx_h2_marker] = ACTIONS(1456), - [sym_atx_h3_marker] = ACTIONS(1456), - [sym_atx_h4_marker] = ACTIONS(1456), - [sym_atx_h5_marker] = ACTIONS(1456), - [sym_atx_h6_marker] = ACTIONS(1456), - [sym__thematic_break] = ACTIONS(1456), - [sym__list_marker_minus] = ACTIONS(1456), - [sym__list_marker_plus] = ACTIONS(1456), - [sym__list_marker_star] = ACTIONS(1456), - [sym__list_marker_parenthesis] = ACTIONS(1456), - [sym__list_marker_dot] = ACTIONS(1456), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), - [sym__fenced_code_block_start_backtick] = ACTIONS(1456), - [sym__fenced_code_block_start_tilde] = ACTIONS(1456), - [sym__blank_line_start] = ACTIONS(1456), - [sym_minus_metadata] = ACTIONS(1456), - [sym__pipe_table_start] = ACTIONS(1456), - [sym__fenced_div_start] = ACTIONS(1456), - [sym__fenced_div_end] = ACTIONS(1456), - [sym_ref_id_specifier] = ACTIONS(1456), - [sym__display_math_state_track_marker] = ACTIONS(1456), - [sym__inline_math_state_track_marker] = ACTIONS(1456), + [STATE(159)] = { + [sym_list_marker_minus] = STATE(6), + [sym__list_item_minus] = STATE(139), + [aux_sym__list_minus_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(1358), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1358), + [anon_sym_AT] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_BSLASH] = ACTIONS(1358), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym__] = ACTIONS(1358), + [anon_sym_BQUOTE] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [sym__word] = ACTIONS(1358), + [sym__soft_line_ending] = ACTIONS(1358), + [sym__block_quote_start] = ACTIONS(1358), + [sym__indented_chunk_start] = ACTIONS(1358), + [sym_atx_h1_marker] = ACTIONS(1358), + [sym_atx_h2_marker] = ACTIONS(1358), + [sym_atx_h3_marker] = ACTIONS(1358), + [sym_atx_h4_marker] = ACTIONS(1358), + [sym_atx_h5_marker] = ACTIONS(1358), + [sym_atx_h6_marker] = ACTIONS(1358), + [sym__thematic_break] = ACTIONS(1358), + [sym__list_marker_minus] = ACTIONS(31), + [sym__list_marker_plus] = ACTIONS(1358), + [sym__list_marker_star] = ACTIONS(1358), + [sym__list_marker_parenthesis] = ACTIONS(1358), + [sym__list_marker_dot] = ACTIONS(1358), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1358), + [sym__list_marker_example] = ACTIONS(1358), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1358), + [sym__fenced_code_block_start_backtick] = ACTIONS(1358), + [sym__fenced_code_block_start_tilde] = ACTIONS(1358), + [sym__blank_line_start] = ACTIONS(1358), + [sym_minus_metadata] = ACTIONS(1358), + [sym__pipe_table_start] = ACTIONS(1358), + [sym__fenced_div_start] = ACTIONS(1358), + [sym_ref_id_specifier] = ACTIONS(1358), + [sym__display_math_state_track_marker] = ACTIONS(1358), + [sym__inline_math_state_track_marker] = ACTIONS(1358), }, - [STATE(186)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_DOLLAR] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_BSLASH] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym__] = ACTIONS(1460), - [anon_sym_BQUOTE] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [sym__word] = ACTIONS(1460), - [sym__soft_line_ending] = ACTIONS(1460), - [sym__block_close] = ACTIONS(1460), - [sym_block_continuation] = ACTIONS(1462), - [sym__block_quote_start] = ACTIONS(1460), - [sym__indented_chunk_start] = ACTIONS(1460), - [sym_atx_h1_marker] = ACTIONS(1460), - [sym_atx_h2_marker] = ACTIONS(1460), - [sym_atx_h3_marker] = ACTIONS(1460), - [sym_atx_h4_marker] = ACTIONS(1460), - [sym_atx_h5_marker] = ACTIONS(1460), - [sym_atx_h6_marker] = ACTIONS(1460), - [sym__thematic_break] = ACTIONS(1460), - [sym__list_marker_minus] = ACTIONS(1460), - [sym__list_marker_plus] = ACTIONS(1460), - [sym__list_marker_star] = ACTIONS(1460), - [sym__list_marker_parenthesis] = ACTIONS(1460), - [sym__list_marker_dot] = ACTIONS(1460), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1460), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1460), - [sym__fenced_code_block_start_backtick] = ACTIONS(1460), - [sym__fenced_code_block_start_tilde] = ACTIONS(1460), - [sym__blank_line_start] = ACTIONS(1460), - [sym_minus_metadata] = ACTIONS(1460), - [sym__pipe_table_start] = ACTIONS(1460), - [sym__fenced_div_start] = ACTIONS(1460), - [sym__fenced_div_end] = ACTIONS(1460), - [sym_ref_id_specifier] = ACTIONS(1460), - [sym__display_math_state_track_marker] = ACTIONS(1460), - [sym__inline_math_state_track_marker] = ACTIONS(1460), + [STATE(160)] = { + [sym__indented_chunk] = STATE(160), + [sym__blank_line] = STATE(160), + [aux_sym_indented_code_block_repeat1] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(1398), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1398), + [anon_sym_QMARK] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1398), + [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), + [sym__word] = ACTIONS(1398), + [sym__soft_line_ending] = ACTIONS(1398), + [sym__block_quote_start] = ACTIONS(1398), + [sym__indented_chunk_start] = ACTIONS(1426), + [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), + [sym__list_marker_plus] = ACTIONS(1398), + [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_plus_dont_interrupt] = ACTIONS(1398), + [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(1429), + [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), }, - [STATE(187)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_QMARK] = ACTIONS(1464), - [anon_sym_AT] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_BSLASH] = ACTIONS(1464), - [anon_sym_RBRACK] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym__] = ACTIONS(1464), - [anon_sym_BQUOTE] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [sym__word] = ACTIONS(1464), - [sym__soft_line_ending] = ACTIONS(1464), - [sym__block_close] = ACTIONS(1464), - [sym_block_continuation] = ACTIONS(1466), - [sym__block_quote_start] = ACTIONS(1464), - [sym__indented_chunk_start] = ACTIONS(1464), - [sym_atx_h1_marker] = ACTIONS(1464), - [sym_atx_h2_marker] = ACTIONS(1464), - [sym_atx_h3_marker] = ACTIONS(1464), - [sym_atx_h4_marker] = ACTIONS(1464), - [sym_atx_h5_marker] = ACTIONS(1464), - [sym_atx_h6_marker] = ACTIONS(1464), - [sym__thematic_break] = ACTIONS(1464), - [sym__list_marker_minus] = ACTIONS(1464), - [sym__list_marker_plus] = ACTIONS(1464), - [sym__list_marker_star] = ACTIONS(1464), - [sym__list_marker_parenthesis] = ACTIONS(1464), - [sym__list_marker_dot] = ACTIONS(1464), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), - [sym__fenced_code_block_start_backtick] = ACTIONS(1464), - [sym__fenced_code_block_start_tilde] = ACTIONS(1464), - [sym__blank_line_start] = ACTIONS(1464), - [sym_minus_metadata] = ACTIONS(1464), - [sym__pipe_table_start] = ACTIONS(1464), - [sym__fenced_div_start] = ACTIONS(1464), - [sym__fenced_div_end] = ACTIONS(1464), - [sym_ref_id_specifier] = ACTIONS(1464), - [sym__display_math_state_track_marker] = ACTIONS(1464), - [sym__inline_math_state_track_marker] = ACTIONS(1464), + [STATE(161)] = { + [sym_list_marker_star] = STATE(35), + [sym__list_item_star] = STATE(140), + [aux_sym__list_star_repeat1] = STATE(140), + [ts_builtin_sym_end] = ACTIONS(1360), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_DOT] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_AT] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_BSLASH] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym__] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [sym__word] = ACTIONS(1360), + [sym__soft_line_ending] = ACTIONS(1360), + [sym__block_quote_start] = ACTIONS(1360), + [sym__indented_chunk_start] = ACTIONS(1360), + [sym_atx_h1_marker] = ACTIONS(1360), + [sym_atx_h2_marker] = ACTIONS(1360), + [sym_atx_h3_marker] = ACTIONS(1360), + [sym_atx_h4_marker] = ACTIONS(1360), + [sym_atx_h5_marker] = ACTIONS(1360), + [sym_atx_h6_marker] = ACTIONS(1360), + [sym__thematic_break] = ACTIONS(1360), + [sym__list_marker_minus] = ACTIONS(1360), + [sym__list_marker_plus] = ACTIONS(1360), + [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_parenthesis] = ACTIONS(1360), + [sym__list_marker_dot] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_example] = ACTIONS(1360), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1360), + [sym__fenced_code_block_start_backtick] = ACTIONS(1360), + [sym__fenced_code_block_start_tilde] = ACTIONS(1360), + [sym__blank_line_start] = ACTIONS(1360), + [sym_minus_metadata] = ACTIONS(1360), + [sym__pipe_table_start] = ACTIONS(1360), + [sym__fenced_div_start] = ACTIONS(1360), + [sym_ref_id_specifier] = ACTIONS(1360), + [sym__display_math_state_track_marker] = ACTIONS(1360), + [sym__inline_math_state_track_marker] = ACTIONS(1360), }, - [STATE(188)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_COMMA] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_QMARK] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_BSLASH] = ACTIONS(1468), - [anon_sym_RBRACK] = ACTIONS(1468), - [anon_sym_CARET] = ACTIONS(1468), - [anon_sym__] = ACTIONS(1468), - [anon_sym_BQUOTE] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [sym__word] = ACTIONS(1468), - [sym__soft_line_ending] = ACTIONS(1468), - [sym__block_close] = ACTIONS(1468), - [sym_block_continuation] = ACTIONS(1470), - [sym__block_quote_start] = ACTIONS(1468), - [sym__indented_chunk_start] = ACTIONS(1468), - [sym_atx_h1_marker] = ACTIONS(1468), - [sym_atx_h2_marker] = ACTIONS(1468), - [sym_atx_h3_marker] = ACTIONS(1468), - [sym_atx_h4_marker] = ACTIONS(1468), - [sym_atx_h5_marker] = ACTIONS(1468), - [sym_atx_h6_marker] = ACTIONS(1468), - [sym__thematic_break] = ACTIONS(1468), - [sym__list_marker_minus] = ACTIONS(1468), - [sym__list_marker_plus] = ACTIONS(1468), - [sym__list_marker_star] = ACTIONS(1468), - [sym__list_marker_parenthesis] = ACTIONS(1468), - [sym__list_marker_dot] = ACTIONS(1468), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), - [sym__fenced_code_block_start_backtick] = ACTIONS(1468), - [sym__fenced_code_block_start_tilde] = ACTIONS(1468), - [sym__blank_line_start] = ACTIONS(1468), - [sym_minus_metadata] = ACTIONS(1468), - [sym__pipe_table_start] = ACTIONS(1468), - [sym__fenced_div_start] = ACTIONS(1468), - [sym__fenced_div_end] = ACTIONS(1468), - [sym_ref_id_specifier] = ACTIONS(1468), - [sym__display_math_state_track_marker] = ACTIONS(1468), - [sym__inline_math_state_track_marker] = ACTIONS(1468), + [STATE(162)] = { + [sym_list_marker_dot] = STATE(3), + [sym__list_item_dot] = STATE(141), + [aux_sym__list_dot_repeat1] = STATE(141), + [ts_builtin_sym_end] = ACTIONS(1362), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_PERCENT] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_COMMA] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DOT] = ACTIONS(1362), + [anon_sym_SLASH] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_GT] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1362), + [anon_sym_AT] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_BSLASH] = ACTIONS(1362), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym__] = ACTIONS(1362), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [sym__word] = ACTIONS(1362), + [sym__soft_line_ending] = ACTIONS(1362), + [sym__block_quote_start] = ACTIONS(1362), + [sym__indented_chunk_start] = ACTIONS(1362), + [sym_atx_h1_marker] = ACTIONS(1362), + [sym_atx_h2_marker] = ACTIONS(1362), + [sym_atx_h3_marker] = ACTIONS(1362), + [sym_atx_h4_marker] = ACTIONS(1362), + [sym_atx_h5_marker] = ACTIONS(1362), + [sym_atx_h6_marker] = ACTIONS(1362), + [sym__thematic_break] = ACTIONS(1362), + [sym__list_marker_minus] = ACTIONS(1362), + [sym__list_marker_plus] = ACTIONS(1362), + [sym__list_marker_star] = ACTIONS(1362), + [sym__list_marker_parenthesis] = ACTIONS(1362), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1362), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(39), + [sym__list_marker_example] = ACTIONS(1362), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1362), + [sym__fenced_code_block_start_backtick] = ACTIONS(1362), + [sym__fenced_code_block_start_tilde] = ACTIONS(1362), + [sym__blank_line_start] = ACTIONS(1362), + [sym_minus_metadata] = ACTIONS(1362), + [sym__pipe_table_start] = ACTIONS(1362), + [sym__fenced_div_start] = ACTIONS(1362), + [sym_ref_id_specifier] = ACTIONS(1362), + [sym__display_math_state_track_marker] = ACTIONS(1362), + [sym__inline_math_state_track_marker] = ACTIONS(1362), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 1, - ACTIONS(1456), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [67] = 1, - ACTIONS(1472), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [134] = 1, - ACTIONS(1474), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [201] = 1, - ACTIONS(1476), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [268] = 1, - ACTIONS(1478), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [335] = 1, - ACTIONS(1480), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [402] = 1, - ACTIONS(1482), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [469] = 1, - ACTIONS(1484), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [536] = 1, - ACTIONS(1486), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [603] = 1, - ACTIONS(1488), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [670] = 1, - ACTIONS(1490), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [737] = 2, - ACTIONS(1492), 1, - sym_block_continuation, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [806] = 1, - ACTIONS(1494), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [873] = 2, - ACTIONS(1496), 1, - sym_block_continuation, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [942] = 1, - ACTIONS(1448), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1009] = 1, - ACTIONS(1498), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1076] = 1, - ACTIONS(1500), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1143] = 1, - ACTIONS(1502), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1210] = 1, - ACTIONS(1504), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1277] = 1, - ACTIONS(1506), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1344] = 1, - ACTIONS(1508), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1411] = 1, - ACTIONS(1510), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1478] = 1, - ACTIONS(1512), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1545] = 1, - ACTIONS(1514), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1612] = 2, - ACTIONS(1516), 1, - sym_block_continuation, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1681] = 1, - ACTIONS(1402), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1748] = 1, - ACTIONS(1518), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1815] = 1, - ACTIONS(1452), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1882] = 1, - ACTIONS(1520), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [1949] = 2, - ACTIONS(1522), 1, - sym_block_continuation, - ACTIONS(1436), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2018] = 1, - ACTIONS(1524), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2085] = 1, - ACTIONS(1460), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2152] = 1, - ACTIONS(1520), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2219] = 1, - ACTIONS(1464), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2286] = 1, - ACTIONS(1526), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2353] = 1, - ACTIONS(1528), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2420] = 2, - ACTIONS(1530), 1, - sym_block_continuation, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2489] = 1, - ACTIONS(1532), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2556] = 1, - ACTIONS(1534), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2623] = 1, - ACTIONS(1536), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2690] = 1, - ACTIONS(1538), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2757] = 1, - ACTIONS(1540), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2824] = 1, - ACTIONS(1542), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2891] = 1, - ACTIONS(1544), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [2958] = 1, - ACTIONS(1546), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3025] = 1, - ACTIONS(1386), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3092] = 2, - ACTIONS(1548), 1, - sym_block_continuation, - ACTIONS(1444), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3161] = 1, - ACTIONS(1550), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3228] = 1, - ACTIONS(1552), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3295] = 1, - ACTIONS(1554), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3362] = 1, - ACTIONS(1556), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3429] = 1, - ACTIONS(1558), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3496] = 1, - ACTIONS(1560), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3563] = 1, - ACTIONS(1562), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3630] = 1, - ACTIONS(1564), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3697] = 1, - ACTIONS(1566), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3764] = 2, - ACTIONS(1568), 1, - sym_block_continuation, - ACTIONS(1440), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3833] = 1, - ACTIONS(1570), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3900] = 1, - ACTIONS(1572), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [3967] = 1, - ACTIONS(1574), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4034] = 1, - ACTIONS(1576), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4101] = 1, - ACTIONS(1578), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4168] = 2, - ACTIONS(1580), 1, - sym_block_continuation, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4237] = 1, - ACTIONS(1582), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4304] = 2, - ACTIONS(1584), 1, - sym_block_continuation, - ACTIONS(1321), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4373] = 1, - ACTIONS(1390), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4440] = 1, - ACTIONS(1586), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4507] = 2, - ACTIONS(1588), 1, - sym_block_continuation, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4576] = 2, - ACTIONS(1590), 1, - sym_block_continuation, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4645] = 1, - ACTIONS(1394), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4712] = 1, - ACTIONS(1468), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4779] = 2, - ACTIONS(1592), 1, - sym_block_continuation, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4848] = 1, - ACTIONS(1410), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4915] = 2, - ACTIONS(1594), 1, - sym_block_continuation, - ACTIONS(1420), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [4984] = 2, - ACTIONS(1596), 1, - sym_block_continuation, - ACTIONS(1321), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5053] = 2, - ACTIONS(1598), 1, - sym_block_continuation, - ACTIONS(1406), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5122] = 2, - ACTIONS(1600), 1, - sym_block_continuation, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5191] = 1, - ACTIONS(1602), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5258] = 2, - ACTIONS(1604), 1, - sym_block_continuation, - ACTIONS(1428), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5327] = 2, - ACTIONS(1606), 1, - sym_block_continuation, - ACTIONS(1432), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5396] = 1, - ACTIONS(1608), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5463] = 2, - ACTIONS(1610), 1, - sym_block_continuation, - ACTIONS(1436), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5532] = 2, - ACTIONS(1612), 1, - sym_block_continuation, - ACTIONS(1440), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5601] = 1, - ACTIONS(1614), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5668] = 1, - ACTIONS(1616), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5735] = 1, - ACTIONS(1618), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5802] = 1, - ACTIONS(1620), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5869] = 1, - ACTIONS(1622), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [5936] = 2, - ACTIONS(1624), 1, - sym_block_continuation, - ACTIONS(1420), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6005] = 2, - ACTIONS(1626), 1, - sym_block_continuation, - ACTIONS(1444), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6074] = 1, - ACTIONS(1628), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6141] = 2, - ACTIONS(1630), 1, - sym_block_continuation, - ACTIONS(1406), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6210] = 1, - ACTIONS(1632), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6277] = 1, - ACTIONS(1634), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6344] = 1, - ACTIONS(1636), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6411] = 1, - ACTIONS(1638), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6478] = 1, - ACTIONS(1640), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6545] = 2, - ACTIONS(1642), 1, - sym_block_continuation, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6614] = 2, - ACTIONS(1644), 1, - sym_block_continuation, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6683] = 2, - ACTIONS(1646), 1, - sym_block_continuation, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6752] = 2, - ACTIONS(1648), 1, - sym_block_continuation, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6821] = 3, - ACTIONS(1650), 1, - sym__blank_line_start, - STATE(1001), 1, - sym__blank_line, - ACTIONS(1370), 62, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6892] = 2, - ACTIONS(1652), 1, - sym_block_continuation, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [6961] = 2, - ACTIONS(1654), 1, - sym_block_continuation, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7030] = 2, - ACTIONS(1656), 1, - sym_block_continuation, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7099] = 1, - ACTIONS(1658), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7166] = 2, - ACTIONS(1660), 1, - sym_block_continuation, - ACTIONS(1428), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7235] = 2, - ACTIONS(1662), 1, - sym_block_continuation, - ACTIONS(1432), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7304] = 1, - ACTIONS(1664), 64, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym__fenced_div_end, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7371] = 1, - ACTIONS(1666), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7437] = 1, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7503] = 1, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7569] = 1, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7635] = 1, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7701] = 1, - ACTIONS(1526), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7767] = 1, - ACTIONS(1528), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7833] = 1, - ACTIONS(1474), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7899] = 1, - ACTIONS(1534), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7965] = 1, - ACTIONS(1536), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8031] = 1, - ACTIONS(1538), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8097] = 1, - ACTIONS(1540), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8163] = 1, - ACTIONS(1542), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8229] = 1, - ACTIONS(1544), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8295] = 1, - ACTIONS(1546), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8361] = 1, - ACTIONS(1386), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8427] = 1, - ACTIONS(1476), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8493] = 1, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8559] = 1, - ACTIONS(1550), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8625] = 1, - ACTIONS(1552), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8691] = 1, - ACTIONS(1554), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8757] = 1, - ACTIONS(1556), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8823] = 1, - ACTIONS(1558), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8889] = 1, - ACTIONS(1560), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8955] = 1, - ACTIONS(1562), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9021] = 1, - ACTIONS(1564), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9087] = 1, - ACTIONS(1566), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9153] = 1, - ACTIONS(1664), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9219] = 1, - ACTIONS(1570), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9285] = 1, - ACTIONS(1572), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9351] = 1, - ACTIONS(1574), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9417] = 1, - ACTIONS(1582), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9483] = 1, - ACTIONS(1586), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9549] = 1, - ACTIONS(1478), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9615] = 1, - ACTIONS(1480), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9681] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9747] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9813] = 1, - ACTIONS(1578), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9879] = 1, - ACTIONS(1482), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9945] = 1, - ACTIONS(1488), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10011] = 1, - ACTIONS(1472), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10077] = 1, - ACTIONS(1474), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10143] = 1, - ACTIONS(1476), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10209] = 1, - ACTIONS(1478), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10275] = 1, - ACTIONS(1480), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10341] = 1, - ACTIONS(1482), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10407] = 1, - ACTIONS(1488), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10473] = 1, - ACTIONS(1576), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10539] = 1, - ACTIONS(1490), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10605] = 1, - ACTIONS(1494), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10671] = 1, - ACTIONS(1498), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10737] = 1, - ACTIONS(1576), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10803] = 1, - ACTIONS(1518), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10869] = 1, - ACTIONS(1582), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [10935] = 1, - ACTIONS(1524), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11001] = 1, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11067] = 1, - ACTIONS(1394), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11133] = 1, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11199] = 1, - ACTIONS(1602), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11265] = 1, - ACTIONS(1608), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11331] = 1, - ACTIONS(1614), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11397] = 1, - ACTIONS(1616), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11463] = 1, - ACTIONS(1618), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11529] = 1, - ACTIONS(1620), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11595] = 1, - ACTIONS(1622), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11661] = 1, - ACTIONS(1628), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11727] = 1, - ACTIONS(1632), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11793] = 1, - ACTIONS(1634), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11859] = 1, - ACTIONS(1636), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11925] = 1, - ACTIONS(1638), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [11991] = 1, - ACTIONS(1640), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12057] = 1, - ACTIONS(1658), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12123] = 1, - ACTIONS(1490), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12189] = 1, - ACTIONS(1494), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12255] = 1, - ACTIONS(1484), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12321] = 1, - ACTIONS(1486), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12387] = 1, - ACTIONS(1498), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12453] = 1, - ACTIONS(1518), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12519] = 1, - ACTIONS(1524), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12585] = 1, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12651] = 1, - ACTIONS(1500), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12717] = 1, - ACTIONS(1502), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12783] = 1, - ACTIONS(1504), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12849] = 1, - ACTIONS(1506), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12915] = 1, - ACTIONS(1508), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [12981] = 1, - ACTIONS(1510), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13047] = 1, - ACTIONS(1512), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13113] = 1, - ACTIONS(1514), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13179] = 1, - ACTIONS(1402), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13245] = 1, - ACTIONS(1452), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13311] = 1, - ACTIONS(1456), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13377] = 1, - ACTIONS(1460), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13443] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13509] = 1, - ACTIONS(1464), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13575] = 1, - ACTIONS(1526), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13641] = 1, - ACTIONS(1528), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13707] = 1, - ACTIONS(1520), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13773] = 1, - ACTIONS(1532), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13839] = 1, - ACTIONS(1534), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13905] = 1, - ACTIONS(1536), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [13971] = 1, - ACTIONS(1538), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14037] = 1, - ACTIONS(1540), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14103] = 1, - ACTIONS(1542), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14169] = 1, - ACTIONS(1544), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14235] = 1, - ACTIONS(1546), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14301] = 1, - ACTIONS(1386), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14367] = 1, - ACTIONS(1550), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14433] = 1, - ACTIONS(1552), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14499] = 1, - ACTIONS(1554), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14565] = 1, - ACTIONS(1556), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14631] = 1, - ACTIONS(1558), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14697] = 1, - ACTIONS(1560), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14763] = 1, - ACTIONS(1562), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14829] = 1, - ACTIONS(1564), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14895] = 1, - ACTIONS(1566), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [14961] = 1, - ACTIONS(1664), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15027] = 1, - ACTIONS(1570), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15093] = 1, - ACTIONS(1572), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15159] = 1, - ACTIONS(1574), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15225] = 1, - ACTIONS(1668), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15291] = 1, - ACTIONS(1578), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15357] = 1, - ACTIONS(1670), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15423] = 1, - ACTIONS(1672), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15489] = 1, - ACTIONS(1674), 63, - sym__soft_line_ending, - sym_block_continuation, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15555] = 1, - ACTIONS(1468), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15621] = 1, - ACTIONS(1410), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15687] = 1, - ACTIONS(1390), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15753] = 1, - ACTIONS(1602), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15819] = 1, - ACTIONS(1608), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15885] = 1, - ACTIONS(1614), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [15951] = 1, - ACTIONS(1616), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16017] = 1, - ACTIONS(1618), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16083] = 1, - ACTIONS(1620), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16149] = 1, - ACTIONS(1622), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16215] = 1, - ACTIONS(1628), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16281] = 1, - ACTIONS(1632), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16347] = 1, - ACTIONS(1634), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16413] = 1, - ACTIONS(1636), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16479] = 1, - ACTIONS(1638), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16545] = 1, - ACTIONS(1640), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16611] = 1, - ACTIONS(1658), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16677] = 1, - ACTIONS(1484), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16743] = 1, - ACTIONS(1486), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16809] = 1, - ACTIONS(1448), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16875] = 1, - ACTIONS(1500), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [16941] = 1, - ACTIONS(1390), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17007] = 1, - ACTIONS(1502), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17073] = 1, - ACTIONS(1394), 63, - sym__soft_line_ending, - sym__block_close, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17139] = 1, - ACTIONS(1504), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17205] = 1, - ACTIONS(1506), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17271] = 1, - ACTIONS(1508), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17337] = 1, - ACTIONS(1510), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17403] = 1, - ACTIONS(1512), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17469] = 1, - ACTIONS(1514), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17535] = 1, - ACTIONS(1472), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17601] = 1, - ACTIONS(1532), 63, - sym__soft_line_ending, - sym__block_quote_start, - sym__indented_chunk_start, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - sym__thematic_break, - sym__list_marker_minus, - sym__list_marker_plus, - sym__list_marker_star, - sym__list_marker_parenthesis, - sym__list_marker_dot, - sym__list_marker_minus_dont_interrupt, - sym__list_marker_plus_dont_interrupt, - sym__list_marker_star_dont_interrupt, - sym__list_marker_parenthesis_dont_interrupt, - sym__list_marker_dot_dont_interrupt, - sym__fenced_code_block_start_backtick, - sym__fenced_code_block_start_tilde, - sym__blank_line_start, - sym_minus_metadata, - sym__pipe_table_start, - sym__fenced_div_start, - sym_ref_id_specifier, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - ts_builtin_sym_end, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [17667] = 14, - ACTIONS(1678), 1, + [STATE(163)] = { + [sym_list_marker_parenthesis] = STATE(4), + [sym__list_item_parenthesis] = STATE(174), + [aux_sym__list_parenthesis_repeat1] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(1364), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_COMMA] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_DOT] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_AT] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_BSLASH] = ACTIONS(1364), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym__] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [sym__word] = ACTIONS(1364), + [sym__soft_line_ending] = ACTIONS(1364), + [sym__block_quote_start] = ACTIONS(1364), + [sym__indented_chunk_start] = ACTIONS(1364), + [sym_atx_h1_marker] = ACTIONS(1364), + [sym_atx_h2_marker] = ACTIONS(1364), + [sym_atx_h3_marker] = ACTIONS(1364), + [sym_atx_h4_marker] = ACTIONS(1364), + [sym_atx_h5_marker] = ACTIONS(1364), + [sym_atx_h6_marker] = ACTIONS(1364), + [sym__thematic_break] = ACTIONS(1364), + [sym__list_marker_minus] = ACTIONS(1364), + [sym__list_marker_plus] = ACTIONS(1364), + [sym__list_marker_star] = ACTIONS(1364), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1364), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1364), + [sym__list_marker_example] = ACTIONS(1364), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), + [sym__fenced_code_block_start_backtick] = ACTIONS(1364), + [sym__fenced_code_block_start_tilde] = ACTIONS(1364), + [sym__blank_line_start] = ACTIONS(1364), + [sym_minus_metadata] = ACTIONS(1364), + [sym__pipe_table_start] = ACTIONS(1364), + [sym__fenced_div_start] = ACTIONS(1364), + [sym_ref_id_specifier] = ACTIONS(1364), + [sym__display_math_state_track_marker] = ACTIONS(1364), + [sym__inline_math_state_track_marker] = ACTIONS(1364), + }, + [STATE(164)] = { + [sym_list_marker_example] = STATE(5), + [sym__list_item_example] = STATE(157), + [aux_sym__list_example_repeat1] = STATE(157), + [ts_builtin_sym_end] = ACTIONS(1366), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_PERCENT] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_DOT] = ACTIONS(1366), + [anon_sym_SLASH] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_BSLASH] = ACTIONS(1366), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1366), + [anon_sym_BQUOTE] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [sym__word] = ACTIONS(1366), + [sym__soft_line_ending] = ACTIONS(1366), + [sym__block_quote_start] = ACTIONS(1366), + [sym__indented_chunk_start] = ACTIONS(1366), + [sym_atx_h1_marker] = ACTIONS(1366), + [sym_atx_h2_marker] = ACTIONS(1366), + [sym_atx_h3_marker] = ACTIONS(1366), + [sym_atx_h4_marker] = ACTIONS(1366), + [sym_atx_h5_marker] = ACTIONS(1366), + [sym_atx_h6_marker] = ACTIONS(1366), + [sym__thematic_break] = ACTIONS(1366), + [sym__list_marker_minus] = ACTIONS(1366), + [sym__list_marker_plus] = ACTIONS(1366), + [sym__list_marker_star] = ACTIONS(1366), + [sym__list_marker_parenthesis] = ACTIONS(1366), + [sym__list_marker_dot] = ACTIONS(1366), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1366), + [sym__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(1366), + [sym__fenced_code_block_start_tilde] = ACTIONS(1366), + [sym__blank_line_start] = ACTIONS(1366), + [sym_minus_metadata] = ACTIONS(1366), + [sym__pipe_table_start] = ACTIONS(1366), + [sym__fenced_div_start] = ACTIONS(1366), + [sym_ref_id_specifier] = ACTIONS(1366), + [sym__display_math_state_track_marker] = ACTIONS(1366), + [sym__inline_math_state_track_marker] = ACTIONS(1366), + }, + [STATE(165)] = { + [sym__indented_chunk] = STATE(169), + [sym__blank_line] = STATE(169), + [aux_sym_indented_code_block_repeat1] = STATE(169), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [sym__word] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_close] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_example] = ACTIONS(1348), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + [sym__fenced_div_start] = ACTIONS(1348), + [sym_ref_id_specifier] = ACTIONS(1348), + [sym__display_math_state_track_marker] = ACTIONS(1348), + [sym__inline_math_state_track_marker] = ACTIONS(1348), + }, + [STATE(166)] = { + [sym_list_marker_plus] = STATE(23), + [sym__list_item_plus] = STATE(166), + [aux_sym__list_plus_repeat1] = STATE(166), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_COMMA] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_BSLASH] = ACTIONS(1368), + [anon_sym_RBRACK] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym__] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [sym__word] = ACTIONS(1368), + [sym__soft_line_ending] = ACTIONS(1368), + [sym__block_close] = ACTIONS(1368), + [sym__block_quote_start] = ACTIONS(1368), + [sym__indented_chunk_start] = ACTIONS(1368), + [sym_atx_h1_marker] = ACTIONS(1368), + [sym_atx_h2_marker] = ACTIONS(1368), + [sym_atx_h3_marker] = ACTIONS(1368), + [sym_atx_h4_marker] = ACTIONS(1368), + [sym_atx_h5_marker] = ACTIONS(1368), + [sym_atx_h6_marker] = ACTIONS(1368), + [sym__thematic_break] = ACTIONS(1368), + [sym__list_marker_minus] = ACTIONS(1368), + [sym__list_marker_plus] = ACTIONS(1370), + [sym__list_marker_star] = ACTIONS(1368), + [sym__list_marker_parenthesis] = ACTIONS(1368), + [sym__list_marker_dot] = ACTIONS(1368), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1370), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1368), + [sym__list_marker_example] = ACTIONS(1368), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1368), + [sym__fenced_code_block_start_backtick] = ACTIONS(1368), + [sym__fenced_code_block_start_tilde] = ACTIONS(1368), + [sym__blank_line_start] = ACTIONS(1368), + [sym_minus_metadata] = ACTIONS(1368), + [sym__pipe_table_start] = ACTIONS(1368), + [sym__fenced_div_start] = ACTIONS(1368), + [sym_ref_id_specifier] = ACTIONS(1368), + [sym__display_math_state_track_marker] = ACTIONS(1368), + [sym__inline_math_state_track_marker] = ACTIONS(1368), + }, + [STATE(167)] = { + [sym_list_marker_minus] = STATE(24), + [sym__list_item_minus] = STATE(167), + [aux_sym__list_minus_repeat1] = STATE(167), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1373), + [anon_sym_DOLLAR] = ACTIONS(1373), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_BSLASH] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym__] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [sym__word] = ACTIONS(1373), + [sym__soft_line_ending] = ACTIONS(1373), + [sym__block_close] = ACTIONS(1373), + [sym__block_quote_start] = ACTIONS(1373), + [sym__indented_chunk_start] = ACTIONS(1373), + [sym_atx_h1_marker] = ACTIONS(1373), + [sym_atx_h2_marker] = ACTIONS(1373), + [sym_atx_h3_marker] = ACTIONS(1373), + [sym_atx_h4_marker] = ACTIONS(1373), + [sym_atx_h5_marker] = ACTIONS(1373), + [sym_atx_h6_marker] = ACTIONS(1373), + [sym__thematic_break] = ACTIONS(1373), + [sym__list_marker_minus] = ACTIONS(1375), + [sym__list_marker_plus] = ACTIONS(1373), + [sym__list_marker_star] = ACTIONS(1373), + [sym__list_marker_parenthesis] = ACTIONS(1373), + [sym__list_marker_dot] = ACTIONS(1373), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1375), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1373), + [sym__list_marker_example] = ACTIONS(1373), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1373), + [sym__fenced_code_block_start_backtick] = ACTIONS(1373), + [sym__fenced_code_block_start_tilde] = ACTIONS(1373), + [sym__blank_line_start] = ACTIONS(1373), + [sym_minus_metadata] = ACTIONS(1373), + [sym__pipe_table_start] = ACTIONS(1373), + [sym__fenced_div_start] = ACTIONS(1373), + [sym_ref_id_specifier] = ACTIONS(1373), + [sym__display_math_state_track_marker] = ACTIONS(1373), + [sym__inline_math_state_track_marker] = ACTIONS(1373), + }, + [STATE(168)] = { + [sym_list_marker_star] = STATE(25), + [sym__list_item_star] = STATE(168), + [aux_sym__list_star_repeat1] = STATE(168), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_PERCENT] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_SLASH] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1378), + [anon_sym_GT] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_AT] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_BSLASH] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_CARET] = ACTIONS(1378), + [anon_sym__] = ACTIONS(1378), + [anon_sym_BQUOTE] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [sym__word] = ACTIONS(1378), + [sym__soft_line_ending] = ACTIONS(1378), + [sym__block_close] = ACTIONS(1378), + [sym__block_quote_start] = ACTIONS(1378), + [sym__indented_chunk_start] = ACTIONS(1378), + [sym_atx_h1_marker] = ACTIONS(1378), + [sym_atx_h2_marker] = ACTIONS(1378), + [sym_atx_h3_marker] = ACTIONS(1378), + [sym_atx_h4_marker] = ACTIONS(1378), + [sym_atx_h5_marker] = ACTIONS(1378), + [sym_atx_h6_marker] = ACTIONS(1378), + [sym__thematic_break] = ACTIONS(1378), + [sym__list_marker_minus] = ACTIONS(1378), + [sym__list_marker_plus] = ACTIONS(1378), + [sym__list_marker_star] = ACTIONS(1380), + [sym__list_marker_parenthesis] = ACTIONS(1378), + [sym__list_marker_dot] = ACTIONS(1378), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1380), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1378), + [sym__list_marker_example] = ACTIONS(1378), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1378), + [sym__fenced_code_block_start_backtick] = ACTIONS(1378), + [sym__fenced_code_block_start_tilde] = ACTIONS(1378), + [sym__blank_line_start] = ACTIONS(1378), + [sym_minus_metadata] = ACTIONS(1378), + [sym__pipe_table_start] = ACTIONS(1378), + [sym__fenced_div_start] = ACTIONS(1378), + [sym_ref_id_specifier] = ACTIONS(1378), + [sym__display_math_state_track_marker] = ACTIONS(1378), + [sym__inline_math_state_track_marker] = ACTIONS(1378), + }, + [STATE(169)] = { + [sym__indented_chunk] = STATE(169), + [sym__blank_line] = STATE(169), + [aux_sym_indented_code_block_repeat1] = STATE(169), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1398), + [anon_sym_QMARK] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_BSLASH] = ACTIONS(1398), + [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), + [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(1432), + [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), + [sym__list_marker_plus] = ACTIONS(1398), + [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_plus_dont_interrupt] = ACTIONS(1398), + [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(1435), + [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), + }, + [STATE(170)] = { + [sym_list_marker_parenthesis] = STATE(27), + [sym__list_item_parenthesis] = STATE(170), + [aux_sym__list_parenthesis_repeat1] = STATE(170), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_BSLASH] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [sym__word] = ACTIONS(1388), + [sym__soft_line_ending] = ACTIONS(1388), + [sym__block_close] = ACTIONS(1388), + [sym__block_quote_start] = ACTIONS(1388), + [sym__indented_chunk_start] = ACTIONS(1388), + [sym_atx_h1_marker] = ACTIONS(1388), + [sym_atx_h2_marker] = ACTIONS(1388), + [sym_atx_h3_marker] = ACTIONS(1388), + [sym_atx_h4_marker] = ACTIONS(1388), + [sym_atx_h5_marker] = ACTIONS(1388), + [sym_atx_h6_marker] = ACTIONS(1388), + [sym__thematic_break] = ACTIONS(1388), + [sym__list_marker_minus] = ACTIONS(1388), + [sym__list_marker_plus] = ACTIONS(1388), + [sym__list_marker_star] = ACTIONS(1388), + [sym__list_marker_parenthesis] = ACTIONS(1390), + [sym__list_marker_dot] = ACTIONS(1388), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_example] = ACTIONS(1388), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1388), + [sym__fenced_code_block_start_backtick] = ACTIONS(1388), + [sym__fenced_code_block_start_tilde] = ACTIONS(1388), + [sym__blank_line_start] = ACTIONS(1388), + [sym_minus_metadata] = ACTIONS(1388), + [sym__pipe_table_start] = ACTIONS(1388), + [sym__fenced_div_start] = ACTIONS(1388), + [sym_ref_id_specifier] = ACTIONS(1388), + [sym__display_math_state_track_marker] = ACTIONS(1388), + [sym__inline_math_state_track_marker] = ACTIONS(1388), + }, + [STATE(171)] = { + [sym_list_marker_example] = STATE(28), + [sym__list_item_example] = STATE(171), + [aux_sym__list_example_repeat1] = STATE(171), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1393), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_AT] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_BSLASH] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1393), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym__] = ACTIONS(1393), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_TILDE] = ACTIONS(1393), + [sym__word] = ACTIONS(1393), + [sym__soft_line_ending] = ACTIONS(1393), + [sym__block_close] = ACTIONS(1393), + [sym__block_quote_start] = ACTIONS(1393), + [sym__indented_chunk_start] = ACTIONS(1393), + [sym_atx_h1_marker] = ACTIONS(1393), + [sym_atx_h2_marker] = ACTIONS(1393), + [sym_atx_h3_marker] = ACTIONS(1393), + [sym_atx_h4_marker] = ACTIONS(1393), + [sym_atx_h5_marker] = ACTIONS(1393), + [sym_atx_h6_marker] = ACTIONS(1393), + [sym__thematic_break] = ACTIONS(1393), + [sym__list_marker_minus] = ACTIONS(1393), + [sym__list_marker_plus] = ACTIONS(1393), + [sym__list_marker_star] = ACTIONS(1393), + [sym__list_marker_parenthesis] = ACTIONS(1393), + [sym__list_marker_dot] = ACTIONS(1393), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_example] = ACTIONS(1395), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1395), + [sym__fenced_code_block_start_backtick] = ACTIONS(1393), + [sym__fenced_code_block_start_tilde] = ACTIONS(1393), + [sym__blank_line_start] = ACTIONS(1393), + [sym_minus_metadata] = ACTIONS(1393), + [sym__pipe_table_start] = ACTIONS(1393), + [sym__fenced_div_start] = ACTIONS(1393), + [sym_ref_id_specifier] = ACTIONS(1393), + [sym__display_math_state_track_marker] = ACTIONS(1393), + [sym__inline_math_state_track_marker] = ACTIONS(1393), + }, + [STATE(172)] = { + [sym__indented_chunk] = STATE(160), + [sym__blank_line] = STATE(160), + [aux_sym_indented_code_block_repeat1] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(1348), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_COMMA] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_DOT] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_AT] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_BSLASH] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym__] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [sym__word] = ACTIONS(1348), + [sym__soft_line_ending] = ACTIONS(1348), + [sym__block_quote_start] = ACTIONS(1348), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1348), + [sym_atx_h2_marker] = ACTIONS(1348), + [sym_atx_h3_marker] = ACTIONS(1348), + [sym_atx_h4_marker] = ACTIONS(1348), + [sym_atx_h5_marker] = ACTIONS(1348), + [sym_atx_h6_marker] = ACTIONS(1348), + [sym__thematic_break] = ACTIONS(1348), + [sym__list_marker_minus] = ACTIONS(1348), + [sym__list_marker_plus] = ACTIONS(1348), + [sym__list_marker_star] = ACTIONS(1348), + [sym__list_marker_parenthesis] = ACTIONS(1348), + [sym__list_marker_dot] = ACTIONS(1348), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1348), + [sym__list_marker_example] = ACTIONS(1348), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1348), + [sym__fenced_code_block_start_backtick] = ACTIONS(1348), + [sym__fenced_code_block_start_tilde] = ACTIONS(1348), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1348), + [sym__pipe_table_start] = ACTIONS(1348), + [sym__fenced_div_start] = ACTIONS(1348), + [sym_ref_id_specifier] = ACTIONS(1348), + [sym__display_math_state_track_marker] = ACTIONS(1348), + [sym__inline_math_state_track_marker] = ACTIONS(1348), + }, + [STATE(173)] = { + [sym__indented_chunk] = STATE(172), + [sym__blank_line] = STATE(172), + [aux_sym_indented_code_block_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1354), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1354), + [anon_sym_PERCENT] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1354), + [anon_sym_SLASH] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1354), + [anon_sym_AT] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_BSLASH] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_CARET] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1354), + [anon_sym_BQUOTE] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [sym__word] = ACTIONS(1354), + [sym__soft_line_ending] = ACTIONS(1354), + [sym__block_quote_start] = ACTIONS(1354), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1354), + [sym_atx_h2_marker] = ACTIONS(1354), + [sym_atx_h3_marker] = ACTIONS(1354), + [sym_atx_h4_marker] = ACTIONS(1354), + [sym_atx_h5_marker] = ACTIONS(1354), + [sym_atx_h6_marker] = ACTIONS(1354), + [sym__thematic_break] = ACTIONS(1354), + [sym__list_marker_minus] = ACTIONS(1354), + [sym__list_marker_plus] = ACTIONS(1354), + [sym__list_marker_star] = ACTIONS(1354), + [sym__list_marker_parenthesis] = ACTIONS(1354), + [sym__list_marker_dot] = ACTIONS(1354), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1354), + [sym__list_marker_example] = ACTIONS(1354), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1354), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(47), + [sym_minus_metadata] = ACTIONS(1354), + [sym__pipe_table_start] = ACTIONS(1354), + [sym__fenced_div_start] = ACTIONS(1354), + [sym_ref_id_specifier] = ACTIONS(1354), + [sym__display_math_state_track_marker] = ACTIONS(1354), + [sym__inline_math_state_track_marker] = ACTIONS(1354), + }, + [STATE(174)] = { + [sym_list_marker_parenthesis] = STATE(4), + [sym__list_item_parenthesis] = STATE(174), + [aux_sym__list_parenthesis_repeat1] = STATE(174), + [ts_builtin_sym_end] = ACTIONS(1388), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_BSLASH] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [sym__word] = ACTIONS(1388), + [sym__soft_line_ending] = ACTIONS(1388), + [sym__block_quote_start] = ACTIONS(1388), + [sym__indented_chunk_start] = ACTIONS(1388), + [sym_atx_h1_marker] = ACTIONS(1388), + [sym_atx_h2_marker] = ACTIONS(1388), + [sym_atx_h3_marker] = ACTIONS(1388), + [sym_atx_h4_marker] = ACTIONS(1388), + [sym_atx_h5_marker] = ACTIONS(1388), + [sym_atx_h6_marker] = ACTIONS(1388), + [sym__thematic_break] = ACTIONS(1388), + [sym__list_marker_minus] = ACTIONS(1388), + [sym__list_marker_plus] = ACTIONS(1388), + [sym__list_marker_star] = ACTIONS(1388), + [sym__list_marker_parenthesis] = ACTIONS(1390), + [sym__list_marker_dot] = ACTIONS(1388), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1390), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1388), + [sym__list_marker_example] = ACTIONS(1388), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1388), + [sym__fenced_code_block_start_backtick] = ACTIONS(1388), + [sym__fenced_code_block_start_tilde] = ACTIONS(1388), + [sym__blank_line_start] = ACTIONS(1388), + [sym_minus_metadata] = ACTIONS(1388), + [sym__pipe_table_start] = ACTIONS(1388), + [sym__fenced_div_start] = ACTIONS(1388), + [sym_ref_id_specifier] = ACTIONS(1388), + [sym__display_math_state_track_marker] = ACTIONS(1388), + [sym__inline_math_state_track_marker] = ACTIONS(1388), + }, + [STATE(175)] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym_setext_h1_underline] = ACTIONS(1424), + [sym_setext_h2_underline] = 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(1424), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(176)] = { + [sym__blank_line] = STATE(989), + [sym_table_caption] = STATE(330), + [ts_builtin_sym_end] = ACTIONS(1412), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [sym__word] = ACTIONS(1412), + [sym__soft_line_ending] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1412), + [sym__indented_chunk_start] = ACTIONS(1412), + [sym_atx_h1_marker] = ACTIONS(1412), + [sym_atx_h2_marker] = ACTIONS(1412), + [sym_atx_h3_marker] = ACTIONS(1412), + [sym_atx_h4_marker] = ACTIONS(1412), + [sym_atx_h5_marker] = ACTIONS(1412), + [sym_atx_h6_marker] = ACTIONS(1412), + [sym__thematic_break] = ACTIONS(1412), + [sym__list_marker_minus] = ACTIONS(1412), + [sym__list_marker_plus] = ACTIONS(1412), + [sym__list_marker_star] = ACTIONS(1412), + [sym__list_marker_parenthesis] = ACTIONS(1412), + [sym__list_marker_dot] = ACTIONS(1412), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_example] = ACTIONS(1412), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1412), + [sym__fenced_code_block_start_backtick] = ACTIONS(1412), + [sym__fenced_code_block_start_tilde] = ACTIONS(1412), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1412), + [sym__pipe_table_start] = ACTIONS(1412), + [sym__fenced_div_start] = ACTIONS(1412), + [sym_ref_id_specifier] = ACTIONS(1412), + [sym__display_math_state_track_marker] = ACTIONS(1412), + [sym__inline_math_state_track_marker] = ACTIONS(1412), + }, + [STATE(177)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_close] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym_setext_h1_underline] = ACTIONS(1424), + [sym_setext_h2_underline] = 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(1424), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(178)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym__] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [sym__word] = ACTIONS(1350), + [sym__soft_line_ending] = ACTIONS(1350), + [sym__block_close] = ACTIONS(1350), + [sym_block_continuation] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1350), + [sym__indented_chunk_start] = ACTIONS(1350), + [sym_atx_h1_marker] = ACTIONS(1350), + [sym_atx_h2_marker] = ACTIONS(1350), + [sym_atx_h3_marker] = ACTIONS(1350), + [sym_atx_h4_marker] = ACTIONS(1350), + [sym_atx_h5_marker] = ACTIONS(1350), + [sym_atx_h6_marker] = ACTIONS(1350), + [sym__thematic_break] = ACTIONS(1350), + [sym__list_marker_minus] = ACTIONS(1350), + [sym__list_marker_plus] = ACTIONS(1350), + [sym__list_marker_star] = ACTIONS(1350), + [sym__list_marker_parenthesis] = ACTIONS(1350), + [sym__list_marker_dot] = ACTIONS(1350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_example] = ACTIONS(1350), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1350), + [sym__fenced_code_block_start_backtick] = ACTIONS(1350), + [sym__fenced_code_block_start_tilde] = ACTIONS(1350), + [sym__blank_line_start] = ACTIONS(1350), + [sym_minus_metadata] = ACTIONS(1350), + [sym__pipe_table_start] = ACTIONS(1350), + [sym__fenced_div_start] = ACTIONS(1350), + [sym__fenced_div_end] = ACTIONS(1350), + [sym_ref_id_specifier] = ACTIONS(1350), + [sym__display_math_state_track_marker] = ACTIONS(1350), + [sym__inline_math_state_track_marker] = ACTIONS(1350), + }, + [STATE(179)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1406), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_GT] = ACTIONS(1406), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_BQUOTE] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [sym__word] = ACTIONS(1406), + [sym__soft_line_ending] = ACTIONS(1406), + [sym__block_close] = ACTIONS(1406), + [sym__block_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_setext_h1_underline] = ACTIONS(1440), + [sym_setext_h2_underline] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1406), + [sym__list_marker_minus] = ACTIONS(1406), + [sym__list_marker_plus] = ACTIONS(1406), + [sym__list_marker_star] = ACTIONS(1406), + [sym__list_marker_parenthesis] = ACTIONS(1406), + [sym__list_marker_dot] = ACTIONS(1406), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_example] = ACTIONS(1406), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1406), + [sym__fenced_code_block_start_backtick] = ACTIONS(1406), + [sym__fenced_code_block_start_tilde] = ACTIONS(1406), + [sym__blank_line_start] = ACTIONS(1406), + [sym_minus_metadata] = ACTIONS(1406), + [sym__pipe_table_start] = ACTIONS(1406), + [sym__fenced_div_start] = ACTIONS(1406), + [sym_ref_id_specifier] = ACTIONS(1406), + [sym__display_math_state_track_marker] = ACTIONS(1406), + [sym__inline_math_state_track_marker] = ACTIONS(1406), + }, + [STATE(180)] = { + [sym__blank_line] = STATE(1036), + [sym_table_caption] = STATE(426), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [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), + [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(1416), + [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(1416), + [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(1414), + [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), + }, + [STATE(181)] = { + [sym__blank_line] = STATE(1036), + [sym_table_caption] = STATE(422), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PERCENT] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_RPAREN] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_COMMA] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_DOT] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_GT] = ACTIONS(1412), + [anon_sym_QMARK] = ACTIONS(1412), + [anon_sym_AT] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1412), + [anon_sym_RBRACK] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BQUOTE] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [sym__word] = ACTIONS(1412), + [sym__soft_line_ending] = ACTIONS(1412), + [sym__block_close] = ACTIONS(1412), + [sym__block_quote_start] = ACTIONS(1412), + [sym__indented_chunk_start] = ACTIONS(1412), + [sym_atx_h1_marker] = ACTIONS(1412), + [sym_atx_h2_marker] = ACTIONS(1412), + [sym_atx_h3_marker] = ACTIONS(1412), + [sym_atx_h4_marker] = ACTIONS(1412), + [sym_atx_h5_marker] = ACTIONS(1412), + [sym_atx_h6_marker] = ACTIONS(1412), + [sym__thematic_break] = ACTIONS(1412), + [sym__list_marker_minus] = ACTIONS(1412), + [sym__list_marker_plus] = ACTIONS(1412), + [sym__list_marker_star] = ACTIONS(1412), + [sym__list_marker_parenthesis] = ACTIONS(1412), + [sym__list_marker_dot] = ACTIONS(1412), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1412), + [sym__list_marker_example] = ACTIONS(1412), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1412), + [sym__fenced_code_block_start_backtick] = ACTIONS(1412), + [sym__fenced_code_block_start_tilde] = ACTIONS(1412), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1412), + [sym__pipe_table_start] = ACTIONS(1412), + [sym__fenced_div_start] = ACTIONS(1412), + [sym_ref_id_specifier] = ACTIONS(1412), + [sym__display_math_state_track_marker] = ACTIONS(1412), + [sym__inline_math_state_track_marker] = ACTIONS(1412), + }, + [STATE(182)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym__] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [sym__word] = ACTIONS(1444), + [sym__soft_line_ending] = ACTIONS(1444), + [sym__block_close] = ACTIONS(1444), + [sym_block_continuation] = ACTIONS(1446), + [sym__block_quote_start] = ACTIONS(1444), + [sym__indented_chunk_start] = ACTIONS(1444), + [sym_atx_h1_marker] = ACTIONS(1444), + [sym_atx_h2_marker] = ACTIONS(1444), + [sym_atx_h3_marker] = ACTIONS(1444), + [sym_atx_h4_marker] = ACTIONS(1444), + [sym_atx_h5_marker] = ACTIONS(1444), + [sym_atx_h6_marker] = ACTIONS(1444), + [sym__thematic_break] = ACTIONS(1444), + [sym__list_marker_minus] = ACTIONS(1444), + [sym__list_marker_plus] = ACTIONS(1444), + [sym__list_marker_star] = ACTIONS(1444), + [sym__list_marker_parenthesis] = ACTIONS(1444), + [sym__list_marker_dot] = ACTIONS(1444), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_example] = ACTIONS(1444), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1444), + [sym__fenced_code_block_start_backtick] = ACTIONS(1444), + [sym__fenced_code_block_start_tilde] = ACTIONS(1444), + [sym__blank_line_start] = ACTIONS(1444), + [sym_minus_metadata] = ACTIONS(1444), + [sym__pipe_table_start] = ACTIONS(1444), + [sym__fenced_div_start] = ACTIONS(1444), + [sym__fenced_div_end] = ACTIONS(1444), + [sym_ref_id_specifier] = ACTIONS(1444), + [sym__display_math_state_track_marker] = ACTIONS(1444), + [sym__inline_math_state_track_marker] = ACTIONS(1444), + }, + [STATE(183)] = { + [sym__blank_line] = STATE(989), + [sym_table_caption] = STATE(335), + [ts_builtin_sym_end] = ACTIONS(1416), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [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), + [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(1416), + [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(1416), + [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(1414), + [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), + }, + [STATE(184)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_BSLASH] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym__] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [sym__word] = ACTIONS(1448), + [sym__soft_line_ending] = ACTIONS(1448), + [sym__block_close] = ACTIONS(1448), + [sym_block_continuation] = ACTIONS(1450), + [sym__block_quote_start] = ACTIONS(1448), + [sym__indented_chunk_start] = ACTIONS(1448), + [sym_atx_h1_marker] = ACTIONS(1448), + [sym_atx_h2_marker] = ACTIONS(1448), + [sym_atx_h3_marker] = ACTIONS(1448), + [sym_atx_h4_marker] = ACTIONS(1448), + [sym_atx_h5_marker] = ACTIONS(1448), + [sym_atx_h6_marker] = ACTIONS(1448), + [sym__thematic_break] = ACTIONS(1448), + [sym__list_marker_minus] = ACTIONS(1448), + [sym__list_marker_plus] = ACTIONS(1448), + [sym__list_marker_star] = ACTIONS(1448), + [sym__list_marker_parenthesis] = ACTIONS(1448), + [sym__list_marker_dot] = ACTIONS(1448), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_example] = ACTIONS(1448), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1448), + [sym__fenced_code_block_start_backtick] = ACTIONS(1448), + [sym__fenced_code_block_start_tilde] = ACTIONS(1448), + [sym__blank_line_start] = ACTIONS(1448), + [sym_minus_metadata] = ACTIONS(1448), + [sym__pipe_table_start] = ACTIONS(1448), + [sym__fenced_div_start] = ACTIONS(1448), + [sym__fenced_div_end] = ACTIONS(1448), + [sym_ref_id_specifier] = ACTIONS(1448), + [sym__display_math_state_track_marker] = ACTIONS(1448), + [sym__inline_math_state_track_marker] = ACTIONS(1448), + }, + [STATE(185)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_BSLASH] = ACTIONS(1452), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym__] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), + [sym__block_close] = ACTIONS(1452), + [sym_block_continuation] = ACTIONS(1454), + [sym__block_quote_start] = ACTIONS(1452), + [sym__indented_chunk_start] = ACTIONS(1452), + [sym_atx_h1_marker] = ACTIONS(1452), + [sym_atx_h2_marker] = ACTIONS(1452), + [sym_atx_h3_marker] = ACTIONS(1452), + [sym_atx_h4_marker] = ACTIONS(1452), + [sym_atx_h5_marker] = ACTIONS(1452), + [sym_atx_h6_marker] = ACTIONS(1452), + [sym__thematic_break] = ACTIONS(1452), + [sym__list_marker_minus] = ACTIONS(1452), + [sym__list_marker_plus] = ACTIONS(1452), + [sym__list_marker_star] = ACTIONS(1452), + [sym__list_marker_parenthesis] = ACTIONS(1452), + [sym__list_marker_dot] = ACTIONS(1452), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1452), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1452), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1452), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1452), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1452), + [sym__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), + }, + [STATE(186)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym__] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [sym__word] = ACTIONS(1456), + [sym__soft_line_ending] = ACTIONS(1456), + [sym__block_close] = ACTIONS(1456), + [sym_block_continuation] = ACTIONS(1458), + [sym__block_quote_start] = ACTIONS(1456), + [sym__indented_chunk_start] = ACTIONS(1456), + [sym_atx_h1_marker] = ACTIONS(1456), + [sym_atx_h2_marker] = ACTIONS(1456), + [sym_atx_h3_marker] = ACTIONS(1456), + [sym_atx_h4_marker] = ACTIONS(1456), + [sym_atx_h5_marker] = ACTIONS(1456), + [sym_atx_h6_marker] = ACTIONS(1456), + [sym__thematic_break] = ACTIONS(1456), + [sym__list_marker_minus] = ACTIONS(1456), + [sym__list_marker_plus] = ACTIONS(1456), + [sym__list_marker_star] = ACTIONS(1456), + [sym__list_marker_parenthesis] = ACTIONS(1456), + [sym__list_marker_dot] = ACTIONS(1456), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), + [sym__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), + }, + [STATE(187)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1460), + [anon_sym_PERCENT] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_COMMA] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_SLASH] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1460), + [anon_sym__] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [sym__word] = ACTIONS(1460), + [sym__soft_line_ending] = ACTIONS(1460), + [sym__block_close] = ACTIONS(1460), + [sym_block_continuation] = ACTIONS(1462), + [sym__block_quote_start] = ACTIONS(1460), + [sym__indented_chunk_start] = ACTIONS(1460), + [sym_atx_h1_marker] = ACTIONS(1460), + [sym_atx_h2_marker] = ACTIONS(1460), + [sym_atx_h3_marker] = ACTIONS(1460), + [sym_atx_h4_marker] = ACTIONS(1460), + [sym_atx_h5_marker] = ACTIONS(1460), + [sym_atx_h6_marker] = ACTIONS(1460), + [sym__thematic_break] = ACTIONS(1460), + [sym__list_marker_minus] = ACTIONS(1460), + [sym__list_marker_plus] = ACTIONS(1460), + [sym__list_marker_star] = ACTIONS(1460), + [sym__list_marker_parenthesis] = ACTIONS(1460), + [sym__list_marker_dot] = ACTIONS(1460), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_example] = ACTIONS(1460), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1460), + [sym__fenced_code_block_start_backtick] = ACTIONS(1460), + [sym__fenced_code_block_start_tilde] = ACTIONS(1460), + [sym__blank_line_start] = ACTIONS(1460), + [sym_minus_metadata] = ACTIONS(1460), + [sym__pipe_table_start] = ACTIONS(1460), + [sym__fenced_div_start] = ACTIONS(1460), + [sym__fenced_div_end] = ACTIONS(1460), + [sym_ref_id_specifier] = ACTIONS(1460), + [sym__display_math_state_track_marker] = ACTIONS(1460), + [sym__inline_math_state_track_marker] = ACTIONS(1460), + }, + [STATE(188)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [sym__word] = ACTIONS(1464), + [sym__soft_line_ending] = ACTIONS(1464), + [sym__block_close] = ACTIONS(1464), + [sym_block_continuation] = ACTIONS(1466), + [sym__block_quote_start] = ACTIONS(1464), + [sym__indented_chunk_start] = ACTIONS(1464), + [sym_atx_h1_marker] = ACTIONS(1464), + [sym_atx_h2_marker] = ACTIONS(1464), + [sym_atx_h3_marker] = ACTIONS(1464), + [sym_atx_h4_marker] = ACTIONS(1464), + [sym_atx_h5_marker] = ACTIONS(1464), + [sym_atx_h6_marker] = ACTIONS(1464), + [sym__thematic_break] = ACTIONS(1464), + [sym__list_marker_minus] = ACTIONS(1464), + [sym__list_marker_plus] = ACTIONS(1464), + [sym__list_marker_star] = ACTIONS(1464), + [sym__list_marker_parenthesis] = ACTIONS(1464), + [sym__list_marker_dot] = ACTIONS(1464), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_example] = ACTIONS(1464), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1464), + [sym__fenced_code_block_start_backtick] = ACTIONS(1464), + [sym__fenced_code_block_start_tilde] = ACTIONS(1464), + [sym__blank_line_start] = ACTIONS(1464), + [sym_minus_metadata] = ACTIONS(1464), + [sym__pipe_table_start] = ACTIONS(1464), + [sym__fenced_div_start] = ACTIONS(1464), + [sym__fenced_div_end] = ACTIONS(1464), + [sym_ref_id_specifier] = ACTIONS(1464), + [sym__display_math_state_track_marker] = ACTIONS(1464), + [sym__inline_math_state_track_marker] = ACTIONS(1464), + }, + [STATE(189)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [sym__word] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym__block_close] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1470), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_example] = ACTIONS(1468), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym_minus_metadata] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + [sym__fenced_div_start] = ACTIONS(1468), + [sym__fenced_div_end] = ACTIONS(1468), + [sym_ref_id_specifier] = ACTIONS(1468), + [sym__display_math_state_track_marker] = ACTIONS(1468), + [sym__inline_math_state_track_marker] = ACTIONS(1468), + }, + [STATE(190)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [sym_block_continuation] = ACTIONS(1474), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym__fenced_div_end] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(191)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_close] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1478), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym__fenced_div_end] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(192)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym__block_close] = ACTIONS(1480), + [sym_block_continuation] = ACTIONS(1482), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym__fenced_div_end] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(193)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym__] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [sym__block_close] = ACTIONS(1420), + [sym__block_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_setext_h1_underline] = ACTIONS(1420), + [sym_setext_h2_underline] = ACTIONS(1420), + [sym__thematic_break] = ACTIONS(1420), + [sym__list_marker_minus] = ACTIONS(1420), + [sym__list_marker_plus] = ACTIONS(1420), + [sym__list_marker_star] = ACTIONS(1420), + [sym__list_marker_parenthesis] = ACTIONS(1420), + [sym__list_marker_dot] = ACTIONS(1420), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1420), + [sym__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), + }, + [STATE(194)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1486), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym__fenced_div_end] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(195)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym__block_close] = ACTIONS(1488), + [sym_block_continuation] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym__fenced_div_end] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(196)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym_block_continuation] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym__fenced_div_end] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(197)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym_block_continuation] = ACTIONS(1498), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym__fenced_div_end] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(198)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym__block_close] = ACTIONS(1500), + [sym_block_continuation] = ACTIONS(1502), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym__fenced_div_end] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(199)] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym__] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [sym__block_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_setext_h1_underline] = ACTIONS(1420), + [sym_setext_h2_underline] = ACTIONS(1420), + [sym__thematic_break] = ACTIONS(1420), + [sym__list_marker_minus] = ACTIONS(1420), + [sym__list_marker_plus] = ACTIONS(1420), + [sym__list_marker_star] = ACTIONS(1420), + [sym__list_marker_parenthesis] = ACTIONS(1420), + [sym__list_marker_dot] = ACTIONS(1420), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1420), + [sym__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), + }, + [STATE(200)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym_block_continuation] = ACTIONS(1506), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym__fenced_div_end] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(201)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1508), + [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), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_close] = ACTIONS(1508), + [sym_block_continuation] = ACTIONS(1510), + [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), + }, + [STATE(202)] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1406), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_GT] = ACTIONS(1406), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_BQUOTE] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [sym__word] = ACTIONS(1406), + [sym__soft_line_ending] = ACTIONS(1406), + [sym__block_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_setext_h1_underline] = ACTIONS(1512), + [sym_setext_h2_underline] = ACTIONS(1514), + [sym__thematic_break] = ACTIONS(1406), + [sym__list_marker_minus] = ACTIONS(1406), + [sym__list_marker_plus] = ACTIONS(1406), + [sym__list_marker_star] = ACTIONS(1406), + [sym__list_marker_parenthesis] = ACTIONS(1406), + [sym__list_marker_dot] = ACTIONS(1406), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1406), + [sym__list_marker_example] = ACTIONS(1406), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1406), + [sym__fenced_code_block_start_backtick] = ACTIONS(1406), + [sym__fenced_code_block_start_tilde] = ACTIONS(1406), + [sym__blank_line_start] = ACTIONS(1406), + [sym_minus_metadata] = ACTIONS(1406), + [sym__pipe_table_start] = ACTIONS(1406), + [sym__fenced_div_start] = ACTIONS(1406), + [sym_ref_id_specifier] = ACTIONS(1406), + [sym__display_math_state_track_marker] = ACTIONS(1406), + [sym__inline_math_state_track_marker] = ACTIONS(1406), + }, + [STATE(203)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym__] = ACTIONS(1516), + [anon_sym_BQUOTE] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [sym__word] = ACTIONS(1516), + [sym__soft_line_ending] = ACTIONS(1516), + [sym__block_close] = ACTIONS(1516), + [sym__block_quote_start] = ACTIONS(1516), + [sym__indented_chunk_start] = ACTIONS(1516), + [sym_atx_h1_marker] = ACTIONS(1516), + [sym_atx_h2_marker] = ACTIONS(1516), + [sym_atx_h3_marker] = ACTIONS(1516), + [sym_atx_h4_marker] = ACTIONS(1516), + [sym_atx_h5_marker] = ACTIONS(1516), + [sym_atx_h6_marker] = ACTIONS(1516), + [sym__thematic_break] = ACTIONS(1516), + [sym__list_marker_minus] = ACTIONS(1516), + [sym__list_marker_plus] = ACTIONS(1516), + [sym__list_marker_star] = ACTIONS(1516), + [sym__list_marker_parenthesis] = ACTIONS(1516), + [sym__list_marker_dot] = ACTIONS(1516), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_example] = ACTIONS(1516), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1516), + [sym__fenced_code_block_start_backtick] = ACTIONS(1516), + [sym__fenced_code_block_start_tilde] = ACTIONS(1516), + [sym__blank_line_start] = ACTIONS(1516), + [sym_minus_metadata] = ACTIONS(1516), + [sym__pipe_table_start] = ACTIONS(1516), + [sym__fenced_div_start] = ACTIONS(1516), + [sym__fenced_div_end] = ACTIONS(1516), + [sym_ref_id_specifier] = ACTIONS(1516), + [sym__display_math_state_track_marker] = ACTIONS(1516), + [sym__inline_math_state_track_marker] = ACTIONS(1516), + }, + [STATE(204)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym_block_continuation] = ACTIONS(1518), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(205)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym_block_continuation] = ACTIONS(1520), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(206)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym__] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [sym__word] = ACTIONS(1456), + [sym__soft_line_ending] = ACTIONS(1456), + [sym__block_close] = ACTIONS(1456), + [sym_block_continuation] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1456), + [sym__indented_chunk_start] = ACTIONS(1456), + [sym_atx_h1_marker] = ACTIONS(1456), + [sym_atx_h2_marker] = ACTIONS(1456), + [sym_atx_h3_marker] = ACTIONS(1456), + [sym_atx_h4_marker] = ACTIONS(1456), + [sym_atx_h5_marker] = ACTIONS(1456), + [sym_atx_h6_marker] = ACTIONS(1456), + [sym__thematic_break] = ACTIONS(1456), + [sym__list_marker_minus] = ACTIONS(1456), + [sym__list_marker_plus] = ACTIONS(1456), + [sym__list_marker_star] = ACTIONS(1456), + [sym__list_marker_parenthesis] = ACTIONS(1456), + [sym__list_marker_dot] = ACTIONS(1456), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), + [sym__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), + }, + [STATE(207)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1460), + [anon_sym_PERCENT] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_COMMA] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_SLASH] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1460), + [anon_sym__] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [sym__word] = ACTIONS(1460), + [sym__soft_line_ending] = ACTIONS(1460), + [sym__block_close] = ACTIONS(1460), + [sym_block_continuation] = ACTIONS(1524), + [sym__block_quote_start] = ACTIONS(1460), + [sym__indented_chunk_start] = ACTIONS(1460), + [sym_atx_h1_marker] = ACTIONS(1460), + [sym_atx_h2_marker] = ACTIONS(1460), + [sym_atx_h3_marker] = ACTIONS(1460), + [sym_atx_h4_marker] = ACTIONS(1460), + [sym_atx_h5_marker] = ACTIONS(1460), + [sym_atx_h6_marker] = ACTIONS(1460), + [sym__thematic_break] = ACTIONS(1460), + [sym__list_marker_minus] = ACTIONS(1460), + [sym__list_marker_plus] = ACTIONS(1460), + [sym__list_marker_star] = ACTIONS(1460), + [sym__list_marker_parenthesis] = ACTIONS(1460), + [sym__list_marker_dot] = ACTIONS(1460), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_example] = ACTIONS(1460), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1460), + [sym__fenced_code_block_start_backtick] = ACTIONS(1460), + [sym__fenced_code_block_start_tilde] = ACTIONS(1460), + [sym__blank_line_start] = ACTIONS(1460), + [sym_minus_metadata] = ACTIONS(1460), + [sym__pipe_table_start] = ACTIONS(1460), + [sym__fenced_div_start] = ACTIONS(1460), + [sym_ref_id_specifier] = ACTIONS(1460), + [sym__display_math_state_track_marker] = ACTIONS(1460), + [sym__inline_math_state_track_marker] = ACTIONS(1460), + }, + [STATE(208)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_close] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1526), + [sym__indented_chunk_start] = ACTIONS(1526), + [sym_atx_h1_marker] = ACTIONS(1526), + [sym_atx_h2_marker] = ACTIONS(1526), + [sym_atx_h3_marker] = ACTIONS(1526), + [sym_atx_h4_marker] = ACTIONS(1526), + [sym_atx_h5_marker] = ACTIONS(1526), + [sym_atx_h6_marker] = ACTIONS(1526), + [sym__thematic_break] = ACTIONS(1526), + [sym__list_marker_minus] = ACTIONS(1526), + [sym__list_marker_plus] = ACTIONS(1526), + [sym__list_marker_star] = ACTIONS(1526), + [sym__list_marker_parenthesis] = ACTIONS(1526), + [sym__list_marker_dot] = ACTIONS(1526), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_example] = ACTIONS(1526), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1526), + [sym__fenced_code_block_start_backtick] = ACTIONS(1526), + [sym__fenced_code_block_start_tilde] = ACTIONS(1526), + [sym__blank_line_start] = ACTIONS(1526), + [sym_minus_metadata] = ACTIONS(1526), + [sym__pipe_table_start] = ACTIONS(1526), + [sym__fenced_div_start] = ACTIONS(1526), + [sym__fenced_div_end] = ACTIONS(1526), + [sym_ref_id_specifier] = ACTIONS(1526), + [sym__display_math_state_track_marker] = ACTIONS(1526), + [sym__inline_math_state_track_marker] = ACTIONS(1526), + }, + [STATE(209)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1528), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym__] = ACTIONS(1528), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [sym__word] = ACTIONS(1528), + [sym__soft_line_ending] = ACTIONS(1528), + [sym__block_close] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1528), + [sym__indented_chunk_start] = ACTIONS(1528), + [sym_atx_h1_marker] = ACTIONS(1528), + [sym_atx_h2_marker] = ACTIONS(1528), + [sym_atx_h3_marker] = ACTIONS(1528), + [sym_atx_h4_marker] = ACTIONS(1528), + [sym_atx_h5_marker] = ACTIONS(1528), + [sym_atx_h6_marker] = ACTIONS(1528), + [sym__thematic_break] = ACTIONS(1528), + [sym__list_marker_minus] = ACTIONS(1528), + [sym__list_marker_plus] = ACTIONS(1528), + [sym__list_marker_star] = ACTIONS(1528), + [sym__list_marker_parenthesis] = ACTIONS(1528), + [sym__list_marker_dot] = ACTIONS(1528), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_example] = ACTIONS(1528), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1528), + [sym__fenced_code_block_start_backtick] = ACTIONS(1528), + [sym__fenced_code_block_start_tilde] = ACTIONS(1528), + [sym__blank_line_start] = ACTIONS(1528), + [sym_minus_metadata] = ACTIONS(1528), + [sym__pipe_table_start] = ACTIONS(1528), + [sym__fenced_div_start] = ACTIONS(1528), + [sym__fenced_div_end] = ACTIONS(1528), + [sym_ref_id_specifier] = ACTIONS(1528), + [sym__display_math_state_track_marker] = ACTIONS(1528), + [sym__inline_math_state_track_marker] = ACTIONS(1528), + }, + [STATE(210)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [sym__word] = ACTIONS(1530), + [sym__soft_line_ending] = ACTIONS(1530), + [sym__block_close] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1530), + [sym__indented_chunk_start] = ACTIONS(1530), + [sym_atx_h1_marker] = ACTIONS(1530), + [sym_atx_h2_marker] = ACTIONS(1530), + [sym_atx_h3_marker] = ACTIONS(1530), + [sym_atx_h4_marker] = ACTIONS(1530), + [sym_atx_h5_marker] = ACTIONS(1530), + [sym_atx_h6_marker] = ACTIONS(1530), + [sym__thematic_break] = ACTIONS(1530), + [sym__list_marker_minus] = ACTIONS(1530), + [sym__list_marker_plus] = ACTIONS(1530), + [sym__list_marker_star] = ACTIONS(1530), + [sym__list_marker_parenthesis] = ACTIONS(1530), + [sym__list_marker_dot] = ACTIONS(1530), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_example] = ACTIONS(1530), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1530), + [sym__fenced_code_block_start_backtick] = ACTIONS(1530), + [sym__fenced_code_block_start_tilde] = ACTIONS(1530), + [sym__blank_line_start] = ACTIONS(1530), + [sym_minus_metadata] = ACTIONS(1530), + [sym__pipe_table_start] = ACTIONS(1530), + [sym__fenced_div_start] = ACTIONS(1530), + [sym__fenced_div_end] = ACTIONS(1530), + [sym_ref_id_specifier] = ACTIONS(1530), + [sym__display_math_state_track_marker] = ACTIONS(1530), + [sym__inline_math_state_track_marker] = ACTIONS(1530), + }, + [STATE(211)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_BSLASH] = ACTIONS(1532), + [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), + [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), + }, + [STATE(212)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [sym__word] = ACTIONS(1534), + [sym__soft_line_ending] = ACTIONS(1534), + [sym__block_close] = ACTIONS(1534), + [sym__block_quote_start] = ACTIONS(1534), + [sym__indented_chunk_start] = ACTIONS(1534), + [sym_atx_h1_marker] = ACTIONS(1534), + [sym_atx_h2_marker] = ACTIONS(1534), + [sym_atx_h3_marker] = ACTIONS(1534), + [sym_atx_h4_marker] = ACTIONS(1534), + [sym_atx_h5_marker] = ACTIONS(1534), + [sym_atx_h6_marker] = ACTIONS(1534), + [sym__thematic_break] = ACTIONS(1534), + [sym__list_marker_minus] = ACTIONS(1534), + [sym__list_marker_plus] = ACTIONS(1534), + [sym__list_marker_star] = ACTIONS(1534), + [sym__list_marker_parenthesis] = ACTIONS(1534), + [sym__list_marker_dot] = ACTIONS(1534), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_example] = ACTIONS(1534), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1534), + [sym__fenced_code_block_start_backtick] = ACTIONS(1534), + [sym__fenced_code_block_start_tilde] = ACTIONS(1534), + [sym__blank_line_start] = ACTIONS(1534), + [sym_minus_metadata] = ACTIONS(1534), + [sym__pipe_table_start] = ACTIONS(1534), + [sym__fenced_div_start] = ACTIONS(1534), + [sym__fenced_div_end] = ACTIONS(1534), + [sym_ref_id_specifier] = ACTIONS(1534), + [sym__display_math_state_track_marker] = ACTIONS(1534), + [sym__inline_math_state_track_marker] = ACTIONS(1534), + }, + [STATE(213)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [sym__word] = ACTIONS(1536), + [sym__soft_line_ending] = ACTIONS(1536), + [sym__block_close] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(1536), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_example] = ACTIONS(1536), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym_minus_metadata] = ACTIONS(1536), + [sym__pipe_table_start] = ACTIONS(1536), + [sym__fenced_div_start] = ACTIONS(1536), + [sym__fenced_div_end] = ACTIONS(1536), + [sym_ref_id_specifier] = ACTIONS(1536), + [sym__display_math_state_track_marker] = ACTIONS(1536), + [sym__inline_math_state_track_marker] = ACTIONS(1536), + }, + [STATE(214)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_close] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_example] = ACTIONS(1538), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym_minus_metadata] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + [sym__fenced_div_start] = ACTIONS(1538), + [sym__fenced_div_end] = ACTIONS(1538), + [sym_ref_id_specifier] = ACTIONS(1538), + [sym__display_math_state_track_marker] = ACTIONS(1538), + [sym__inline_math_state_track_marker] = ACTIONS(1538), + }, + [STATE(215)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_close] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym__fenced_div_end] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(216)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym__fenced_div_end] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(217)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [sym__word] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_close] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_example] = ACTIONS(1542), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym_minus_metadata] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + [sym__fenced_div_start] = ACTIONS(1542), + [sym__fenced_div_end] = ACTIONS(1542), + [sym_ref_id_specifier] = ACTIONS(1542), + [sym__display_math_state_track_marker] = ACTIONS(1542), + [sym__inline_math_state_track_marker] = ACTIONS(1542), + }, + [STATE(218)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym__] = ACTIONS(1544), + [anon_sym_BQUOTE] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_close] = ACTIONS(1544), + [sym__block_quote_start] = ACTIONS(1544), + [sym__indented_chunk_start] = ACTIONS(1544), + [sym_atx_h1_marker] = ACTIONS(1544), + [sym_atx_h2_marker] = ACTIONS(1544), + [sym_atx_h3_marker] = ACTIONS(1544), + [sym_atx_h4_marker] = ACTIONS(1544), + [sym_atx_h5_marker] = ACTIONS(1544), + [sym_atx_h6_marker] = ACTIONS(1544), + [sym__thematic_break] = ACTIONS(1544), + [sym__list_marker_minus] = ACTIONS(1544), + [sym__list_marker_plus] = ACTIONS(1544), + [sym__list_marker_star] = ACTIONS(1544), + [sym__list_marker_parenthesis] = ACTIONS(1544), + [sym__list_marker_dot] = ACTIONS(1544), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_example] = ACTIONS(1544), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1544), + [sym__fenced_code_block_start_backtick] = ACTIONS(1544), + [sym__fenced_code_block_start_tilde] = ACTIONS(1544), + [sym__blank_line_start] = ACTIONS(1544), + [sym_minus_metadata] = ACTIONS(1544), + [sym__pipe_table_start] = ACTIONS(1544), + [sym__fenced_div_start] = ACTIONS(1544), + [sym__fenced_div_end] = ACTIONS(1544), + [sym_ref_id_specifier] = ACTIONS(1544), + [sym__display_math_state_track_marker] = ACTIONS(1544), + [sym__inline_math_state_track_marker] = ACTIONS(1544), + }, + [STATE(219)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [sym__word] = ACTIONS(1546), + [sym__soft_line_ending] = ACTIONS(1546), + [sym__block_close] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_example] = ACTIONS(1546), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym_minus_metadata] = ACTIONS(1546), + [sym__pipe_table_start] = ACTIONS(1546), + [sym__fenced_div_start] = ACTIONS(1546), + [sym__fenced_div_end] = ACTIONS(1546), + [sym_ref_id_specifier] = ACTIONS(1546), + [sym__display_math_state_track_marker] = ACTIONS(1546), + [sym__inline_math_state_track_marker] = ACTIONS(1546), + }, + [STATE(220)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [sym__word] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_close] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_example] = ACTIONS(1548), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym_minus_metadata] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + [sym__fenced_div_start] = ACTIONS(1548), + [sym__fenced_div_end] = ACTIONS(1548), + [sym_ref_id_specifier] = ACTIONS(1548), + [sym__display_math_state_track_marker] = ACTIONS(1548), + [sym__inline_math_state_track_marker] = ACTIONS(1548), + }, + [STATE(221)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_PERCENT] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1550), + [anon_sym_SLASH] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_BQUOTE] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_close] = ACTIONS(1550), + [sym__block_quote_start] = ACTIONS(1550), + [sym__indented_chunk_start] = ACTIONS(1550), + [sym_atx_h1_marker] = ACTIONS(1550), + [sym_atx_h2_marker] = ACTIONS(1550), + [sym_atx_h3_marker] = ACTIONS(1550), + [sym_atx_h4_marker] = ACTIONS(1550), + [sym_atx_h5_marker] = ACTIONS(1550), + [sym_atx_h6_marker] = ACTIONS(1550), + [sym__thematic_break] = ACTIONS(1550), + [sym__list_marker_minus] = ACTIONS(1550), + [sym__list_marker_plus] = ACTIONS(1550), + [sym__list_marker_star] = ACTIONS(1550), + [sym__list_marker_parenthesis] = ACTIONS(1550), + [sym__list_marker_dot] = ACTIONS(1550), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_example] = ACTIONS(1550), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1550), + [sym__fenced_code_block_start_backtick] = ACTIONS(1550), + [sym__fenced_code_block_start_tilde] = ACTIONS(1550), + [sym__blank_line_start] = ACTIONS(1550), + [sym_minus_metadata] = ACTIONS(1550), + [sym__pipe_table_start] = ACTIONS(1550), + [sym__fenced_div_start] = ACTIONS(1550), + [sym__fenced_div_end] = ACTIONS(1550), + [sym_ref_id_specifier] = ACTIONS(1550), + [sym__display_math_state_track_marker] = ACTIONS(1550), + [sym__inline_math_state_track_marker] = ACTIONS(1550), + }, + [STATE(222)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [sym__word] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_close] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_example] = ACTIONS(1552), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym_minus_metadata] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + [sym__fenced_div_start] = ACTIONS(1552), + [sym__fenced_div_end] = ACTIONS(1552), + [sym_ref_id_specifier] = ACTIONS(1552), + [sym__display_math_state_track_marker] = ACTIONS(1552), + [sym__inline_math_state_track_marker] = ACTIONS(1552), + }, + [STATE(223)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_QMARK] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym__] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [sym__word] = ACTIONS(1554), + [sym__soft_line_ending] = ACTIONS(1554), + [sym__block_close] = ACTIONS(1554), + [sym__block_quote_start] = ACTIONS(1554), + [sym__indented_chunk_start] = ACTIONS(1554), + [sym_atx_h1_marker] = ACTIONS(1554), + [sym_atx_h2_marker] = ACTIONS(1554), + [sym_atx_h3_marker] = ACTIONS(1554), + [sym_atx_h4_marker] = ACTIONS(1554), + [sym_atx_h5_marker] = ACTIONS(1554), + [sym_atx_h6_marker] = ACTIONS(1554), + [sym__thematic_break] = ACTIONS(1554), + [sym__list_marker_minus] = ACTIONS(1554), + [sym__list_marker_plus] = ACTIONS(1554), + [sym__list_marker_star] = ACTIONS(1554), + [sym__list_marker_parenthesis] = ACTIONS(1554), + [sym__list_marker_dot] = ACTIONS(1554), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_example] = ACTIONS(1554), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1554), + [sym__fenced_code_block_start_backtick] = ACTIONS(1554), + [sym__fenced_code_block_start_tilde] = ACTIONS(1554), + [sym__blank_line_start] = ACTIONS(1554), + [sym_minus_metadata] = ACTIONS(1554), + [sym__pipe_table_start] = ACTIONS(1554), + [sym__fenced_div_start] = ACTIONS(1554), + [sym__fenced_div_end] = ACTIONS(1554), + [sym_ref_id_specifier] = ACTIONS(1554), + [sym__display_math_state_track_marker] = ACTIONS(1554), + [sym__inline_math_state_track_marker] = ACTIONS(1554), + }, + [STATE(224)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_close] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_example] = ACTIONS(1556), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym_minus_metadata] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + [sym__fenced_div_start] = ACTIONS(1556), + [sym__fenced_div_end] = ACTIONS(1556), + [sym_ref_id_specifier] = ACTIONS(1556), + [sym__display_math_state_track_marker] = ACTIONS(1556), + [sym__inline_math_state_track_marker] = ACTIONS(1556), + }, + [STATE(225)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_BSLASH] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym__] = ACTIONS(1558), + [anon_sym_BQUOTE] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [sym__word] = ACTIONS(1558), + [sym__soft_line_ending] = ACTIONS(1558), + [sym__block_close] = ACTIONS(1558), + [sym__block_quote_start] = ACTIONS(1558), + [sym__indented_chunk_start] = ACTIONS(1558), + [sym_atx_h1_marker] = ACTIONS(1558), + [sym_atx_h2_marker] = ACTIONS(1558), + [sym_atx_h3_marker] = ACTIONS(1558), + [sym_atx_h4_marker] = ACTIONS(1558), + [sym_atx_h5_marker] = ACTIONS(1558), + [sym_atx_h6_marker] = ACTIONS(1558), + [sym__thematic_break] = ACTIONS(1558), + [sym__list_marker_minus] = ACTIONS(1558), + [sym__list_marker_plus] = ACTIONS(1558), + [sym__list_marker_star] = ACTIONS(1558), + [sym__list_marker_parenthesis] = ACTIONS(1558), + [sym__list_marker_dot] = ACTIONS(1558), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_example] = ACTIONS(1558), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1558), + [sym__fenced_code_block_start_backtick] = ACTIONS(1558), + [sym__fenced_code_block_start_tilde] = ACTIONS(1558), + [sym__blank_line_start] = ACTIONS(1558), + [sym_minus_metadata] = ACTIONS(1558), + [sym__pipe_table_start] = ACTIONS(1558), + [sym__fenced_div_start] = ACTIONS(1558), + [sym__fenced_div_end] = ACTIONS(1558), + [sym_ref_id_specifier] = ACTIONS(1558), + [sym__display_math_state_track_marker] = ACTIONS(1558), + [sym__inline_math_state_track_marker] = ACTIONS(1558), + }, + [STATE(226)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [sym__word] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_close] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_example] = ACTIONS(1560), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym_minus_metadata] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + [sym__fenced_div_start] = ACTIONS(1560), + [sym__fenced_div_end] = ACTIONS(1560), + [sym_ref_id_specifier] = ACTIONS(1560), + [sym__display_math_state_track_marker] = ACTIONS(1560), + [sym__inline_math_state_track_marker] = ACTIONS(1560), + }, + [STATE(227)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_close] = ACTIONS(1476), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym__fenced_div_end] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(228)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_BSLASH] = ACTIONS(1562), + [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), + [sym__word] = ACTIONS(1562), + [sym__soft_line_ending] = ACTIONS(1562), + [sym__block_close] = ACTIONS(1562), + [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), + }, + [STATE(229)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym__block_close] = ACTIONS(1480), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym__fenced_div_end] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(230)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [sym__word] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_close] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_example] = ACTIONS(1564), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym_minus_metadata] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + [sym__fenced_div_start] = ACTIONS(1564), + [sym__fenced_div_end] = ACTIONS(1564), + [sym_ref_id_specifier] = ACTIONS(1564), + [sym__display_math_state_track_marker] = ACTIONS(1564), + [sym__inline_math_state_track_marker] = ACTIONS(1564), + }, + [STATE(231)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym__fenced_div_end] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(232)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym__] = ACTIONS(1566), + [anon_sym_BQUOTE] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [sym__word] = ACTIONS(1566), + [sym__soft_line_ending] = ACTIONS(1566), + [sym__block_close] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1566), + [sym__indented_chunk_start] = ACTIONS(1566), + [sym_atx_h1_marker] = ACTIONS(1566), + [sym_atx_h2_marker] = ACTIONS(1566), + [sym_atx_h3_marker] = ACTIONS(1566), + [sym_atx_h4_marker] = ACTIONS(1566), + [sym_atx_h5_marker] = ACTIONS(1566), + [sym_atx_h6_marker] = ACTIONS(1566), + [sym__thematic_break] = ACTIONS(1566), + [sym__list_marker_minus] = ACTIONS(1566), + [sym__list_marker_plus] = ACTIONS(1566), + [sym__list_marker_star] = ACTIONS(1566), + [sym__list_marker_parenthesis] = ACTIONS(1566), + [sym__list_marker_dot] = ACTIONS(1566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_example] = ACTIONS(1566), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1566), + [sym__fenced_code_block_start_backtick] = ACTIONS(1566), + [sym__fenced_code_block_start_tilde] = ACTIONS(1566), + [sym__blank_line_start] = ACTIONS(1566), + [sym_minus_metadata] = ACTIONS(1566), + [sym__pipe_table_start] = ACTIONS(1566), + [sym__fenced_div_start] = ACTIONS(1566), + [sym__fenced_div_end] = ACTIONS(1566), + [sym_ref_id_specifier] = ACTIONS(1566), + [sym__display_math_state_track_marker] = ACTIONS(1566), + [sym__inline_math_state_track_marker] = ACTIONS(1566), + }, + [STATE(233)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym__block_close] = ACTIONS(1488), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym__fenced_div_end] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(234)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_BSLASH] = ACTIONS(1568), + [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), + [sym__word] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), + [sym__block_close] = ACTIONS(1568), + [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), + }, + [STATE(235)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym__fenced_div_end] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(236)] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1570), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(237)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym__fenced_div_end] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(238)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [sym__word] = ACTIONS(1572), + [sym__soft_line_ending] = ACTIONS(1572), + [sym__block_close] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1572), + [sym__indented_chunk_start] = ACTIONS(1572), + [sym_atx_h1_marker] = ACTIONS(1572), + [sym_atx_h2_marker] = ACTIONS(1572), + [sym_atx_h3_marker] = ACTIONS(1572), + [sym_atx_h4_marker] = ACTIONS(1572), + [sym_atx_h5_marker] = ACTIONS(1572), + [sym_atx_h6_marker] = ACTIONS(1572), + [sym__thematic_break] = ACTIONS(1572), + [sym__list_marker_minus] = ACTIONS(1572), + [sym__list_marker_plus] = ACTIONS(1572), + [sym__list_marker_star] = ACTIONS(1572), + [sym__list_marker_parenthesis] = ACTIONS(1572), + [sym__list_marker_dot] = ACTIONS(1572), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_example] = ACTIONS(1572), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1572), + [sym__fenced_code_block_start_backtick] = ACTIONS(1572), + [sym__fenced_code_block_start_tilde] = ACTIONS(1572), + [sym__blank_line_start] = ACTIONS(1572), + [sym_minus_metadata] = ACTIONS(1572), + [sym__pipe_table_start] = ACTIONS(1572), + [sym__fenced_div_start] = ACTIONS(1572), + [sym__fenced_div_end] = ACTIONS(1572), + [sym_ref_id_specifier] = ACTIONS(1572), + [sym__display_math_state_track_marker] = ACTIONS(1572), + [sym__inline_math_state_track_marker] = ACTIONS(1572), + }, + [STATE(239)] = { + [sym__blank_line] = STATE(1013), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_EQ] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_DQUOTE] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_DOLLAR] = ACTIONS(1406), + [anon_sym_PERCENT] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_COMMA] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_DOT] = ACTIONS(1406), + [anon_sym_SLASH] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_GT] = ACTIONS(1406), + [anon_sym_QMARK] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_BSLASH] = ACTIONS(1406), + [anon_sym_RBRACK] = ACTIONS(1406), + [anon_sym_CARET] = ACTIONS(1406), + [anon_sym__] = ACTIONS(1406), + [anon_sym_BQUOTE] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_TILDE] = ACTIONS(1406), + [sym__word] = ACTIONS(1406), + [sym__soft_line_ending] = ACTIONS(1406), + [sym__block_close] = ACTIONS(1406), + [sym__block_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), + [sym__list_marker_example] = ACTIONS(1406), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1406), + [sym__fenced_code_block_start_backtick] = ACTIONS(1406), + [sym__fenced_code_block_start_tilde] = ACTIONS(1406), + [sym__blank_line_start] = ACTIONS(1574), + [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), + }, + [STATE(240)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_SLASH] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1576), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1576), + [sym__word] = ACTIONS(1576), + [sym__soft_line_ending] = ACTIONS(1576), + [sym__block_close] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1576), + [sym__indented_chunk_start] = ACTIONS(1576), + [sym_atx_h1_marker] = ACTIONS(1576), + [sym_atx_h2_marker] = ACTIONS(1576), + [sym_atx_h3_marker] = ACTIONS(1576), + [sym_atx_h4_marker] = ACTIONS(1576), + [sym_atx_h5_marker] = ACTIONS(1576), + [sym_atx_h6_marker] = ACTIONS(1576), + [sym__thematic_break] = ACTIONS(1576), + [sym__list_marker_minus] = ACTIONS(1576), + [sym__list_marker_plus] = ACTIONS(1576), + [sym__list_marker_star] = ACTIONS(1576), + [sym__list_marker_parenthesis] = ACTIONS(1576), + [sym__list_marker_dot] = ACTIONS(1576), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_example] = ACTIONS(1576), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1576), + [sym__fenced_code_block_start_backtick] = ACTIONS(1576), + [sym__fenced_code_block_start_tilde] = ACTIONS(1576), + [sym__blank_line_start] = ACTIONS(1576), + [sym_minus_metadata] = ACTIONS(1576), + [sym__pipe_table_start] = ACTIONS(1576), + [sym__fenced_div_start] = ACTIONS(1576), + [sym__fenced_div_end] = ACTIONS(1576), + [sym_ref_id_specifier] = ACTIONS(1576), + [sym__display_math_state_track_marker] = ACTIONS(1576), + [sym__inline_math_state_track_marker] = ACTIONS(1576), + }, + [STATE(241)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1578), + [anon_sym_SLASH] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_GT] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym__] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1578), + [sym__word] = ACTIONS(1578), + [sym__soft_line_ending] = ACTIONS(1578), + [sym__block_close] = ACTIONS(1578), + [sym__block_quote_start] = ACTIONS(1578), + [sym__indented_chunk_start] = ACTIONS(1578), + [sym_atx_h1_marker] = ACTIONS(1578), + [sym_atx_h2_marker] = ACTIONS(1578), + [sym_atx_h3_marker] = ACTIONS(1578), + [sym_atx_h4_marker] = ACTIONS(1578), + [sym_atx_h5_marker] = ACTIONS(1578), + [sym_atx_h6_marker] = ACTIONS(1578), + [sym__thematic_break] = ACTIONS(1578), + [sym__list_marker_minus] = ACTIONS(1578), + [sym__list_marker_plus] = ACTIONS(1578), + [sym__list_marker_star] = ACTIONS(1578), + [sym__list_marker_parenthesis] = ACTIONS(1578), + [sym__list_marker_dot] = ACTIONS(1578), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_example] = ACTIONS(1578), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1578), + [sym__fenced_code_block_start_backtick] = ACTIONS(1578), + [sym__fenced_code_block_start_tilde] = ACTIONS(1578), + [sym__blank_line_start] = ACTIONS(1578), + [sym_minus_metadata] = ACTIONS(1578), + [sym__pipe_table_start] = ACTIONS(1578), + [sym__fenced_div_start] = ACTIONS(1578), + [sym__fenced_div_end] = ACTIONS(1578), + [sym_ref_id_specifier] = ACTIONS(1578), + [sym__display_math_state_track_marker] = ACTIONS(1578), + [sym__inline_math_state_track_marker] = ACTIONS(1578), + }, + [STATE(242)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym__] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_close] = ACTIONS(1580), + [sym__block_quote_start] = ACTIONS(1580), + [sym__indented_chunk_start] = ACTIONS(1580), + [sym_atx_h1_marker] = ACTIONS(1580), + [sym_atx_h2_marker] = ACTIONS(1580), + [sym_atx_h3_marker] = ACTIONS(1580), + [sym_atx_h4_marker] = ACTIONS(1580), + [sym_atx_h5_marker] = ACTIONS(1580), + [sym_atx_h6_marker] = ACTIONS(1580), + [sym__thematic_break] = ACTIONS(1580), + [sym__list_marker_minus] = ACTIONS(1580), + [sym__list_marker_plus] = ACTIONS(1580), + [sym__list_marker_star] = ACTIONS(1580), + [sym__list_marker_parenthesis] = ACTIONS(1580), + [sym__list_marker_dot] = ACTIONS(1580), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_example] = ACTIONS(1580), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1580), + [sym__fenced_code_block_start_backtick] = ACTIONS(1580), + [sym__fenced_code_block_start_tilde] = ACTIONS(1580), + [sym__blank_line_start] = ACTIONS(1580), + [sym_minus_metadata] = ACTIONS(1580), + [sym__pipe_table_start] = ACTIONS(1580), + [sym__fenced_div_start] = ACTIONS(1580), + [sym__fenced_div_end] = ACTIONS(1580), + [sym_ref_id_specifier] = ACTIONS(1580), + [sym__display_math_state_track_marker] = ACTIONS(1580), + [sym__inline_math_state_track_marker] = ACTIONS(1580), + }, + [STATE(243)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [sym__word] = ACTIONS(1582), + [sym__soft_line_ending] = ACTIONS(1582), + [sym__block_close] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_example] = ACTIONS(1582), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym_minus_metadata] = ACTIONS(1582), + [sym__pipe_table_start] = ACTIONS(1582), + [sym__fenced_div_start] = ACTIONS(1582), + [sym__fenced_div_end] = ACTIONS(1582), + [sym_ref_id_specifier] = ACTIONS(1582), + [sym__display_math_state_track_marker] = ACTIONS(1582), + [sym__inline_math_state_track_marker] = ACTIONS(1582), + }, + [STATE(244)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_CARET] = ACTIONS(1584), + [anon_sym__] = ACTIONS(1584), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1584), + [sym__word] = ACTIONS(1584), + [sym__soft_line_ending] = ACTIONS(1584), + [sym__block_close] = ACTIONS(1584), + [sym__block_quote_start] = ACTIONS(1584), + [sym__indented_chunk_start] = ACTIONS(1584), + [sym_atx_h1_marker] = ACTIONS(1584), + [sym_atx_h2_marker] = ACTIONS(1584), + [sym_atx_h3_marker] = ACTIONS(1584), + [sym_atx_h4_marker] = ACTIONS(1584), + [sym_atx_h5_marker] = ACTIONS(1584), + [sym_atx_h6_marker] = ACTIONS(1584), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1584), + [sym__list_marker_plus] = ACTIONS(1584), + [sym__list_marker_star] = ACTIONS(1584), + [sym__list_marker_parenthesis] = ACTIONS(1584), + [sym__list_marker_dot] = ACTIONS(1584), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_example] = ACTIONS(1584), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1584), + [sym__fenced_code_block_start_backtick] = ACTIONS(1584), + [sym__fenced_code_block_start_tilde] = ACTIONS(1584), + [sym__blank_line_start] = ACTIONS(1584), + [sym_minus_metadata] = ACTIONS(1584), + [sym__pipe_table_start] = ACTIONS(1584), + [sym__fenced_div_start] = ACTIONS(1584), + [sym__fenced_div_end] = ACTIONS(1584), + [sym_ref_id_specifier] = ACTIONS(1584), + [sym__display_math_state_track_marker] = ACTIONS(1584), + [sym__inline_math_state_track_marker] = ACTIONS(1584), + }, + [STATE(245)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_GT] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym__] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_close] = ACTIONS(1586), + [sym__block_quote_start] = ACTIONS(1586), + [sym__indented_chunk_start] = ACTIONS(1586), + [sym_atx_h1_marker] = ACTIONS(1586), + [sym_atx_h2_marker] = ACTIONS(1586), + [sym_atx_h3_marker] = ACTIONS(1586), + [sym_atx_h4_marker] = ACTIONS(1586), + [sym_atx_h5_marker] = ACTIONS(1586), + [sym_atx_h6_marker] = ACTIONS(1586), + [sym__thematic_break] = ACTIONS(1586), + [sym__list_marker_minus] = ACTIONS(1586), + [sym__list_marker_plus] = ACTIONS(1586), + [sym__list_marker_star] = ACTIONS(1586), + [sym__list_marker_parenthesis] = ACTIONS(1586), + [sym__list_marker_dot] = ACTIONS(1586), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_example] = ACTIONS(1586), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1586), + [sym__fenced_code_block_start_backtick] = ACTIONS(1586), + [sym__fenced_code_block_start_tilde] = ACTIONS(1586), + [sym__blank_line_start] = ACTIONS(1586), + [sym_minus_metadata] = ACTIONS(1586), + [sym__pipe_table_start] = ACTIONS(1586), + [sym__fenced_div_start] = ACTIONS(1586), + [sym__fenced_div_end] = ACTIONS(1586), + [sym_ref_id_specifier] = ACTIONS(1586), + [sym__display_math_state_track_marker] = ACTIONS(1586), + [sym__inline_math_state_track_marker] = ACTIONS(1586), + }, + [STATE(246)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [sym__word] = ACTIONS(1588), + [sym__soft_line_ending] = ACTIONS(1588), + [sym__block_close] = ACTIONS(1588), + [sym__block_quote_start] = ACTIONS(1588), + [sym__indented_chunk_start] = ACTIONS(1588), + [sym_atx_h1_marker] = ACTIONS(1588), + [sym_atx_h2_marker] = ACTIONS(1588), + [sym_atx_h3_marker] = ACTIONS(1588), + [sym_atx_h4_marker] = ACTIONS(1588), + [sym_atx_h5_marker] = ACTIONS(1588), + [sym_atx_h6_marker] = ACTIONS(1588), + [sym__thematic_break] = ACTIONS(1588), + [sym__list_marker_minus] = ACTIONS(1588), + [sym__list_marker_plus] = ACTIONS(1588), + [sym__list_marker_star] = ACTIONS(1588), + [sym__list_marker_parenthesis] = ACTIONS(1588), + [sym__list_marker_dot] = ACTIONS(1588), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_example] = ACTIONS(1588), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1588), + [sym__fenced_code_block_start_backtick] = ACTIONS(1588), + [sym__fenced_code_block_start_tilde] = ACTIONS(1588), + [sym__blank_line_start] = ACTIONS(1588), + [sym_minus_metadata] = ACTIONS(1588), + [sym__pipe_table_start] = ACTIONS(1588), + [sym__fenced_div_start] = ACTIONS(1588), + [sym__fenced_div_end] = ACTIONS(1588), + [sym_ref_id_specifier] = ACTIONS(1588), + [sym__display_math_state_track_marker] = ACTIONS(1588), + [sym__inline_math_state_track_marker] = ACTIONS(1588), + }, + [STATE(247)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [sym__word] = ACTIONS(1590), + [sym__soft_line_ending] = ACTIONS(1590), + [sym__block_close] = ACTIONS(1590), + [sym__block_quote_start] = ACTIONS(1590), + [sym__indented_chunk_start] = ACTIONS(1590), + [sym_atx_h1_marker] = ACTIONS(1590), + [sym_atx_h2_marker] = ACTIONS(1590), + [sym_atx_h3_marker] = ACTIONS(1590), + [sym_atx_h4_marker] = ACTIONS(1590), + [sym_atx_h5_marker] = ACTIONS(1590), + [sym_atx_h6_marker] = ACTIONS(1590), + [sym__thematic_break] = ACTIONS(1590), + [sym__list_marker_minus] = ACTIONS(1590), + [sym__list_marker_plus] = ACTIONS(1590), + [sym__list_marker_star] = ACTIONS(1590), + [sym__list_marker_parenthesis] = ACTIONS(1590), + [sym__list_marker_dot] = ACTIONS(1590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_example] = ACTIONS(1590), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1590), + [sym__fenced_code_block_start_backtick] = ACTIONS(1590), + [sym__fenced_code_block_start_tilde] = ACTIONS(1590), + [sym__blank_line_start] = ACTIONS(1590), + [sym_minus_metadata] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1590), + [sym__fenced_div_start] = ACTIONS(1590), + [sym__fenced_div_end] = ACTIONS(1590), + [sym_ref_id_specifier] = ACTIONS(1590), + [sym__display_math_state_track_marker] = ACTIONS(1590), + [sym__inline_math_state_track_marker] = ACTIONS(1590), + }, + [STATE(248)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_close] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_example] = ACTIONS(1592), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym_minus_metadata] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + [sym__fenced_div_start] = ACTIONS(1592), + [sym__fenced_div_end] = ACTIONS(1592), + [sym_ref_id_specifier] = ACTIONS(1592), + [sym__display_math_state_track_marker] = ACTIONS(1592), + [sym__inline_math_state_track_marker] = ACTIONS(1592), + }, + [STATE(249)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(1594), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_DOT] = ACTIONS(1594), + [anon_sym_SLASH] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1594), + [anon_sym_AT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_BSLASH] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym__] = ACTIONS(1594), + [anon_sym_BQUOTE] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_TILDE] = ACTIONS(1594), + [sym__word] = ACTIONS(1594), + [sym__soft_line_ending] = ACTIONS(1594), + [sym__block_close] = ACTIONS(1594), + [sym__block_quote_start] = ACTIONS(1594), + [sym__indented_chunk_start] = ACTIONS(1594), + [sym_atx_h1_marker] = ACTIONS(1594), + [sym_atx_h2_marker] = ACTIONS(1594), + [sym_atx_h3_marker] = ACTIONS(1594), + [sym_atx_h4_marker] = ACTIONS(1594), + [sym_atx_h5_marker] = ACTIONS(1594), + [sym_atx_h6_marker] = ACTIONS(1594), + [sym__thematic_break] = ACTIONS(1594), + [sym__list_marker_minus] = ACTIONS(1594), + [sym__list_marker_plus] = ACTIONS(1594), + [sym__list_marker_star] = ACTIONS(1594), + [sym__list_marker_parenthesis] = ACTIONS(1594), + [sym__list_marker_dot] = ACTIONS(1594), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_example] = ACTIONS(1594), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1594), + [sym__fenced_code_block_start_backtick] = ACTIONS(1594), + [sym__fenced_code_block_start_tilde] = ACTIONS(1594), + [sym__blank_line_start] = ACTIONS(1594), + [sym_minus_metadata] = ACTIONS(1594), + [sym__pipe_table_start] = ACTIONS(1594), + [sym__fenced_div_start] = ACTIONS(1594), + [sym__fenced_div_end] = ACTIONS(1594), + [sym_ref_id_specifier] = ACTIONS(1594), + [sym__display_math_state_track_marker] = ACTIONS(1594), + [sym__inline_math_state_track_marker] = ACTIONS(1594), + }, + [STATE(250)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [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), + [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(1416), + [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(1416), + [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), + }, + [STATE(251)] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1508), + [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), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym_block_continuation] = ACTIONS(1596), + [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), + }, + [STATE(252)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_close] = ACTIONS(1598), + [sym__block_quote_start] = ACTIONS(1598), + [sym__indented_chunk_start] = ACTIONS(1598), + [sym_atx_h1_marker] = ACTIONS(1598), + [sym_atx_h2_marker] = ACTIONS(1598), + [sym_atx_h3_marker] = ACTIONS(1598), + [sym_atx_h4_marker] = ACTIONS(1598), + [sym_atx_h5_marker] = ACTIONS(1598), + [sym_atx_h6_marker] = ACTIONS(1598), + [sym__thematic_break] = ACTIONS(1598), + [sym__list_marker_minus] = ACTIONS(1598), + [sym__list_marker_plus] = ACTIONS(1598), + [sym__list_marker_star] = ACTIONS(1598), + [sym__list_marker_parenthesis] = ACTIONS(1598), + [sym__list_marker_dot] = ACTIONS(1598), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_example] = ACTIONS(1598), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1598), + [sym__fenced_code_block_start_backtick] = ACTIONS(1598), + [sym__fenced_code_block_start_tilde] = ACTIONS(1598), + [sym__blank_line_start] = ACTIONS(1598), + [sym_minus_metadata] = ACTIONS(1598), + [sym__pipe_table_start] = ACTIONS(1598), + [sym__fenced_div_start] = ACTIONS(1598), + [sym__fenced_div_end] = ACTIONS(1598), + [sym_ref_id_specifier] = ACTIONS(1598), + [sym__display_math_state_track_marker] = ACTIONS(1598), + [sym__inline_math_state_track_marker] = ACTIONS(1598), + }, + [STATE(253)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [sym__word] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_close] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_example] = ACTIONS(1600), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym_minus_metadata] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + [sym__fenced_div_start] = ACTIONS(1600), + [sym__fenced_div_end] = ACTIONS(1600), + [sym_ref_id_specifier] = ACTIONS(1600), + [sym__display_math_state_track_marker] = ACTIONS(1600), + [sym__inline_math_state_track_marker] = ACTIONS(1600), + }, + [STATE(254)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_CARET] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1602), + [sym__word] = ACTIONS(1602), + [sym__soft_line_ending] = ACTIONS(1602), + [sym__block_close] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(1602), + [sym__indented_chunk_start] = ACTIONS(1602), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(1602), + [sym__thematic_break] = ACTIONS(1602), + [sym__list_marker_minus] = ACTIONS(1602), + [sym__list_marker_plus] = ACTIONS(1602), + [sym__list_marker_star] = ACTIONS(1602), + [sym__list_marker_parenthesis] = ACTIONS(1602), + [sym__list_marker_dot] = ACTIONS(1602), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_example] = ACTIONS(1602), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1602), + [sym__fenced_code_block_start_backtick] = ACTIONS(1602), + [sym__fenced_code_block_start_tilde] = ACTIONS(1602), + [sym__blank_line_start] = ACTIONS(1602), + [sym_minus_metadata] = ACTIONS(1602), + [sym__pipe_table_start] = ACTIONS(1602), + [sym__fenced_div_start] = ACTIONS(1602), + [sym__fenced_div_end] = ACTIONS(1602), + [sym_ref_id_specifier] = ACTIONS(1602), + [sym__display_math_state_track_marker] = ACTIONS(1602), + [sym__inline_math_state_track_marker] = ACTIONS(1602), + }, + [STATE(255)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_close] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_example] = ACTIONS(1604), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym_minus_metadata] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + [sym__fenced_div_start] = ACTIONS(1604), + [sym__fenced_div_end] = ACTIONS(1604), + [sym_ref_id_specifier] = ACTIONS(1604), + [sym__display_math_state_track_marker] = ACTIONS(1604), + [sym__inline_math_state_track_marker] = ACTIONS(1604), + }, + [STATE(256)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_PLUS] = ACTIONS(1606), + [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_SLASH] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1606), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_CARET] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_TILDE] = ACTIONS(1606), + [sym__word] = ACTIONS(1606), + [sym__soft_line_ending] = ACTIONS(1606), + [sym__block_close] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(1606), + [sym__indented_chunk_start] = ACTIONS(1606), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(1606), + [sym__thematic_break] = ACTIONS(1606), + [sym__list_marker_minus] = ACTIONS(1606), + [sym__list_marker_plus] = ACTIONS(1606), + [sym__list_marker_star] = ACTIONS(1606), + [sym__list_marker_parenthesis] = ACTIONS(1606), + [sym__list_marker_dot] = ACTIONS(1606), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_example] = ACTIONS(1606), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1606), + [sym__fenced_code_block_start_backtick] = ACTIONS(1606), + [sym__fenced_code_block_start_tilde] = ACTIONS(1606), + [sym__blank_line_start] = ACTIONS(1606), + [sym_minus_metadata] = ACTIONS(1606), + [sym__pipe_table_start] = ACTIONS(1606), + [sym__fenced_div_start] = ACTIONS(1606), + [sym__fenced_div_end] = ACTIONS(1606), + [sym_ref_id_specifier] = ACTIONS(1606), + [sym__display_math_state_track_marker] = ACTIONS(1606), + [sym__inline_math_state_track_marker] = ACTIONS(1606), + }, + [STATE(257)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [sym__word] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_close] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_example] = ACTIONS(1608), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym_minus_metadata] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + [sym__fenced_div_start] = ACTIONS(1608), + [sym__fenced_div_end] = ACTIONS(1608), + [sym_ref_id_specifier] = ACTIONS(1608), + [sym__display_math_state_track_marker] = ACTIONS(1608), + [sym__inline_math_state_track_marker] = ACTIONS(1608), + }, + [STATE(258)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [sym__word] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_close] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_example] = ACTIONS(1610), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym_minus_metadata] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + [sym__fenced_div_start] = ACTIONS(1610), + [sym__fenced_div_end] = ACTIONS(1610), + [sym_ref_id_specifier] = ACTIONS(1610), + [sym__display_math_state_track_marker] = ACTIONS(1610), + [sym__inline_math_state_track_marker] = ACTIONS(1610), + }, + [STATE(259)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_DOT] = ACTIONS(1612), + [anon_sym_SLASH] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1612), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_BSLASH] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_CARET] = ACTIONS(1612), + [anon_sym__] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1612), + [sym__word] = ACTIONS(1612), + [sym__soft_line_ending] = ACTIONS(1612), + [sym__block_close] = ACTIONS(1612), + [sym__block_quote_start] = ACTIONS(1612), + [sym__indented_chunk_start] = ACTIONS(1612), + [sym_atx_h1_marker] = ACTIONS(1612), + [sym_atx_h2_marker] = ACTIONS(1612), + [sym_atx_h3_marker] = ACTIONS(1612), + [sym_atx_h4_marker] = ACTIONS(1612), + [sym_atx_h5_marker] = ACTIONS(1612), + [sym_atx_h6_marker] = ACTIONS(1612), + [sym__thematic_break] = ACTIONS(1612), + [sym__list_marker_minus] = ACTIONS(1612), + [sym__list_marker_plus] = ACTIONS(1612), + [sym__list_marker_star] = ACTIONS(1612), + [sym__list_marker_parenthesis] = ACTIONS(1612), + [sym__list_marker_dot] = ACTIONS(1612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_example] = ACTIONS(1612), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1612), + [sym__fenced_code_block_start_backtick] = ACTIONS(1612), + [sym__fenced_code_block_start_tilde] = ACTIONS(1612), + [sym__blank_line_start] = ACTIONS(1612), + [sym_minus_metadata] = ACTIONS(1612), + [sym__pipe_table_start] = ACTIONS(1612), + [sym__fenced_div_start] = ACTIONS(1612), + [sym__fenced_div_end] = ACTIONS(1612), + [sym_ref_id_specifier] = ACTIONS(1612), + [sym__display_math_state_track_marker] = ACTIONS(1612), + [sym__inline_math_state_track_marker] = ACTIONS(1612), + }, + [STATE(260)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1614), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_BSLASH] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_CARET] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_TILDE] = ACTIONS(1614), + [sym__word] = ACTIONS(1614), + [sym__soft_line_ending] = ACTIONS(1614), + [sym__block_close] = ACTIONS(1614), + [sym__block_quote_start] = ACTIONS(1614), + [sym__indented_chunk_start] = ACTIONS(1614), + [sym_atx_h1_marker] = ACTIONS(1614), + [sym_atx_h2_marker] = ACTIONS(1614), + [sym_atx_h3_marker] = ACTIONS(1614), + [sym_atx_h4_marker] = ACTIONS(1614), + [sym_atx_h5_marker] = ACTIONS(1614), + [sym_atx_h6_marker] = ACTIONS(1614), + [sym__thematic_break] = ACTIONS(1614), + [sym__list_marker_minus] = ACTIONS(1614), + [sym__list_marker_plus] = ACTIONS(1614), + [sym__list_marker_star] = ACTIONS(1614), + [sym__list_marker_parenthesis] = ACTIONS(1614), + [sym__list_marker_dot] = ACTIONS(1614), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_example] = ACTIONS(1614), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1614), + [sym__fenced_code_block_start_backtick] = ACTIONS(1614), + [sym__fenced_code_block_start_tilde] = ACTIONS(1614), + [sym__blank_line_start] = ACTIONS(1614), + [sym_minus_metadata] = ACTIONS(1614), + [sym__pipe_table_start] = ACTIONS(1614), + [sym__fenced_div_start] = ACTIONS(1614), + [sym__fenced_div_end] = ACTIONS(1614), + [sym_ref_id_specifier] = ACTIONS(1614), + [sym__display_math_state_track_marker] = ACTIONS(1614), + [sym__inline_math_state_track_marker] = ACTIONS(1614), + }, + [STATE(261)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [sym__word] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_close] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_example] = ACTIONS(1616), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym_minus_metadata] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + [sym__fenced_div_start] = ACTIONS(1616), + [sym__fenced_div_end] = ACTIONS(1616), + [sym_ref_id_specifier] = ACTIONS(1616), + [sym__display_math_state_track_marker] = ACTIONS(1616), + [sym__inline_math_state_track_marker] = ACTIONS(1616), + }, + [STATE(262)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_EQ] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_PERCENT] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_DOT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_BSLASH] = ACTIONS(1618), + [anon_sym_RBRACK] = ACTIONS(1618), + [anon_sym_CARET] = ACTIONS(1618), + [anon_sym__] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_TILDE] = ACTIONS(1618), + [sym__word] = ACTIONS(1618), + [sym__soft_line_ending] = ACTIONS(1618), + [sym__block_close] = ACTIONS(1618), + [sym__block_quote_start] = ACTIONS(1618), + [sym__indented_chunk_start] = ACTIONS(1618), + [sym_atx_h1_marker] = ACTIONS(1618), + [sym_atx_h2_marker] = ACTIONS(1618), + [sym_atx_h3_marker] = ACTIONS(1618), + [sym_atx_h4_marker] = ACTIONS(1618), + [sym_atx_h5_marker] = ACTIONS(1618), + [sym_atx_h6_marker] = ACTIONS(1618), + [sym__thematic_break] = ACTIONS(1618), + [sym__list_marker_minus] = ACTIONS(1618), + [sym__list_marker_plus] = ACTIONS(1618), + [sym__list_marker_star] = ACTIONS(1618), + [sym__list_marker_parenthesis] = ACTIONS(1618), + [sym__list_marker_dot] = ACTIONS(1618), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_example] = ACTIONS(1618), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1618), + [sym__fenced_code_block_start_backtick] = ACTIONS(1618), + [sym__fenced_code_block_start_tilde] = ACTIONS(1618), + [sym__blank_line_start] = ACTIONS(1618), + [sym_minus_metadata] = ACTIONS(1618), + [sym__pipe_table_start] = ACTIONS(1618), + [sym__fenced_div_start] = ACTIONS(1618), + [sym__fenced_div_end] = ACTIONS(1618), + [sym_ref_id_specifier] = ACTIONS(1618), + [sym__display_math_state_track_marker] = ACTIONS(1618), + [sym__inline_math_state_track_marker] = ACTIONS(1618), + }, + [STATE(263)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_BSLASH] = ACTIONS(1452), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym__] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), + [sym__block_close] = ACTIONS(1452), + [sym_block_continuation] = ACTIONS(1620), + [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), + }, + [STATE(264)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_close] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_example] = ACTIONS(1622), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym_minus_metadata] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + [sym__fenced_div_start] = ACTIONS(1622), + [sym__fenced_div_end] = ACTIONS(1622), + [sym_ref_id_specifier] = ACTIONS(1622), + [sym__display_math_state_track_marker] = ACTIONS(1622), + [sym__inline_math_state_track_marker] = ACTIONS(1622), + }, + [STATE(265)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1624), + [anon_sym_SQUOTE] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_DQUOTE] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_RPAREN] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(1624), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_DOT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1624), + [anon_sym_AT] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_BSLASH] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1624), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym__] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_TILDE] = ACTIONS(1624), + [sym__word] = ACTIONS(1624), + [sym__soft_line_ending] = ACTIONS(1624), + [sym__block_close] = ACTIONS(1624), + [sym__block_quote_start] = ACTIONS(1624), + [sym__indented_chunk_start] = ACTIONS(1624), + [sym_atx_h1_marker] = ACTIONS(1624), + [sym_atx_h2_marker] = ACTIONS(1624), + [sym_atx_h3_marker] = ACTIONS(1624), + [sym_atx_h4_marker] = ACTIONS(1624), + [sym_atx_h5_marker] = ACTIONS(1624), + [sym_atx_h6_marker] = ACTIONS(1624), + [sym__thematic_break] = ACTIONS(1624), + [sym__list_marker_minus] = ACTIONS(1624), + [sym__list_marker_plus] = ACTIONS(1624), + [sym__list_marker_star] = ACTIONS(1624), + [sym__list_marker_parenthesis] = ACTIONS(1624), + [sym__list_marker_dot] = ACTIONS(1624), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_example] = ACTIONS(1624), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1624), + [sym__fenced_code_block_start_backtick] = ACTIONS(1624), + [sym__fenced_code_block_start_tilde] = ACTIONS(1624), + [sym__blank_line_start] = ACTIONS(1624), + [sym_minus_metadata] = ACTIONS(1624), + [sym__pipe_table_start] = ACTIONS(1624), + [sym__fenced_div_start] = ACTIONS(1624), + [sym__fenced_div_end] = ACTIONS(1624), + [sym_ref_id_specifier] = ACTIONS(1624), + [sym__display_math_state_track_marker] = ACTIONS(1624), + [sym__inline_math_state_track_marker] = ACTIONS(1624), + }, + [STATE(266)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [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), + [sym__word] = ACTIONS(1626), + [sym__soft_line_ending] = ACTIONS(1626), + [sym__block_close] = ACTIONS(1626), + [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), + }, + [STATE(267)] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym_block_continuation] = ACTIONS(1628), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(268)] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym_block_continuation] = ACTIONS(1630), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(269)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym__] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [sym__word] = ACTIONS(1350), + [sym__soft_line_ending] = ACTIONS(1350), + [sym__block_close] = ACTIONS(1350), + [sym_block_continuation] = ACTIONS(1632), + [sym__block_quote_start] = ACTIONS(1350), + [sym__indented_chunk_start] = ACTIONS(1350), + [sym_atx_h1_marker] = ACTIONS(1350), + [sym_atx_h2_marker] = ACTIONS(1350), + [sym_atx_h3_marker] = ACTIONS(1350), + [sym_atx_h4_marker] = ACTIONS(1350), + [sym_atx_h5_marker] = ACTIONS(1350), + [sym_atx_h6_marker] = ACTIONS(1350), + [sym__thematic_break] = ACTIONS(1350), + [sym__list_marker_minus] = ACTIONS(1350), + [sym__list_marker_plus] = ACTIONS(1350), + [sym__list_marker_star] = ACTIONS(1350), + [sym__list_marker_parenthesis] = ACTIONS(1350), + [sym__list_marker_dot] = ACTIONS(1350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_example] = ACTIONS(1350), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1350), + [sym__fenced_code_block_start_backtick] = ACTIONS(1350), + [sym__fenced_code_block_start_tilde] = ACTIONS(1350), + [sym__blank_line_start] = ACTIONS(1350), + [sym_minus_metadata] = ACTIONS(1350), + [sym__pipe_table_start] = ACTIONS(1350), + [sym__fenced_div_start] = ACTIONS(1350), + [sym_ref_id_specifier] = ACTIONS(1350), + [sym__display_math_state_track_marker] = ACTIONS(1350), + [sym__inline_math_state_track_marker] = ACTIONS(1350), + }, + [STATE(270)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym__] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [sym__block_close] = ACTIONS(1420), + [sym__block_quote_start] = ACTIONS(1420), + [sym__indented_chunk_start] = ACTIONS(1420), + [sym_atx_h1_marker] = ACTIONS(1420), + [sym_atx_h2_marker] = ACTIONS(1420), + [sym_atx_h3_marker] = ACTIONS(1420), + [sym_atx_h4_marker] = ACTIONS(1420), + [sym_atx_h5_marker] = ACTIONS(1420), + [sym_atx_h6_marker] = ACTIONS(1420), + [sym__thematic_break] = ACTIONS(1420), + [sym__list_marker_minus] = ACTIONS(1420), + [sym__list_marker_plus] = ACTIONS(1420), + [sym__list_marker_star] = ACTIONS(1420), + [sym__list_marker_parenthesis] = ACTIONS(1420), + [sym__list_marker_dot] = ACTIONS(1420), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1420), + [sym__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), + }, + [STATE(271)] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym_block_continuation] = ACTIONS(1634), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(272)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [sym__word] = ACTIONS(1464), + [sym__soft_line_ending] = ACTIONS(1464), + [sym__block_close] = ACTIONS(1464), + [sym_block_continuation] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1464), + [sym__indented_chunk_start] = ACTIONS(1464), + [sym_atx_h1_marker] = ACTIONS(1464), + [sym_atx_h2_marker] = ACTIONS(1464), + [sym_atx_h3_marker] = ACTIONS(1464), + [sym_atx_h4_marker] = ACTIONS(1464), + [sym_atx_h5_marker] = ACTIONS(1464), + [sym_atx_h6_marker] = ACTIONS(1464), + [sym__thematic_break] = ACTIONS(1464), + [sym__list_marker_minus] = ACTIONS(1464), + [sym__list_marker_plus] = ACTIONS(1464), + [sym__list_marker_star] = ACTIONS(1464), + [sym__list_marker_parenthesis] = ACTIONS(1464), + [sym__list_marker_dot] = ACTIONS(1464), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_example] = ACTIONS(1464), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1464), + [sym__fenced_code_block_start_backtick] = ACTIONS(1464), + [sym__fenced_code_block_start_tilde] = ACTIONS(1464), + [sym__blank_line_start] = ACTIONS(1464), + [sym_minus_metadata] = ACTIONS(1464), + [sym__pipe_table_start] = ACTIONS(1464), + [sym__fenced_div_start] = ACTIONS(1464), + [sym_ref_id_specifier] = ACTIONS(1464), + [sym__display_math_state_track_marker] = ACTIONS(1464), + [sym__inline_math_state_track_marker] = ACTIONS(1464), + }, + [STATE(273)] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym_block_continuation] = ACTIONS(1638), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(274)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_close] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(1424), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_example] = ACTIONS(1424), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1424), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1424), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym__fenced_div_end] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(275)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_close] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym__fenced_div_end] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(276)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_close] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym__fenced_div_end] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(277)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [sym__word] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym__block_close] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1642), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_example] = ACTIONS(1468), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym_minus_metadata] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + [sym__fenced_div_start] = ACTIONS(1468), + [sym_ref_id_specifier] = ACTIONS(1468), + [sym__display_math_state_track_marker] = ACTIONS(1468), + [sym__inline_math_state_track_marker] = ACTIONS(1468), + }, + [STATE(278)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [sym_block_continuation] = ACTIONS(1644), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(279)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_BSLASH] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym__] = ACTIONS(1646), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1646), + [sym__word] = ACTIONS(1646), + [sym__soft_line_ending] = ACTIONS(1646), + [sym__block_close] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1646), + [sym__indented_chunk_start] = ACTIONS(1646), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1646), + [sym__thematic_break] = ACTIONS(1646), + [sym__list_marker_minus] = ACTIONS(1646), + [sym__list_marker_plus] = ACTIONS(1646), + [sym__list_marker_star] = ACTIONS(1646), + [sym__list_marker_parenthesis] = ACTIONS(1646), + [sym__list_marker_dot] = ACTIONS(1646), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_example] = ACTIONS(1646), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1646), + [sym__fenced_code_block_start_backtick] = ACTIONS(1646), + [sym__fenced_code_block_start_tilde] = ACTIONS(1646), + [sym__blank_line_start] = ACTIONS(1646), + [sym_minus_metadata] = ACTIONS(1646), + [sym__pipe_table_start] = ACTIONS(1646), + [sym__fenced_div_start] = ACTIONS(1646), + [sym__fenced_div_end] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1646), + [sym__display_math_state_track_marker] = ACTIONS(1646), + [sym__inline_math_state_track_marker] = ACTIONS(1646), + }, + [STATE(280)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym__] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [sym__word] = ACTIONS(1444), + [sym__soft_line_ending] = ACTIONS(1444), + [sym__block_close] = ACTIONS(1444), + [sym_block_continuation] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1444), + [sym__indented_chunk_start] = ACTIONS(1444), + [sym_atx_h1_marker] = ACTIONS(1444), + [sym_atx_h2_marker] = ACTIONS(1444), + [sym_atx_h3_marker] = ACTIONS(1444), + [sym_atx_h4_marker] = ACTIONS(1444), + [sym_atx_h5_marker] = ACTIONS(1444), + [sym_atx_h6_marker] = ACTIONS(1444), + [sym__thematic_break] = ACTIONS(1444), + [sym__list_marker_minus] = ACTIONS(1444), + [sym__list_marker_plus] = ACTIONS(1444), + [sym__list_marker_star] = ACTIONS(1444), + [sym__list_marker_parenthesis] = ACTIONS(1444), + [sym__list_marker_dot] = ACTIONS(1444), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_example] = ACTIONS(1444), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1444), + [sym__fenced_code_block_start_backtick] = ACTIONS(1444), + [sym__fenced_code_block_start_tilde] = ACTIONS(1444), + [sym__blank_line_start] = ACTIONS(1444), + [sym_minus_metadata] = ACTIONS(1444), + [sym__pipe_table_start] = ACTIONS(1444), + [sym__fenced_div_start] = ACTIONS(1444), + [sym_ref_id_specifier] = ACTIONS(1444), + [sym__display_math_state_track_marker] = ACTIONS(1444), + [sym__inline_math_state_track_marker] = ACTIONS(1444), + }, + [STATE(281)] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PERCENT] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_AT] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_BSLASH] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_CARET] = ACTIONS(1350), + [anon_sym__] = ACTIONS(1350), + [anon_sym_BQUOTE] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [sym__word] = ACTIONS(1350), + [sym__soft_line_ending] = ACTIONS(1350), + [sym_block_continuation] = ACTIONS(1650), + [sym__block_quote_start] = ACTIONS(1350), + [sym__indented_chunk_start] = ACTIONS(1350), + [sym_atx_h1_marker] = ACTIONS(1350), + [sym_atx_h2_marker] = ACTIONS(1350), + [sym_atx_h3_marker] = ACTIONS(1350), + [sym_atx_h4_marker] = ACTIONS(1350), + [sym_atx_h5_marker] = ACTIONS(1350), + [sym_atx_h6_marker] = ACTIONS(1350), + [sym__thematic_break] = ACTIONS(1350), + [sym__list_marker_minus] = ACTIONS(1350), + [sym__list_marker_plus] = ACTIONS(1350), + [sym__list_marker_star] = ACTIONS(1350), + [sym__list_marker_parenthesis] = ACTIONS(1350), + [sym__list_marker_dot] = ACTIONS(1350), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), + [sym__list_marker_example] = ACTIONS(1350), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1350), + [sym__fenced_code_block_start_backtick] = ACTIONS(1350), + [sym__fenced_code_block_start_tilde] = ACTIONS(1350), + [sym__blank_line_start] = ACTIONS(1350), + [sym_minus_metadata] = ACTIONS(1350), + [sym__pipe_table_start] = ACTIONS(1350), + [sym__fenced_div_start] = ACTIONS(1350), + [sym_ref_id_specifier] = ACTIONS(1350), + [sym__display_math_state_track_marker] = ACTIONS(1350), + [sym__inline_math_state_track_marker] = ACTIONS(1350), + }, + [STATE(282)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym__block_close] = ACTIONS(1500), + [sym_block_continuation] = ACTIONS(1652), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(283)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym__fenced_div_end] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(284)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_close] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1654), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(285)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1508), + [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), + [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), + }, + [STATE(286)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym__block_close] = ACTIONS(1480), + [sym_block_continuation] = ACTIONS(1656), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(287)] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_BSLASH] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym__] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [sym__word] = ACTIONS(1448), + [sym__soft_line_ending] = ACTIONS(1448), + [sym_block_continuation] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(1448), + [sym__indented_chunk_start] = ACTIONS(1448), + [sym_atx_h1_marker] = ACTIONS(1448), + [sym_atx_h2_marker] = ACTIONS(1448), + [sym_atx_h3_marker] = ACTIONS(1448), + [sym_atx_h4_marker] = ACTIONS(1448), + [sym_atx_h5_marker] = ACTIONS(1448), + [sym_atx_h6_marker] = ACTIONS(1448), + [sym__thematic_break] = ACTIONS(1448), + [sym__list_marker_minus] = ACTIONS(1448), + [sym__list_marker_plus] = ACTIONS(1448), + [sym__list_marker_star] = ACTIONS(1448), + [sym__list_marker_parenthesis] = ACTIONS(1448), + [sym__list_marker_dot] = ACTIONS(1448), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_example] = ACTIONS(1448), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1448), + [sym__fenced_code_block_start_backtick] = ACTIONS(1448), + [sym__fenced_code_block_start_tilde] = ACTIONS(1448), + [sym__blank_line_start] = ACTIONS(1448), + [sym_minus_metadata] = ACTIONS(1448), + [sym__pipe_table_start] = ACTIONS(1448), + [sym__fenced_div_start] = ACTIONS(1448), + [sym_ref_id_specifier] = ACTIONS(1448), + [sym__display_math_state_track_marker] = ACTIONS(1448), + [sym__inline_math_state_track_marker] = ACTIONS(1448), + }, + [STATE(288)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1660), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_QMARK] = ACTIONS(1660), + [anon_sym_AT] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [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), + [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), + }, + [STATE(289)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym__] = ACTIONS(1662), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [sym__word] = ACTIONS(1662), + [sym__soft_line_ending] = ACTIONS(1662), + [sym__block_close] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1662), + [sym__indented_chunk_start] = ACTIONS(1662), + [sym_atx_h1_marker] = ACTIONS(1662), + [sym_atx_h2_marker] = ACTIONS(1662), + [sym_atx_h3_marker] = ACTIONS(1662), + [sym_atx_h4_marker] = ACTIONS(1662), + [sym_atx_h5_marker] = ACTIONS(1662), + [sym_atx_h6_marker] = ACTIONS(1662), + [sym__thematic_break] = ACTIONS(1662), + [sym__list_marker_minus] = ACTIONS(1662), + [sym__list_marker_plus] = ACTIONS(1662), + [sym__list_marker_star] = ACTIONS(1662), + [sym__list_marker_parenthesis] = ACTIONS(1662), + [sym__list_marker_dot] = ACTIONS(1662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_example] = ACTIONS(1662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1662), + [sym__fenced_code_block_start_backtick] = ACTIONS(1662), + [sym__fenced_code_block_start_tilde] = ACTIONS(1662), + [sym__blank_line_start] = ACTIONS(1662), + [sym_minus_metadata] = ACTIONS(1662), + [sym__pipe_table_start] = ACTIONS(1662), + [sym__fenced_div_start] = ACTIONS(1662), + [sym__fenced_div_end] = ACTIONS(1662), + [sym_ref_id_specifier] = ACTIONS(1662), + [sym__display_math_state_track_marker] = ACTIONS(1662), + [sym__inline_math_state_track_marker] = ACTIONS(1662), + }, + [STATE(290)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [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), + [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), + }, + [STATE(291)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_SLASH] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_BSLASH] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_CARET] = ACTIONS(1666), + [anon_sym__] = ACTIONS(1666), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1666), + [sym__word] = ACTIONS(1666), + [sym__soft_line_ending] = ACTIONS(1666), + [sym__block_close] = ACTIONS(1666), + [sym__block_quote_start] = ACTIONS(1666), + [sym__indented_chunk_start] = ACTIONS(1666), + [sym_atx_h1_marker] = ACTIONS(1666), + [sym_atx_h2_marker] = ACTIONS(1666), + [sym_atx_h3_marker] = ACTIONS(1666), + [sym_atx_h4_marker] = ACTIONS(1666), + [sym_atx_h5_marker] = ACTIONS(1666), + [sym_atx_h6_marker] = ACTIONS(1666), + [sym__thematic_break] = ACTIONS(1666), + [sym__list_marker_minus] = ACTIONS(1666), + [sym__list_marker_plus] = ACTIONS(1666), + [sym__list_marker_star] = ACTIONS(1666), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1666), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_example] = ACTIONS(1666), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1666), + [sym__fenced_code_block_start_backtick] = ACTIONS(1666), + [sym__fenced_code_block_start_tilde] = ACTIONS(1666), + [sym__blank_line_start] = ACTIONS(1666), + [sym_minus_metadata] = ACTIONS(1666), + [sym__pipe_table_start] = ACTIONS(1666), + [sym__fenced_div_start] = ACTIONS(1666), + [sym__fenced_div_end] = ACTIONS(1666), + [sym_ref_id_specifier] = ACTIONS(1666), + [sym__display_math_state_track_marker] = ACTIONS(1666), + [sym__inline_math_state_track_marker] = ACTIONS(1666), + }, + [STATE(292)] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_SLASH] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym__] = ACTIONS(1444), + [anon_sym_BQUOTE] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [sym__word] = ACTIONS(1444), + [sym__soft_line_ending] = ACTIONS(1444), + [sym_block_continuation] = ACTIONS(1668), + [sym__block_quote_start] = ACTIONS(1444), + [sym__indented_chunk_start] = ACTIONS(1444), + [sym_atx_h1_marker] = ACTIONS(1444), + [sym_atx_h2_marker] = ACTIONS(1444), + [sym_atx_h3_marker] = ACTIONS(1444), + [sym_atx_h4_marker] = ACTIONS(1444), + [sym_atx_h5_marker] = ACTIONS(1444), + [sym_atx_h6_marker] = ACTIONS(1444), + [sym__thematic_break] = ACTIONS(1444), + [sym__list_marker_minus] = ACTIONS(1444), + [sym__list_marker_plus] = ACTIONS(1444), + [sym__list_marker_star] = ACTIONS(1444), + [sym__list_marker_parenthesis] = ACTIONS(1444), + [sym__list_marker_dot] = ACTIONS(1444), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1444), + [sym__list_marker_example] = ACTIONS(1444), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1444), + [sym__fenced_code_block_start_backtick] = ACTIONS(1444), + [sym__fenced_code_block_start_tilde] = ACTIONS(1444), + [sym__blank_line_start] = ACTIONS(1444), + [sym_minus_metadata] = ACTIONS(1444), + [sym__pipe_table_start] = ACTIONS(1444), + [sym__fenced_div_start] = ACTIONS(1444), + [sym_ref_id_specifier] = ACTIONS(1444), + [sym__display_math_state_track_marker] = ACTIONS(1444), + [sym__inline_math_state_track_marker] = ACTIONS(1444), + }, + [STATE(293)] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_BSLASH] = ACTIONS(1452), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym__] = ACTIONS(1452), + [anon_sym_BQUOTE] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [sym__word] = ACTIONS(1452), + [sym__soft_line_ending] = ACTIONS(1452), + [sym_block_continuation] = ACTIONS(1670), + [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), + }, + [STATE(294)] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym__] = ACTIONS(1456), + [anon_sym_BQUOTE] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [sym__word] = ACTIONS(1456), + [sym__soft_line_ending] = ACTIONS(1456), + [sym_block_continuation] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1456), + [sym__indented_chunk_start] = ACTIONS(1456), + [sym_atx_h1_marker] = ACTIONS(1456), + [sym_atx_h2_marker] = ACTIONS(1456), + [sym_atx_h3_marker] = ACTIONS(1456), + [sym_atx_h4_marker] = ACTIONS(1456), + [sym_atx_h5_marker] = ACTIONS(1456), + [sym_atx_h6_marker] = ACTIONS(1456), + [sym__thematic_break] = ACTIONS(1456), + [sym__list_marker_minus] = ACTIONS(1456), + [sym__list_marker_plus] = ACTIONS(1456), + [sym__list_marker_star] = ACTIONS(1456), + [sym__list_marker_parenthesis] = ACTIONS(1456), + [sym__list_marker_dot] = ACTIONS(1456), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1456), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1456), + [sym__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), + }, + [STATE(295)] = { + [ts_builtin_sym_end] = ACTIONS(1500), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym__] = ACTIONS(1500), + [anon_sym_BQUOTE] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [sym__word] = ACTIONS(1500), + [sym__soft_line_ending] = ACTIONS(1500), + [sym_block_continuation] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1500), + [sym__indented_chunk_start] = ACTIONS(1500), + [sym_atx_h1_marker] = ACTIONS(1500), + [sym_atx_h2_marker] = ACTIONS(1500), + [sym_atx_h3_marker] = ACTIONS(1500), + [sym_atx_h4_marker] = ACTIONS(1500), + [sym_atx_h5_marker] = ACTIONS(1500), + [sym_atx_h6_marker] = ACTIONS(1500), + [sym__thematic_break] = ACTIONS(1500), + [sym__list_marker_minus] = ACTIONS(1500), + [sym__list_marker_plus] = ACTIONS(1500), + [sym__list_marker_star] = ACTIONS(1500), + [sym__list_marker_parenthesis] = ACTIONS(1500), + [sym__list_marker_dot] = ACTIONS(1500), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1500), + [sym__list_marker_example] = ACTIONS(1500), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1500), + [sym__fenced_code_block_start_backtick] = ACTIONS(1500), + [sym__fenced_code_block_start_tilde] = ACTIONS(1500), + [sym__blank_line_start] = ACTIONS(1500), + [sym_minus_metadata] = ACTIONS(1500), + [sym__pipe_table_start] = ACTIONS(1500), + [sym__fenced_div_start] = ACTIONS(1500), + [sym_ref_id_specifier] = ACTIONS(1500), + [sym__display_math_state_track_marker] = ACTIONS(1500), + [sym__inline_math_state_track_marker] = ACTIONS(1500), + }, + [STATE(296)] = { + [ts_builtin_sym_end] = ACTIONS(1460), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1460), + [anon_sym_PERCENT] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1460), + [anon_sym_COMMA] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_DOT] = ACTIONS(1460), + [anon_sym_SLASH] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_QMARK] = ACTIONS(1460), + [anon_sym_AT] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1460), + [anon_sym_RBRACK] = ACTIONS(1460), + [anon_sym_CARET] = ACTIONS(1460), + [anon_sym__] = ACTIONS(1460), + [anon_sym_BQUOTE] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [sym__word] = ACTIONS(1460), + [sym__soft_line_ending] = ACTIONS(1460), + [sym_block_continuation] = ACTIONS(1676), + [sym__block_quote_start] = ACTIONS(1460), + [sym__indented_chunk_start] = ACTIONS(1460), + [sym_atx_h1_marker] = ACTIONS(1460), + [sym_atx_h2_marker] = ACTIONS(1460), + [sym_atx_h3_marker] = ACTIONS(1460), + [sym_atx_h4_marker] = ACTIONS(1460), + [sym_atx_h5_marker] = ACTIONS(1460), + [sym_atx_h6_marker] = ACTIONS(1460), + [sym__thematic_break] = ACTIONS(1460), + [sym__list_marker_minus] = ACTIONS(1460), + [sym__list_marker_plus] = ACTIONS(1460), + [sym__list_marker_star] = ACTIONS(1460), + [sym__list_marker_parenthesis] = ACTIONS(1460), + [sym__list_marker_dot] = ACTIONS(1460), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1460), + [sym__list_marker_example] = ACTIONS(1460), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1460), + [sym__fenced_code_block_start_backtick] = ACTIONS(1460), + [sym__fenced_code_block_start_tilde] = ACTIONS(1460), + [sym__blank_line_start] = ACTIONS(1460), + [sym_minus_metadata] = ACTIONS(1460), + [sym__pipe_table_start] = ACTIONS(1460), + [sym__fenced_div_start] = ACTIONS(1460), + [sym_ref_id_specifier] = ACTIONS(1460), + [sym__display_math_state_track_marker] = ACTIONS(1460), + [sym__inline_math_state_track_marker] = ACTIONS(1460), + }, + [STATE(297)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1678), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_BSLASH] = ACTIONS(1678), + [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), + [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), + }, + [STATE(298)] = { + [ts_builtin_sym_end] = ACTIONS(1464), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [sym__word] = ACTIONS(1464), + [sym__soft_line_ending] = ACTIONS(1464), + [sym_block_continuation] = ACTIONS(1680), + [sym__block_quote_start] = ACTIONS(1464), + [sym__indented_chunk_start] = ACTIONS(1464), + [sym_atx_h1_marker] = ACTIONS(1464), + [sym_atx_h2_marker] = ACTIONS(1464), + [sym_atx_h3_marker] = ACTIONS(1464), + [sym_atx_h4_marker] = ACTIONS(1464), + [sym_atx_h5_marker] = ACTIONS(1464), + [sym_atx_h6_marker] = ACTIONS(1464), + [sym__thematic_break] = ACTIONS(1464), + [sym__list_marker_minus] = ACTIONS(1464), + [sym__list_marker_plus] = ACTIONS(1464), + [sym__list_marker_star] = ACTIONS(1464), + [sym__list_marker_parenthesis] = ACTIONS(1464), + [sym__list_marker_dot] = ACTIONS(1464), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1464), + [sym__list_marker_example] = ACTIONS(1464), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1464), + [sym__fenced_code_block_start_backtick] = ACTIONS(1464), + [sym__fenced_code_block_start_tilde] = ACTIONS(1464), + [sym__blank_line_start] = ACTIONS(1464), + [sym_minus_metadata] = ACTIONS(1464), + [sym__pipe_table_start] = ACTIONS(1464), + [sym__fenced_div_start] = ACTIONS(1464), + [sym_ref_id_specifier] = ACTIONS(1464), + [sym__display_math_state_track_marker] = ACTIONS(1464), + [sym__inline_math_state_track_marker] = ACTIONS(1464), + }, + [STATE(299)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_BSLASH] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym__] = ACTIONS(1682), + [anon_sym_BQUOTE] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [sym__word] = ACTIONS(1682), + [sym__soft_line_ending] = ACTIONS(1682), + [sym__block_close] = ACTIONS(1682), + [sym__block_quote_start] = ACTIONS(1682), + [sym__indented_chunk_start] = ACTIONS(1682), + [sym_atx_h1_marker] = ACTIONS(1682), + [sym_atx_h2_marker] = ACTIONS(1682), + [sym_atx_h3_marker] = ACTIONS(1682), + [sym_atx_h4_marker] = ACTIONS(1682), + [sym_atx_h5_marker] = ACTIONS(1682), + [sym_atx_h6_marker] = ACTIONS(1682), + [sym__thematic_break] = ACTIONS(1682), + [sym__list_marker_minus] = ACTIONS(1682), + [sym__list_marker_plus] = ACTIONS(1682), + [sym__list_marker_star] = ACTIONS(1682), + [sym__list_marker_parenthesis] = ACTIONS(1682), + [sym__list_marker_dot] = ACTIONS(1682), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_example] = ACTIONS(1682), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1682), + [sym__fenced_code_block_start_backtick] = ACTIONS(1682), + [sym__fenced_code_block_start_tilde] = ACTIONS(1682), + [sym__blank_line_start] = ACTIONS(1682), + [sym_minus_metadata] = ACTIONS(1682), + [sym__pipe_table_start] = ACTIONS(1682), + [sym__fenced_div_start] = ACTIONS(1682), + [sym__fenced_div_end] = ACTIONS(1682), + [sym_ref_id_specifier] = ACTIONS(1682), + [sym__display_math_state_track_marker] = ACTIONS(1682), + [sym__inline_math_state_track_marker] = ACTIONS(1682), + }, + [STATE(300)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_GT] = ACTIONS(1684), + [anon_sym_QMARK] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_BSLASH] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1684), + [anon_sym__] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [sym__word] = ACTIONS(1684), + [sym__soft_line_ending] = ACTIONS(1684), + [sym__block_close] = ACTIONS(1684), + [sym__block_quote_start] = ACTIONS(1684), + [sym__indented_chunk_start] = ACTIONS(1684), + [sym_atx_h1_marker] = ACTIONS(1684), + [sym_atx_h2_marker] = ACTIONS(1684), + [sym_atx_h3_marker] = ACTIONS(1684), + [sym_atx_h4_marker] = ACTIONS(1684), + [sym_atx_h5_marker] = ACTIONS(1684), + [sym_atx_h6_marker] = ACTIONS(1684), + [sym__thematic_break] = ACTIONS(1684), + [sym__list_marker_minus] = ACTIONS(1684), + [sym__list_marker_plus] = ACTIONS(1684), + [sym__list_marker_star] = ACTIONS(1684), + [sym__list_marker_parenthesis] = ACTIONS(1684), + [sym__list_marker_dot] = ACTIONS(1684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_example] = ACTIONS(1684), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1684), + [sym__fenced_code_block_start_backtick] = ACTIONS(1684), + [sym__fenced_code_block_start_tilde] = ACTIONS(1684), + [sym__blank_line_start] = ACTIONS(1684), + [sym_minus_metadata] = ACTIONS(1684), + [sym__pipe_table_start] = ACTIONS(1684), + [sym__fenced_div_start] = ACTIONS(1684), + [sym__fenced_div_end] = ACTIONS(1684), + [sym_ref_id_specifier] = ACTIONS(1684), + [sym__display_math_state_track_marker] = ACTIONS(1684), + [sym__inline_math_state_track_marker] = ACTIONS(1684), + }, + [STATE(301)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1686), + [anon_sym_QMARK] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [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), + [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), + }, + [STATE(302)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_QMARK] = ACTIONS(1688), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_BSLASH] = ACTIONS(1688), + [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), + [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), + }, + [STATE(303)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_QMARK] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [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), + [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), + }, + [STATE(304)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1692), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_BSLASH] = ACTIONS(1692), + [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), + [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), + }, + [STATE(305)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_QMARK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_BSLASH] = ACTIONS(1694), + [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), + [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), + }, + [STATE(306)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym_block_continuation] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(307)] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BQUOTE] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [sym__word] = ACTIONS(1468), + [sym__soft_line_ending] = ACTIONS(1468), + [sym_block_continuation] = ACTIONS(1698), + [sym__block_quote_start] = ACTIONS(1468), + [sym__indented_chunk_start] = ACTIONS(1468), + [sym_atx_h1_marker] = ACTIONS(1468), + [sym_atx_h2_marker] = ACTIONS(1468), + [sym_atx_h3_marker] = ACTIONS(1468), + [sym_atx_h4_marker] = ACTIONS(1468), + [sym_atx_h5_marker] = ACTIONS(1468), + [sym_atx_h6_marker] = ACTIONS(1468), + [sym__thematic_break] = ACTIONS(1468), + [sym__list_marker_minus] = ACTIONS(1468), + [sym__list_marker_plus] = ACTIONS(1468), + [sym__list_marker_star] = ACTIONS(1468), + [sym__list_marker_parenthesis] = ACTIONS(1468), + [sym__list_marker_dot] = ACTIONS(1468), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1468), + [sym__list_marker_example] = ACTIONS(1468), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1468), + [sym__fenced_code_block_start_backtick] = ACTIONS(1468), + [sym__fenced_code_block_start_tilde] = ACTIONS(1468), + [sym__blank_line_start] = ACTIONS(1468), + [sym_minus_metadata] = ACTIONS(1468), + [sym__pipe_table_start] = ACTIONS(1468), + [sym__fenced_div_start] = ACTIONS(1468), + [sym_ref_id_specifier] = ACTIONS(1468), + [sym__display_math_state_track_marker] = ACTIONS(1468), + [sym__inline_math_state_track_marker] = ACTIONS(1468), + }, + [STATE(308)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1508), + [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), + [sym__word] = ACTIONS(1508), + [sym__soft_line_ending] = ACTIONS(1508), + [sym__block_close] = ACTIONS(1508), + [sym_block_continuation] = ACTIONS(1700), + [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), + }, + [STATE(309)] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym_block_continuation] = ACTIONS(1702), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(310)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_BSLASH] = ACTIONS(1704), + [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), + [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), + }, + [STATE(311)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_QMARK] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_BSLASH] = ACTIONS(1706), + [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), + [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), + }, + [STATE(312)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym_block_continuation] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(313)] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym_block_continuation] = ACTIONS(1710), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(314)] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym_block_continuation] = ACTIONS(1712), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(315)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym__block_close] = ACTIONS(1488), + [sym_block_continuation] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(316)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_BSLASH] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym__] = ACTIONS(1448), + [anon_sym_BQUOTE] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [sym__word] = ACTIONS(1448), + [sym__soft_line_ending] = ACTIONS(1448), + [sym__block_close] = ACTIONS(1448), + [sym_block_continuation] = ACTIONS(1716), + [sym__block_quote_start] = ACTIONS(1448), + [sym__indented_chunk_start] = ACTIONS(1448), + [sym_atx_h1_marker] = ACTIONS(1448), + [sym_atx_h2_marker] = ACTIONS(1448), + [sym_atx_h3_marker] = ACTIONS(1448), + [sym_atx_h4_marker] = ACTIONS(1448), + [sym_atx_h5_marker] = ACTIONS(1448), + [sym_atx_h6_marker] = ACTIONS(1448), + [sym__thematic_break] = ACTIONS(1448), + [sym__list_marker_minus] = ACTIONS(1448), + [sym__list_marker_plus] = ACTIONS(1448), + [sym__list_marker_star] = ACTIONS(1448), + [sym__list_marker_parenthesis] = ACTIONS(1448), + [sym__list_marker_dot] = ACTIONS(1448), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1448), + [sym__list_marker_example] = ACTIONS(1448), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1448), + [sym__fenced_code_block_start_backtick] = ACTIONS(1448), + [sym__fenced_code_block_start_tilde] = ACTIONS(1448), + [sym__blank_line_start] = ACTIONS(1448), + [sym_minus_metadata] = ACTIONS(1448), + [sym__pipe_table_start] = ACTIONS(1448), + [sym__fenced_div_start] = ACTIONS(1448), + [sym_ref_id_specifier] = ACTIONS(1448), + [sym__display_math_state_track_marker] = ACTIONS(1448), + [sym__inline_math_state_track_marker] = ACTIONS(1448), + }, + [STATE(317)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [sym__word] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_close] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1718), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym_minus_metadata] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + [sym__fenced_div_start] = ACTIONS(1718), + [sym__fenced_div_end] = ACTIONS(1718), + [sym_ref_id_specifier] = ACTIONS(1718), + [sym__display_math_state_track_marker] = ACTIONS(1718), + [sym__inline_math_state_track_marker] = ACTIONS(1718), + }, + [STATE(318)] = { + [ts_builtin_sym_end] = ACTIONS(1532), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_BSLASH] = ACTIONS(1532), + [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), + [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), + }, + [STATE(319)] = { + [ts_builtin_sym_end] = ACTIONS(1572), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [sym__word] = ACTIONS(1572), + [sym__soft_line_ending] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1572), + [sym__indented_chunk_start] = ACTIONS(1572), + [sym_atx_h1_marker] = ACTIONS(1572), + [sym_atx_h2_marker] = ACTIONS(1572), + [sym_atx_h3_marker] = ACTIONS(1572), + [sym_atx_h4_marker] = ACTIONS(1572), + [sym_atx_h5_marker] = ACTIONS(1572), + [sym_atx_h6_marker] = ACTIONS(1572), + [sym__thematic_break] = ACTIONS(1572), + [sym__list_marker_minus] = ACTIONS(1572), + [sym__list_marker_plus] = ACTIONS(1572), + [sym__list_marker_star] = ACTIONS(1572), + [sym__list_marker_parenthesis] = ACTIONS(1572), + [sym__list_marker_dot] = ACTIONS(1572), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_example] = ACTIONS(1572), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1572), + [sym__fenced_code_block_start_backtick] = ACTIONS(1572), + [sym__fenced_code_block_start_tilde] = ACTIONS(1572), + [sym__blank_line_start] = ACTIONS(1572), + [sym_minus_metadata] = ACTIONS(1572), + [sym__pipe_table_start] = ACTIONS(1572), + [sym__fenced_div_start] = ACTIONS(1572), + [sym_ref_id_specifier] = ACTIONS(1572), + [sym__display_math_state_track_marker] = ACTIONS(1572), + [sym__inline_math_state_track_marker] = ACTIONS(1572), + }, + [STATE(320)] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym__] = ACTIONS(1516), + [anon_sym_BQUOTE] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [sym__word] = ACTIONS(1516), + [sym__soft_line_ending] = ACTIONS(1516), + [sym__block_quote_start] = ACTIONS(1516), + [sym__indented_chunk_start] = ACTIONS(1516), + [sym_atx_h1_marker] = ACTIONS(1516), + [sym_atx_h2_marker] = ACTIONS(1516), + [sym_atx_h3_marker] = ACTIONS(1516), + [sym_atx_h4_marker] = ACTIONS(1516), + [sym_atx_h5_marker] = ACTIONS(1516), + [sym_atx_h6_marker] = ACTIONS(1516), + [sym__thematic_break] = ACTIONS(1516), + [sym__list_marker_minus] = ACTIONS(1516), + [sym__list_marker_plus] = ACTIONS(1516), + [sym__list_marker_star] = ACTIONS(1516), + [sym__list_marker_parenthesis] = ACTIONS(1516), + [sym__list_marker_dot] = ACTIONS(1516), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_example] = ACTIONS(1516), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1516), + [sym__fenced_code_block_start_backtick] = ACTIONS(1516), + [sym__fenced_code_block_start_tilde] = ACTIONS(1516), + [sym__blank_line_start] = ACTIONS(1516), + [sym_minus_metadata] = ACTIONS(1516), + [sym__pipe_table_start] = ACTIONS(1516), + [sym__fenced_div_start] = ACTIONS(1516), + [sym_ref_id_specifier] = ACTIONS(1516), + [sym__display_math_state_track_marker] = ACTIONS(1516), + [sym__inline_math_state_track_marker] = ACTIONS(1516), + }, + [STATE(321)] = { + [ts_builtin_sym_end] = ACTIONS(1534), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [sym__word] = ACTIONS(1534), + [sym__soft_line_ending] = ACTIONS(1534), + [sym__block_quote_start] = ACTIONS(1534), + [sym__indented_chunk_start] = ACTIONS(1534), + [sym_atx_h1_marker] = ACTIONS(1534), + [sym_atx_h2_marker] = ACTIONS(1534), + [sym_atx_h3_marker] = ACTIONS(1534), + [sym_atx_h4_marker] = ACTIONS(1534), + [sym_atx_h5_marker] = ACTIONS(1534), + [sym_atx_h6_marker] = ACTIONS(1534), + [sym__thematic_break] = ACTIONS(1534), + [sym__list_marker_minus] = ACTIONS(1534), + [sym__list_marker_plus] = ACTIONS(1534), + [sym__list_marker_star] = ACTIONS(1534), + [sym__list_marker_parenthesis] = ACTIONS(1534), + [sym__list_marker_dot] = ACTIONS(1534), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_example] = ACTIONS(1534), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1534), + [sym__fenced_code_block_start_backtick] = ACTIONS(1534), + [sym__fenced_code_block_start_tilde] = ACTIONS(1534), + [sym__blank_line_start] = ACTIONS(1534), + [sym_minus_metadata] = ACTIONS(1534), + [sym__pipe_table_start] = ACTIONS(1534), + [sym__fenced_div_start] = ACTIONS(1534), + [sym_ref_id_specifier] = ACTIONS(1534), + [sym__display_math_state_track_marker] = ACTIONS(1534), + [sym__inline_math_state_track_marker] = ACTIONS(1534), + }, + [STATE(322)] = { + [ts_builtin_sym_end] = ACTIONS(1578), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1578), + [anon_sym_SLASH] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_GT] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym__] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1578), + [sym__word] = ACTIONS(1578), + [sym__soft_line_ending] = ACTIONS(1578), + [sym__block_quote_start] = ACTIONS(1578), + [sym__indented_chunk_start] = ACTIONS(1578), + [sym_atx_h1_marker] = ACTIONS(1578), + [sym_atx_h2_marker] = ACTIONS(1578), + [sym_atx_h3_marker] = ACTIONS(1578), + [sym_atx_h4_marker] = ACTIONS(1578), + [sym_atx_h5_marker] = ACTIONS(1578), + [sym_atx_h6_marker] = ACTIONS(1578), + [sym__thematic_break] = ACTIONS(1578), + [sym__list_marker_minus] = ACTIONS(1578), + [sym__list_marker_plus] = ACTIONS(1578), + [sym__list_marker_star] = ACTIONS(1578), + [sym__list_marker_parenthesis] = ACTIONS(1578), + [sym__list_marker_dot] = ACTIONS(1578), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_example] = ACTIONS(1578), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1578), + [sym__fenced_code_block_start_backtick] = ACTIONS(1578), + [sym__fenced_code_block_start_tilde] = ACTIONS(1578), + [sym__blank_line_start] = ACTIONS(1578), + [sym_minus_metadata] = ACTIONS(1578), + [sym__pipe_table_start] = ACTIONS(1578), + [sym__fenced_div_start] = ACTIONS(1578), + [sym_ref_id_specifier] = ACTIONS(1578), + [sym__display_math_state_track_marker] = ACTIONS(1578), + [sym__inline_math_state_track_marker] = ACTIONS(1578), + }, + [STATE(323)] = { + [ts_builtin_sym_end] = ACTIONS(1580), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym__] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_quote_start] = ACTIONS(1580), + [sym__indented_chunk_start] = ACTIONS(1580), + [sym_atx_h1_marker] = ACTIONS(1580), + [sym_atx_h2_marker] = ACTIONS(1580), + [sym_atx_h3_marker] = ACTIONS(1580), + [sym_atx_h4_marker] = ACTIONS(1580), + [sym_atx_h5_marker] = ACTIONS(1580), + [sym_atx_h6_marker] = ACTIONS(1580), + [sym__thematic_break] = ACTIONS(1580), + [sym__list_marker_minus] = ACTIONS(1580), + [sym__list_marker_plus] = ACTIONS(1580), + [sym__list_marker_star] = ACTIONS(1580), + [sym__list_marker_parenthesis] = ACTIONS(1580), + [sym__list_marker_dot] = ACTIONS(1580), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_example] = ACTIONS(1580), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1580), + [sym__fenced_code_block_start_backtick] = ACTIONS(1580), + [sym__fenced_code_block_start_tilde] = ACTIONS(1580), + [sym__blank_line_start] = ACTIONS(1580), + [sym_minus_metadata] = ACTIONS(1580), + [sym__pipe_table_start] = ACTIONS(1580), + [sym__fenced_div_start] = ACTIONS(1580), + [sym_ref_id_specifier] = ACTIONS(1580), + [sym__display_math_state_track_marker] = ACTIONS(1580), + [sym__inline_math_state_track_marker] = ACTIONS(1580), + }, + [STATE(324)] = { + [ts_builtin_sym_end] = ACTIONS(1582), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [sym__word] = ACTIONS(1582), + [sym__soft_line_ending] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_example] = ACTIONS(1582), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym_minus_metadata] = ACTIONS(1582), + [sym__pipe_table_start] = ACTIONS(1582), + [sym__fenced_div_start] = ACTIONS(1582), + [sym_ref_id_specifier] = ACTIONS(1582), + [sym__display_math_state_track_marker] = ACTIONS(1582), + [sym__inline_math_state_track_marker] = ACTIONS(1582), + }, + [STATE(325)] = { + [ts_builtin_sym_end] = ACTIONS(1584), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_CARET] = ACTIONS(1584), + [anon_sym__] = ACTIONS(1584), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1584), + [sym__word] = ACTIONS(1584), + [sym__soft_line_ending] = ACTIONS(1584), + [sym__block_quote_start] = ACTIONS(1584), + [sym__indented_chunk_start] = ACTIONS(1584), + [sym_atx_h1_marker] = ACTIONS(1584), + [sym_atx_h2_marker] = ACTIONS(1584), + [sym_atx_h3_marker] = ACTIONS(1584), + [sym_atx_h4_marker] = ACTIONS(1584), + [sym_atx_h5_marker] = ACTIONS(1584), + [sym_atx_h6_marker] = ACTIONS(1584), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1584), + [sym__list_marker_plus] = ACTIONS(1584), + [sym__list_marker_star] = ACTIONS(1584), + [sym__list_marker_parenthesis] = ACTIONS(1584), + [sym__list_marker_dot] = ACTIONS(1584), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_example] = ACTIONS(1584), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1584), + [sym__fenced_code_block_start_backtick] = ACTIONS(1584), + [sym__fenced_code_block_start_tilde] = ACTIONS(1584), + [sym__blank_line_start] = ACTIONS(1584), + [sym_minus_metadata] = ACTIONS(1584), + [sym__pipe_table_start] = ACTIONS(1584), + [sym__fenced_div_start] = ACTIONS(1584), + [sym_ref_id_specifier] = ACTIONS(1584), + [sym__display_math_state_track_marker] = ACTIONS(1584), + [sym__inline_math_state_track_marker] = ACTIONS(1584), + }, + [STATE(326)] = { + [ts_builtin_sym_end] = ACTIONS(1586), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_GT] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym__] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_quote_start] = ACTIONS(1586), + [sym__indented_chunk_start] = ACTIONS(1586), + [sym_atx_h1_marker] = ACTIONS(1586), + [sym_atx_h2_marker] = ACTIONS(1586), + [sym_atx_h3_marker] = ACTIONS(1586), + [sym_atx_h4_marker] = ACTIONS(1586), + [sym_atx_h5_marker] = ACTIONS(1586), + [sym_atx_h6_marker] = ACTIONS(1586), + [sym__thematic_break] = ACTIONS(1586), + [sym__list_marker_minus] = ACTIONS(1586), + [sym__list_marker_plus] = ACTIONS(1586), + [sym__list_marker_star] = ACTIONS(1586), + [sym__list_marker_parenthesis] = ACTIONS(1586), + [sym__list_marker_dot] = ACTIONS(1586), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_example] = ACTIONS(1586), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1586), + [sym__fenced_code_block_start_backtick] = ACTIONS(1586), + [sym__fenced_code_block_start_tilde] = ACTIONS(1586), + [sym__blank_line_start] = ACTIONS(1586), + [sym_minus_metadata] = ACTIONS(1586), + [sym__pipe_table_start] = ACTIONS(1586), + [sym__fenced_div_start] = ACTIONS(1586), + [sym_ref_id_specifier] = ACTIONS(1586), + [sym__display_math_state_track_marker] = ACTIONS(1586), + [sym__inline_math_state_track_marker] = ACTIONS(1586), + }, + [STATE(327)] = { + [ts_builtin_sym_end] = ACTIONS(1588), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [sym__word] = ACTIONS(1588), + [sym__soft_line_ending] = ACTIONS(1588), + [sym__block_quote_start] = ACTIONS(1588), + [sym__indented_chunk_start] = ACTIONS(1588), + [sym_atx_h1_marker] = ACTIONS(1588), + [sym_atx_h2_marker] = ACTIONS(1588), + [sym_atx_h3_marker] = ACTIONS(1588), + [sym_atx_h4_marker] = ACTIONS(1588), + [sym_atx_h5_marker] = ACTIONS(1588), + [sym_atx_h6_marker] = ACTIONS(1588), + [sym__thematic_break] = ACTIONS(1588), + [sym__list_marker_minus] = ACTIONS(1588), + [sym__list_marker_plus] = ACTIONS(1588), + [sym__list_marker_star] = ACTIONS(1588), + [sym__list_marker_parenthesis] = ACTIONS(1588), + [sym__list_marker_dot] = ACTIONS(1588), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_example] = ACTIONS(1588), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1588), + [sym__fenced_code_block_start_backtick] = ACTIONS(1588), + [sym__fenced_code_block_start_tilde] = ACTIONS(1588), + [sym__blank_line_start] = ACTIONS(1588), + [sym_minus_metadata] = ACTIONS(1588), + [sym__pipe_table_start] = ACTIONS(1588), + [sym__fenced_div_start] = ACTIONS(1588), + [sym_ref_id_specifier] = ACTIONS(1588), + [sym__display_math_state_track_marker] = ACTIONS(1588), + [sym__inline_math_state_track_marker] = ACTIONS(1588), + }, + [STATE(328)] = { + [ts_builtin_sym_end] = ACTIONS(1592), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_example] = ACTIONS(1592), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym_minus_metadata] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + [sym__fenced_div_start] = ACTIONS(1592), + [sym_ref_id_specifier] = ACTIONS(1592), + [sym__display_math_state_track_marker] = ACTIONS(1592), + [sym__inline_math_state_track_marker] = ACTIONS(1592), + }, + [STATE(329)] = { + [ts_builtin_sym_end] = ACTIONS(1594), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(1594), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_DOT] = ACTIONS(1594), + [anon_sym_SLASH] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1594), + [anon_sym_AT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_BSLASH] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym__] = ACTIONS(1594), + [anon_sym_BQUOTE] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_TILDE] = ACTIONS(1594), + [sym__word] = ACTIONS(1594), + [sym__soft_line_ending] = ACTIONS(1594), + [sym__block_quote_start] = ACTIONS(1594), + [sym__indented_chunk_start] = ACTIONS(1594), + [sym_atx_h1_marker] = ACTIONS(1594), + [sym_atx_h2_marker] = ACTIONS(1594), + [sym_atx_h3_marker] = ACTIONS(1594), + [sym_atx_h4_marker] = ACTIONS(1594), + [sym_atx_h5_marker] = ACTIONS(1594), + [sym_atx_h6_marker] = ACTIONS(1594), + [sym__thematic_break] = ACTIONS(1594), + [sym__list_marker_minus] = ACTIONS(1594), + [sym__list_marker_plus] = ACTIONS(1594), + [sym__list_marker_star] = ACTIONS(1594), + [sym__list_marker_parenthesis] = ACTIONS(1594), + [sym__list_marker_dot] = ACTIONS(1594), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_example] = ACTIONS(1594), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1594), + [sym__fenced_code_block_start_backtick] = ACTIONS(1594), + [sym__fenced_code_block_start_tilde] = ACTIONS(1594), + [sym__blank_line_start] = ACTIONS(1594), + [sym_minus_metadata] = ACTIONS(1594), + [sym__pipe_table_start] = ACTIONS(1594), + [sym__fenced_div_start] = ACTIONS(1594), + [sym_ref_id_specifier] = ACTIONS(1594), + [sym__display_math_state_track_marker] = ACTIONS(1594), + [sym__inline_math_state_track_marker] = ACTIONS(1594), + }, + [STATE(330)] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [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), + [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(1416), + [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(1416), + [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), + }, + [STATE(331)] = { + [ts_builtin_sym_end] = ACTIONS(1536), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [sym__word] = ACTIONS(1536), + [sym__soft_line_ending] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(1536), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_example] = ACTIONS(1536), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym_minus_metadata] = ACTIONS(1536), + [sym__pipe_table_start] = ACTIONS(1536), + [sym__fenced_div_start] = ACTIONS(1536), + [sym_ref_id_specifier] = ACTIONS(1536), + [sym__display_math_state_track_marker] = ACTIONS(1536), + [sym__inline_math_state_track_marker] = ACTIONS(1536), + }, + [STATE(332)] = { + [ts_builtin_sym_end] = ACTIONS(1598), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_quote_start] = ACTIONS(1598), + [sym__indented_chunk_start] = ACTIONS(1598), + [sym_atx_h1_marker] = ACTIONS(1598), + [sym_atx_h2_marker] = ACTIONS(1598), + [sym_atx_h3_marker] = ACTIONS(1598), + [sym_atx_h4_marker] = ACTIONS(1598), + [sym_atx_h5_marker] = ACTIONS(1598), + [sym_atx_h6_marker] = ACTIONS(1598), + [sym__thematic_break] = ACTIONS(1598), + [sym__list_marker_minus] = ACTIONS(1598), + [sym__list_marker_plus] = ACTIONS(1598), + [sym__list_marker_star] = ACTIONS(1598), + [sym__list_marker_parenthesis] = ACTIONS(1598), + [sym__list_marker_dot] = ACTIONS(1598), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_example] = ACTIONS(1598), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1598), + [sym__fenced_code_block_start_backtick] = ACTIONS(1598), + [sym__fenced_code_block_start_tilde] = ACTIONS(1598), + [sym__blank_line_start] = ACTIONS(1598), + [sym_minus_metadata] = ACTIONS(1598), + [sym__pipe_table_start] = ACTIONS(1598), + [sym__fenced_div_start] = ACTIONS(1598), + [sym_ref_id_specifier] = ACTIONS(1598), + [sym__display_math_state_track_marker] = ACTIONS(1598), + [sym__inline_math_state_track_marker] = ACTIONS(1598), + }, + [STATE(333)] = { + [ts_builtin_sym_end] = ACTIONS(1600), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [sym__word] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_example] = ACTIONS(1600), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym_minus_metadata] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + [sym__fenced_div_start] = ACTIONS(1600), + [sym_ref_id_specifier] = ACTIONS(1600), + [sym__display_math_state_track_marker] = ACTIONS(1600), + [sym__inline_math_state_track_marker] = ACTIONS(1600), + }, + [STATE(334)] = { + [ts_builtin_sym_end] = ACTIONS(1602), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_CARET] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1602), + [sym__word] = ACTIONS(1602), + [sym__soft_line_ending] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(1602), + [sym__indented_chunk_start] = ACTIONS(1602), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(1602), + [sym__thematic_break] = ACTIONS(1602), + [sym__list_marker_minus] = ACTIONS(1602), + [sym__list_marker_plus] = ACTIONS(1602), + [sym__list_marker_star] = ACTIONS(1602), + [sym__list_marker_parenthesis] = ACTIONS(1602), + [sym__list_marker_dot] = ACTIONS(1602), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_example] = ACTIONS(1602), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1602), + [sym__fenced_code_block_start_backtick] = ACTIONS(1602), + [sym__fenced_code_block_start_tilde] = ACTIONS(1602), + [sym__blank_line_start] = ACTIONS(1602), + [sym_minus_metadata] = ACTIONS(1602), + [sym__pipe_table_start] = ACTIONS(1602), + [sym__fenced_div_start] = ACTIONS(1602), + [sym_ref_id_specifier] = ACTIONS(1602), + [sym__display_math_state_track_marker] = ACTIONS(1602), + [sym__inline_math_state_track_marker] = ACTIONS(1602), + }, + [STATE(335)] = { + [ts_builtin_sym_end] = ACTIONS(1604), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_example] = ACTIONS(1604), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym_minus_metadata] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + [sym__fenced_div_start] = ACTIONS(1604), + [sym_ref_id_specifier] = ACTIONS(1604), + [sym__display_math_state_track_marker] = ACTIONS(1604), + [sym__inline_math_state_track_marker] = ACTIONS(1604), + }, + [STATE(336)] = { + [ts_builtin_sym_end] = ACTIONS(1606), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_PLUS] = ACTIONS(1606), + [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_SLASH] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1606), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_CARET] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_TILDE] = ACTIONS(1606), + [sym__word] = ACTIONS(1606), + [sym__soft_line_ending] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(1606), + [sym__indented_chunk_start] = ACTIONS(1606), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(1606), + [sym__thematic_break] = ACTIONS(1606), + [sym__list_marker_minus] = ACTIONS(1606), + [sym__list_marker_plus] = ACTIONS(1606), + [sym__list_marker_star] = ACTIONS(1606), + [sym__list_marker_parenthesis] = ACTIONS(1606), + [sym__list_marker_dot] = ACTIONS(1606), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_example] = ACTIONS(1606), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1606), + [sym__fenced_code_block_start_backtick] = ACTIONS(1606), + [sym__fenced_code_block_start_tilde] = ACTIONS(1606), + [sym__blank_line_start] = ACTIONS(1606), + [sym_minus_metadata] = ACTIONS(1606), + [sym__pipe_table_start] = ACTIONS(1606), + [sym__fenced_div_start] = ACTIONS(1606), + [sym_ref_id_specifier] = ACTIONS(1606), + [sym__display_math_state_track_marker] = ACTIONS(1606), + [sym__inline_math_state_track_marker] = ACTIONS(1606), + }, + [STATE(337)] = { + [ts_builtin_sym_end] = ACTIONS(1608), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [sym__word] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_example] = ACTIONS(1608), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym_minus_metadata] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + [sym__fenced_div_start] = ACTIONS(1608), + [sym_ref_id_specifier] = ACTIONS(1608), + [sym__display_math_state_track_marker] = ACTIONS(1608), + [sym__inline_math_state_track_marker] = ACTIONS(1608), + }, + [STATE(338)] = { + [ts_builtin_sym_end] = ACTIONS(1610), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [sym__word] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_example] = ACTIONS(1610), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym_minus_metadata] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + [sym__fenced_div_start] = ACTIONS(1610), + [sym_ref_id_specifier] = ACTIONS(1610), + [sym__display_math_state_track_marker] = ACTIONS(1610), + [sym__inline_math_state_track_marker] = ACTIONS(1610), + }, + [STATE(339)] = { + [ts_builtin_sym_end] = ACTIONS(1612), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_DOT] = ACTIONS(1612), + [anon_sym_SLASH] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1612), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_BSLASH] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_CARET] = ACTIONS(1612), + [anon_sym__] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1612), + [sym__word] = ACTIONS(1612), + [sym__soft_line_ending] = ACTIONS(1612), + [sym__block_quote_start] = ACTIONS(1612), + [sym__indented_chunk_start] = ACTIONS(1612), + [sym_atx_h1_marker] = ACTIONS(1612), + [sym_atx_h2_marker] = ACTIONS(1612), + [sym_atx_h3_marker] = ACTIONS(1612), + [sym_atx_h4_marker] = ACTIONS(1612), + [sym_atx_h5_marker] = ACTIONS(1612), + [sym_atx_h6_marker] = ACTIONS(1612), + [sym__thematic_break] = ACTIONS(1612), + [sym__list_marker_minus] = ACTIONS(1612), + [sym__list_marker_plus] = ACTIONS(1612), + [sym__list_marker_star] = ACTIONS(1612), + [sym__list_marker_parenthesis] = ACTIONS(1612), + [sym__list_marker_dot] = ACTIONS(1612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_example] = ACTIONS(1612), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1612), + [sym__fenced_code_block_start_backtick] = ACTIONS(1612), + [sym__fenced_code_block_start_tilde] = ACTIONS(1612), + [sym__blank_line_start] = ACTIONS(1612), + [sym_minus_metadata] = ACTIONS(1612), + [sym__pipe_table_start] = ACTIONS(1612), + [sym__fenced_div_start] = ACTIONS(1612), + [sym_ref_id_specifier] = ACTIONS(1612), + [sym__display_math_state_track_marker] = ACTIONS(1612), + [sym__inline_math_state_track_marker] = ACTIONS(1612), + }, + [STATE(340)] = { + [ts_builtin_sym_end] = ACTIONS(1614), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1614), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_BSLASH] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_CARET] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_TILDE] = ACTIONS(1614), + [sym__word] = ACTIONS(1614), + [sym__soft_line_ending] = ACTIONS(1614), + [sym__block_quote_start] = ACTIONS(1614), + [sym__indented_chunk_start] = ACTIONS(1614), + [sym_atx_h1_marker] = ACTIONS(1614), + [sym_atx_h2_marker] = ACTIONS(1614), + [sym_atx_h3_marker] = ACTIONS(1614), + [sym_atx_h4_marker] = ACTIONS(1614), + [sym_atx_h5_marker] = ACTIONS(1614), + [sym_atx_h6_marker] = ACTIONS(1614), + [sym__thematic_break] = ACTIONS(1614), + [sym__list_marker_minus] = ACTIONS(1614), + [sym__list_marker_plus] = ACTIONS(1614), + [sym__list_marker_star] = ACTIONS(1614), + [sym__list_marker_parenthesis] = ACTIONS(1614), + [sym__list_marker_dot] = ACTIONS(1614), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_example] = ACTIONS(1614), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1614), + [sym__fenced_code_block_start_backtick] = ACTIONS(1614), + [sym__fenced_code_block_start_tilde] = ACTIONS(1614), + [sym__blank_line_start] = ACTIONS(1614), + [sym_minus_metadata] = ACTIONS(1614), + [sym__pipe_table_start] = ACTIONS(1614), + [sym__fenced_div_start] = ACTIONS(1614), + [sym_ref_id_specifier] = ACTIONS(1614), + [sym__display_math_state_track_marker] = ACTIONS(1614), + [sym__inline_math_state_track_marker] = ACTIONS(1614), + }, + [STATE(341)] = { + [ts_builtin_sym_end] = ACTIONS(1616), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [sym__word] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_example] = ACTIONS(1616), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym_minus_metadata] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + [sym__fenced_div_start] = ACTIONS(1616), + [sym_ref_id_specifier] = ACTIONS(1616), + [sym__display_math_state_track_marker] = ACTIONS(1616), + [sym__inline_math_state_track_marker] = ACTIONS(1616), + }, + [STATE(342)] = { + [ts_builtin_sym_end] = ACTIONS(1618), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_EQ] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_PERCENT] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_DOT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_BSLASH] = ACTIONS(1618), + [anon_sym_RBRACK] = ACTIONS(1618), + [anon_sym_CARET] = ACTIONS(1618), + [anon_sym__] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_TILDE] = ACTIONS(1618), + [sym__word] = ACTIONS(1618), + [sym__soft_line_ending] = ACTIONS(1618), + [sym__block_quote_start] = ACTIONS(1618), + [sym__indented_chunk_start] = ACTIONS(1618), + [sym_atx_h1_marker] = ACTIONS(1618), + [sym_atx_h2_marker] = ACTIONS(1618), + [sym_atx_h3_marker] = ACTIONS(1618), + [sym_atx_h4_marker] = ACTIONS(1618), + [sym_atx_h5_marker] = ACTIONS(1618), + [sym_atx_h6_marker] = ACTIONS(1618), + [sym__thematic_break] = ACTIONS(1618), + [sym__list_marker_minus] = ACTIONS(1618), + [sym__list_marker_plus] = ACTIONS(1618), + [sym__list_marker_star] = ACTIONS(1618), + [sym__list_marker_parenthesis] = ACTIONS(1618), + [sym__list_marker_dot] = ACTIONS(1618), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_example] = ACTIONS(1618), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1618), + [sym__fenced_code_block_start_backtick] = ACTIONS(1618), + [sym__fenced_code_block_start_tilde] = ACTIONS(1618), + [sym__blank_line_start] = ACTIONS(1618), + [sym_minus_metadata] = ACTIONS(1618), + [sym__pipe_table_start] = ACTIONS(1618), + [sym__fenced_div_start] = ACTIONS(1618), + [sym_ref_id_specifier] = ACTIONS(1618), + [sym__display_math_state_track_marker] = ACTIONS(1618), + [sym__inline_math_state_track_marker] = ACTIONS(1618), + }, + [STATE(343)] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [sym__word] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1718), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym_minus_metadata] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + [sym__fenced_div_start] = ACTIONS(1718), + [sym_ref_id_specifier] = ACTIONS(1718), + [sym__display_math_state_track_marker] = ACTIONS(1718), + [sym__inline_math_state_track_marker] = ACTIONS(1718), + }, + [STATE(344)] = { + [ts_builtin_sym_end] = ACTIONS(1622), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_example] = ACTIONS(1622), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym_minus_metadata] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + [sym__fenced_div_start] = ACTIONS(1622), + [sym_ref_id_specifier] = ACTIONS(1622), + [sym__display_math_state_track_marker] = ACTIONS(1622), + [sym__inline_math_state_track_marker] = ACTIONS(1622), + }, + [STATE(345)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_BSLASH] = ACTIONS(1562), + [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), + [sym__word] = ACTIONS(1562), + [sym__soft_line_ending] = ACTIONS(1562), + [sym__block_close] = ACTIONS(1562), + [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), + }, + [STATE(346)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym__] = ACTIONS(1566), + [anon_sym_BQUOTE] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [sym__word] = ACTIONS(1566), + [sym__soft_line_ending] = ACTIONS(1566), + [sym__block_close] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1566), + [sym__indented_chunk_start] = ACTIONS(1566), + [sym_atx_h1_marker] = ACTIONS(1566), + [sym_atx_h2_marker] = ACTIONS(1566), + [sym_atx_h3_marker] = ACTIONS(1566), + [sym_atx_h4_marker] = ACTIONS(1566), + [sym_atx_h5_marker] = ACTIONS(1566), + [sym_atx_h6_marker] = ACTIONS(1566), + [sym__thematic_break] = ACTIONS(1566), + [sym__list_marker_minus] = ACTIONS(1566), + [sym__list_marker_plus] = ACTIONS(1566), + [sym__list_marker_star] = ACTIONS(1566), + [sym__list_marker_parenthesis] = ACTIONS(1566), + [sym__list_marker_dot] = ACTIONS(1566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_example] = ACTIONS(1566), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1566), + [sym__fenced_code_block_start_backtick] = ACTIONS(1566), + [sym__fenced_code_block_start_tilde] = ACTIONS(1566), + [sym__blank_line_start] = ACTIONS(1566), + [sym_minus_metadata] = ACTIONS(1566), + [sym__pipe_table_start] = ACTIONS(1566), + [sym__fenced_div_start] = ACTIONS(1566), + [sym_ref_id_specifier] = ACTIONS(1566), + [sym__display_math_state_track_marker] = ACTIONS(1566), + [sym__inline_math_state_track_marker] = ACTIONS(1566), + }, + [STATE(347)] = { + [ts_builtin_sym_end] = ACTIONS(1538), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_example] = ACTIONS(1538), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym_minus_metadata] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + [sym__fenced_div_start] = ACTIONS(1538), + [sym_ref_id_specifier] = ACTIONS(1538), + [sym__display_math_state_track_marker] = ACTIONS(1538), + [sym__inline_math_state_track_marker] = ACTIONS(1538), + }, + [STATE(348)] = { + [ts_builtin_sym_end] = ACTIONS(1540), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(349)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_close] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(350)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_close] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(351)] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [sym__word] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_example] = ACTIONS(1542), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym_minus_metadata] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + [sym__fenced_div_start] = ACTIONS(1542), + [sym_ref_id_specifier] = ACTIONS(1542), + [sym__display_math_state_track_marker] = ACTIONS(1542), + [sym__inline_math_state_track_marker] = ACTIONS(1542), + }, + [STATE(352)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_BSLASH] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym__] = ACTIONS(1646), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1646), + [sym__word] = ACTIONS(1646), + [sym__soft_line_ending] = ACTIONS(1646), + [sym__block_close] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1646), + [sym__indented_chunk_start] = ACTIONS(1646), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1646), + [sym__thematic_break] = ACTIONS(1646), + [sym__list_marker_minus] = ACTIONS(1646), + [sym__list_marker_plus] = ACTIONS(1646), + [sym__list_marker_star] = ACTIONS(1646), + [sym__list_marker_parenthesis] = ACTIONS(1646), + [sym__list_marker_dot] = ACTIONS(1646), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_example] = ACTIONS(1646), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1646), + [sym__fenced_code_block_start_backtick] = ACTIONS(1646), + [sym__fenced_code_block_start_tilde] = ACTIONS(1646), + [sym__blank_line_start] = ACTIONS(1646), + [sym_minus_metadata] = ACTIONS(1646), + [sym__pipe_table_start] = ACTIONS(1646), + [sym__fenced_div_start] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1646), + [sym__display_math_state_track_marker] = ACTIONS(1646), + [sym__inline_math_state_track_marker] = ACTIONS(1646), + }, + [STATE(353)] = { + [ts_builtin_sym_end] = ACTIONS(1624), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1624), + [anon_sym_SQUOTE] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_DQUOTE] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_RPAREN] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(1624), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_DOT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1624), + [anon_sym_AT] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_BSLASH] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1624), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym__] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_TILDE] = ACTIONS(1624), + [sym__word] = ACTIONS(1624), + [sym__soft_line_ending] = ACTIONS(1624), + [sym__block_quote_start] = ACTIONS(1624), + [sym__indented_chunk_start] = ACTIONS(1624), + [sym_atx_h1_marker] = ACTIONS(1624), + [sym_atx_h2_marker] = ACTIONS(1624), + [sym_atx_h3_marker] = ACTIONS(1624), + [sym_atx_h4_marker] = ACTIONS(1624), + [sym_atx_h5_marker] = ACTIONS(1624), + [sym_atx_h6_marker] = ACTIONS(1624), + [sym__thematic_break] = ACTIONS(1624), + [sym__list_marker_minus] = ACTIONS(1624), + [sym__list_marker_plus] = ACTIONS(1624), + [sym__list_marker_star] = ACTIONS(1624), + [sym__list_marker_parenthesis] = ACTIONS(1624), + [sym__list_marker_dot] = ACTIONS(1624), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_example] = ACTIONS(1624), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1624), + [sym__fenced_code_block_start_backtick] = ACTIONS(1624), + [sym__fenced_code_block_start_tilde] = ACTIONS(1624), + [sym__blank_line_start] = ACTIONS(1624), + [sym_minus_metadata] = ACTIONS(1624), + [sym__pipe_table_start] = ACTIONS(1624), + [sym__fenced_div_start] = ACTIONS(1624), + [sym_ref_id_specifier] = ACTIONS(1624), + [sym__display_math_state_track_marker] = ACTIONS(1624), + [sym__inline_math_state_track_marker] = ACTIONS(1624), + }, + [STATE(354)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [sym__word] = ACTIONS(1530), + [sym__soft_line_ending] = ACTIONS(1530), + [sym__block_close] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1530), + [sym__indented_chunk_start] = ACTIONS(1530), + [sym_atx_h1_marker] = ACTIONS(1530), + [sym_atx_h2_marker] = ACTIONS(1530), + [sym_atx_h3_marker] = ACTIONS(1530), + [sym_atx_h4_marker] = ACTIONS(1530), + [sym_atx_h5_marker] = ACTIONS(1530), + [sym_atx_h6_marker] = ACTIONS(1530), + [sym__thematic_break] = ACTIONS(1530), + [sym__list_marker_minus] = ACTIONS(1530), + [sym__list_marker_plus] = ACTIONS(1530), + [sym__list_marker_star] = ACTIONS(1530), + [sym__list_marker_parenthesis] = ACTIONS(1530), + [sym__list_marker_dot] = ACTIONS(1530), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_example] = ACTIONS(1530), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1530), + [sym__fenced_code_block_start_backtick] = ACTIONS(1530), + [sym__fenced_code_block_start_tilde] = ACTIONS(1530), + [sym__blank_line_start] = ACTIONS(1530), + [sym_minus_metadata] = ACTIONS(1530), + [sym__pipe_table_start] = ACTIONS(1530), + [sym__fenced_div_start] = ACTIONS(1530), + [sym_ref_id_specifier] = ACTIONS(1530), + [sym__display_math_state_track_marker] = ACTIONS(1530), + [sym__inline_math_state_track_marker] = ACTIONS(1530), + }, + [STATE(355)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_BSLASH] = ACTIONS(1532), + [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), + [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), + }, + [STATE(356)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_DQUOTE] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_DOLLAR] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_RPAREN] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1534), + [anon_sym_AT] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_BSLASH] = ACTIONS(1534), + [anon_sym_RBRACK] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_BQUOTE] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1534), + [sym__word] = ACTIONS(1534), + [sym__soft_line_ending] = ACTIONS(1534), + [sym__block_close] = ACTIONS(1534), + [sym__block_quote_start] = ACTIONS(1534), + [sym__indented_chunk_start] = ACTIONS(1534), + [sym_atx_h1_marker] = ACTIONS(1534), + [sym_atx_h2_marker] = ACTIONS(1534), + [sym_atx_h3_marker] = ACTIONS(1534), + [sym_atx_h4_marker] = ACTIONS(1534), + [sym_atx_h5_marker] = ACTIONS(1534), + [sym_atx_h6_marker] = ACTIONS(1534), + [sym__thematic_break] = ACTIONS(1534), + [sym__list_marker_minus] = ACTIONS(1534), + [sym__list_marker_plus] = ACTIONS(1534), + [sym__list_marker_star] = ACTIONS(1534), + [sym__list_marker_parenthesis] = ACTIONS(1534), + [sym__list_marker_dot] = ACTIONS(1534), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1534), + [sym__list_marker_example] = ACTIONS(1534), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1534), + [sym__fenced_code_block_start_backtick] = ACTIONS(1534), + [sym__fenced_code_block_start_tilde] = ACTIONS(1534), + [sym__blank_line_start] = ACTIONS(1534), + [sym_minus_metadata] = ACTIONS(1534), + [sym__pipe_table_start] = ACTIONS(1534), + [sym__fenced_div_start] = ACTIONS(1534), + [sym_ref_id_specifier] = ACTIONS(1534), + [sym__display_math_state_track_marker] = ACTIONS(1534), + [sym__inline_math_state_track_marker] = ACTIONS(1534), + }, + [STATE(357)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_PERCENT] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1536), + [anon_sym_SLASH] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1536), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_AT] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_BSLASH] = ACTIONS(1536), + [anon_sym_RBRACK] = ACTIONS(1536), + [anon_sym_CARET] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1536), + [anon_sym_BQUOTE] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [sym__word] = ACTIONS(1536), + [sym__soft_line_ending] = ACTIONS(1536), + [sym__block_close] = ACTIONS(1536), + [sym__block_quote_start] = ACTIONS(1536), + [sym__indented_chunk_start] = ACTIONS(1536), + [sym_atx_h1_marker] = ACTIONS(1536), + [sym_atx_h2_marker] = ACTIONS(1536), + [sym_atx_h3_marker] = ACTIONS(1536), + [sym_atx_h4_marker] = ACTIONS(1536), + [sym_atx_h5_marker] = ACTIONS(1536), + [sym_atx_h6_marker] = ACTIONS(1536), + [sym__thematic_break] = ACTIONS(1536), + [sym__list_marker_minus] = ACTIONS(1536), + [sym__list_marker_plus] = ACTIONS(1536), + [sym__list_marker_star] = ACTIONS(1536), + [sym__list_marker_parenthesis] = ACTIONS(1536), + [sym__list_marker_dot] = ACTIONS(1536), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1536), + [sym__list_marker_example] = ACTIONS(1536), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1536), + [sym__fenced_code_block_start_backtick] = ACTIONS(1536), + [sym__fenced_code_block_start_tilde] = ACTIONS(1536), + [sym__blank_line_start] = ACTIONS(1536), + [sym_minus_metadata] = ACTIONS(1536), + [sym__pipe_table_start] = ACTIONS(1536), + [sym__fenced_div_start] = ACTIONS(1536), + [sym_ref_id_specifier] = ACTIONS(1536), + [sym__display_math_state_track_marker] = ACTIONS(1536), + [sym__inline_math_state_track_marker] = ACTIONS(1536), + }, + [STATE(358)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1538), + [anon_sym_AT] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_BSLASH] = ACTIONS(1538), + [anon_sym_RBRACK] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym__] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_TILDE] = ACTIONS(1538), + [sym__word] = ACTIONS(1538), + [sym__soft_line_ending] = ACTIONS(1538), + [sym__block_close] = ACTIONS(1538), + [sym__block_quote_start] = ACTIONS(1538), + [sym__indented_chunk_start] = ACTIONS(1538), + [sym_atx_h1_marker] = ACTIONS(1538), + [sym_atx_h2_marker] = ACTIONS(1538), + [sym_atx_h3_marker] = ACTIONS(1538), + [sym_atx_h4_marker] = ACTIONS(1538), + [sym_atx_h5_marker] = ACTIONS(1538), + [sym_atx_h6_marker] = ACTIONS(1538), + [sym__thematic_break] = ACTIONS(1538), + [sym__list_marker_minus] = ACTIONS(1538), + [sym__list_marker_plus] = ACTIONS(1538), + [sym__list_marker_star] = ACTIONS(1538), + [sym__list_marker_parenthesis] = ACTIONS(1538), + [sym__list_marker_dot] = ACTIONS(1538), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1538), + [sym__list_marker_example] = ACTIONS(1538), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1538), + [sym__fenced_code_block_start_backtick] = ACTIONS(1538), + [sym__fenced_code_block_start_tilde] = ACTIONS(1538), + [sym__blank_line_start] = ACTIONS(1538), + [sym_minus_metadata] = ACTIONS(1538), + [sym__pipe_table_start] = ACTIONS(1538), + [sym__fenced_div_start] = ACTIONS(1538), + [sym_ref_id_specifier] = ACTIONS(1538), + [sym__display_math_state_track_marker] = ACTIONS(1538), + [sym__inline_math_state_track_marker] = ACTIONS(1538), + }, + [STATE(359)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_DQUOTE] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_DOLLAR] = ACTIONS(1540), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_AT] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_BSLASH] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1540), + [anon_sym_BQUOTE] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_TILDE] = ACTIONS(1540), + [sym__word] = ACTIONS(1540), + [sym__soft_line_ending] = ACTIONS(1540), + [sym__block_close] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1540), + [sym__indented_chunk_start] = ACTIONS(1540), + [sym_atx_h1_marker] = ACTIONS(1540), + [sym_atx_h2_marker] = ACTIONS(1540), + [sym_atx_h3_marker] = ACTIONS(1540), + [sym_atx_h4_marker] = ACTIONS(1540), + [sym_atx_h5_marker] = ACTIONS(1540), + [sym_atx_h6_marker] = ACTIONS(1540), + [sym__thematic_break] = ACTIONS(1540), + [sym__list_marker_minus] = ACTIONS(1540), + [sym__list_marker_plus] = ACTIONS(1540), + [sym__list_marker_star] = ACTIONS(1540), + [sym__list_marker_parenthesis] = ACTIONS(1540), + [sym__list_marker_dot] = ACTIONS(1540), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1540), + [sym__list_marker_example] = ACTIONS(1540), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1540), + [sym__fenced_code_block_start_backtick] = ACTIONS(1540), + [sym__fenced_code_block_start_tilde] = ACTIONS(1540), + [sym__blank_line_start] = ACTIONS(1540), + [sym_minus_metadata] = ACTIONS(1540), + [sym__pipe_table_start] = ACTIONS(1540), + [sym__fenced_div_start] = ACTIONS(1540), + [sym_ref_id_specifier] = ACTIONS(1540), + [sym__display_math_state_track_marker] = ACTIONS(1540), + [sym__inline_math_state_track_marker] = ACTIONS(1540), + }, + [STATE(360)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_DOLLAR] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RPAREN] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_COMMA] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1542), + [anon_sym_AT] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_BSLASH] = ACTIONS(1542), + [anon_sym_RBRACK] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym__] = ACTIONS(1542), + [anon_sym_BQUOTE] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1542), + [sym__word] = ACTIONS(1542), + [sym__soft_line_ending] = ACTIONS(1542), + [sym__block_close] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1542), + [sym__indented_chunk_start] = ACTIONS(1542), + [sym_atx_h1_marker] = ACTIONS(1542), + [sym_atx_h2_marker] = ACTIONS(1542), + [sym_atx_h3_marker] = ACTIONS(1542), + [sym_atx_h4_marker] = ACTIONS(1542), + [sym_atx_h5_marker] = ACTIONS(1542), + [sym_atx_h6_marker] = ACTIONS(1542), + [sym__thematic_break] = ACTIONS(1542), + [sym__list_marker_minus] = ACTIONS(1542), + [sym__list_marker_plus] = ACTIONS(1542), + [sym__list_marker_star] = ACTIONS(1542), + [sym__list_marker_parenthesis] = ACTIONS(1542), + [sym__list_marker_dot] = ACTIONS(1542), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1542), + [sym__list_marker_example] = ACTIONS(1542), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1542), + [sym__fenced_code_block_start_backtick] = ACTIONS(1542), + [sym__fenced_code_block_start_tilde] = ACTIONS(1542), + [sym__blank_line_start] = ACTIONS(1542), + [sym_minus_metadata] = ACTIONS(1542), + [sym__pipe_table_start] = ACTIONS(1542), + [sym__fenced_div_start] = ACTIONS(1542), + [sym_ref_id_specifier] = ACTIONS(1542), + [sym__display_math_state_track_marker] = ACTIONS(1542), + [sym__inline_math_state_track_marker] = ACTIONS(1542), + }, + [STATE(361)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1624), + [anon_sym_SQUOTE] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_DQUOTE] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_RPAREN] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_PLUS] = ACTIONS(1624), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_DOT] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1624), + [anon_sym_AT] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_BSLASH] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1624), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym__] = ACTIONS(1624), + [anon_sym_BQUOTE] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_TILDE] = ACTIONS(1624), + [sym__word] = ACTIONS(1624), + [sym__soft_line_ending] = ACTIONS(1624), + [sym__block_close] = ACTIONS(1624), + [sym__block_quote_start] = ACTIONS(1624), + [sym__indented_chunk_start] = ACTIONS(1624), + [sym_atx_h1_marker] = ACTIONS(1624), + [sym_atx_h2_marker] = ACTIONS(1624), + [sym_atx_h3_marker] = ACTIONS(1624), + [sym_atx_h4_marker] = ACTIONS(1624), + [sym_atx_h5_marker] = ACTIONS(1624), + [sym_atx_h6_marker] = ACTIONS(1624), + [sym__thematic_break] = ACTIONS(1624), + [sym__list_marker_minus] = ACTIONS(1624), + [sym__list_marker_plus] = ACTIONS(1624), + [sym__list_marker_star] = ACTIONS(1624), + [sym__list_marker_parenthesis] = ACTIONS(1624), + [sym__list_marker_dot] = ACTIONS(1624), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1624), + [sym__list_marker_example] = ACTIONS(1624), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1624), + [sym__fenced_code_block_start_backtick] = ACTIONS(1624), + [sym__fenced_code_block_start_tilde] = ACTIONS(1624), + [sym__blank_line_start] = ACTIONS(1624), + [sym_minus_metadata] = ACTIONS(1624), + [sym__pipe_table_start] = ACTIONS(1624), + [sym__fenced_div_start] = ACTIONS(1624), + [sym_ref_id_specifier] = ACTIONS(1624), + [sym__display_math_state_track_marker] = ACTIONS(1624), + [sym__inline_math_state_track_marker] = ACTIONS(1624), + }, + [STATE(362)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [sym__word] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_close] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_example] = ACTIONS(1560), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym_minus_metadata] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + [sym__fenced_div_start] = ACTIONS(1560), + [sym_ref_id_specifier] = ACTIONS(1560), + [sym__display_math_state_track_marker] = ACTIONS(1560), + [sym__inline_math_state_track_marker] = ACTIONS(1560), + }, + [STATE(363)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [sym__word] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_close] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_example] = ACTIONS(1564), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym_minus_metadata] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + [sym__fenced_div_start] = ACTIONS(1564), + [sym_ref_id_specifier] = ACTIONS(1564), + [sym__display_math_state_track_marker] = ACTIONS(1564), + [sym__inline_math_state_track_marker] = ACTIONS(1564), + }, + [STATE(364)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_BSLASH] = ACTIONS(1568), + [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), + [sym__word] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), + [sym__block_close] = ACTIONS(1568), + [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), + }, + [STATE(365)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_SLASH] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1576), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1576), + [sym__word] = ACTIONS(1576), + [sym__soft_line_ending] = ACTIONS(1576), + [sym__block_close] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1576), + [sym__indented_chunk_start] = ACTIONS(1576), + [sym_atx_h1_marker] = ACTIONS(1576), + [sym_atx_h2_marker] = ACTIONS(1576), + [sym_atx_h3_marker] = ACTIONS(1576), + [sym_atx_h4_marker] = ACTIONS(1576), + [sym_atx_h5_marker] = ACTIONS(1576), + [sym_atx_h6_marker] = ACTIONS(1576), + [sym__thematic_break] = ACTIONS(1576), + [sym__list_marker_minus] = ACTIONS(1576), + [sym__list_marker_plus] = ACTIONS(1576), + [sym__list_marker_star] = ACTIONS(1576), + [sym__list_marker_parenthesis] = ACTIONS(1576), + [sym__list_marker_dot] = ACTIONS(1576), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_example] = ACTIONS(1576), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1576), + [sym__fenced_code_block_start_backtick] = ACTIONS(1576), + [sym__fenced_code_block_start_tilde] = ACTIONS(1576), + [sym__blank_line_start] = ACTIONS(1576), + [sym_minus_metadata] = ACTIONS(1576), + [sym__pipe_table_start] = ACTIONS(1576), + [sym__fenced_div_start] = ACTIONS(1576), + [sym_ref_id_specifier] = ACTIONS(1576), + [sym__display_math_state_track_marker] = ACTIONS(1576), + [sym__inline_math_state_track_marker] = ACTIONS(1576), + }, + [STATE(366)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [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), + [sym__word] = ACTIONS(1626), + [sym__soft_line_ending] = ACTIONS(1626), + [sym__block_close] = ACTIONS(1626), + [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), + }, + [STATE(367)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_close] = ACTIONS(1504), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(368)] = { + [ts_builtin_sym_end] = ACTIONS(1560), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_EQ] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_COMMA] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_DOT] = ACTIONS(1560), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_QMARK] = ACTIONS(1560), + [anon_sym_AT] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_BSLASH] = ACTIONS(1560), + [anon_sym_RBRACK] = ACTIONS(1560), + [anon_sym_CARET] = ACTIONS(1560), + [anon_sym__] = ACTIONS(1560), + [anon_sym_BQUOTE] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_TILDE] = ACTIONS(1560), + [sym__word] = ACTIONS(1560), + [sym__soft_line_ending] = ACTIONS(1560), + [sym__block_quote_start] = ACTIONS(1560), + [sym__indented_chunk_start] = ACTIONS(1560), + [sym_atx_h1_marker] = ACTIONS(1560), + [sym_atx_h2_marker] = ACTIONS(1560), + [sym_atx_h3_marker] = ACTIONS(1560), + [sym_atx_h4_marker] = ACTIONS(1560), + [sym_atx_h5_marker] = ACTIONS(1560), + [sym_atx_h6_marker] = ACTIONS(1560), + [sym__thematic_break] = ACTIONS(1560), + [sym__list_marker_minus] = ACTIONS(1560), + [sym__list_marker_plus] = ACTIONS(1560), + [sym__list_marker_star] = ACTIONS(1560), + [sym__list_marker_parenthesis] = ACTIONS(1560), + [sym__list_marker_dot] = ACTIONS(1560), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1560), + [sym__list_marker_example] = ACTIONS(1560), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1560), + [sym__fenced_code_block_start_backtick] = ACTIONS(1560), + [sym__fenced_code_block_start_tilde] = ACTIONS(1560), + [sym__blank_line_start] = ACTIONS(1560), + [sym_minus_metadata] = ACTIONS(1560), + [sym__pipe_table_start] = ACTIONS(1560), + [sym__fenced_div_start] = ACTIONS(1560), + [sym_ref_id_specifier] = ACTIONS(1560), + [sym__display_math_state_track_marker] = ACTIONS(1560), + [sym__inline_math_state_track_marker] = ACTIONS(1560), + }, + [STATE(369)] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(1424), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_example] = ACTIONS(1424), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1424), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1424), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(370)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1508), + [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), + [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), + }, + [STATE(371)] = { + [ts_builtin_sym_end] = ACTIONS(1564), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DQUOTE] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_DOLLAR] = ACTIONS(1564), + [anon_sym_PERCENT] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_RPAREN] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_DOT] = ACTIONS(1564), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_BSLASH] = ACTIONS(1564), + [anon_sym_RBRACK] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1564), + [anon_sym__] = ACTIONS(1564), + [anon_sym_BQUOTE] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1564), + [sym__word] = ACTIONS(1564), + [sym__soft_line_ending] = ACTIONS(1564), + [sym__block_quote_start] = ACTIONS(1564), + [sym__indented_chunk_start] = ACTIONS(1564), + [sym_atx_h1_marker] = ACTIONS(1564), + [sym_atx_h2_marker] = ACTIONS(1564), + [sym_atx_h3_marker] = ACTIONS(1564), + [sym_atx_h4_marker] = ACTIONS(1564), + [sym_atx_h5_marker] = ACTIONS(1564), + [sym_atx_h6_marker] = ACTIONS(1564), + [sym__thematic_break] = ACTIONS(1564), + [sym__list_marker_minus] = ACTIONS(1564), + [sym__list_marker_plus] = ACTIONS(1564), + [sym__list_marker_star] = ACTIONS(1564), + [sym__list_marker_parenthesis] = ACTIONS(1564), + [sym__list_marker_dot] = ACTIONS(1564), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1564), + [sym__list_marker_example] = ACTIONS(1564), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1564), + [sym__fenced_code_block_start_backtick] = ACTIONS(1564), + [sym__fenced_code_block_start_tilde] = ACTIONS(1564), + [sym__blank_line_start] = ACTIONS(1564), + [sym_minus_metadata] = ACTIONS(1564), + [sym__pipe_table_start] = ACTIONS(1564), + [sym__fenced_div_start] = ACTIONS(1564), + [sym_ref_id_specifier] = ACTIONS(1564), + [sym__display_math_state_track_marker] = ACTIONS(1564), + [sym__inline_math_state_track_marker] = ACTIONS(1564), + }, + [STATE(372)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1660), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_QMARK] = ACTIONS(1660), + [anon_sym_AT] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [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), + [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), + }, + [STATE(373)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym__] = ACTIONS(1662), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [sym__word] = ACTIONS(1662), + [sym__soft_line_ending] = ACTIONS(1662), + [sym__block_close] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1662), + [sym__indented_chunk_start] = ACTIONS(1662), + [sym_atx_h1_marker] = ACTIONS(1662), + [sym_atx_h2_marker] = ACTIONS(1662), + [sym_atx_h3_marker] = ACTIONS(1662), + [sym_atx_h4_marker] = ACTIONS(1662), + [sym_atx_h5_marker] = ACTIONS(1662), + [sym_atx_h6_marker] = ACTIONS(1662), + [sym__thematic_break] = ACTIONS(1662), + [sym__list_marker_minus] = ACTIONS(1662), + [sym__list_marker_plus] = ACTIONS(1662), + [sym__list_marker_star] = ACTIONS(1662), + [sym__list_marker_parenthesis] = ACTIONS(1662), + [sym__list_marker_dot] = ACTIONS(1662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_example] = ACTIONS(1662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1662), + [sym__fenced_code_block_start_backtick] = ACTIONS(1662), + [sym__fenced_code_block_start_tilde] = ACTIONS(1662), + [sym__blank_line_start] = ACTIONS(1662), + [sym_minus_metadata] = ACTIONS(1662), + [sym__pipe_table_start] = ACTIONS(1662), + [sym__fenced_div_start] = ACTIONS(1662), + [sym_ref_id_specifier] = ACTIONS(1662), + [sym__display_math_state_track_marker] = ACTIONS(1662), + [sym__inline_math_state_track_marker] = ACTIONS(1662), + }, + [STATE(374)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [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), + [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), + }, + [STATE(375)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_SLASH] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_BSLASH] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_CARET] = ACTIONS(1666), + [anon_sym__] = ACTIONS(1666), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1666), + [sym__word] = ACTIONS(1666), + [sym__soft_line_ending] = ACTIONS(1666), + [sym__block_close] = ACTIONS(1666), + [sym__block_quote_start] = ACTIONS(1666), + [sym__indented_chunk_start] = ACTIONS(1666), + [sym_atx_h1_marker] = ACTIONS(1666), + [sym_atx_h2_marker] = ACTIONS(1666), + [sym_atx_h3_marker] = ACTIONS(1666), + [sym_atx_h4_marker] = ACTIONS(1666), + [sym_atx_h5_marker] = ACTIONS(1666), + [sym_atx_h6_marker] = ACTIONS(1666), + [sym__thematic_break] = ACTIONS(1666), + [sym__list_marker_minus] = ACTIONS(1666), + [sym__list_marker_plus] = ACTIONS(1666), + [sym__list_marker_star] = ACTIONS(1666), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1666), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_example] = ACTIONS(1666), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1666), + [sym__fenced_code_block_start_backtick] = ACTIONS(1666), + [sym__fenced_code_block_start_tilde] = ACTIONS(1666), + [sym__blank_line_start] = ACTIONS(1666), + [sym_minus_metadata] = ACTIONS(1666), + [sym__pipe_table_start] = ACTIONS(1666), + [sym__fenced_div_start] = ACTIONS(1666), + [sym_ref_id_specifier] = ACTIONS(1666), + [sym__display_math_state_track_marker] = ACTIONS(1666), + [sym__inline_math_state_track_marker] = ACTIONS(1666), + }, + [STATE(376)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1678), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_BSLASH] = ACTIONS(1678), + [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), + [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), + }, + [STATE(377)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_BSLASH] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym__] = ACTIONS(1682), + [anon_sym_BQUOTE] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [sym__word] = ACTIONS(1682), + [sym__soft_line_ending] = ACTIONS(1682), + [sym__block_close] = ACTIONS(1682), + [sym__block_quote_start] = ACTIONS(1682), + [sym__indented_chunk_start] = ACTIONS(1682), + [sym_atx_h1_marker] = ACTIONS(1682), + [sym_atx_h2_marker] = ACTIONS(1682), + [sym_atx_h3_marker] = ACTIONS(1682), + [sym_atx_h4_marker] = ACTIONS(1682), + [sym_atx_h5_marker] = ACTIONS(1682), + [sym_atx_h6_marker] = ACTIONS(1682), + [sym__thematic_break] = ACTIONS(1682), + [sym__list_marker_minus] = ACTIONS(1682), + [sym__list_marker_plus] = ACTIONS(1682), + [sym__list_marker_star] = ACTIONS(1682), + [sym__list_marker_parenthesis] = ACTIONS(1682), + [sym__list_marker_dot] = ACTIONS(1682), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_example] = ACTIONS(1682), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1682), + [sym__fenced_code_block_start_backtick] = ACTIONS(1682), + [sym__fenced_code_block_start_tilde] = ACTIONS(1682), + [sym__blank_line_start] = ACTIONS(1682), + [sym_minus_metadata] = ACTIONS(1682), + [sym__pipe_table_start] = ACTIONS(1682), + [sym__fenced_div_start] = ACTIONS(1682), + [sym_ref_id_specifier] = ACTIONS(1682), + [sym__display_math_state_track_marker] = ACTIONS(1682), + [sym__inline_math_state_track_marker] = ACTIONS(1682), + }, + [STATE(378)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_GT] = ACTIONS(1684), + [anon_sym_QMARK] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_BSLASH] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1684), + [anon_sym__] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [sym__word] = ACTIONS(1684), + [sym__soft_line_ending] = ACTIONS(1684), + [sym__block_close] = ACTIONS(1684), + [sym__block_quote_start] = ACTIONS(1684), + [sym__indented_chunk_start] = ACTIONS(1684), + [sym_atx_h1_marker] = ACTIONS(1684), + [sym_atx_h2_marker] = ACTIONS(1684), + [sym_atx_h3_marker] = ACTIONS(1684), + [sym_atx_h4_marker] = ACTIONS(1684), + [sym_atx_h5_marker] = ACTIONS(1684), + [sym_atx_h6_marker] = ACTIONS(1684), + [sym__thematic_break] = ACTIONS(1684), + [sym__list_marker_minus] = ACTIONS(1684), + [sym__list_marker_plus] = ACTIONS(1684), + [sym__list_marker_star] = ACTIONS(1684), + [sym__list_marker_parenthesis] = ACTIONS(1684), + [sym__list_marker_dot] = ACTIONS(1684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_example] = ACTIONS(1684), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1684), + [sym__fenced_code_block_start_backtick] = ACTIONS(1684), + [sym__fenced_code_block_start_tilde] = ACTIONS(1684), + [sym__blank_line_start] = ACTIONS(1684), + [sym_minus_metadata] = ACTIONS(1684), + [sym__pipe_table_start] = ACTIONS(1684), + [sym__fenced_div_start] = ACTIONS(1684), + [sym_ref_id_specifier] = ACTIONS(1684), + [sym__display_math_state_track_marker] = ACTIONS(1684), + [sym__inline_math_state_track_marker] = ACTIONS(1684), + }, + [STATE(379)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1686), + [anon_sym_QMARK] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [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), + [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), + }, + [STATE(380)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_QMARK] = ACTIONS(1688), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_BSLASH] = ACTIONS(1688), + [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), + [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), + }, + [STATE(381)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_QMARK] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [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), + [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), + }, + [STATE(382)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1692), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_BSLASH] = ACTIONS(1692), + [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), + [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), + }, + [STATE(383)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_QMARK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_BSLASH] = ACTIONS(1694), + [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), + [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), + }, + [STATE(384)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_BSLASH] = ACTIONS(1704), + [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), + [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), + }, + [STATE(385)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_QMARK] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_BSLASH] = ACTIONS(1706), + [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), + [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), + }, + [STATE(386)] = { + [ts_builtin_sym_end] = ACTIONS(1568), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1568), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_QMARK] = ACTIONS(1568), + [anon_sym_AT] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_BSLASH] = ACTIONS(1568), + [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), + [sym__word] = ACTIONS(1568), + [sym__soft_line_ending] = ACTIONS(1568), + [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), + }, + [STATE(387)] = { + [ts_builtin_sym_end] = ACTIONS(1576), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_EQ] = ACTIONS(1576), + [anon_sym_SQUOTE] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_DQUOTE] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1576), + [anon_sym_PERCENT] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_RPAREN] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_COMMA] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_DOT] = ACTIONS(1576), + [anon_sym_SLASH] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_GT] = ACTIONS(1576), + [anon_sym_QMARK] = ACTIONS(1576), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_BSLASH] = ACTIONS(1576), + [anon_sym_RBRACK] = ACTIONS(1576), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym__] = ACTIONS(1576), + [anon_sym_BQUOTE] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1576), + [sym__word] = ACTIONS(1576), + [sym__soft_line_ending] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1576), + [sym__indented_chunk_start] = ACTIONS(1576), + [sym_atx_h1_marker] = ACTIONS(1576), + [sym_atx_h2_marker] = ACTIONS(1576), + [sym_atx_h3_marker] = ACTIONS(1576), + [sym_atx_h4_marker] = ACTIONS(1576), + [sym_atx_h5_marker] = ACTIONS(1576), + [sym_atx_h6_marker] = ACTIONS(1576), + [sym__thematic_break] = ACTIONS(1576), + [sym__list_marker_minus] = ACTIONS(1576), + [sym__list_marker_plus] = ACTIONS(1576), + [sym__list_marker_star] = ACTIONS(1576), + [sym__list_marker_parenthesis] = ACTIONS(1576), + [sym__list_marker_dot] = ACTIONS(1576), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1576), + [sym__list_marker_example] = ACTIONS(1576), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1576), + [sym__fenced_code_block_start_backtick] = ACTIONS(1576), + [sym__fenced_code_block_start_tilde] = ACTIONS(1576), + [sym__blank_line_start] = ACTIONS(1576), + [sym_minus_metadata] = ACTIONS(1576), + [sym__pipe_table_start] = ACTIONS(1576), + [sym__fenced_div_start] = ACTIONS(1576), + [sym_ref_id_specifier] = ACTIONS(1576), + [sym__display_math_state_track_marker] = ACTIONS(1576), + [sym__inline_math_state_track_marker] = ACTIONS(1576), + }, + [STATE(388)] = { + [ts_builtin_sym_end] = ACTIONS(1626), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1626), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_BSLASH] = ACTIONS(1626), + [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), + [sym__word] = ACTIONS(1626), + [sym__soft_line_ending] = ACTIONS(1626), + [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), + }, + [STATE(389)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_close] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1526), + [sym__indented_chunk_start] = ACTIONS(1526), + [sym_atx_h1_marker] = ACTIONS(1526), + [sym_atx_h2_marker] = ACTIONS(1526), + [sym_atx_h3_marker] = ACTIONS(1526), + [sym_atx_h4_marker] = ACTIONS(1526), + [sym_atx_h5_marker] = ACTIONS(1526), + [sym_atx_h6_marker] = ACTIONS(1526), + [sym__thematic_break] = ACTIONS(1526), + [sym__list_marker_minus] = ACTIONS(1526), + [sym__list_marker_plus] = ACTIONS(1526), + [sym__list_marker_star] = ACTIONS(1526), + [sym__list_marker_parenthesis] = ACTIONS(1526), + [sym__list_marker_dot] = ACTIONS(1526), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_example] = ACTIONS(1526), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1526), + [sym__fenced_code_block_start_backtick] = ACTIONS(1526), + [sym__fenced_code_block_start_tilde] = ACTIONS(1526), + [sym__blank_line_start] = ACTIONS(1526), + [sym_minus_metadata] = ACTIONS(1526), + [sym__pipe_table_start] = ACTIONS(1526), + [sym__fenced_div_start] = ACTIONS(1526), + [sym_ref_id_specifier] = ACTIONS(1526), + [sym__display_math_state_track_marker] = ACTIONS(1526), + [sym__inline_math_state_track_marker] = ACTIONS(1526), + }, + [STATE(390)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1528), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym__] = ACTIONS(1528), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [sym__word] = ACTIONS(1528), + [sym__soft_line_ending] = ACTIONS(1528), + [sym__block_close] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1528), + [sym__indented_chunk_start] = ACTIONS(1528), + [sym_atx_h1_marker] = ACTIONS(1528), + [sym_atx_h2_marker] = ACTIONS(1528), + [sym_atx_h3_marker] = ACTIONS(1528), + [sym_atx_h4_marker] = ACTIONS(1528), + [sym_atx_h5_marker] = ACTIONS(1528), + [sym_atx_h6_marker] = ACTIONS(1528), + [sym__thematic_break] = ACTIONS(1528), + [sym__list_marker_minus] = ACTIONS(1528), + [sym__list_marker_plus] = ACTIONS(1528), + [sym__list_marker_star] = ACTIONS(1528), + [sym__list_marker_parenthesis] = ACTIONS(1528), + [sym__list_marker_dot] = ACTIONS(1528), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_example] = ACTIONS(1528), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1528), + [sym__fenced_code_block_start_backtick] = ACTIONS(1528), + [sym__fenced_code_block_start_tilde] = ACTIONS(1528), + [sym__blank_line_start] = ACTIONS(1528), + [sym_minus_metadata] = ACTIONS(1528), + [sym__pipe_table_start] = ACTIONS(1528), + [sym__fenced_div_start] = ACTIONS(1528), + [sym_ref_id_specifier] = ACTIONS(1528), + [sym__display_math_state_track_marker] = ACTIONS(1528), + [sym__inline_math_state_track_marker] = ACTIONS(1528), + }, + [STATE(391)] = { + [ts_builtin_sym_end] = ACTIONS(1640), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(392)] = { + [ts_builtin_sym_end] = ACTIONS(1640), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_EQ] = ACTIONS(1640), + [anon_sym_SQUOTE] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PERCENT] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1640), + [anon_sym_COMMA] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_DOT] = ACTIONS(1640), + [anon_sym_SLASH] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_GT] = ACTIONS(1640), + [anon_sym_QMARK] = ACTIONS(1640), + [anon_sym_AT] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_BSLASH] = ACTIONS(1640), + [anon_sym_RBRACK] = ACTIONS(1640), + [anon_sym_CARET] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1640), + [anon_sym_BQUOTE] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [sym__word] = ACTIONS(1640), + [sym__soft_line_ending] = ACTIONS(1640), + [sym__block_quote_start] = ACTIONS(1640), + [sym__indented_chunk_start] = ACTIONS(1640), + [sym_atx_h1_marker] = ACTIONS(1640), + [sym_atx_h2_marker] = ACTIONS(1640), + [sym_atx_h3_marker] = ACTIONS(1640), + [sym_atx_h4_marker] = ACTIONS(1640), + [sym_atx_h5_marker] = ACTIONS(1640), + [sym_atx_h6_marker] = ACTIONS(1640), + [sym__thematic_break] = ACTIONS(1640), + [sym__list_marker_minus] = ACTIONS(1640), + [sym__list_marker_plus] = ACTIONS(1640), + [sym__list_marker_star] = ACTIONS(1640), + [sym__list_marker_parenthesis] = ACTIONS(1640), + [sym__list_marker_dot] = ACTIONS(1640), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1640), + [sym__list_marker_example] = ACTIONS(1640), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1640), + [sym__fenced_code_block_start_backtick] = ACTIONS(1640), + [sym__fenced_code_block_start_tilde] = ACTIONS(1640), + [sym__blank_line_start] = ACTIONS(1640), + [sym_minus_metadata] = ACTIONS(1640), + [sym__pipe_table_start] = ACTIONS(1640), + [sym__fenced_div_start] = ACTIONS(1640), + [sym_ref_id_specifier] = ACTIONS(1640), + [sym__display_math_state_track_marker] = ACTIONS(1640), + [sym__inline_math_state_track_marker] = ACTIONS(1640), + }, + [STATE(393)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_close] = ACTIONS(1472), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(394)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym__] = ACTIONS(1544), + [anon_sym_BQUOTE] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_close] = ACTIONS(1544), + [sym__block_quote_start] = ACTIONS(1544), + [sym__indented_chunk_start] = ACTIONS(1544), + [sym_atx_h1_marker] = ACTIONS(1544), + [sym_atx_h2_marker] = ACTIONS(1544), + [sym_atx_h3_marker] = ACTIONS(1544), + [sym_atx_h4_marker] = ACTIONS(1544), + [sym_atx_h5_marker] = ACTIONS(1544), + [sym_atx_h6_marker] = ACTIONS(1544), + [sym__thematic_break] = ACTIONS(1544), + [sym__list_marker_minus] = ACTIONS(1544), + [sym__list_marker_plus] = ACTIONS(1544), + [sym__list_marker_star] = ACTIONS(1544), + [sym__list_marker_parenthesis] = ACTIONS(1544), + [sym__list_marker_dot] = ACTIONS(1544), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_example] = ACTIONS(1544), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1544), + [sym__fenced_code_block_start_backtick] = ACTIONS(1544), + [sym__fenced_code_block_start_tilde] = ACTIONS(1544), + [sym__blank_line_start] = ACTIONS(1544), + [sym_minus_metadata] = ACTIONS(1544), + [sym__pipe_table_start] = ACTIONS(1544), + [sym__fenced_div_start] = ACTIONS(1544), + [sym_ref_id_specifier] = ACTIONS(1544), + [sym__display_math_state_track_marker] = ACTIONS(1544), + [sym__inline_math_state_track_marker] = ACTIONS(1544), + }, + [STATE(395)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [sym__word] = ACTIONS(1546), + [sym__soft_line_ending] = ACTIONS(1546), + [sym__block_close] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_example] = ACTIONS(1546), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym_minus_metadata] = ACTIONS(1546), + [sym__pipe_table_start] = ACTIONS(1546), + [sym__fenced_div_start] = ACTIONS(1546), + [sym_ref_id_specifier] = ACTIONS(1546), + [sym__display_math_state_track_marker] = ACTIONS(1546), + [sym__inline_math_state_track_marker] = ACTIONS(1546), + }, + [STATE(396)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [sym__word] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_close] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_example] = ACTIONS(1548), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym_minus_metadata] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + [sym__fenced_div_start] = ACTIONS(1548), + [sym_ref_id_specifier] = ACTIONS(1548), + [sym__display_math_state_track_marker] = ACTIONS(1548), + [sym__inline_math_state_track_marker] = ACTIONS(1548), + }, + [STATE(397)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_PERCENT] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1550), + [anon_sym_SLASH] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_BQUOTE] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_close] = ACTIONS(1550), + [sym__block_quote_start] = ACTIONS(1550), + [sym__indented_chunk_start] = ACTIONS(1550), + [sym_atx_h1_marker] = ACTIONS(1550), + [sym_atx_h2_marker] = ACTIONS(1550), + [sym_atx_h3_marker] = ACTIONS(1550), + [sym_atx_h4_marker] = ACTIONS(1550), + [sym_atx_h5_marker] = ACTIONS(1550), + [sym_atx_h6_marker] = ACTIONS(1550), + [sym__thematic_break] = ACTIONS(1550), + [sym__list_marker_minus] = ACTIONS(1550), + [sym__list_marker_plus] = ACTIONS(1550), + [sym__list_marker_star] = ACTIONS(1550), + [sym__list_marker_parenthesis] = ACTIONS(1550), + [sym__list_marker_dot] = ACTIONS(1550), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_example] = ACTIONS(1550), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1550), + [sym__fenced_code_block_start_backtick] = ACTIONS(1550), + [sym__fenced_code_block_start_tilde] = ACTIONS(1550), + [sym__blank_line_start] = ACTIONS(1550), + [sym_minus_metadata] = ACTIONS(1550), + [sym__pipe_table_start] = ACTIONS(1550), + [sym__fenced_div_start] = ACTIONS(1550), + [sym_ref_id_specifier] = ACTIONS(1550), + [sym__display_math_state_track_marker] = ACTIONS(1550), + [sym__inline_math_state_track_marker] = ACTIONS(1550), + }, + [STATE(398)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [sym__word] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_close] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_example] = ACTIONS(1552), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym_minus_metadata] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + [sym__fenced_div_start] = ACTIONS(1552), + [sym_ref_id_specifier] = ACTIONS(1552), + [sym__display_math_state_track_marker] = ACTIONS(1552), + [sym__inline_math_state_track_marker] = ACTIONS(1552), + }, + [STATE(399)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_QMARK] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym__] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [sym__word] = ACTIONS(1554), + [sym__soft_line_ending] = ACTIONS(1554), + [sym__block_close] = ACTIONS(1554), + [sym__block_quote_start] = ACTIONS(1554), + [sym__indented_chunk_start] = ACTIONS(1554), + [sym_atx_h1_marker] = ACTIONS(1554), + [sym_atx_h2_marker] = ACTIONS(1554), + [sym_atx_h3_marker] = ACTIONS(1554), + [sym_atx_h4_marker] = ACTIONS(1554), + [sym_atx_h5_marker] = ACTIONS(1554), + [sym_atx_h6_marker] = ACTIONS(1554), + [sym__thematic_break] = ACTIONS(1554), + [sym__list_marker_minus] = ACTIONS(1554), + [sym__list_marker_plus] = ACTIONS(1554), + [sym__list_marker_star] = ACTIONS(1554), + [sym__list_marker_parenthesis] = ACTIONS(1554), + [sym__list_marker_dot] = ACTIONS(1554), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_example] = ACTIONS(1554), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1554), + [sym__fenced_code_block_start_backtick] = ACTIONS(1554), + [sym__fenced_code_block_start_tilde] = ACTIONS(1554), + [sym__blank_line_start] = ACTIONS(1554), + [sym_minus_metadata] = ACTIONS(1554), + [sym__pipe_table_start] = ACTIONS(1554), + [sym__fenced_div_start] = ACTIONS(1554), + [sym_ref_id_specifier] = ACTIONS(1554), + [sym__display_math_state_track_marker] = ACTIONS(1554), + [sym__inline_math_state_track_marker] = ACTIONS(1554), + }, + [STATE(400)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_close] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_example] = ACTIONS(1556), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym_minus_metadata] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + [sym__fenced_div_start] = ACTIONS(1556), + [sym_ref_id_specifier] = ACTIONS(1556), + [sym__display_math_state_track_marker] = ACTIONS(1556), + [sym__inline_math_state_track_marker] = ACTIONS(1556), + }, + [STATE(401)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_BSLASH] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym__] = ACTIONS(1558), + [anon_sym_BQUOTE] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [sym__word] = ACTIONS(1558), + [sym__soft_line_ending] = ACTIONS(1558), + [sym__block_close] = ACTIONS(1558), + [sym__block_quote_start] = ACTIONS(1558), + [sym__indented_chunk_start] = ACTIONS(1558), + [sym_atx_h1_marker] = ACTIONS(1558), + [sym_atx_h2_marker] = ACTIONS(1558), + [sym_atx_h3_marker] = ACTIONS(1558), + [sym_atx_h4_marker] = ACTIONS(1558), + [sym_atx_h5_marker] = ACTIONS(1558), + [sym_atx_h6_marker] = ACTIONS(1558), + [sym__thematic_break] = ACTIONS(1558), + [sym__list_marker_minus] = ACTIONS(1558), + [sym__list_marker_plus] = ACTIONS(1558), + [sym__list_marker_star] = ACTIONS(1558), + [sym__list_marker_parenthesis] = ACTIONS(1558), + [sym__list_marker_dot] = ACTIONS(1558), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_example] = ACTIONS(1558), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1558), + [sym__fenced_code_block_start_backtick] = ACTIONS(1558), + [sym__fenced_code_block_start_tilde] = ACTIONS(1558), + [sym__blank_line_start] = ACTIONS(1558), + [sym_minus_metadata] = ACTIONS(1558), + [sym__pipe_table_start] = ACTIONS(1558), + [sym__fenced_div_start] = ACTIONS(1558), + [sym_ref_id_specifier] = ACTIONS(1558), + [sym__display_math_state_track_marker] = ACTIONS(1558), + [sym__inline_math_state_track_marker] = ACTIONS(1558), + }, + [STATE(402)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_close] = ACTIONS(1476), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(403)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym__block_close] = ACTIONS(1480), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(404)] = { + [ts_builtin_sym_end] = ACTIONS(1646), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_DQUOTE] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1646), + [anon_sym_PERCENT] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(1646), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_BSLASH] = ACTIONS(1646), + [anon_sym_RBRACK] = ACTIONS(1646), + [anon_sym_CARET] = ACTIONS(1646), + [anon_sym__] = ACTIONS(1646), + [anon_sym_BQUOTE] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1646), + [sym__word] = ACTIONS(1646), + [sym__soft_line_ending] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1646), + [sym__indented_chunk_start] = ACTIONS(1646), + [sym_atx_h1_marker] = ACTIONS(1646), + [sym_atx_h2_marker] = ACTIONS(1646), + [sym_atx_h3_marker] = ACTIONS(1646), + [sym_atx_h4_marker] = ACTIONS(1646), + [sym_atx_h5_marker] = ACTIONS(1646), + [sym_atx_h6_marker] = ACTIONS(1646), + [sym__thematic_break] = ACTIONS(1646), + [sym__list_marker_minus] = ACTIONS(1646), + [sym__list_marker_plus] = ACTIONS(1646), + [sym__list_marker_star] = ACTIONS(1646), + [sym__list_marker_parenthesis] = ACTIONS(1646), + [sym__list_marker_dot] = ACTIONS(1646), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1646), + [sym__list_marker_example] = ACTIONS(1646), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1646), + [sym__fenced_code_block_start_backtick] = ACTIONS(1646), + [sym__fenced_code_block_start_tilde] = ACTIONS(1646), + [sym__blank_line_start] = ACTIONS(1646), + [sym_minus_metadata] = ACTIONS(1646), + [sym__pipe_table_start] = ACTIONS(1646), + [sym__fenced_div_start] = ACTIONS(1646), + [sym_ref_id_specifier] = ACTIONS(1646), + [sym__display_math_state_track_marker] = ACTIONS(1646), + [sym__inline_math_state_track_marker] = ACTIONS(1646), + }, + [STATE(405)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_close] = ACTIONS(1484), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(406)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym__block_close] = ACTIONS(1488), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(407)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_EQ] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_DQUOTE] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1720), + [anon_sym_PERCENT] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_RPAREN] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1720), + [anon_sym_SLASH] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_GT] = ACTIONS(1720), + [anon_sym_QMARK] = ACTIONS(1720), + [anon_sym_AT] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_BSLASH] = ACTIONS(1720), + [anon_sym_RBRACK] = ACTIONS(1720), + [anon_sym_CARET] = ACTIONS(1720), + [anon_sym__] = ACTIONS(1720), + [anon_sym_BQUOTE] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(1720), + [sym__word] = ACTIONS(1720), + [sym__soft_line_ending] = ACTIONS(1720), + [sym_block_continuation] = ACTIONS(1720), + [sym__block_quote_start] = ACTIONS(1720), + [sym__indented_chunk_start] = ACTIONS(1720), + [sym_atx_h1_marker] = ACTIONS(1720), + [sym_atx_h2_marker] = ACTIONS(1720), + [sym_atx_h3_marker] = ACTIONS(1720), + [sym_atx_h4_marker] = ACTIONS(1720), + [sym_atx_h5_marker] = ACTIONS(1720), + [sym_atx_h6_marker] = ACTIONS(1720), + [sym__thematic_break] = ACTIONS(1720), + [sym__list_marker_minus] = ACTIONS(1720), + [sym__list_marker_plus] = ACTIONS(1720), + [sym__list_marker_star] = ACTIONS(1720), + [sym__list_marker_parenthesis] = ACTIONS(1720), + [sym__list_marker_dot] = ACTIONS(1720), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1720), + [sym__list_marker_example] = ACTIONS(1720), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1720), + [sym__fenced_code_block_start_backtick] = ACTIONS(1720), + [sym__fenced_code_block_start_tilde] = ACTIONS(1720), + [sym__blank_line_start] = ACTIONS(1720), + [sym_minus_metadata] = ACTIONS(1720), + [sym__pipe_table_start] = ACTIONS(1720), + [sym__fenced_div_start] = ACTIONS(1720), + [sym_ref_id_specifier] = ACTIONS(1720), + [sym__display_math_state_track_marker] = ACTIONS(1720), + [sym__inline_math_state_track_marker] = ACTIONS(1720), + }, + [STATE(408)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_close] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(409)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_close] = ACTIONS(1496), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(410)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_DQUOTE] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_PERCENT] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_COMMA] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_DOT] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(1572), + [anon_sym_QMARK] = ACTIONS(1572), + [anon_sym_AT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_BSLASH] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_CARET] = ACTIONS(1572), + [anon_sym__] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1572), + [sym__word] = ACTIONS(1572), + [sym__soft_line_ending] = ACTIONS(1572), + [sym__block_close] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1572), + [sym__indented_chunk_start] = ACTIONS(1572), + [sym_atx_h1_marker] = ACTIONS(1572), + [sym_atx_h2_marker] = ACTIONS(1572), + [sym_atx_h3_marker] = ACTIONS(1572), + [sym_atx_h4_marker] = ACTIONS(1572), + [sym_atx_h5_marker] = ACTIONS(1572), + [sym_atx_h6_marker] = ACTIONS(1572), + [sym__thematic_break] = ACTIONS(1572), + [sym__list_marker_minus] = ACTIONS(1572), + [sym__list_marker_plus] = ACTIONS(1572), + [sym__list_marker_star] = ACTIONS(1572), + [sym__list_marker_parenthesis] = ACTIONS(1572), + [sym__list_marker_dot] = ACTIONS(1572), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1572), + [sym__list_marker_example] = ACTIONS(1572), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1572), + [sym__fenced_code_block_start_backtick] = ACTIONS(1572), + [sym__fenced_code_block_start_tilde] = ACTIONS(1572), + [sym__blank_line_start] = ACTIONS(1572), + [sym_minus_metadata] = ACTIONS(1572), + [sym__pipe_table_start] = ACTIONS(1572), + [sym__fenced_div_start] = ACTIONS(1572), + [sym_ref_id_specifier] = ACTIONS(1572), + [sym__display_math_state_track_marker] = ACTIONS(1572), + [sym__inline_math_state_track_marker] = ACTIONS(1572), + }, + [STATE(411)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym__] = ACTIONS(1516), + [anon_sym_BQUOTE] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [sym__word] = ACTIONS(1516), + [sym__soft_line_ending] = ACTIONS(1516), + [sym__block_close] = ACTIONS(1516), + [sym__block_quote_start] = ACTIONS(1516), + [sym__indented_chunk_start] = ACTIONS(1516), + [sym_atx_h1_marker] = ACTIONS(1516), + [sym_atx_h2_marker] = ACTIONS(1516), + [sym_atx_h3_marker] = ACTIONS(1516), + [sym_atx_h4_marker] = ACTIONS(1516), + [sym_atx_h5_marker] = ACTIONS(1516), + [sym_atx_h6_marker] = ACTIONS(1516), + [sym__thematic_break] = ACTIONS(1516), + [sym__list_marker_minus] = ACTIONS(1516), + [sym__list_marker_plus] = ACTIONS(1516), + [sym__list_marker_star] = ACTIONS(1516), + [sym__list_marker_parenthesis] = ACTIONS(1516), + [sym__list_marker_dot] = ACTIONS(1516), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1516), + [sym__list_marker_example] = ACTIONS(1516), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1516), + [sym__fenced_code_block_start_backtick] = ACTIONS(1516), + [sym__fenced_code_block_start_tilde] = ACTIONS(1516), + [sym__blank_line_start] = ACTIONS(1516), + [sym_minus_metadata] = ACTIONS(1516), + [sym__pipe_table_start] = ACTIONS(1516), + [sym__fenced_div_start] = ACTIONS(1516), + [sym_ref_id_specifier] = ACTIONS(1516), + [sym__display_math_state_track_marker] = ACTIONS(1516), + [sym__inline_math_state_track_marker] = ACTIONS(1516), + }, + [STATE(412)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_EQ] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PERCENT] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_PLUS] = ACTIONS(1722), + [anon_sym_COMMA] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_DOT] = ACTIONS(1722), + [anon_sym_SLASH] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_GT] = ACTIONS(1722), + [anon_sym_QMARK] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_BSLASH] = ACTIONS(1722), + [anon_sym_RBRACK] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1722), + [anon_sym__] = ACTIONS(1722), + [anon_sym_BQUOTE] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [sym__word] = ACTIONS(1722), + [sym__soft_line_ending] = ACTIONS(1722), + [sym_block_continuation] = ACTIONS(1722), + [sym__block_quote_start] = ACTIONS(1722), + [sym__indented_chunk_start] = ACTIONS(1722), + [sym_atx_h1_marker] = ACTIONS(1722), + [sym_atx_h2_marker] = ACTIONS(1722), + [sym_atx_h3_marker] = ACTIONS(1722), + [sym_atx_h4_marker] = ACTIONS(1722), + [sym_atx_h5_marker] = ACTIONS(1722), + [sym_atx_h6_marker] = ACTIONS(1722), + [sym__thematic_break] = ACTIONS(1722), + [sym__list_marker_minus] = ACTIONS(1722), + [sym__list_marker_plus] = ACTIONS(1722), + [sym__list_marker_star] = ACTIONS(1722), + [sym__list_marker_parenthesis] = ACTIONS(1722), + [sym__list_marker_dot] = ACTIONS(1722), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1722), + [sym__list_marker_example] = ACTIONS(1722), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1722), + [sym__fenced_code_block_start_backtick] = ACTIONS(1722), + [sym__fenced_code_block_start_tilde] = ACTIONS(1722), + [sym__blank_line_start] = ACTIONS(1722), + [sym_minus_metadata] = ACTIONS(1722), + [sym__pipe_table_start] = ACTIONS(1722), + [sym__fenced_div_start] = ACTIONS(1722), + [sym_ref_id_specifier] = ACTIONS(1722), + [sym__display_math_state_track_marker] = ACTIONS(1722), + [sym__inline_math_state_track_marker] = ACTIONS(1722), + }, + [STATE(413)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_EQ] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1578), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_AMP] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_STAR] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1578), + [anon_sym_SLASH] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1578), + [anon_sym_GT] = ACTIONS(1578), + [anon_sym_QMARK] = ACTIONS(1578), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_BSLASH] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_CARET] = ACTIONS(1578), + [anon_sym__] = ACTIONS(1578), + [anon_sym_BQUOTE] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1578), + [sym__word] = ACTIONS(1578), + [sym__soft_line_ending] = ACTIONS(1578), + [sym__block_close] = ACTIONS(1578), + [sym__block_quote_start] = ACTIONS(1578), + [sym__indented_chunk_start] = ACTIONS(1578), + [sym_atx_h1_marker] = ACTIONS(1578), + [sym_atx_h2_marker] = ACTIONS(1578), + [sym_atx_h3_marker] = ACTIONS(1578), + [sym_atx_h4_marker] = ACTIONS(1578), + [sym_atx_h5_marker] = ACTIONS(1578), + [sym_atx_h6_marker] = ACTIONS(1578), + [sym__thematic_break] = ACTIONS(1578), + [sym__list_marker_minus] = ACTIONS(1578), + [sym__list_marker_plus] = ACTIONS(1578), + [sym__list_marker_star] = ACTIONS(1578), + [sym__list_marker_parenthesis] = ACTIONS(1578), + [sym__list_marker_dot] = ACTIONS(1578), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1578), + [sym__list_marker_example] = ACTIONS(1578), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1578), + [sym__fenced_code_block_start_backtick] = ACTIONS(1578), + [sym__fenced_code_block_start_tilde] = ACTIONS(1578), + [sym__blank_line_start] = ACTIONS(1578), + [sym_minus_metadata] = ACTIONS(1578), + [sym__pipe_table_start] = ACTIONS(1578), + [sym__fenced_div_start] = ACTIONS(1578), + [sym_ref_id_specifier] = ACTIONS(1578), + [sym__display_math_state_track_marker] = ACTIONS(1578), + [sym__inline_math_state_track_marker] = ACTIONS(1578), + }, + [STATE(414)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_DQUOTE] = ACTIONS(1580), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_RPAREN] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_COMMA] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_QMARK] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_BSLASH] = ACTIONS(1580), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_CARET] = ACTIONS(1580), + [anon_sym__] = ACTIONS(1580), + [anon_sym_BQUOTE] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_TILDE] = ACTIONS(1580), + [sym__word] = ACTIONS(1580), + [sym__soft_line_ending] = ACTIONS(1580), + [sym__block_close] = ACTIONS(1580), + [sym__block_quote_start] = ACTIONS(1580), + [sym__indented_chunk_start] = ACTIONS(1580), + [sym_atx_h1_marker] = ACTIONS(1580), + [sym_atx_h2_marker] = ACTIONS(1580), + [sym_atx_h3_marker] = ACTIONS(1580), + [sym_atx_h4_marker] = ACTIONS(1580), + [sym_atx_h5_marker] = ACTIONS(1580), + [sym_atx_h6_marker] = ACTIONS(1580), + [sym__thematic_break] = ACTIONS(1580), + [sym__list_marker_minus] = ACTIONS(1580), + [sym__list_marker_plus] = ACTIONS(1580), + [sym__list_marker_star] = ACTIONS(1580), + [sym__list_marker_parenthesis] = ACTIONS(1580), + [sym__list_marker_dot] = ACTIONS(1580), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1580), + [sym__list_marker_example] = ACTIONS(1580), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1580), + [sym__fenced_code_block_start_backtick] = ACTIONS(1580), + [sym__fenced_code_block_start_tilde] = ACTIONS(1580), + [sym__blank_line_start] = ACTIONS(1580), + [sym_minus_metadata] = ACTIONS(1580), + [sym__pipe_table_start] = ACTIONS(1580), + [sym__fenced_div_start] = ACTIONS(1580), + [sym_ref_id_specifier] = ACTIONS(1580), + [sym__display_math_state_track_marker] = ACTIONS(1580), + [sym__inline_math_state_track_marker] = ACTIONS(1580), + }, + [STATE(415)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PERCENT] = ACTIONS(1582), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_STAR] = ACTIONS(1582), + [anon_sym_PLUS] = ACTIONS(1582), + [anon_sym_COMMA] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(1582), + [anon_sym_QMARK] = ACTIONS(1582), + [anon_sym_AT] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_BSLASH] = ACTIONS(1582), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_CARET] = ACTIONS(1582), + [anon_sym__] = ACTIONS(1582), + [anon_sym_BQUOTE] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [sym__word] = ACTIONS(1582), + [sym__soft_line_ending] = ACTIONS(1582), + [sym__block_close] = ACTIONS(1582), + [sym__block_quote_start] = ACTIONS(1582), + [sym__indented_chunk_start] = ACTIONS(1582), + [sym_atx_h1_marker] = ACTIONS(1582), + [sym_atx_h2_marker] = ACTIONS(1582), + [sym_atx_h3_marker] = ACTIONS(1582), + [sym_atx_h4_marker] = ACTIONS(1582), + [sym_atx_h5_marker] = ACTIONS(1582), + [sym_atx_h6_marker] = ACTIONS(1582), + [sym__thematic_break] = ACTIONS(1582), + [sym__list_marker_minus] = ACTIONS(1582), + [sym__list_marker_plus] = ACTIONS(1582), + [sym__list_marker_star] = ACTIONS(1582), + [sym__list_marker_parenthesis] = ACTIONS(1582), + [sym__list_marker_dot] = ACTIONS(1582), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1582), + [sym__list_marker_example] = ACTIONS(1582), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1582), + [sym__fenced_code_block_start_backtick] = ACTIONS(1582), + [sym__fenced_code_block_start_tilde] = ACTIONS(1582), + [sym__blank_line_start] = ACTIONS(1582), + [sym_minus_metadata] = ACTIONS(1582), + [sym__pipe_table_start] = ACTIONS(1582), + [sym__fenced_div_start] = ACTIONS(1582), + [sym_ref_id_specifier] = ACTIONS(1582), + [sym__display_math_state_track_marker] = ACTIONS(1582), + [sym__inline_math_state_track_marker] = ACTIONS(1582), + }, + [STATE(416)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_EQ] = ACTIONS(1584), + [anon_sym_SQUOTE] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_COMMA] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1584), + [anon_sym_SLASH] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_GT] = ACTIONS(1584), + [anon_sym_QMARK] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_BSLASH] = ACTIONS(1584), + [anon_sym_RBRACK] = ACTIONS(1584), + [anon_sym_CARET] = ACTIONS(1584), + [anon_sym__] = ACTIONS(1584), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1584), + [sym__word] = ACTIONS(1584), + [sym__soft_line_ending] = ACTIONS(1584), + [sym__block_close] = ACTIONS(1584), + [sym__block_quote_start] = ACTIONS(1584), + [sym__indented_chunk_start] = ACTIONS(1584), + [sym_atx_h1_marker] = ACTIONS(1584), + [sym_atx_h2_marker] = ACTIONS(1584), + [sym_atx_h3_marker] = ACTIONS(1584), + [sym_atx_h4_marker] = ACTIONS(1584), + [sym_atx_h5_marker] = ACTIONS(1584), + [sym_atx_h6_marker] = ACTIONS(1584), + [sym__thematic_break] = ACTIONS(1584), + [sym__list_marker_minus] = ACTIONS(1584), + [sym__list_marker_plus] = ACTIONS(1584), + [sym__list_marker_star] = ACTIONS(1584), + [sym__list_marker_parenthesis] = ACTIONS(1584), + [sym__list_marker_dot] = ACTIONS(1584), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1584), + [sym__list_marker_example] = ACTIONS(1584), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1584), + [sym__fenced_code_block_start_backtick] = ACTIONS(1584), + [sym__fenced_code_block_start_tilde] = ACTIONS(1584), + [sym__blank_line_start] = ACTIONS(1584), + [sym_minus_metadata] = ACTIONS(1584), + [sym__pipe_table_start] = ACTIONS(1584), + [sym__fenced_div_start] = ACTIONS(1584), + [sym_ref_id_specifier] = ACTIONS(1584), + [sym__display_math_state_track_marker] = ACTIONS(1584), + [sym__inline_math_state_track_marker] = ACTIONS(1584), + }, + [STATE(417)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_DQUOTE] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1586), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PERCENT] = ACTIONS(1586), + [anon_sym_AMP] = ACTIONS(1586), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_RPAREN] = ACTIONS(1586), + [anon_sym_STAR] = ACTIONS(1586), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_COMMA] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_DOT] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1586), + [anon_sym_GT] = ACTIONS(1586), + [anon_sym_QMARK] = ACTIONS(1586), + [anon_sym_AT] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_BSLASH] = ACTIONS(1586), + [anon_sym_RBRACK] = ACTIONS(1586), + [anon_sym_CARET] = ACTIONS(1586), + [anon_sym__] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1586), + [sym__word] = ACTIONS(1586), + [sym__soft_line_ending] = ACTIONS(1586), + [sym__block_close] = ACTIONS(1586), + [sym__block_quote_start] = ACTIONS(1586), + [sym__indented_chunk_start] = ACTIONS(1586), + [sym_atx_h1_marker] = ACTIONS(1586), + [sym_atx_h2_marker] = ACTIONS(1586), + [sym_atx_h3_marker] = ACTIONS(1586), + [sym_atx_h4_marker] = ACTIONS(1586), + [sym_atx_h5_marker] = ACTIONS(1586), + [sym_atx_h6_marker] = ACTIONS(1586), + [sym__thematic_break] = ACTIONS(1586), + [sym__list_marker_minus] = ACTIONS(1586), + [sym__list_marker_plus] = ACTIONS(1586), + [sym__list_marker_star] = ACTIONS(1586), + [sym__list_marker_parenthesis] = ACTIONS(1586), + [sym__list_marker_dot] = ACTIONS(1586), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1586), + [sym__list_marker_example] = ACTIONS(1586), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1586), + [sym__fenced_code_block_start_backtick] = ACTIONS(1586), + [sym__fenced_code_block_start_tilde] = ACTIONS(1586), + [sym__blank_line_start] = ACTIONS(1586), + [sym_minus_metadata] = ACTIONS(1586), + [sym__pipe_table_start] = ACTIONS(1586), + [sym__fenced_div_start] = ACTIONS(1586), + [sym_ref_id_specifier] = ACTIONS(1586), + [sym__display_math_state_track_marker] = ACTIONS(1586), + [sym__inline_math_state_track_marker] = ACTIONS(1586), + }, + [STATE(418)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_SQUOTE] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_DQUOTE] = ACTIONS(1588), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_PERCENT] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_RPAREN] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_COMMA] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_DOT] = ACTIONS(1588), + [anon_sym_SLASH] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_GT] = ACTIONS(1588), + [anon_sym_QMARK] = ACTIONS(1588), + [anon_sym_AT] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_BSLASH] = ACTIONS(1588), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_CARET] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1588), + [anon_sym_BQUOTE] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_TILDE] = ACTIONS(1588), + [sym__word] = ACTIONS(1588), + [sym__soft_line_ending] = ACTIONS(1588), + [sym__block_close] = ACTIONS(1588), + [sym__block_quote_start] = ACTIONS(1588), + [sym__indented_chunk_start] = ACTIONS(1588), + [sym_atx_h1_marker] = ACTIONS(1588), + [sym_atx_h2_marker] = ACTIONS(1588), + [sym_atx_h3_marker] = ACTIONS(1588), + [sym_atx_h4_marker] = ACTIONS(1588), + [sym_atx_h5_marker] = ACTIONS(1588), + [sym_atx_h6_marker] = ACTIONS(1588), + [sym__thematic_break] = ACTIONS(1588), + [sym__list_marker_minus] = ACTIONS(1588), + [sym__list_marker_plus] = ACTIONS(1588), + [sym__list_marker_star] = ACTIONS(1588), + [sym__list_marker_parenthesis] = ACTIONS(1588), + [sym__list_marker_dot] = ACTIONS(1588), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1588), + [sym__list_marker_example] = ACTIONS(1588), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1588), + [sym__fenced_code_block_start_backtick] = ACTIONS(1588), + [sym__fenced_code_block_start_tilde] = ACTIONS(1588), + [sym__blank_line_start] = ACTIONS(1588), + [sym_minus_metadata] = ACTIONS(1588), + [sym__pipe_table_start] = ACTIONS(1588), + [sym__fenced_div_start] = ACTIONS(1588), + [sym_ref_id_specifier] = ACTIONS(1588), + [sym__display_math_state_track_marker] = ACTIONS(1588), + [sym__inline_math_state_track_marker] = ACTIONS(1588), + }, + [STATE(419)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [sym__word] = ACTIONS(1590), + [sym__soft_line_ending] = ACTIONS(1590), + [sym__block_close] = ACTIONS(1590), + [sym__block_quote_start] = ACTIONS(1590), + [sym__indented_chunk_start] = ACTIONS(1590), + [sym_atx_h1_marker] = ACTIONS(1590), + [sym_atx_h2_marker] = ACTIONS(1590), + [sym_atx_h3_marker] = ACTIONS(1590), + [sym_atx_h4_marker] = ACTIONS(1590), + [sym_atx_h5_marker] = ACTIONS(1590), + [sym_atx_h6_marker] = ACTIONS(1590), + [sym__thematic_break] = ACTIONS(1590), + [sym__list_marker_minus] = ACTIONS(1590), + [sym__list_marker_plus] = ACTIONS(1590), + [sym__list_marker_star] = ACTIONS(1590), + [sym__list_marker_parenthesis] = ACTIONS(1590), + [sym__list_marker_dot] = ACTIONS(1590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_example] = ACTIONS(1590), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1590), + [sym__fenced_code_block_start_backtick] = ACTIONS(1590), + [sym__fenced_code_block_start_tilde] = ACTIONS(1590), + [sym__blank_line_start] = ACTIONS(1590), + [sym_minus_metadata] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1590), + [sym__fenced_div_start] = ACTIONS(1590), + [sym_ref_id_specifier] = ACTIONS(1590), + [sym__display_math_state_track_marker] = ACTIONS(1590), + [sym__inline_math_state_track_marker] = ACTIONS(1590), + }, + [STATE(420)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_SQUOTE] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_RPAREN] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_COMMA] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_DOT] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(1592), + [anon_sym_AT] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_BSLASH] = ACTIONS(1592), + [anon_sym_RBRACK] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym__] = ACTIONS(1592), + [anon_sym_BQUOTE] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_TILDE] = ACTIONS(1592), + [sym__word] = ACTIONS(1592), + [sym__soft_line_ending] = ACTIONS(1592), + [sym__block_close] = ACTIONS(1592), + [sym__block_quote_start] = ACTIONS(1592), + [sym__indented_chunk_start] = ACTIONS(1592), + [sym_atx_h1_marker] = ACTIONS(1592), + [sym_atx_h2_marker] = ACTIONS(1592), + [sym_atx_h3_marker] = ACTIONS(1592), + [sym_atx_h4_marker] = ACTIONS(1592), + [sym_atx_h5_marker] = ACTIONS(1592), + [sym_atx_h6_marker] = ACTIONS(1592), + [sym__thematic_break] = ACTIONS(1592), + [sym__list_marker_minus] = ACTIONS(1592), + [sym__list_marker_plus] = ACTIONS(1592), + [sym__list_marker_star] = ACTIONS(1592), + [sym__list_marker_parenthesis] = ACTIONS(1592), + [sym__list_marker_dot] = ACTIONS(1592), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1592), + [sym__list_marker_example] = ACTIONS(1592), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1592), + [sym__fenced_code_block_start_backtick] = ACTIONS(1592), + [sym__fenced_code_block_start_tilde] = ACTIONS(1592), + [sym__blank_line_start] = ACTIONS(1592), + [sym_minus_metadata] = ACTIONS(1592), + [sym__pipe_table_start] = ACTIONS(1592), + [sym__fenced_div_start] = ACTIONS(1592), + [sym_ref_id_specifier] = ACTIONS(1592), + [sym__display_math_state_track_marker] = ACTIONS(1592), + [sym__inline_math_state_track_marker] = ACTIONS(1592), + }, + [STATE(421)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_EQ] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_BANG] = ACTIONS(1594), + [anon_sym_DQUOTE] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(1594), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_DOT] = ACTIONS(1594), + [anon_sym_SLASH] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1594), + [anon_sym_AT] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_BSLASH] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym__] = ACTIONS(1594), + [anon_sym_BQUOTE] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1594), + [anon_sym_TILDE] = ACTIONS(1594), + [sym__word] = ACTIONS(1594), + [sym__soft_line_ending] = ACTIONS(1594), + [sym__block_close] = ACTIONS(1594), + [sym__block_quote_start] = ACTIONS(1594), + [sym__indented_chunk_start] = ACTIONS(1594), + [sym_atx_h1_marker] = ACTIONS(1594), + [sym_atx_h2_marker] = ACTIONS(1594), + [sym_atx_h3_marker] = ACTIONS(1594), + [sym_atx_h4_marker] = ACTIONS(1594), + [sym_atx_h5_marker] = ACTIONS(1594), + [sym_atx_h6_marker] = ACTIONS(1594), + [sym__thematic_break] = ACTIONS(1594), + [sym__list_marker_minus] = ACTIONS(1594), + [sym__list_marker_plus] = ACTIONS(1594), + [sym__list_marker_star] = ACTIONS(1594), + [sym__list_marker_parenthesis] = ACTIONS(1594), + [sym__list_marker_dot] = ACTIONS(1594), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1594), + [sym__list_marker_example] = ACTIONS(1594), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1594), + [sym__fenced_code_block_start_backtick] = ACTIONS(1594), + [sym__fenced_code_block_start_tilde] = ACTIONS(1594), + [sym__blank_line_start] = ACTIONS(1594), + [sym_minus_metadata] = ACTIONS(1594), + [sym__pipe_table_start] = ACTIONS(1594), + [sym__fenced_div_start] = ACTIONS(1594), + [sym_ref_id_specifier] = ACTIONS(1594), + [sym__display_math_state_track_marker] = ACTIONS(1594), + [sym__inline_math_state_track_marker] = ACTIONS(1594), + }, + [STATE(422)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1416), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1416), + [anon_sym_AT] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_BSLASH] = ACTIONS(1416), + [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), + [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(1416), + [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(1416), + [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), + }, + [STATE(423)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_AT] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_BSLASH] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym__] = ACTIONS(1598), + [anon_sym_BQUOTE] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_TILDE] = ACTIONS(1598), + [sym__word] = ACTIONS(1598), + [sym__soft_line_ending] = ACTIONS(1598), + [sym__block_close] = ACTIONS(1598), + [sym__block_quote_start] = ACTIONS(1598), + [sym__indented_chunk_start] = ACTIONS(1598), + [sym_atx_h1_marker] = ACTIONS(1598), + [sym_atx_h2_marker] = ACTIONS(1598), + [sym_atx_h3_marker] = ACTIONS(1598), + [sym_atx_h4_marker] = ACTIONS(1598), + [sym_atx_h5_marker] = ACTIONS(1598), + [sym_atx_h6_marker] = ACTIONS(1598), + [sym__thematic_break] = ACTIONS(1598), + [sym__list_marker_minus] = ACTIONS(1598), + [sym__list_marker_plus] = ACTIONS(1598), + [sym__list_marker_star] = ACTIONS(1598), + [sym__list_marker_parenthesis] = ACTIONS(1598), + [sym__list_marker_dot] = ACTIONS(1598), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1598), + [sym__list_marker_example] = ACTIONS(1598), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1598), + [sym__fenced_code_block_start_backtick] = ACTIONS(1598), + [sym__fenced_code_block_start_tilde] = ACTIONS(1598), + [sym__blank_line_start] = ACTIONS(1598), + [sym_minus_metadata] = ACTIONS(1598), + [sym__pipe_table_start] = ACTIONS(1598), + [sym__fenced_div_start] = ACTIONS(1598), + [sym_ref_id_specifier] = ACTIONS(1598), + [sym__display_math_state_track_marker] = ACTIONS(1598), + [sym__inline_math_state_track_marker] = ACTIONS(1598), + }, + [STATE(424)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PERCENT] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_SLASH] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_BSLASH] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_CARET] = ACTIONS(1600), + [anon_sym__] = ACTIONS(1600), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_TILDE] = ACTIONS(1600), + [sym__word] = ACTIONS(1600), + [sym__soft_line_ending] = ACTIONS(1600), + [sym__block_close] = ACTIONS(1600), + [sym__block_quote_start] = ACTIONS(1600), + [sym__indented_chunk_start] = ACTIONS(1600), + [sym_atx_h1_marker] = ACTIONS(1600), + [sym_atx_h2_marker] = ACTIONS(1600), + [sym_atx_h3_marker] = ACTIONS(1600), + [sym_atx_h4_marker] = ACTIONS(1600), + [sym_atx_h5_marker] = ACTIONS(1600), + [sym_atx_h6_marker] = ACTIONS(1600), + [sym__thematic_break] = ACTIONS(1600), + [sym__list_marker_minus] = ACTIONS(1600), + [sym__list_marker_plus] = ACTIONS(1600), + [sym__list_marker_star] = ACTIONS(1600), + [sym__list_marker_parenthesis] = ACTIONS(1600), + [sym__list_marker_dot] = ACTIONS(1600), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1600), + [sym__list_marker_example] = ACTIONS(1600), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1600), + [sym__fenced_code_block_start_backtick] = ACTIONS(1600), + [sym__fenced_code_block_start_tilde] = ACTIONS(1600), + [sym__blank_line_start] = ACTIONS(1600), + [sym_minus_metadata] = ACTIONS(1600), + [sym__pipe_table_start] = ACTIONS(1600), + [sym__fenced_div_start] = ACTIONS(1600), + [sym_ref_id_specifier] = ACTIONS(1600), + [sym__display_math_state_track_marker] = ACTIONS(1600), + [sym__inline_math_state_track_marker] = ACTIONS(1600), + }, + [STATE(425)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1602), + [anon_sym_DOLLAR] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_RPAREN] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_COMMA] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_DOT] = ACTIONS(1602), + [anon_sym_SLASH] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_BSLASH] = ACTIONS(1602), + [anon_sym_RBRACK] = ACTIONS(1602), + [anon_sym_CARET] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1602), + [anon_sym_BQUOTE] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1602), + [sym__word] = ACTIONS(1602), + [sym__soft_line_ending] = ACTIONS(1602), + [sym__block_close] = ACTIONS(1602), + [sym__block_quote_start] = ACTIONS(1602), + [sym__indented_chunk_start] = ACTIONS(1602), + [sym_atx_h1_marker] = ACTIONS(1602), + [sym_atx_h2_marker] = ACTIONS(1602), + [sym_atx_h3_marker] = ACTIONS(1602), + [sym_atx_h4_marker] = ACTIONS(1602), + [sym_atx_h5_marker] = ACTIONS(1602), + [sym_atx_h6_marker] = ACTIONS(1602), + [sym__thematic_break] = ACTIONS(1602), + [sym__list_marker_minus] = ACTIONS(1602), + [sym__list_marker_plus] = ACTIONS(1602), + [sym__list_marker_star] = ACTIONS(1602), + [sym__list_marker_parenthesis] = ACTIONS(1602), + [sym__list_marker_dot] = ACTIONS(1602), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1602), + [sym__list_marker_example] = ACTIONS(1602), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1602), + [sym__fenced_code_block_start_backtick] = ACTIONS(1602), + [sym__fenced_code_block_start_tilde] = ACTIONS(1602), + [sym__blank_line_start] = ACTIONS(1602), + [sym_minus_metadata] = ACTIONS(1602), + [sym__pipe_table_start] = ACTIONS(1602), + [sym__fenced_div_start] = ACTIONS(1602), + [sym_ref_id_specifier] = ACTIONS(1602), + [sym__display_math_state_track_marker] = ACTIONS(1602), + [sym__inline_math_state_track_marker] = ACTIONS(1602), + }, + [STATE(426)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_EQ] = ACTIONS(1604), + [anon_sym_SQUOTE] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_DQUOTE] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_DOLLAR] = ACTIONS(1604), + [anon_sym_PERCENT] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_RPAREN] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1604), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_GT] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1604), + [anon_sym_AT] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_BSLASH] = ACTIONS(1604), + [anon_sym_RBRACK] = ACTIONS(1604), + [anon_sym_CARET] = ACTIONS(1604), + [anon_sym__] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1604), + [sym__word] = ACTIONS(1604), + [sym__soft_line_ending] = ACTIONS(1604), + [sym__block_close] = ACTIONS(1604), + [sym__block_quote_start] = ACTIONS(1604), + [sym__indented_chunk_start] = ACTIONS(1604), + [sym_atx_h1_marker] = ACTIONS(1604), + [sym_atx_h2_marker] = ACTIONS(1604), + [sym_atx_h3_marker] = ACTIONS(1604), + [sym_atx_h4_marker] = ACTIONS(1604), + [sym_atx_h5_marker] = ACTIONS(1604), + [sym_atx_h6_marker] = ACTIONS(1604), + [sym__thematic_break] = ACTIONS(1604), + [sym__list_marker_minus] = ACTIONS(1604), + [sym__list_marker_plus] = ACTIONS(1604), + [sym__list_marker_star] = ACTIONS(1604), + [sym__list_marker_parenthesis] = ACTIONS(1604), + [sym__list_marker_dot] = ACTIONS(1604), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1604), + [sym__list_marker_example] = ACTIONS(1604), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1604), + [sym__fenced_code_block_start_backtick] = ACTIONS(1604), + [sym__fenced_code_block_start_tilde] = ACTIONS(1604), + [sym__blank_line_start] = ACTIONS(1604), + [sym_minus_metadata] = ACTIONS(1604), + [sym__pipe_table_start] = ACTIONS(1604), + [sym__fenced_div_start] = ACTIONS(1604), + [sym_ref_id_specifier] = ACTIONS(1604), + [sym__display_math_state_track_marker] = ACTIONS(1604), + [sym__inline_math_state_track_marker] = ACTIONS(1604), + }, + [STATE(427)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_EQ] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_DQUOTE] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [anon_sym_PERCENT] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_RPAREN] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), + [anon_sym_PLUS] = ACTIONS(1606), + [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_DOT] = ACTIONS(1606), + [anon_sym_SLASH] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym_GT] = ACTIONS(1606), + [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_AT] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1606), + [anon_sym_BSLASH] = ACTIONS(1606), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_CARET] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_TILDE] = ACTIONS(1606), + [sym__word] = ACTIONS(1606), + [sym__soft_line_ending] = ACTIONS(1606), + [sym__block_close] = ACTIONS(1606), + [sym__block_quote_start] = ACTIONS(1606), + [sym__indented_chunk_start] = ACTIONS(1606), + [sym_atx_h1_marker] = ACTIONS(1606), + [sym_atx_h2_marker] = ACTIONS(1606), + [sym_atx_h3_marker] = ACTIONS(1606), + [sym_atx_h4_marker] = ACTIONS(1606), + [sym_atx_h5_marker] = ACTIONS(1606), + [sym_atx_h6_marker] = ACTIONS(1606), + [sym__thematic_break] = ACTIONS(1606), + [sym__list_marker_minus] = ACTIONS(1606), + [sym__list_marker_plus] = ACTIONS(1606), + [sym__list_marker_star] = ACTIONS(1606), + [sym__list_marker_parenthesis] = ACTIONS(1606), + [sym__list_marker_dot] = ACTIONS(1606), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1606), + [sym__list_marker_example] = ACTIONS(1606), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1606), + [sym__fenced_code_block_start_backtick] = ACTIONS(1606), + [sym__fenced_code_block_start_tilde] = ACTIONS(1606), + [sym__blank_line_start] = ACTIONS(1606), + [sym_minus_metadata] = ACTIONS(1606), + [sym__pipe_table_start] = ACTIONS(1606), + [sym__fenced_div_start] = ACTIONS(1606), + [sym_ref_id_specifier] = ACTIONS(1606), + [sym__display_math_state_track_marker] = ACTIONS(1606), + [sym__inline_math_state_track_marker] = ACTIONS(1606), + }, + [STATE(428)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1608), + [anon_sym_SQUOTE] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PERCENT] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_COMMA] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_DOT] = ACTIONS(1608), + [anon_sym_SLASH] = ACTIONS(1608), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_GT] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(1608), + [anon_sym_AT] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_BSLASH] = ACTIONS(1608), + [anon_sym_RBRACK] = ACTIONS(1608), + [anon_sym_CARET] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), + [anon_sym_BQUOTE] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [sym__word] = ACTIONS(1608), + [sym__soft_line_ending] = ACTIONS(1608), + [sym__block_close] = ACTIONS(1608), + [sym__block_quote_start] = ACTIONS(1608), + [sym__indented_chunk_start] = ACTIONS(1608), + [sym_atx_h1_marker] = ACTIONS(1608), + [sym_atx_h2_marker] = ACTIONS(1608), + [sym_atx_h3_marker] = ACTIONS(1608), + [sym_atx_h4_marker] = ACTIONS(1608), + [sym_atx_h5_marker] = ACTIONS(1608), + [sym_atx_h6_marker] = ACTIONS(1608), + [sym__thematic_break] = ACTIONS(1608), + [sym__list_marker_minus] = ACTIONS(1608), + [sym__list_marker_plus] = ACTIONS(1608), + [sym__list_marker_star] = ACTIONS(1608), + [sym__list_marker_parenthesis] = ACTIONS(1608), + [sym__list_marker_dot] = ACTIONS(1608), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1608), + [sym__list_marker_example] = ACTIONS(1608), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1608), + [sym__fenced_code_block_start_backtick] = ACTIONS(1608), + [sym__fenced_code_block_start_tilde] = ACTIONS(1608), + [sym__blank_line_start] = ACTIONS(1608), + [sym_minus_metadata] = ACTIONS(1608), + [sym__pipe_table_start] = ACTIONS(1608), + [sym__fenced_div_start] = ACTIONS(1608), + [sym_ref_id_specifier] = ACTIONS(1608), + [sym__display_math_state_track_marker] = ACTIONS(1608), + [sym__inline_math_state_track_marker] = ACTIONS(1608), + }, + [STATE(429)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_EQ] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_DOT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_BSLASH] = ACTIONS(1610), + [anon_sym_RBRACK] = ACTIONS(1610), + [anon_sym_CARET] = ACTIONS(1610), + [anon_sym__] = ACTIONS(1610), + [anon_sym_BQUOTE] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1610), + [sym__word] = ACTIONS(1610), + [sym__soft_line_ending] = ACTIONS(1610), + [sym__block_close] = ACTIONS(1610), + [sym__block_quote_start] = ACTIONS(1610), + [sym__indented_chunk_start] = ACTIONS(1610), + [sym_atx_h1_marker] = ACTIONS(1610), + [sym_atx_h2_marker] = ACTIONS(1610), + [sym_atx_h3_marker] = ACTIONS(1610), + [sym_atx_h4_marker] = ACTIONS(1610), + [sym_atx_h5_marker] = ACTIONS(1610), + [sym_atx_h6_marker] = ACTIONS(1610), + [sym__thematic_break] = ACTIONS(1610), + [sym__list_marker_minus] = ACTIONS(1610), + [sym__list_marker_plus] = ACTIONS(1610), + [sym__list_marker_star] = ACTIONS(1610), + [sym__list_marker_parenthesis] = ACTIONS(1610), + [sym__list_marker_dot] = ACTIONS(1610), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1610), + [sym__list_marker_example] = ACTIONS(1610), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1610), + [sym__fenced_code_block_start_backtick] = ACTIONS(1610), + [sym__fenced_code_block_start_tilde] = ACTIONS(1610), + [sym__blank_line_start] = ACTIONS(1610), + [sym_minus_metadata] = ACTIONS(1610), + [sym__pipe_table_start] = ACTIONS(1610), + [sym__fenced_div_start] = ACTIONS(1610), + [sym_ref_id_specifier] = ACTIONS(1610), + [sym__display_math_state_track_marker] = ACTIONS(1610), + [sym__inline_math_state_track_marker] = ACTIONS(1610), + }, + [STATE(430)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1612), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1612), + [anon_sym_PERCENT] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_COMMA] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_DOT] = ACTIONS(1612), + [anon_sym_SLASH] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_GT] = ACTIONS(1612), + [anon_sym_QMARK] = ACTIONS(1612), + [anon_sym_AT] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_BSLASH] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(1612), + [anon_sym_CARET] = ACTIONS(1612), + [anon_sym__] = ACTIONS(1612), + [anon_sym_BQUOTE] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1612), + [sym__word] = ACTIONS(1612), + [sym__soft_line_ending] = ACTIONS(1612), + [sym__block_close] = ACTIONS(1612), + [sym__block_quote_start] = ACTIONS(1612), + [sym__indented_chunk_start] = ACTIONS(1612), + [sym_atx_h1_marker] = ACTIONS(1612), + [sym_atx_h2_marker] = ACTIONS(1612), + [sym_atx_h3_marker] = ACTIONS(1612), + [sym_atx_h4_marker] = ACTIONS(1612), + [sym_atx_h5_marker] = ACTIONS(1612), + [sym_atx_h6_marker] = ACTIONS(1612), + [sym__thematic_break] = ACTIONS(1612), + [sym__list_marker_minus] = ACTIONS(1612), + [sym__list_marker_plus] = ACTIONS(1612), + [sym__list_marker_star] = ACTIONS(1612), + [sym__list_marker_parenthesis] = ACTIONS(1612), + [sym__list_marker_dot] = ACTIONS(1612), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1612), + [sym__list_marker_example] = ACTIONS(1612), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1612), + [sym__fenced_code_block_start_backtick] = ACTIONS(1612), + [sym__fenced_code_block_start_tilde] = ACTIONS(1612), + [sym__blank_line_start] = ACTIONS(1612), + [sym_minus_metadata] = ACTIONS(1612), + [sym__pipe_table_start] = ACTIONS(1612), + [sym__fenced_div_start] = ACTIONS(1612), + [sym_ref_id_specifier] = ACTIONS(1612), + [sym__display_math_state_track_marker] = ACTIONS(1612), + [sym__inline_math_state_track_marker] = ACTIONS(1612), + }, + [STATE(431)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_BANG] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1614), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_DOT] = ACTIONS(1614), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1614), + [anon_sym_GT] = ACTIONS(1614), + [anon_sym_QMARK] = ACTIONS(1614), + [anon_sym_AT] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_BSLASH] = ACTIONS(1614), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_CARET] = ACTIONS(1614), + [anon_sym__] = ACTIONS(1614), + [anon_sym_BQUOTE] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_TILDE] = ACTIONS(1614), + [sym__word] = ACTIONS(1614), + [sym__soft_line_ending] = ACTIONS(1614), + [sym__block_close] = ACTIONS(1614), + [sym__block_quote_start] = ACTIONS(1614), + [sym__indented_chunk_start] = ACTIONS(1614), + [sym_atx_h1_marker] = ACTIONS(1614), + [sym_atx_h2_marker] = ACTIONS(1614), + [sym_atx_h3_marker] = ACTIONS(1614), + [sym_atx_h4_marker] = ACTIONS(1614), + [sym_atx_h5_marker] = ACTIONS(1614), + [sym_atx_h6_marker] = ACTIONS(1614), + [sym__thematic_break] = ACTIONS(1614), + [sym__list_marker_minus] = ACTIONS(1614), + [sym__list_marker_plus] = ACTIONS(1614), + [sym__list_marker_star] = ACTIONS(1614), + [sym__list_marker_parenthesis] = ACTIONS(1614), + [sym__list_marker_dot] = ACTIONS(1614), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1614), + [sym__list_marker_example] = ACTIONS(1614), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1614), + [sym__fenced_code_block_start_backtick] = ACTIONS(1614), + [sym__fenced_code_block_start_tilde] = ACTIONS(1614), + [sym__blank_line_start] = ACTIONS(1614), + [sym_minus_metadata] = ACTIONS(1614), + [sym__pipe_table_start] = ACTIONS(1614), + [sym__fenced_div_start] = ACTIONS(1614), + [sym_ref_id_specifier] = ACTIONS(1614), + [sym__display_math_state_track_marker] = ACTIONS(1614), + [sym__inline_math_state_track_marker] = ACTIONS(1614), + }, + [STATE(432)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(1616), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_SLASH] = ACTIONS(1616), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_GT] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1616), + [anon_sym_AT] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_BSLASH] = ACTIONS(1616), + [anon_sym_RBRACK] = ACTIONS(1616), + [anon_sym_CARET] = ACTIONS(1616), + [anon_sym__] = ACTIONS(1616), + [anon_sym_BQUOTE] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1616), + [sym__word] = ACTIONS(1616), + [sym__soft_line_ending] = ACTIONS(1616), + [sym__block_close] = ACTIONS(1616), + [sym__block_quote_start] = ACTIONS(1616), + [sym__indented_chunk_start] = ACTIONS(1616), + [sym_atx_h1_marker] = ACTIONS(1616), + [sym_atx_h2_marker] = ACTIONS(1616), + [sym_atx_h3_marker] = ACTIONS(1616), + [sym_atx_h4_marker] = ACTIONS(1616), + [sym_atx_h5_marker] = ACTIONS(1616), + [sym_atx_h6_marker] = ACTIONS(1616), + [sym__thematic_break] = ACTIONS(1616), + [sym__list_marker_minus] = ACTIONS(1616), + [sym__list_marker_plus] = ACTIONS(1616), + [sym__list_marker_star] = ACTIONS(1616), + [sym__list_marker_parenthesis] = ACTIONS(1616), + [sym__list_marker_dot] = ACTIONS(1616), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1616), + [sym__list_marker_example] = ACTIONS(1616), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1616), + [sym__fenced_code_block_start_backtick] = ACTIONS(1616), + [sym__fenced_code_block_start_tilde] = ACTIONS(1616), + [sym__blank_line_start] = ACTIONS(1616), + [sym_minus_metadata] = ACTIONS(1616), + [sym__pipe_table_start] = ACTIONS(1616), + [sym__fenced_div_start] = ACTIONS(1616), + [sym_ref_id_specifier] = ACTIONS(1616), + [sym__display_math_state_track_marker] = ACTIONS(1616), + [sym__inline_math_state_track_marker] = ACTIONS(1616), + }, + [STATE(433)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_EQ] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_BANG] = ACTIONS(1618), + [anon_sym_DQUOTE] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_PERCENT] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_PLUS] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1618), + [anon_sym_DASH] = ACTIONS(1618), + [anon_sym_DOT] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1618), + [anon_sym_GT] = ACTIONS(1618), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_BSLASH] = ACTIONS(1618), + [anon_sym_RBRACK] = ACTIONS(1618), + [anon_sym_CARET] = ACTIONS(1618), + [anon_sym__] = ACTIONS(1618), + [anon_sym_BQUOTE] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_TILDE] = ACTIONS(1618), + [sym__word] = ACTIONS(1618), + [sym__soft_line_ending] = ACTIONS(1618), + [sym__block_close] = ACTIONS(1618), + [sym__block_quote_start] = ACTIONS(1618), + [sym__indented_chunk_start] = ACTIONS(1618), + [sym_atx_h1_marker] = ACTIONS(1618), + [sym_atx_h2_marker] = ACTIONS(1618), + [sym_atx_h3_marker] = ACTIONS(1618), + [sym_atx_h4_marker] = ACTIONS(1618), + [sym_atx_h5_marker] = ACTIONS(1618), + [sym_atx_h6_marker] = ACTIONS(1618), + [sym__thematic_break] = ACTIONS(1618), + [sym__list_marker_minus] = ACTIONS(1618), + [sym__list_marker_plus] = ACTIONS(1618), + [sym__list_marker_star] = ACTIONS(1618), + [sym__list_marker_parenthesis] = ACTIONS(1618), + [sym__list_marker_dot] = ACTIONS(1618), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1618), + [sym__list_marker_example] = ACTIONS(1618), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1618), + [sym__fenced_code_block_start_backtick] = ACTIONS(1618), + [sym__fenced_code_block_start_tilde] = ACTIONS(1618), + [sym__blank_line_start] = ACTIONS(1618), + [sym_minus_metadata] = ACTIONS(1618), + [sym__pipe_table_start] = ACTIONS(1618), + [sym__fenced_div_start] = ACTIONS(1618), + [sym_ref_id_specifier] = ACTIONS(1618), + [sym__display_math_state_track_marker] = ACTIONS(1618), + [sym__inline_math_state_track_marker] = ACTIONS(1618), + }, + [STATE(434)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_EQ] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PERCENT] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_RPAREN] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_PLUS] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_DOT] = ACTIONS(1718), + [anon_sym_SLASH] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_GT] = ACTIONS(1718), + [anon_sym_QMARK] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_BSLASH] = ACTIONS(1718), + [anon_sym_RBRACK] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym__] = ACTIONS(1718), + [anon_sym_BQUOTE] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [sym__word] = ACTIONS(1718), + [sym__soft_line_ending] = ACTIONS(1718), + [sym__block_close] = ACTIONS(1718), + [sym__block_quote_start] = ACTIONS(1718), + [sym__indented_chunk_start] = ACTIONS(1718), + [sym_atx_h1_marker] = ACTIONS(1718), + [sym_atx_h2_marker] = ACTIONS(1718), + [sym_atx_h3_marker] = ACTIONS(1718), + [sym_atx_h4_marker] = ACTIONS(1718), + [sym_atx_h5_marker] = ACTIONS(1718), + [sym_atx_h6_marker] = ACTIONS(1718), + [sym__thematic_break] = ACTIONS(1718), + [sym__list_marker_minus] = ACTIONS(1718), + [sym__list_marker_plus] = ACTIONS(1718), + [sym__list_marker_star] = ACTIONS(1718), + [sym__list_marker_parenthesis] = ACTIONS(1718), + [sym__list_marker_dot] = ACTIONS(1718), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1718), + [sym__list_marker_example] = ACTIONS(1718), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1718), + [sym__fenced_code_block_start_backtick] = ACTIONS(1718), + [sym__fenced_code_block_start_tilde] = ACTIONS(1718), + [sym__blank_line_start] = ACTIONS(1718), + [sym_minus_metadata] = ACTIONS(1718), + [sym__pipe_table_start] = ACTIONS(1718), + [sym__fenced_div_start] = ACTIONS(1718), + [sym_ref_id_specifier] = ACTIONS(1718), + [sym__display_math_state_track_marker] = ACTIONS(1718), + [sym__inline_math_state_track_marker] = ACTIONS(1718), + }, + [STATE(435)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1622), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_BANG] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1622), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_STAR] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [anon_sym_DOT] = ACTIONS(1622), + [anon_sym_SLASH] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1622), + [anon_sym_QMARK] = ACTIONS(1622), + [anon_sym_AT] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_BSLASH] = ACTIONS(1622), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_CARET] = ACTIONS(1622), + [anon_sym__] = ACTIONS(1622), + [anon_sym_BQUOTE] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_TILDE] = ACTIONS(1622), + [sym__word] = ACTIONS(1622), + [sym__soft_line_ending] = ACTIONS(1622), + [sym__block_close] = ACTIONS(1622), + [sym__block_quote_start] = ACTIONS(1622), + [sym__indented_chunk_start] = ACTIONS(1622), + [sym_atx_h1_marker] = ACTIONS(1622), + [sym_atx_h2_marker] = ACTIONS(1622), + [sym_atx_h3_marker] = ACTIONS(1622), + [sym_atx_h4_marker] = ACTIONS(1622), + [sym_atx_h5_marker] = ACTIONS(1622), + [sym_atx_h6_marker] = ACTIONS(1622), + [sym__thematic_break] = ACTIONS(1622), + [sym__list_marker_minus] = ACTIONS(1622), + [sym__list_marker_plus] = ACTIONS(1622), + [sym__list_marker_star] = ACTIONS(1622), + [sym__list_marker_parenthesis] = ACTIONS(1622), + [sym__list_marker_dot] = ACTIONS(1622), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1622), + [sym__list_marker_example] = ACTIONS(1622), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1622), + [sym__fenced_code_block_start_backtick] = ACTIONS(1622), + [sym__fenced_code_block_start_tilde] = ACTIONS(1622), + [sym__blank_line_start] = ACTIONS(1622), + [sym_minus_metadata] = ACTIONS(1622), + [sym__pipe_table_start] = ACTIONS(1622), + [sym__fenced_div_start] = ACTIONS(1622), + [sym_ref_id_specifier] = ACTIONS(1622), + [sym__display_math_state_track_marker] = ACTIONS(1622), + [sym__inline_math_state_track_marker] = ACTIONS(1622), + }, + [STATE(436)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_EQ] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_COMMA] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_DOT] = ACTIONS(1724), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_QMARK] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_BSLASH] = ACTIONS(1724), + [anon_sym_RBRACK] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym__] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1724), + [sym__word] = ACTIONS(1724), + [sym__soft_line_ending] = ACTIONS(1724), + [sym_block_continuation] = ACTIONS(1724), + [sym__block_quote_start] = ACTIONS(1724), + [sym__indented_chunk_start] = ACTIONS(1724), + [sym_atx_h1_marker] = ACTIONS(1724), + [sym_atx_h2_marker] = ACTIONS(1724), + [sym_atx_h3_marker] = ACTIONS(1724), + [sym_atx_h4_marker] = ACTIONS(1724), + [sym_atx_h5_marker] = ACTIONS(1724), + [sym_atx_h6_marker] = ACTIONS(1724), + [sym__thematic_break] = ACTIONS(1724), + [sym__list_marker_minus] = ACTIONS(1724), + [sym__list_marker_plus] = ACTIONS(1724), + [sym__list_marker_star] = ACTIONS(1724), + [sym__list_marker_parenthesis] = ACTIONS(1724), + [sym__list_marker_dot] = ACTIONS(1724), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_example] = ACTIONS(1724), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1724), + [sym__fenced_code_block_start_backtick] = ACTIONS(1724), + [sym__fenced_code_block_start_tilde] = ACTIONS(1724), + [sym__blank_line_start] = ACTIONS(1724), + [sym_minus_metadata] = ACTIONS(1724), + [sym__pipe_table_start] = ACTIONS(1724), + [sym__fenced_div_start] = ACTIONS(1724), + [sym_ref_id_specifier] = ACTIONS(1724), + [sym__display_math_state_track_marker] = ACTIONS(1724), + [sym__inline_math_state_track_marker] = ACTIONS(1724), + }, + [STATE(437)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PERCENT] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DOT] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1726), + [anon_sym_QMARK] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_BSLASH] = ACTIONS(1726), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym__] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [sym__word] = ACTIONS(1726), + [sym__soft_line_ending] = ACTIONS(1726), + [sym_block_continuation] = ACTIONS(1726), + [sym__block_quote_start] = ACTIONS(1726), + [sym__indented_chunk_start] = ACTIONS(1726), + [sym_atx_h1_marker] = ACTIONS(1726), + [sym_atx_h2_marker] = ACTIONS(1726), + [sym_atx_h3_marker] = ACTIONS(1726), + [sym_atx_h4_marker] = ACTIONS(1726), + [sym_atx_h5_marker] = ACTIONS(1726), + [sym_atx_h6_marker] = ACTIONS(1726), + [sym__thematic_break] = ACTIONS(1726), + [sym__list_marker_minus] = ACTIONS(1726), + [sym__list_marker_plus] = ACTIONS(1726), + [sym__list_marker_star] = ACTIONS(1726), + [sym__list_marker_parenthesis] = ACTIONS(1726), + [sym__list_marker_dot] = ACTIONS(1726), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1726), + [sym__list_marker_example] = ACTIONS(1726), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1726), + [sym__fenced_code_block_start_backtick] = ACTIONS(1726), + [sym__fenced_code_block_start_tilde] = ACTIONS(1726), + [sym__blank_line_start] = ACTIONS(1726), + [sym_minus_metadata] = ACTIONS(1726), + [sym__pipe_table_start] = ACTIONS(1726), + [sym__fenced_div_start] = ACTIONS(1726), + [sym_ref_id_specifier] = ACTIONS(1726), + [sym__display_math_state_track_marker] = ACTIONS(1726), + [sym__inline_math_state_track_marker] = ACTIONS(1726), + }, + [STATE(438)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_SQUOTE] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_DQUOTE] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_COMMA] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_QMARK] = ACTIONS(1728), + [anon_sym_AT] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_BSLASH] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(1728), + [anon_sym_CARET] = ACTIONS(1728), + [anon_sym__] = ACTIONS(1728), + [anon_sym_BQUOTE] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1728), + [sym__word] = ACTIONS(1728), + [sym__soft_line_ending] = ACTIONS(1728), + [sym_block_continuation] = ACTIONS(1728), + [sym__block_quote_start] = ACTIONS(1728), + [sym__indented_chunk_start] = ACTIONS(1728), + [sym_atx_h1_marker] = ACTIONS(1728), + [sym_atx_h2_marker] = ACTIONS(1728), + [sym_atx_h3_marker] = ACTIONS(1728), + [sym_atx_h4_marker] = ACTIONS(1728), + [sym_atx_h5_marker] = ACTIONS(1728), + [sym_atx_h6_marker] = ACTIONS(1728), + [sym__thematic_break] = ACTIONS(1728), + [sym__list_marker_minus] = ACTIONS(1728), + [sym__list_marker_plus] = ACTIONS(1728), + [sym__list_marker_star] = ACTIONS(1728), + [sym__list_marker_parenthesis] = ACTIONS(1728), + [sym__list_marker_dot] = ACTIONS(1728), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1728), + [sym__list_marker_example] = ACTIONS(1728), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1728), + [sym__fenced_code_block_start_backtick] = ACTIONS(1728), + [sym__fenced_code_block_start_tilde] = ACTIONS(1728), + [sym__blank_line_start] = ACTIONS(1728), + [sym_minus_metadata] = ACTIONS(1728), + [sym__pipe_table_start] = ACTIONS(1728), + [sym__fenced_div_start] = ACTIONS(1728), + [sym_ref_id_specifier] = ACTIONS(1728), + [sym__display_math_state_track_marker] = ACTIONS(1728), + [sym__inline_math_state_track_marker] = ACTIONS(1728), + }, + [STATE(439)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_DOLLAR] = ACTIONS(1730), + [anon_sym_PERCENT] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_GT] = ACTIONS(1730), + [anon_sym_QMARK] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_BSLASH] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym__] = ACTIONS(1730), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [sym__word] = ACTIONS(1730), + [sym__soft_line_ending] = ACTIONS(1730), + [sym_block_continuation] = ACTIONS(1730), + [sym__block_quote_start] = ACTIONS(1730), + [sym__indented_chunk_start] = ACTIONS(1730), + [sym_atx_h1_marker] = ACTIONS(1730), + [sym_atx_h2_marker] = ACTIONS(1730), + [sym_atx_h3_marker] = ACTIONS(1730), + [sym_atx_h4_marker] = ACTIONS(1730), + [sym_atx_h5_marker] = ACTIONS(1730), + [sym_atx_h6_marker] = ACTIONS(1730), + [sym__thematic_break] = ACTIONS(1730), + [sym__list_marker_minus] = ACTIONS(1730), + [sym__list_marker_plus] = ACTIONS(1730), + [sym__list_marker_star] = ACTIONS(1730), + [sym__list_marker_parenthesis] = ACTIONS(1730), + [sym__list_marker_dot] = ACTIONS(1730), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1730), + [sym__list_marker_example] = ACTIONS(1730), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1730), + [sym__fenced_code_block_start_backtick] = ACTIONS(1730), + [sym__fenced_code_block_start_tilde] = ACTIONS(1730), + [sym__blank_line_start] = ACTIONS(1730), + [sym_minus_metadata] = ACTIONS(1730), + [sym__pipe_table_start] = ACTIONS(1730), + [sym__fenced_div_start] = ACTIONS(1730), + [sym_ref_id_specifier] = ACTIONS(1730), + [sym__display_math_state_track_marker] = ACTIONS(1730), + [sym__inline_math_state_track_marker] = ACTIONS(1730), + }, + [STATE(440)] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_DOLLAR] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_SLASH] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym__] = ACTIONS(1504), + [anon_sym_BQUOTE] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [sym__word] = ACTIONS(1504), + [sym__soft_line_ending] = ACTIONS(1504), + [sym__block_quote_start] = ACTIONS(1504), + [sym__indented_chunk_start] = ACTIONS(1504), + [sym_atx_h1_marker] = ACTIONS(1504), + [sym_atx_h2_marker] = ACTIONS(1504), + [sym_atx_h3_marker] = ACTIONS(1504), + [sym_atx_h4_marker] = ACTIONS(1504), + [sym_atx_h5_marker] = ACTIONS(1504), + [sym_atx_h6_marker] = ACTIONS(1504), + [sym__thematic_break] = ACTIONS(1504), + [sym__list_marker_minus] = ACTIONS(1504), + [sym__list_marker_plus] = ACTIONS(1504), + [sym__list_marker_star] = ACTIONS(1504), + [sym__list_marker_parenthesis] = ACTIONS(1504), + [sym__list_marker_dot] = ACTIONS(1504), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1504), + [sym__list_marker_example] = ACTIONS(1504), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1504), + [sym__fenced_code_block_start_backtick] = ACTIONS(1504), + [sym__fenced_code_block_start_tilde] = ACTIONS(1504), + [sym__blank_line_start] = ACTIONS(1504), + [sym_minus_metadata] = ACTIONS(1504), + [sym__pipe_table_start] = ACTIONS(1504), + [sym__fenced_div_start] = ACTIONS(1504), + [sym_ref_id_specifier] = ACTIONS(1504), + [sym__display_math_state_track_marker] = ACTIONS(1504), + [sym__inline_math_state_track_marker] = ACTIONS(1504), + }, + [STATE(441)] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_BSLASH] = ACTIONS(1508), + [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), + [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), + }, + [STATE(442)] = { + [ts_builtin_sym_end] = ACTIONS(1660), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1660), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_QMARK] = ACTIONS(1660), + [anon_sym_AT] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_BSLASH] = ACTIONS(1660), + [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), + [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), + }, + [STATE(443)] = { + [ts_builtin_sym_end] = ACTIONS(1662), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_EQ] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_DQUOTE] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1662), + [anon_sym_PERCENT] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_COMMA] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_DOT] = ACTIONS(1662), + [anon_sym_SLASH] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_GT] = ACTIONS(1662), + [anon_sym_QMARK] = ACTIONS(1662), + [anon_sym_AT] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_BSLASH] = ACTIONS(1662), + [anon_sym_RBRACK] = ACTIONS(1662), + [anon_sym_CARET] = ACTIONS(1662), + [anon_sym__] = ACTIONS(1662), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_TILDE] = ACTIONS(1662), + [sym__word] = ACTIONS(1662), + [sym__soft_line_ending] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1662), + [sym__indented_chunk_start] = ACTIONS(1662), + [sym_atx_h1_marker] = ACTIONS(1662), + [sym_atx_h2_marker] = ACTIONS(1662), + [sym_atx_h3_marker] = ACTIONS(1662), + [sym_atx_h4_marker] = ACTIONS(1662), + [sym_atx_h5_marker] = ACTIONS(1662), + [sym_atx_h6_marker] = ACTIONS(1662), + [sym__thematic_break] = ACTIONS(1662), + [sym__list_marker_minus] = ACTIONS(1662), + [sym__list_marker_plus] = ACTIONS(1662), + [sym__list_marker_star] = ACTIONS(1662), + [sym__list_marker_parenthesis] = ACTIONS(1662), + [sym__list_marker_dot] = ACTIONS(1662), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1662), + [sym__list_marker_example] = ACTIONS(1662), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1662), + [sym__fenced_code_block_start_backtick] = ACTIONS(1662), + [sym__fenced_code_block_start_tilde] = ACTIONS(1662), + [sym__blank_line_start] = ACTIONS(1662), + [sym_minus_metadata] = ACTIONS(1662), + [sym__pipe_table_start] = ACTIONS(1662), + [sym__fenced_div_start] = ACTIONS(1662), + [sym_ref_id_specifier] = ACTIONS(1662), + [sym__display_math_state_track_marker] = ACTIONS(1662), + [sym__inline_math_state_track_marker] = ACTIONS(1662), + }, + [STATE(444)] = { + [ts_builtin_sym_end] = ACTIONS(1664), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1664), + [anon_sym_GT] = ACTIONS(1664), + [anon_sym_QMARK] = ACTIONS(1664), + [anon_sym_AT] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_BSLASH] = ACTIONS(1664), + [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), + [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), + }, + [STATE(445)] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym__] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [sym__block_quote_start] = ACTIONS(1420), + [sym__indented_chunk_start] = ACTIONS(1420), + [sym_atx_h1_marker] = ACTIONS(1420), + [sym_atx_h2_marker] = ACTIONS(1420), + [sym_atx_h3_marker] = ACTIONS(1420), + [sym_atx_h4_marker] = ACTIONS(1420), + [sym_atx_h5_marker] = ACTIONS(1420), + [sym_atx_h6_marker] = ACTIONS(1420), + [sym__thematic_break] = ACTIONS(1420), + [sym__list_marker_minus] = ACTIONS(1420), + [sym__list_marker_plus] = ACTIONS(1420), + [sym__list_marker_star] = ACTIONS(1420), + [sym__list_marker_parenthesis] = ACTIONS(1420), + [sym__list_marker_dot] = ACTIONS(1420), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1420), + [sym__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), + }, + [STATE(446)] = { + [ts_builtin_sym_end] = ACTIONS(1666), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_EQ] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_DQUOTE] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_DOLLAR] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_RPAREN] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_COMMA] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_SLASH] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_GT] = ACTIONS(1666), + [anon_sym_QMARK] = ACTIONS(1666), + [anon_sym_AT] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_BSLASH] = ACTIONS(1666), + [anon_sym_RBRACK] = ACTIONS(1666), + [anon_sym_CARET] = ACTIONS(1666), + [anon_sym__] = ACTIONS(1666), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1666), + [sym__word] = ACTIONS(1666), + [sym__soft_line_ending] = ACTIONS(1666), + [sym__block_quote_start] = ACTIONS(1666), + [sym__indented_chunk_start] = ACTIONS(1666), + [sym_atx_h1_marker] = ACTIONS(1666), + [sym_atx_h2_marker] = ACTIONS(1666), + [sym_atx_h3_marker] = ACTIONS(1666), + [sym_atx_h4_marker] = ACTIONS(1666), + [sym_atx_h5_marker] = ACTIONS(1666), + [sym_atx_h6_marker] = ACTIONS(1666), + [sym__thematic_break] = ACTIONS(1666), + [sym__list_marker_minus] = ACTIONS(1666), + [sym__list_marker_plus] = ACTIONS(1666), + [sym__list_marker_star] = ACTIONS(1666), + [sym__list_marker_parenthesis] = ACTIONS(1666), + [sym__list_marker_dot] = ACTIONS(1666), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1666), + [sym__list_marker_example] = ACTIONS(1666), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1666), + [sym__fenced_code_block_start_backtick] = ACTIONS(1666), + [sym__fenced_code_block_start_tilde] = ACTIONS(1666), + [sym__blank_line_start] = ACTIONS(1666), + [sym_minus_metadata] = ACTIONS(1666), + [sym__pipe_table_start] = ACTIONS(1666), + [sym__fenced_div_start] = ACTIONS(1666), + [sym_ref_id_specifier] = ACTIONS(1666), + [sym__display_math_state_track_marker] = ACTIONS(1666), + [sym__inline_math_state_track_marker] = ACTIONS(1666), + }, + [STATE(447)] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1678), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_BSLASH] = ACTIONS(1678), + [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), + [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), + }, + [STATE(448)] = { + [ts_builtin_sym_end] = ACTIONS(1682), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_BSLASH] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym__] = ACTIONS(1682), + [anon_sym_BQUOTE] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [sym__word] = ACTIONS(1682), + [sym__soft_line_ending] = ACTIONS(1682), + [sym__block_quote_start] = ACTIONS(1682), + [sym__indented_chunk_start] = ACTIONS(1682), + [sym_atx_h1_marker] = ACTIONS(1682), + [sym_atx_h2_marker] = ACTIONS(1682), + [sym_atx_h3_marker] = ACTIONS(1682), + [sym_atx_h4_marker] = ACTIONS(1682), + [sym_atx_h5_marker] = ACTIONS(1682), + [sym_atx_h6_marker] = ACTIONS(1682), + [sym__thematic_break] = ACTIONS(1682), + [sym__list_marker_minus] = ACTIONS(1682), + [sym__list_marker_plus] = ACTIONS(1682), + [sym__list_marker_star] = ACTIONS(1682), + [sym__list_marker_parenthesis] = ACTIONS(1682), + [sym__list_marker_dot] = ACTIONS(1682), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1682), + [sym__list_marker_example] = ACTIONS(1682), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1682), + [sym__fenced_code_block_start_backtick] = ACTIONS(1682), + [sym__fenced_code_block_start_tilde] = ACTIONS(1682), + [sym__blank_line_start] = ACTIONS(1682), + [sym_minus_metadata] = ACTIONS(1682), + [sym__pipe_table_start] = ACTIONS(1682), + [sym__fenced_div_start] = ACTIONS(1682), + [sym_ref_id_specifier] = ACTIONS(1682), + [sym__display_math_state_track_marker] = ACTIONS(1682), + [sym__inline_math_state_track_marker] = ACTIONS(1682), + }, + [STATE(449)] = { + [ts_builtin_sym_end] = ACTIONS(1684), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_DOLLAR] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_GT] = ACTIONS(1684), + [anon_sym_QMARK] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_BSLASH] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1684), + [anon_sym__] = ACTIONS(1684), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [sym__word] = ACTIONS(1684), + [sym__soft_line_ending] = ACTIONS(1684), + [sym__block_quote_start] = ACTIONS(1684), + [sym__indented_chunk_start] = ACTIONS(1684), + [sym_atx_h1_marker] = ACTIONS(1684), + [sym_atx_h2_marker] = ACTIONS(1684), + [sym_atx_h3_marker] = ACTIONS(1684), + [sym_atx_h4_marker] = ACTIONS(1684), + [sym_atx_h5_marker] = ACTIONS(1684), + [sym_atx_h6_marker] = ACTIONS(1684), + [sym__thematic_break] = ACTIONS(1684), + [sym__list_marker_minus] = ACTIONS(1684), + [sym__list_marker_plus] = ACTIONS(1684), + [sym__list_marker_star] = ACTIONS(1684), + [sym__list_marker_parenthesis] = ACTIONS(1684), + [sym__list_marker_dot] = ACTIONS(1684), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1684), + [sym__list_marker_example] = ACTIONS(1684), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1684), + [sym__fenced_code_block_start_backtick] = ACTIONS(1684), + [sym__fenced_code_block_start_tilde] = ACTIONS(1684), + [sym__blank_line_start] = ACTIONS(1684), + [sym_minus_metadata] = ACTIONS(1684), + [sym__pipe_table_start] = ACTIONS(1684), + [sym__fenced_div_start] = ACTIONS(1684), + [sym_ref_id_specifier] = ACTIONS(1684), + [sym__display_math_state_track_marker] = ACTIONS(1684), + [sym__inline_math_state_track_marker] = ACTIONS(1684), + }, + [STATE(450)] = { + [ts_builtin_sym_end] = ACTIONS(1686), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1686), + [anon_sym_QMARK] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_BSLASH] = ACTIONS(1686), + [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), + [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), + }, + [STATE(451)] = { + [ts_builtin_sym_end] = ACTIONS(1688), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_QMARK] = ACTIONS(1688), + [anon_sym_AT] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_BSLASH] = ACTIONS(1688), + [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), + [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), + }, + [STATE(452)] = { + [ts_builtin_sym_end] = ACTIONS(1690), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_QMARK] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_BSLASH] = ACTIONS(1690), + [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), + [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), + }, + [STATE(453)] = { + [ts_builtin_sym_end] = ACTIONS(1692), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1692), + [anon_sym_GT] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_BSLASH] = ACTIONS(1692), + [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), + [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), + }, + [STATE(454)] = { + [ts_builtin_sym_end] = ACTIONS(1694), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_QMARK] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_BSLASH] = ACTIONS(1694), + [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), + [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), + }, + [STATE(455)] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1704), + [anon_sym_GT] = ACTIONS(1704), + [anon_sym_QMARK] = ACTIONS(1704), + [anon_sym_AT] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_BSLASH] = ACTIONS(1704), + [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), + [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), + }, + [STATE(456)] = { + [ts_builtin_sym_end] = ACTIONS(1706), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1706), + [anon_sym_GT] = ACTIONS(1706), + [anon_sym_QMARK] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_BSLASH] = ACTIONS(1706), + [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), + [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), + }, + [STATE(457)] = { + [ts_builtin_sym_end] = ACTIONS(1526), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_DQUOTE] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1526), + [anon_sym_PERCENT] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_RPAREN] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_COMMA] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_DOT] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_GT] = ACTIONS(1526), + [anon_sym_QMARK] = ACTIONS(1526), + [anon_sym_AT] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_BSLASH] = ACTIONS(1526), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_CARET] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1526), + [anon_sym_BQUOTE] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_TILDE] = ACTIONS(1526), + [sym__word] = ACTIONS(1526), + [sym__soft_line_ending] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1526), + [sym__indented_chunk_start] = ACTIONS(1526), + [sym_atx_h1_marker] = ACTIONS(1526), + [sym_atx_h2_marker] = ACTIONS(1526), + [sym_atx_h3_marker] = ACTIONS(1526), + [sym_atx_h4_marker] = ACTIONS(1526), + [sym_atx_h5_marker] = ACTIONS(1526), + [sym_atx_h6_marker] = ACTIONS(1526), + [sym__thematic_break] = ACTIONS(1526), + [sym__list_marker_minus] = ACTIONS(1526), + [sym__list_marker_plus] = ACTIONS(1526), + [sym__list_marker_star] = ACTIONS(1526), + [sym__list_marker_parenthesis] = ACTIONS(1526), + [sym__list_marker_dot] = ACTIONS(1526), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1526), + [sym__list_marker_example] = ACTIONS(1526), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1526), + [sym__fenced_code_block_start_backtick] = ACTIONS(1526), + [sym__fenced_code_block_start_tilde] = ACTIONS(1526), + [sym__blank_line_start] = ACTIONS(1526), + [sym_minus_metadata] = ACTIONS(1526), + [sym__pipe_table_start] = ACTIONS(1526), + [sym__fenced_div_start] = ACTIONS(1526), + [sym_ref_id_specifier] = ACTIONS(1526), + [sym__display_math_state_track_marker] = ACTIONS(1526), + [sym__inline_math_state_track_marker] = ACTIONS(1526), + }, + [STATE(458)] = { + [ts_builtin_sym_end] = ACTIONS(1528), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_SLASH] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_BSLASH] = ACTIONS(1528), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym__] = ACTIONS(1528), + [anon_sym_BQUOTE] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [sym__word] = ACTIONS(1528), + [sym__soft_line_ending] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1528), + [sym__indented_chunk_start] = ACTIONS(1528), + [sym_atx_h1_marker] = ACTIONS(1528), + [sym_atx_h2_marker] = ACTIONS(1528), + [sym_atx_h3_marker] = ACTIONS(1528), + [sym_atx_h4_marker] = ACTIONS(1528), + [sym_atx_h5_marker] = ACTIONS(1528), + [sym_atx_h6_marker] = ACTIONS(1528), + [sym__thematic_break] = ACTIONS(1528), + [sym__list_marker_minus] = ACTIONS(1528), + [sym__list_marker_plus] = ACTIONS(1528), + [sym__list_marker_star] = ACTIONS(1528), + [sym__list_marker_parenthesis] = ACTIONS(1528), + [sym__list_marker_dot] = ACTIONS(1528), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1528), + [sym__list_marker_example] = ACTIONS(1528), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1528), + [sym__fenced_code_block_start_backtick] = ACTIONS(1528), + [sym__fenced_code_block_start_tilde] = ACTIONS(1528), + [sym__blank_line_start] = ACTIONS(1528), + [sym_minus_metadata] = ACTIONS(1528), + [sym__pipe_table_start] = ACTIONS(1528), + [sym__fenced_div_start] = ACTIONS(1528), + [sym_ref_id_specifier] = ACTIONS(1528), + [sym__display_math_state_track_marker] = ACTIONS(1528), + [sym__inline_math_state_track_marker] = ACTIONS(1528), + }, + [STATE(459)] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BQUOTE] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [sym__word] = ACTIONS(1472), + [sym__soft_line_ending] = ACTIONS(1472), + [sym__block_quote_start] = ACTIONS(1472), + [sym__indented_chunk_start] = ACTIONS(1472), + [sym_atx_h1_marker] = ACTIONS(1472), + [sym_atx_h2_marker] = ACTIONS(1472), + [sym_atx_h3_marker] = ACTIONS(1472), + [sym_atx_h4_marker] = ACTIONS(1472), + [sym_atx_h5_marker] = ACTIONS(1472), + [sym_atx_h6_marker] = ACTIONS(1472), + [sym__thematic_break] = ACTIONS(1472), + [sym__list_marker_minus] = ACTIONS(1472), + [sym__list_marker_plus] = ACTIONS(1472), + [sym__list_marker_star] = ACTIONS(1472), + [sym__list_marker_parenthesis] = ACTIONS(1472), + [sym__list_marker_dot] = ACTIONS(1472), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1472), + [sym__list_marker_example] = ACTIONS(1472), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1472), + [sym__fenced_code_block_start_backtick] = ACTIONS(1472), + [sym__fenced_code_block_start_tilde] = ACTIONS(1472), + [sym__blank_line_start] = ACTIONS(1472), + [sym_minus_metadata] = ACTIONS(1472), + [sym__pipe_table_start] = ACTIONS(1472), + [sym__fenced_div_start] = ACTIONS(1472), + [sym_ref_id_specifier] = ACTIONS(1472), + [sym__display_math_state_track_marker] = ACTIONS(1472), + [sym__inline_math_state_track_marker] = ACTIONS(1472), + }, + [STATE(460)] = { + [ts_builtin_sym_end] = ACTIONS(1530), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_QMARK] = ACTIONS(1530), + [anon_sym_AT] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1530), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1530), + [anon_sym_BQUOTE] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [sym__word] = ACTIONS(1530), + [sym__soft_line_ending] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1530), + [sym__indented_chunk_start] = ACTIONS(1530), + [sym_atx_h1_marker] = ACTIONS(1530), + [sym_atx_h2_marker] = ACTIONS(1530), + [sym_atx_h3_marker] = ACTIONS(1530), + [sym_atx_h4_marker] = ACTIONS(1530), + [sym_atx_h5_marker] = ACTIONS(1530), + [sym_atx_h6_marker] = ACTIONS(1530), + [sym__thematic_break] = ACTIONS(1530), + [sym__list_marker_minus] = ACTIONS(1530), + [sym__list_marker_plus] = ACTIONS(1530), + [sym__list_marker_star] = ACTIONS(1530), + [sym__list_marker_parenthesis] = ACTIONS(1530), + [sym__list_marker_dot] = ACTIONS(1530), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1530), + [sym__list_marker_example] = ACTIONS(1530), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1530), + [sym__fenced_code_block_start_backtick] = ACTIONS(1530), + [sym__fenced_code_block_start_tilde] = ACTIONS(1530), + [sym__blank_line_start] = ACTIONS(1530), + [sym_minus_metadata] = ACTIONS(1530), + [sym__pipe_table_start] = ACTIONS(1530), + [sym__fenced_div_start] = ACTIONS(1530), + [sym_ref_id_specifier] = ACTIONS(1530), + [sym__display_math_state_track_marker] = ACTIONS(1530), + [sym__inline_math_state_track_marker] = ACTIONS(1530), + }, + [STATE(461)] = { + [ts_builtin_sym_end] = ACTIONS(1544), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_EQ] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1544), + [anon_sym_PERCENT] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_PLUS] = ACTIONS(1544), + [anon_sym_COMMA] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_DOT] = ACTIONS(1544), + [anon_sym_SLASH] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_GT] = ACTIONS(1544), + [anon_sym_QMARK] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_BSLASH] = ACTIONS(1544), + [anon_sym_RBRACK] = ACTIONS(1544), + [anon_sym_CARET] = ACTIONS(1544), + [anon_sym__] = ACTIONS(1544), + [anon_sym_BQUOTE] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1544), + [sym__word] = ACTIONS(1544), + [sym__soft_line_ending] = ACTIONS(1544), + [sym__block_quote_start] = ACTIONS(1544), + [sym__indented_chunk_start] = ACTIONS(1544), + [sym_atx_h1_marker] = ACTIONS(1544), + [sym_atx_h2_marker] = ACTIONS(1544), + [sym_atx_h3_marker] = ACTIONS(1544), + [sym_atx_h4_marker] = ACTIONS(1544), + [sym_atx_h5_marker] = ACTIONS(1544), + [sym_atx_h6_marker] = ACTIONS(1544), + [sym__thematic_break] = ACTIONS(1544), + [sym__list_marker_minus] = ACTIONS(1544), + [sym__list_marker_plus] = ACTIONS(1544), + [sym__list_marker_star] = ACTIONS(1544), + [sym__list_marker_parenthesis] = ACTIONS(1544), + [sym__list_marker_dot] = ACTIONS(1544), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1544), + [sym__list_marker_example] = ACTIONS(1544), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1544), + [sym__fenced_code_block_start_backtick] = ACTIONS(1544), + [sym__fenced_code_block_start_tilde] = ACTIONS(1544), + [sym__blank_line_start] = ACTIONS(1544), + [sym_minus_metadata] = ACTIONS(1544), + [sym__pipe_table_start] = ACTIONS(1544), + [sym__fenced_div_start] = ACTIONS(1544), + [sym_ref_id_specifier] = ACTIONS(1544), + [sym__display_math_state_track_marker] = ACTIONS(1544), + [sym__inline_math_state_track_marker] = ACTIONS(1544), + }, + [STATE(462)] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1546), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_RPAREN] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1546), + [anon_sym_AT] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_BSLASH] = ACTIONS(1546), + [anon_sym_RBRACK] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym__] = ACTIONS(1546), + [anon_sym_BQUOTE] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [sym__word] = ACTIONS(1546), + [sym__soft_line_ending] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1546), + [sym__indented_chunk_start] = ACTIONS(1546), + [sym_atx_h1_marker] = ACTIONS(1546), + [sym_atx_h2_marker] = ACTIONS(1546), + [sym_atx_h3_marker] = ACTIONS(1546), + [sym_atx_h4_marker] = ACTIONS(1546), + [sym_atx_h5_marker] = ACTIONS(1546), + [sym_atx_h6_marker] = ACTIONS(1546), + [sym__thematic_break] = ACTIONS(1546), + [sym__list_marker_minus] = ACTIONS(1546), + [sym__list_marker_plus] = ACTIONS(1546), + [sym__list_marker_star] = ACTIONS(1546), + [sym__list_marker_parenthesis] = ACTIONS(1546), + [sym__list_marker_dot] = ACTIONS(1546), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1546), + [sym__list_marker_example] = ACTIONS(1546), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1546), + [sym__fenced_code_block_start_backtick] = ACTIONS(1546), + [sym__fenced_code_block_start_tilde] = ACTIONS(1546), + [sym__blank_line_start] = ACTIONS(1546), + [sym_minus_metadata] = ACTIONS(1546), + [sym__pipe_table_start] = ACTIONS(1546), + [sym__fenced_div_start] = ACTIONS(1546), + [sym_ref_id_specifier] = ACTIONS(1546), + [sym__display_math_state_track_marker] = ACTIONS(1546), + [sym__inline_math_state_track_marker] = ACTIONS(1546), + }, + [STATE(463)] = { + [ts_builtin_sym_end] = ACTIONS(1548), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_EQ] = ACTIONS(1548), + [anon_sym_SQUOTE] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_DQUOTE] = ACTIONS(1548), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1548), + [anon_sym_PERCENT] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_RPAREN] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_COMMA] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_DOT] = ACTIONS(1548), + [anon_sym_SLASH] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_GT] = ACTIONS(1548), + [anon_sym_QMARK] = ACTIONS(1548), + [anon_sym_AT] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_BSLASH] = ACTIONS(1548), + [anon_sym_RBRACK] = ACTIONS(1548), + [anon_sym_CARET] = ACTIONS(1548), + [anon_sym__] = ACTIONS(1548), + [anon_sym_BQUOTE] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1548), + [sym__word] = ACTIONS(1548), + [sym__soft_line_ending] = ACTIONS(1548), + [sym__block_quote_start] = ACTIONS(1548), + [sym__indented_chunk_start] = ACTIONS(1548), + [sym_atx_h1_marker] = ACTIONS(1548), + [sym_atx_h2_marker] = ACTIONS(1548), + [sym_atx_h3_marker] = ACTIONS(1548), + [sym_atx_h4_marker] = ACTIONS(1548), + [sym_atx_h5_marker] = ACTIONS(1548), + [sym_atx_h6_marker] = ACTIONS(1548), + [sym__thematic_break] = ACTIONS(1548), + [sym__list_marker_minus] = ACTIONS(1548), + [sym__list_marker_plus] = ACTIONS(1548), + [sym__list_marker_star] = ACTIONS(1548), + [sym__list_marker_parenthesis] = ACTIONS(1548), + [sym__list_marker_dot] = ACTIONS(1548), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1548), + [sym__list_marker_example] = ACTIONS(1548), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1548), + [sym__fenced_code_block_start_backtick] = ACTIONS(1548), + [sym__fenced_code_block_start_tilde] = ACTIONS(1548), + [sym__blank_line_start] = ACTIONS(1548), + [sym_minus_metadata] = ACTIONS(1548), + [sym__pipe_table_start] = ACTIONS(1548), + [sym__fenced_div_start] = ACTIONS(1548), + [sym_ref_id_specifier] = ACTIONS(1548), + [sym__display_math_state_track_marker] = ACTIONS(1548), + [sym__inline_math_state_track_marker] = ACTIONS(1548), + }, + [STATE(464)] = { + [ts_builtin_sym_end] = ACTIONS(1550), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_EQ] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_BANG] = ACTIONS(1550), + [anon_sym_DQUOTE] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_DOLLAR] = ACTIONS(1550), + [anon_sym_PERCENT] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_RPAREN] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1550), + [anon_sym_COMMA] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1550), + [anon_sym_DOT] = ACTIONS(1550), + [anon_sym_SLASH] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1550), + [anon_sym_GT] = ACTIONS(1550), + [anon_sym_QMARK] = ACTIONS(1550), + [anon_sym_AT] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_BSLASH] = ACTIONS(1550), + [anon_sym_RBRACK] = ACTIONS(1550), + [anon_sym_CARET] = ACTIONS(1550), + [anon_sym__] = ACTIONS(1550), + [anon_sym_BQUOTE] = ACTIONS(1550), + [anon_sym_PIPE] = ACTIONS(1550), + [anon_sym_TILDE] = ACTIONS(1550), + [sym__word] = ACTIONS(1550), + [sym__soft_line_ending] = ACTIONS(1550), + [sym__block_quote_start] = ACTIONS(1550), + [sym__indented_chunk_start] = ACTIONS(1550), + [sym_atx_h1_marker] = ACTIONS(1550), + [sym_atx_h2_marker] = ACTIONS(1550), + [sym_atx_h3_marker] = ACTIONS(1550), + [sym_atx_h4_marker] = ACTIONS(1550), + [sym_atx_h5_marker] = ACTIONS(1550), + [sym_atx_h6_marker] = ACTIONS(1550), + [sym__thematic_break] = ACTIONS(1550), + [sym__list_marker_minus] = ACTIONS(1550), + [sym__list_marker_plus] = ACTIONS(1550), + [sym__list_marker_star] = ACTIONS(1550), + [sym__list_marker_parenthesis] = ACTIONS(1550), + [sym__list_marker_dot] = ACTIONS(1550), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1550), + [sym__list_marker_example] = ACTIONS(1550), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1550), + [sym__fenced_code_block_start_backtick] = ACTIONS(1550), + [sym__fenced_code_block_start_tilde] = ACTIONS(1550), + [sym__blank_line_start] = ACTIONS(1550), + [sym_minus_metadata] = ACTIONS(1550), + [sym__pipe_table_start] = ACTIONS(1550), + [sym__fenced_div_start] = ACTIONS(1550), + [sym_ref_id_specifier] = ACTIONS(1550), + [sym__display_math_state_track_marker] = ACTIONS(1550), + [sym__inline_math_state_track_marker] = ACTIONS(1550), + }, + [STATE(465)] = { + [ts_builtin_sym_end] = ACTIONS(1552), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_DQUOTE] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_DOLLAR] = ACTIONS(1552), + [anon_sym_PERCENT] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_RPAREN] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_COMMA] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1552), + [anon_sym_AT] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_BSLASH] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_CARET] = ACTIONS(1552), + [anon_sym__] = ACTIONS(1552), + [anon_sym_BQUOTE] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1552), + [sym__word] = ACTIONS(1552), + [sym__soft_line_ending] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1552), + [sym__indented_chunk_start] = ACTIONS(1552), + [sym_atx_h1_marker] = ACTIONS(1552), + [sym_atx_h2_marker] = ACTIONS(1552), + [sym_atx_h3_marker] = ACTIONS(1552), + [sym_atx_h4_marker] = ACTIONS(1552), + [sym_atx_h5_marker] = ACTIONS(1552), + [sym_atx_h6_marker] = ACTIONS(1552), + [sym__thematic_break] = ACTIONS(1552), + [sym__list_marker_minus] = ACTIONS(1552), + [sym__list_marker_plus] = ACTIONS(1552), + [sym__list_marker_star] = ACTIONS(1552), + [sym__list_marker_parenthesis] = ACTIONS(1552), + [sym__list_marker_dot] = ACTIONS(1552), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1552), + [sym__list_marker_example] = ACTIONS(1552), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1552), + [sym__fenced_code_block_start_backtick] = ACTIONS(1552), + [sym__fenced_code_block_start_tilde] = ACTIONS(1552), + [sym__blank_line_start] = ACTIONS(1552), + [sym_minus_metadata] = ACTIONS(1552), + [sym__pipe_table_start] = ACTIONS(1552), + [sym__fenced_div_start] = ACTIONS(1552), + [sym_ref_id_specifier] = ACTIONS(1552), + [sym__display_math_state_track_marker] = ACTIONS(1552), + [sym__inline_math_state_track_marker] = ACTIONS(1552), + }, + [STATE(466)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_DOLLAR] = ACTIONS(1420), + [anon_sym_PERCENT] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1420), + [anon_sym_SLASH] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_AT] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_BSLASH] = ACTIONS(1420), + [anon_sym_RBRACK] = ACTIONS(1420), + [anon_sym_CARET] = ACTIONS(1420), + [anon_sym__] = ACTIONS(1420), + [anon_sym_BQUOTE] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [sym__word] = ACTIONS(1420), + [sym__soft_line_ending] = ACTIONS(1420), + [sym__block_close] = ACTIONS(1420), + [sym__block_quote_start] = ACTIONS(1420), + [sym__indented_chunk_start] = ACTIONS(1420), + [sym_atx_h1_marker] = ACTIONS(1420), + [sym_atx_h2_marker] = ACTIONS(1420), + [sym_atx_h3_marker] = ACTIONS(1420), + [sym_atx_h4_marker] = ACTIONS(1420), + [sym_atx_h5_marker] = ACTIONS(1420), + [sym_atx_h6_marker] = ACTIONS(1420), + [sym__thematic_break] = ACTIONS(1420), + [sym__list_marker_minus] = ACTIONS(1420), + [sym__list_marker_plus] = ACTIONS(1420), + [sym__list_marker_star] = ACTIONS(1420), + [sym__list_marker_parenthesis] = ACTIONS(1420), + [sym__list_marker_dot] = ACTIONS(1420), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1420), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1420), + [sym__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), + }, + [STATE(467)] = { + [ts_builtin_sym_end] = ACTIONS(1554), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_BANG] = ACTIONS(1554), + [anon_sym_DQUOTE] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_PERCENT] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_STAR] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1554), + [anon_sym_COMMA] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_SLASH] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1554), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_QMARK] = ACTIONS(1554), + [anon_sym_AT] = ACTIONS(1554), + [anon_sym_LBRACK] = ACTIONS(1554), + [anon_sym_BSLASH] = ACTIONS(1554), + [anon_sym_RBRACK] = ACTIONS(1554), + [anon_sym_CARET] = ACTIONS(1554), + [anon_sym__] = ACTIONS(1554), + [anon_sym_BQUOTE] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_TILDE] = ACTIONS(1554), + [sym__word] = ACTIONS(1554), + [sym__soft_line_ending] = ACTIONS(1554), + [sym__block_quote_start] = ACTIONS(1554), + [sym__indented_chunk_start] = ACTIONS(1554), + [sym_atx_h1_marker] = ACTIONS(1554), + [sym_atx_h2_marker] = ACTIONS(1554), + [sym_atx_h3_marker] = ACTIONS(1554), + [sym_atx_h4_marker] = ACTIONS(1554), + [sym_atx_h5_marker] = ACTIONS(1554), + [sym_atx_h6_marker] = ACTIONS(1554), + [sym__thematic_break] = ACTIONS(1554), + [sym__list_marker_minus] = ACTIONS(1554), + [sym__list_marker_plus] = ACTIONS(1554), + [sym__list_marker_star] = ACTIONS(1554), + [sym__list_marker_parenthesis] = ACTIONS(1554), + [sym__list_marker_dot] = ACTIONS(1554), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1554), + [sym__list_marker_example] = ACTIONS(1554), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1554), + [sym__fenced_code_block_start_backtick] = ACTIONS(1554), + [sym__fenced_code_block_start_tilde] = ACTIONS(1554), + [sym__blank_line_start] = ACTIONS(1554), + [sym_minus_metadata] = ACTIONS(1554), + [sym__pipe_table_start] = ACTIONS(1554), + [sym__fenced_div_start] = ACTIONS(1554), + [sym_ref_id_specifier] = ACTIONS(1554), + [sym__display_math_state_track_marker] = ACTIONS(1554), + [sym__inline_math_state_track_marker] = ACTIONS(1554), + }, + [STATE(468)] = { + [ts_builtin_sym_end] = ACTIONS(1556), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_DOLLAR] = ACTIONS(1556), + [anon_sym_PERCENT] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_DOT] = ACTIONS(1556), + [anon_sym_SLASH] = ACTIONS(1556), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_QMARK] = ACTIONS(1556), + [anon_sym_AT] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_BSLASH] = ACTIONS(1556), + [anon_sym_RBRACK] = ACTIONS(1556), + [anon_sym_CARET] = ACTIONS(1556), + [anon_sym__] = ACTIONS(1556), + [anon_sym_BQUOTE] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_TILDE] = ACTIONS(1556), + [sym__word] = ACTIONS(1556), + [sym__soft_line_ending] = ACTIONS(1556), + [sym__block_quote_start] = ACTIONS(1556), + [sym__indented_chunk_start] = ACTIONS(1556), + [sym_atx_h1_marker] = ACTIONS(1556), + [sym_atx_h2_marker] = ACTIONS(1556), + [sym_atx_h3_marker] = ACTIONS(1556), + [sym_atx_h4_marker] = ACTIONS(1556), + [sym_atx_h5_marker] = ACTIONS(1556), + [sym_atx_h6_marker] = ACTIONS(1556), + [sym__thematic_break] = ACTIONS(1556), + [sym__list_marker_minus] = ACTIONS(1556), + [sym__list_marker_plus] = ACTIONS(1556), + [sym__list_marker_star] = ACTIONS(1556), + [sym__list_marker_parenthesis] = ACTIONS(1556), + [sym__list_marker_dot] = ACTIONS(1556), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1556), + [sym__list_marker_example] = ACTIONS(1556), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1556), + [sym__fenced_code_block_start_backtick] = ACTIONS(1556), + [sym__fenced_code_block_start_tilde] = ACTIONS(1556), + [sym__blank_line_start] = ACTIONS(1556), + [sym_minus_metadata] = ACTIONS(1556), + [sym__pipe_table_start] = ACTIONS(1556), + [sym__fenced_div_start] = ACTIONS(1556), + [sym_ref_id_specifier] = ACTIONS(1556), + [sym__display_math_state_track_marker] = ACTIONS(1556), + [sym__inline_math_state_track_marker] = ACTIONS(1556), + }, + [STATE(469)] = { + [ts_builtin_sym_end] = ACTIONS(1558), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1558), + [anon_sym_EQ] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DQUOTE] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1558), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_PERCENT] = ACTIONS(1558), + [anon_sym_AMP] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1558), + [anon_sym_PLUS] = ACTIONS(1558), + [anon_sym_COMMA] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1558), + [anon_sym_DOT] = ACTIONS(1558), + [anon_sym_SLASH] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1558), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_QMARK] = ACTIONS(1558), + [anon_sym_AT] = ACTIONS(1558), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_BSLASH] = ACTIONS(1558), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_CARET] = ACTIONS(1558), + [anon_sym__] = ACTIONS(1558), + [anon_sym_BQUOTE] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [sym__word] = ACTIONS(1558), + [sym__soft_line_ending] = ACTIONS(1558), + [sym__block_quote_start] = ACTIONS(1558), + [sym__indented_chunk_start] = ACTIONS(1558), + [sym_atx_h1_marker] = ACTIONS(1558), + [sym_atx_h2_marker] = ACTIONS(1558), + [sym_atx_h3_marker] = ACTIONS(1558), + [sym_atx_h4_marker] = ACTIONS(1558), + [sym_atx_h5_marker] = ACTIONS(1558), + [sym_atx_h6_marker] = ACTIONS(1558), + [sym__thematic_break] = ACTIONS(1558), + [sym__list_marker_minus] = ACTIONS(1558), + [sym__list_marker_plus] = ACTIONS(1558), + [sym__list_marker_star] = ACTIONS(1558), + [sym__list_marker_parenthesis] = ACTIONS(1558), + [sym__list_marker_dot] = ACTIONS(1558), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1558), + [sym__list_marker_example] = ACTIONS(1558), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1558), + [sym__fenced_code_block_start_backtick] = ACTIONS(1558), + [sym__fenced_code_block_start_tilde] = ACTIONS(1558), + [sym__blank_line_start] = ACTIONS(1558), + [sym_minus_metadata] = ACTIONS(1558), + [sym__pipe_table_start] = ACTIONS(1558), + [sym__fenced_div_start] = ACTIONS(1558), + [sym_ref_id_specifier] = ACTIONS(1558), + [sym__display_math_state_track_marker] = ACTIONS(1558), + [sym__inline_math_state_track_marker] = ACTIONS(1558), + }, + [STATE(470)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PERCENT] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1424), + [anon_sym_QMARK] = ACTIONS(1424), + [anon_sym_AT] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1424), + [anon_sym_RBRACK] = ACTIONS(1424), + [anon_sym_CARET] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BQUOTE] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [sym__word] = ACTIONS(1424), + [sym__soft_line_ending] = ACTIONS(1424), + [sym__block_close] = ACTIONS(1424), + [sym__block_quote_start] = ACTIONS(1424), + [sym__indented_chunk_start] = ACTIONS(1424), + [sym_atx_h1_marker] = ACTIONS(1424), + [sym_atx_h2_marker] = ACTIONS(1424), + [sym_atx_h3_marker] = ACTIONS(1424), + [sym_atx_h4_marker] = ACTIONS(1424), + [sym_atx_h5_marker] = ACTIONS(1424), + [sym_atx_h6_marker] = ACTIONS(1424), + [sym__thematic_break] = ACTIONS(1424), + [sym__list_marker_minus] = ACTIONS(1424), + [sym__list_marker_plus] = ACTIONS(1424), + [sym__list_marker_star] = ACTIONS(1424), + [sym__list_marker_parenthesis] = ACTIONS(1424), + [sym__list_marker_dot] = ACTIONS(1424), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1424), + [sym__list_marker_example] = ACTIONS(1424), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1424), + [sym__fenced_code_block_start_backtick] = ACTIONS(1424), + [sym__fenced_code_block_start_tilde] = ACTIONS(1424), + [sym__blank_line_start] = ACTIONS(1424), + [sym_minus_metadata] = ACTIONS(1424), + [sym__pipe_table_start] = ACTIONS(1424), + [sym__fenced_div_start] = ACTIONS(1424), + [sym_ref_id_specifier] = ACTIONS(1424), + [sym__display_math_state_track_marker] = ACTIONS(1424), + [sym__inline_math_state_track_marker] = ACTIONS(1424), + }, + [STATE(471)] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BQUOTE] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [sym__word] = ACTIONS(1476), + [sym__soft_line_ending] = ACTIONS(1476), + [sym__block_quote_start] = ACTIONS(1476), + [sym__indented_chunk_start] = ACTIONS(1476), + [sym_atx_h1_marker] = ACTIONS(1476), + [sym_atx_h2_marker] = ACTIONS(1476), + [sym_atx_h3_marker] = ACTIONS(1476), + [sym_atx_h4_marker] = ACTIONS(1476), + [sym_atx_h5_marker] = ACTIONS(1476), + [sym_atx_h6_marker] = ACTIONS(1476), + [sym__thematic_break] = ACTIONS(1476), + [sym__list_marker_minus] = ACTIONS(1476), + [sym__list_marker_plus] = ACTIONS(1476), + [sym__list_marker_star] = ACTIONS(1476), + [sym__list_marker_parenthesis] = ACTIONS(1476), + [sym__list_marker_dot] = ACTIONS(1476), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1476), + [sym__list_marker_example] = ACTIONS(1476), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1476), + [sym__fenced_code_block_start_backtick] = ACTIONS(1476), + [sym__fenced_code_block_start_tilde] = ACTIONS(1476), + [sym__blank_line_start] = ACTIONS(1476), + [sym_minus_metadata] = ACTIONS(1476), + [sym__pipe_table_start] = ACTIONS(1476), + [sym__fenced_div_start] = ACTIONS(1476), + [sym_ref_id_specifier] = ACTIONS(1476), + [sym__display_math_state_track_marker] = ACTIONS(1476), + [sym__inline_math_state_track_marker] = ACTIONS(1476), + }, + [STATE(472)] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym__] = ACTIONS(1480), + [anon_sym_BQUOTE] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [sym__word] = ACTIONS(1480), + [sym__soft_line_ending] = ACTIONS(1480), + [sym__block_quote_start] = ACTIONS(1480), + [sym__indented_chunk_start] = ACTIONS(1480), + [sym_atx_h1_marker] = ACTIONS(1480), + [sym_atx_h2_marker] = ACTIONS(1480), + [sym_atx_h3_marker] = ACTIONS(1480), + [sym_atx_h4_marker] = ACTIONS(1480), + [sym_atx_h5_marker] = ACTIONS(1480), + [sym_atx_h6_marker] = ACTIONS(1480), + [sym__thematic_break] = ACTIONS(1480), + [sym__list_marker_minus] = ACTIONS(1480), + [sym__list_marker_plus] = ACTIONS(1480), + [sym__list_marker_star] = ACTIONS(1480), + [sym__list_marker_parenthesis] = ACTIONS(1480), + [sym__list_marker_dot] = ACTIONS(1480), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1480), + [sym__list_marker_example] = ACTIONS(1480), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1480), + [sym__fenced_code_block_start_backtick] = ACTIONS(1480), + [sym__fenced_code_block_start_tilde] = ACTIONS(1480), + [sym__blank_line_start] = ACTIONS(1480), + [sym_minus_metadata] = ACTIONS(1480), + [sym__pipe_table_start] = ACTIONS(1480), + [sym__fenced_div_start] = ACTIONS(1480), + [sym_ref_id_specifier] = ACTIONS(1480), + [sym__display_math_state_track_marker] = ACTIONS(1480), + [sym__inline_math_state_track_marker] = ACTIONS(1480), + }, + [STATE(473)] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym__] = ACTIONS(1484), + [anon_sym_BQUOTE] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [sym__word] = ACTIONS(1484), + [sym__soft_line_ending] = ACTIONS(1484), + [sym__block_quote_start] = ACTIONS(1484), + [sym__indented_chunk_start] = ACTIONS(1484), + [sym_atx_h1_marker] = ACTIONS(1484), + [sym_atx_h2_marker] = ACTIONS(1484), + [sym_atx_h3_marker] = ACTIONS(1484), + [sym_atx_h4_marker] = ACTIONS(1484), + [sym_atx_h5_marker] = ACTIONS(1484), + [sym_atx_h6_marker] = ACTIONS(1484), + [sym__thematic_break] = ACTIONS(1484), + [sym__list_marker_minus] = ACTIONS(1484), + [sym__list_marker_plus] = ACTIONS(1484), + [sym__list_marker_star] = ACTIONS(1484), + [sym__list_marker_parenthesis] = ACTIONS(1484), + [sym__list_marker_dot] = ACTIONS(1484), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1484), + [sym__list_marker_example] = ACTIONS(1484), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1484), + [sym__fenced_code_block_start_backtick] = ACTIONS(1484), + [sym__fenced_code_block_start_tilde] = ACTIONS(1484), + [sym__blank_line_start] = ACTIONS(1484), + [sym_minus_metadata] = ACTIONS(1484), + [sym__pipe_table_start] = ACTIONS(1484), + [sym__fenced_div_start] = ACTIONS(1484), + [sym_ref_id_specifier] = ACTIONS(1484), + [sym__display_math_state_track_marker] = ACTIONS(1484), + [sym__inline_math_state_track_marker] = ACTIONS(1484), + }, + [STATE(474)] = { + [ts_builtin_sym_end] = ACTIONS(1562), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1562), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(1562), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1562), + [anon_sym_AT] = ACTIONS(1562), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_BSLASH] = ACTIONS(1562), + [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), + [sym__word] = ACTIONS(1562), + [sym__soft_line_ending] = ACTIONS(1562), + [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), + }, + [STATE(475)] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BQUOTE] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [sym__word] = ACTIONS(1488), + [sym__soft_line_ending] = ACTIONS(1488), + [sym__block_quote_start] = ACTIONS(1488), + [sym__indented_chunk_start] = ACTIONS(1488), + [sym_atx_h1_marker] = ACTIONS(1488), + [sym_atx_h2_marker] = ACTIONS(1488), + [sym_atx_h3_marker] = ACTIONS(1488), + [sym_atx_h4_marker] = ACTIONS(1488), + [sym_atx_h5_marker] = ACTIONS(1488), + [sym_atx_h6_marker] = ACTIONS(1488), + [sym__thematic_break] = ACTIONS(1488), + [sym__list_marker_minus] = ACTIONS(1488), + [sym__list_marker_plus] = ACTIONS(1488), + [sym__list_marker_star] = ACTIONS(1488), + [sym__list_marker_parenthesis] = ACTIONS(1488), + [sym__list_marker_dot] = ACTIONS(1488), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1488), + [sym__list_marker_example] = ACTIONS(1488), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1488), + [sym__fenced_code_block_start_backtick] = ACTIONS(1488), + [sym__fenced_code_block_start_tilde] = ACTIONS(1488), + [sym__blank_line_start] = ACTIONS(1488), + [sym_minus_metadata] = ACTIONS(1488), + [sym__pipe_table_start] = ACTIONS(1488), + [sym__fenced_div_start] = ACTIONS(1488), + [sym_ref_id_specifier] = ACTIONS(1488), + [sym__display_math_state_track_marker] = ACTIONS(1488), + [sym__inline_math_state_track_marker] = ACTIONS(1488), + }, + [STATE(476)] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym__] = ACTIONS(1492), + [anon_sym_BQUOTE] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [sym__word] = ACTIONS(1492), + [sym__soft_line_ending] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1492), + [sym__indented_chunk_start] = ACTIONS(1492), + [sym_atx_h1_marker] = ACTIONS(1492), + [sym_atx_h2_marker] = ACTIONS(1492), + [sym_atx_h3_marker] = ACTIONS(1492), + [sym_atx_h4_marker] = ACTIONS(1492), + [sym_atx_h5_marker] = ACTIONS(1492), + [sym_atx_h6_marker] = ACTIONS(1492), + [sym__thematic_break] = ACTIONS(1492), + [sym__list_marker_minus] = ACTIONS(1492), + [sym__list_marker_plus] = ACTIONS(1492), + [sym__list_marker_star] = ACTIONS(1492), + [sym__list_marker_parenthesis] = ACTIONS(1492), + [sym__list_marker_dot] = ACTIONS(1492), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1492), + [sym__list_marker_example] = ACTIONS(1492), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1492), + [sym__fenced_code_block_start_backtick] = ACTIONS(1492), + [sym__fenced_code_block_start_tilde] = ACTIONS(1492), + [sym__blank_line_start] = ACTIONS(1492), + [sym_minus_metadata] = ACTIONS(1492), + [sym__pipe_table_start] = ACTIONS(1492), + [sym__fenced_div_start] = ACTIONS(1492), + [sym_ref_id_specifier] = ACTIONS(1492), + [sym__display_math_state_track_marker] = ACTIONS(1492), + [sym__inline_math_state_track_marker] = ACTIONS(1492), + }, + [STATE(477)] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym__] = ACTIONS(1496), + [anon_sym_BQUOTE] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [sym__word] = ACTIONS(1496), + [sym__soft_line_ending] = ACTIONS(1496), + [sym__block_quote_start] = ACTIONS(1496), + [sym__indented_chunk_start] = ACTIONS(1496), + [sym_atx_h1_marker] = ACTIONS(1496), + [sym_atx_h2_marker] = ACTIONS(1496), + [sym_atx_h3_marker] = ACTIONS(1496), + [sym_atx_h4_marker] = ACTIONS(1496), + [sym_atx_h5_marker] = ACTIONS(1496), + [sym_atx_h6_marker] = ACTIONS(1496), + [sym__thematic_break] = ACTIONS(1496), + [sym__list_marker_minus] = ACTIONS(1496), + [sym__list_marker_plus] = ACTIONS(1496), + [sym__list_marker_star] = ACTIONS(1496), + [sym__list_marker_parenthesis] = ACTIONS(1496), + [sym__list_marker_dot] = ACTIONS(1496), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1496), + [sym__list_marker_example] = ACTIONS(1496), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1496), + [sym__fenced_code_block_start_backtick] = ACTIONS(1496), + [sym__fenced_code_block_start_tilde] = ACTIONS(1496), + [sym__blank_line_start] = ACTIONS(1496), + [sym_minus_metadata] = ACTIONS(1496), + [sym__pipe_table_start] = ACTIONS(1496), + [sym__fenced_div_start] = ACTIONS(1496), + [sym_ref_id_specifier] = ACTIONS(1496), + [sym__display_math_state_track_marker] = ACTIONS(1496), + [sym__inline_math_state_track_marker] = ACTIONS(1496), + }, + [STATE(478)] = { + [ts_builtin_sym_end] = ACTIONS(1590), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [sym__word] = ACTIONS(1590), + [sym__soft_line_ending] = ACTIONS(1590), + [sym__block_quote_start] = ACTIONS(1590), + [sym__indented_chunk_start] = ACTIONS(1590), + [sym_atx_h1_marker] = ACTIONS(1590), + [sym_atx_h2_marker] = ACTIONS(1590), + [sym_atx_h3_marker] = ACTIONS(1590), + [sym_atx_h4_marker] = ACTIONS(1590), + [sym_atx_h5_marker] = ACTIONS(1590), + [sym_atx_h6_marker] = ACTIONS(1590), + [sym__thematic_break] = ACTIONS(1590), + [sym__list_marker_minus] = ACTIONS(1590), + [sym__list_marker_plus] = ACTIONS(1590), + [sym__list_marker_star] = ACTIONS(1590), + [sym__list_marker_parenthesis] = ACTIONS(1590), + [sym__list_marker_dot] = ACTIONS(1590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_example] = ACTIONS(1590), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1590), + [sym__fenced_code_block_start_backtick] = ACTIONS(1590), + [sym__fenced_code_block_start_tilde] = ACTIONS(1590), + [sym__blank_line_start] = ACTIONS(1590), + [sym_minus_metadata] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1590), + [sym__fenced_div_start] = ACTIONS(1590), + [sym_ref_id_specifier] = ACTIONS(1590), + [sym__display_math_state_track_marker] = ACTIONS(1590), + [sym__inline_math_state_track_marker] = ACTIONS(1590), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 14, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1682), 1, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1684), 1, + ACTIONS(1740), 1, anon_sym_PIPE, - ACTIONS(1688), 1, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - STATE(459), 1, + STATE(483), 1, aux_sym_pipe_table_row_repeat1, - STATE(555), 1, + STATE(576), 1, sym__whitespace, - STATE(747), 1, + STATE(765), 1, sym_pipe_table_cell, - STATE(759), 1, + STATE(782), 1, sym__pipe_table_cell_contents, - STATE(833), 1, + STATE(840), 1, sym_pipe_table_row, - STATE(465), 2, + STATE(493), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1686), 3, + ACTIONS(1742), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1676), 4, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1680), 30, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -39989,41 +43483,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [17745] = 15, - ACTIONS(1692), 1, + [78] = 15, + ACTIONS(1748), 1, sym_raw_specifier, - ACTIONS(1694), 1, + ACTIONS(1750), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1698), 1, + ACTIONS(1754), 1, anon_sym_RBRACE, - ACTIONS(1700), 1, + ACTIONS(1756), 1, sym_commonmark_name, - ACTIONS(1702), 1, + ACTIONS(1758), 1, sym_id_specifier, - ACTIONS(1704), 1, + ACTIONS(1760), 1, sym_class_specifier, - ACTIONS(1708), 1, + ACTIONS(1764), 1, sym_key_value_key, - STATE(648), 1, + STATE(667), 1, sym__last_token_punctuation, - STATE(675), 1, + STATE(704), 1, sym__commonmark_whitespace, - STATE(680), 1, + STATE(708), 1, aux_sym_commonmark_attribute_repeat1, - STATE(702), 1, + STATE(745), 1, aux_sym_commonmark_attribute_repeat2, - STATE(760), 1, + STATE(784), 1, aux_sym_commonmark_attribute_repeat3, - STATE(761), 1, + STATE(790), 1, sym__attribute, - ACTIONS(1706), 6, + ACTIONS(1762), 6, anon_sym_EQ, anon_sym_POUND, anon_sym_DOT, anon_sym_LT, anon_sym__, sym__word, - ACTIONS(1696), 29, + ACTIONS(1752), 29, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -40053,36 +43547,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [17824] = 12, - ACTIONS(1713), 1, + [157] = 12, + ACTIONS(1769), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1719), 1, + ACTIONS(1775), 1, anon_sym_BSLASH, - ACTIONS(1724), 1, + ACTIONS(1780), 1, sym__code_span_start, - ACTIONS(1727), 1, + ACTIONS(1783), 1, sym__latex_span_start, - STATE(456), 1, + STATE(481), 1, aux_sym_pipe_table_row_repeat1, - STATE(549), 1, + STATE(577), 1, sym__whitespace, - STATE(827), 1, + STATE(839), 1, sym_pipe_table_cell, - STATE(888), 1, + STATE(910), 1, sym__pipe_table_cell_contents, - STATE(539), 2, + STATE(559), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1722), 3, + ACTIONS(1778), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1710), 4, + ACTIONS(1766), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1716), 30, + ACTIONS(1772), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40113,36 +43607,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [17896] = 12, - ACTIONS(1678), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1682), 1, + [229] = 12, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1688), 1, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - STATE(458), 1, + ACTIONS(1786), 1, + aux_sym__commonmark_whitespace_token1, + STATE(481), 1, aux_sym_pipe_table_row_repeat1, - STATE(563), 1, + STATE(521), 1, sym__whitespace, - STATE(749), 1, + STATE(755), 1, sym_pipe_table_cell, - STATE(759), 1, + STATE(782), 1, sym__pipe_table_cell_contents, - STATE(465), 2, + STATE(493), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1730), 3, + ACTIONS(1788), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1676), 4, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1680), 30, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40173,36 +43667,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [17968] = 12, - ACTIONS(1682), 1, + [301] = 12, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1688), 1, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1732), 1, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - STATE(456), 1, + STATE(481), 1, aux_sym_pipe_table_row_repeat1, - STATE(488), 1, + STATE(515), 1, sym__whitespace, - STATE(752), 1, + STATE(758), 1, sym_pipe_table_cell, - STATE(759), 1, + STATE(782), 1, sym__pipe_table_cell_contents, - STATE(465), 2, + STATE(493), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1734), 3, + ACTIONS(1790), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1676), 4, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1680), 30, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40233,36 +43727,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [18040] = 12, - ACTIONS(1682), 1, - anon_sym_BSLASH, - ACTIONS(1688), 1, + [373] = 8, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1732), 1, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - STATE(456), 1, - aux_sym_pipe_table_row_repeat1, - STATE(511), 1, - sym__whitespace, - STATE(741), 1, - sym_pipe_table_cell, - STATE(759), 1, - sym__pipe_table_cell_contents, - STATE(465), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1736), 3, + ACTIONS(1794), 1, + anon_sym_BSLASH, + STATE(489), 1, + sym__last_token_punctuation, + ACTIONS(1796), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1676), 4, + anon_sym_PIPE, + STATE(508), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1792), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1680), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40293,31 +43782,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [18112] = 8, - ACTIONS(1688), 1, + sym__word, + [437] = 12, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1732), 1, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1740), 1, - anon_sym_BSLASH, - STATE(469), 1, - sym__last_token_punctuation, - ACTIONS(1742), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(468), 4, + STATE(481), 1, + aux_sym_pipe_table_row_repeat1, + STATE(519), 1, sym__whitespace, + STATE(776), 1, + sym_pipe_table_cell, + STATE(782), 1, + sym__pipe_table_cell_contents, + STATE(493), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1738), 34, + ACTIONS(1798), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40348,37 +43843,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [18176] = 12, - ACTIONS(1682), 1, + [509] = 12, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1688), 1, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1732), 1, - aux_sym__commonmark_whitespace_token1, - STATE(456), 1, + STATE(482), 1, aux_sym_pipe_table_row_repeat1, - STATE(499), 1, + STATE(592), 1, sym__whitespace, - STATE(749), 1, + STATE(776), 1, sym_pipe_table_cell, - STATE(759), 1, + STATE(782), 1, sym__pipe_table_cell_contents, - STATE(465), 2, + STATE(493), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1744), 3, + ACTIONS(1800), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1676), 4, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1680), 30, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40409,30 +43903,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [18248] = 11, - ACTIONS(1746), 1, + [581] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1808), 1, sym__line_ending, - STATE(452), 1, + STATE(354), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(722), 1, + STATE(737), 1, sym__atx_heading_content, - STATE(943), 1, + STATE(942), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -40467,97 +43961,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18317] = 13, - ACTIONS(1678), 1, + [650] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1760), 1, - anon_sym_PIPE, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - STATE(501), 1, - aux_sym_pipe_table_row_repeat1, - STATE(551), 1, - sym__whitespace, - STATE(787), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(960), 1, - sym_pipe_table_row, - STATE(520), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1754), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1756), 30, + ACTIONS(1804), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [18390] = 13, - ACTIONS(1678), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1760), 1, - anon_sym_PIPE, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - STATE(501), 1, - aux_sym_pipe_table_row_repeat1, - STATE(551), 1, + ACTIONS(1810), 1, + sym__line_ending, + STATE(348), 1, + sym__newline, + STATE(622), 1, sym__whitespace, - STATE(787), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(920), 1, - sym_pipe_table_row, - STATE(520), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1754), 4, + STATE(653), 1, + aux_sym__code_line_repeat1, + STATE(746), 1, + sym__atx_heading_content, + STATE(905), 1, + sym__qmd_attribute, + STATE(950), 1, + sym__atx_heading_line, + STATE(1030), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1756), 30, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -40582,31 +44011,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, - [18463] = 7, - ACTIONS(1688), 1, + sym__word, + [719] = 7, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1732), 1, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1740), 1, + ACTIONS(1814), 1, anon_sym_BSLASH, - ACTIONS(1742), 4, + ACTIONS(1816), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_PIPE, - STATE(468), 4, + STATE(491), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1738), 34, + ACTIONS(1812), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -40641,90 +44073,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [18524] = 11, - ACTIONS(1746), 1, + [780] = 7, + ACTIONS(1821), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, - anon_sym_LBRACE, - ACTIONS(1752), 1, - sym__line_ending, - STATE(332), 1, - sym__newline, - STATE(598), 1, - sym__whitespace, - STATE(621), 1, - aux_sym__code_line_repeat1, - STATE(698), 1, - sym__atx_heading_content, - STATE(895), 1, - sym__qmd_attribute, - STATE(946), 1, - sym__atx_heading_line, - STATE(1028), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - ACTIONS(1750), 34, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(1824), 1, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [18593] = 11, - ACTIONS(1746), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, - anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1829), 1, + sym__code_span_start, + ACTIONS(1832), 1, + sym__latex_span_start, + ACTIONS(1827), 4, sym__line_ending, - STATE(305), 1, - sym__newline, - STATE(598), 1, - sym__whitespace, - STATE(621), 1, - aux_sym__code_line_repeat1, - STATE(710), 1, - sym__atx_heading_content, - STATE(946), 1, - sym__atx_heading_line, - STATE(958), 1, - sym__qmd_attribute, - STATE(1028), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - ACTIONS(1750), 34, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(490), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -40749,34 +44121,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18662] = 7, - ACTIONS(1688), 1, + [841] = 7, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1732), 1, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1768), 1, + ACTIONS(1837), 1, anon_sym_BSLASH, - ACTIONS(1770), 4, + ACTIONS(1839), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_PIPE, - STATE(470), 4, + STATE(490), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1766), 34, + ACTIONS(1835), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -40811,29 +44181,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [18723] = 7, - ACTIONS(1688), 1, - sym__code_span_start, - ACTIONS(1690), 1, - sym__latex_span_start, - ACTIONS(1732), 1, + [902] = 13, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1774), 1, + ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(1770), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1847), 1, anon_sym_PIPE, - STATE(471), 4, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + STATE(518), 1, + aux_sym_pipe_table_row_repeat1, + STATE(593), 1, sym__whitespace, + STATE(805), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(941), 1, + sym_pipe_table_row, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1772), 34, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40864,27 +44241,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [18784] = 7, - ACTIONS(1779), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1782), 1, - anon_sym_BSLASH, - ACTIONS(1787), 1, + [975] = 7, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1790), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1785), 4, + ACTIONS(1786), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1794), 1, + anon_sym_BSLASH, + ACTIONS(1796), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_PIPE, - STATE(470), 4, + STATE(508), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1776), 34, + ACTIONS(1792), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -40919,29 +44295,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [18845] = 7, - ACTIONS(1688), 1, - sym__code_span_start, - ACTIONS(1690), 1, - sym__latex_span_start, - ACTIONS(1732), 1, + [1036] = 13, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1768), 1, + ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(1793), 4, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(1847), 1, anon_sym_PIPE, - STATE(470), 4, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + STATE(518), 1, + aux_sym_pipe_table_row_repeat1, + STATE(593), 1, sym__whitespace, + STATE(805), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(984), 1, + sym_pipe_table_row, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1766), 34, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -40972,31 +44355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [18906] = 11, - ACTIONS(1746), 1, + [1109] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1810), 1, sym__line_ending, - STATE(314), 1, + STATE(347), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, STATE(724), 1, sym__atx_heading_content, - STATE(908), 1, + STATE(902), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41031,30 +44413,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [18975] = 11, - ACTIONS(1746), 1, + [1178] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1808), 1, sym__line_ending, - STATE(336), 1, + STATE(355), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(711), 1, + STATE(738), 1, sym__atx_heading_content, - STATE(911), 1, + STATE(943), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41089,30 +44471,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19044] = 11, - ACTIONS(1746), 1, + [1247] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1808), 1, sym__line_ending, - STATE(338), 1, + STATE(356), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(714), 1, + STATE(739), 1, sym__atx_heading_content, - STATE(914), 1, - sym__qmd_attribute, STATE(946), 1, + sym__qmd_attribute, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41147,30 +44529,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19113] = 11, - ACTIONS(1746), 1, + [1316] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1808), 1, sym__line_ending, - STATE(339), 1, + STATE(357), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(715), 1, + STATE(740), 1, sym__atx_heading_content, - STATE(919), 1, - sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(960), 1, + sym__qmd_attribute, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41205,30 +44587,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19182] = 11, - ACTIONS(1746), 1, + [1385] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1808), 1, sym__line_ending, - STATE(340), 1, + STATE(358), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(716), 1, + STATE(741), 1, sym__atx_heading_content, - STATE(923), 1, - sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(962), 1, + sym__qmd_attribute, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41263,30 +44645,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19251] = 11, - ACTIONS(1746), 1, + [1454] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1808), 1, sym__line_ending, - STATE(341), 1, + STATE(359), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(717), 1, + STATE(742), 1, sym__atx_heading_content, - STATE(935), 1, - sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(967), 1, + sym__qmd_attribute, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41321,30 +44703,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19320] = 11, - ACTIONS(1746), 1, + [1523] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(342), 1, + STATE(210), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(718), 1, + STATE(728), 1, sym__atx_heading_content, - STATE(937), 1, + STATE(906), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41379,30 +44761,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19389] = 11, - ACTIONS(1746), 1, + [1592] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(343), 1, + STATE(211), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(719), 1, + STATE(729), 1, sym__atx_heading_content, - STATE(940), 1, + STATE(908), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41437,30 +44819,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19458] = 11, - ACTIONS(1746), 1, + [1661] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1797), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(190), 1, + STATE(212), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(704), 1, + STATE(730), 1, sym__atx_heading_content, - STATE(878), 1, + STATE(909), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41495,30 +44877,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19527] = 11, - ACTIONS(1746), 1, + [1730] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1797), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(191), 1, + STATE(213), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(705), 1, + STATE(731), 1, sym__atx_heading_content, - STATE(880), 1, + STATE(911), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41553,30 +44935,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19596] = 11, - ACTIONS(1746), 1, + [1799] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1797), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(192), 1, + STATE(214), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(706), 1, + STATE(722), 1, sym__atx_heading_content, - STATE(882), 1, + STATE(912), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41611,30 +44993,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19665] = 11, - ACTIONS(1746), 1, + [1868] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1797), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(193), 1, + STATE(215), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(707), 1, + STATE(732), 1, sym__atx_heading_content, - STATE(851), 1, + STATE(876), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41669,30 +45051,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19734] = 11, - ACTIONS(1746), 1, + [1937] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1797), 1, + ACTIONS(1810), 1, sym__line_ending, - STATE(194), 1, + STATE(331), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(708), 1, + STATE(726), 1, sym__atx_heading_content, - STATE(883), 1, + STATE(915), 1, sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41727,30 +45109,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [19803] = 11, + [2006] = 7, + ACTIONS(1744), 1, + sym__code_span_start, ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1786), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1837), 1, + anon_sym_BSLASH, + ACTIONS(1816), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(490), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1835), 34, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + sym__word, + [2067] = 11, + ACTIONS(1802), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1797), 1, + ACTIONS(1810), 1, sym__line_ending, - STATE(195), 1, + STATE(460), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(709), 1, + STATE(744), 1, sym__atx_heading_content, - STATE(884), 1, - sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(951), 1, + sym__qmd_attribute, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41781,41 +45217,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_CARET, anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [19872] = 13, - ACTIONS(1678), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1760), 1, - anon_sym_PIPE, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - STATE(501), 1, - aux_sym_pipe_table_row_repeat1, - STATE(551), 1, - sym__whitespace, - STATE(787), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(959), 1, - sym_pipe_table_row, - STATE(520), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1754), 4, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, sym__word, - ACTIONS(1756), 30, + [2136] = 11, + ACTIONS(1802), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1804), 1, anon_sym_LBRACE, + ACTIONS(1810), 1, + sym__line_ending, + STATE(318), 1, + sym__newline, + STATE(622), 1, + sym__whitespace, + STATE(653), 1, + aux_sym__code_line_repeat1, + STATE(747), 1, + sym__atx_heading_content, + STATE(950), 1, + sym__atx_heading_line, + STATE(966), 1, + sym__qmd_attribute, + STATE(1030), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1806), 34, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -41840,35 +45271,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, - [19945] = 11, - ACTIONS(1746), 1, + sym__word, + [2205] = 11, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1748), 1, + ACTIONS(1804), 1, anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1810), 1, sym__line_ending, - STATE(331), 1, + STATE(321), 1, sym__newline, - STATE(598), 1, + STATE(622), 1, sym__whitespace, - STATE(621), 1, + STATE(653), 1, aux_sym__code_line_repeat1, - STATE(713), 1, + STATE(723), 1, sym__atx_heading_content, - STATE(887), 1, - sym__qmd_attribute, - STATE(946), 1, + STATE(950), 1, sym__atx_heading_line, - STATE(1028), 3, + STATE(970), 1, + sym__qmd_attribute, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1750), 34, + ACTIONS(1806), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -41903,32 +45337,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20014] = 10, - ACTIONS(1682), 1, + [2274] = 13, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(1688), 1, + ACTIONS(1847), 1, + anon_sym_PIPE, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1851), 1, sym__latex_span_start, - ACTIONS(1799), 1, - anon_sym_PIPE, - STATE(728), 1, + STATE(518), 1, + aux_sym_pipe_table_row_repeat1, + STATE(593), 1, + sym__whitespace, + STATE(805), 1, sym_pipe_table_cell, - STATE(759), 1, + STATE(833), 1, sym__pipe_table_cell_contents, - STATE(465), 2, + STATE(982), 1, + sym_pipe_table_row, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1801), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1676), 4, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1680), 30, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -41959,34 +45397,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [20080] = 12, - ACTIONS(1713), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1719), 1, - anon_sym_BSLASH, - ACTIONS(1722), 1, + [2347] = 12, + ACTIONS(1788), 1, sym__line_ending, - ACTIONS(1724), 1, + ACTIONS(1845), 1, + anon_sym_BSLASH, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1727), 1, + ACTIONS(1851), 1, sym__latex_span_start, - STATE(489), 1, + ACTIONS(1855), 1, + aux_sym__commonmark_whitespace_token1, + STATE(538), 1, aux_sym_pipe_table_row_repeat1, - STATE(568), 1, + STATE(572), 1, sym__whitespace, - STATE(844), 1, + STATE(815), 1, sym_pipe_table_cell, - STATE(888), 1, + STATE(833), 1, sym__pipe_table_cell_contents, - STATE(539), 2, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1710), 4, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1716), 30, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42017,29 +45455,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [20150] = 8, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - ACTIONS(1805), 1, + [2417] = 8, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1807), 1, - anon_sym_BSLASH, - STATE(516), 1, - sym__last_token_punctuation, - ACTIONS(1742), 2, + ACTIONS(1861), 1, sym__line_ending, - anon_sym_PIPE, - STATE(526), 4, + ACTIONS(1863), 1, + sym__block_close, + ACTIONS(1865), 1, + sym__fenced_code_block_end_backtick, + STATE(891), 1, + sym_code_fence_content, + STATE(607), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1803), 34, + aux_sym__code_line_repeat1, + STATE(549), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42065,33 +45501,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, sym__word, - [20212] = 8, - ACTIONS(1809), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + [2479] = 10, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1867), 1, + anon_sym_PIPE, + STATE(766), 1, + sym_pipe_table_cell, + STATE(782), 1, + sym__pipe_table_cell_contents, + STATE(493), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1798), 3, sym__line_ending, - ACTIONS(1815), 1, - sym__block_close, - ACTIONS(1817), 1, - sym__fenced_code_block_end_backtick, - STATE(860), 1, - sym_code_fence_content, - STATE(585), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(525), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42117,33 +45560,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [20274] = 8, - ACTIONS(1815), 1, - sym__block_close, - ACTIONS(1817), 1, - sym__fenced_code_block_end_tilde, - ACTIONS(1819), 1, + [2545] = 8, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + ACTIONS(1861), 1, sym__line_ending, - STATE(862), 1, + ACTIONS(1869), 1, + sym__block_close, + ACTIONS(1871), 1, + sym__fenced_code_block_end_backtick, + STATE(903), 1, sym_code_fence_content, - STATE(577), 2, + STATE(607), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(519), 3, + STATE(549), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42179,25 +45619,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20336] = 8, - ACTIONS(1809), 1, + [2607] = 8, + ACTIONS(1869), 1, + sym__block_close, + ACTIONS(1871), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1825), 1, - sym__block_close, - ACTIONS(1827), 1, - sym__fenced_code_block_end_backtick, - STATE(864), 1, + STATE(913), 1, sym_code_fence_content, - STATE(585), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(525), 3, + STATE(551), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42233,27 +45673,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20398] = 8, - ACTIONS(1819), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + [2669] = 12, + ACTIONS(1790), 1, sym__line_ending, - ACTIONS(1825), 1, - sym__block_close, - ACTIONS(1827), 1, - sym__fenced_code_block_end_tilde, - STATE(865), 1, - sym_code_fence_content, - STATE(577), 2, + ACTIONS(1845), 1, + anon_sym_BSLASH, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + ACTIONS(1855), 1, + aux_sym__commonmark_whitespace_token1, + STATE(538), 1, + aux_sym_pipe_table_row_repeat1, + STATE(568), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(519), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + STATE(817), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(550), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42279,35 +45726,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, - sym__word, - [20460] = 8, - ACTIONS(1809), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + [2739] = 10, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1867), 1, + anon_sym_PIPE, + STATE(757), 1, + sym_pipe_table_cell, + STATE(782), 1, + sym__pipe_table_cell_contents, + STATE(493), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1788), 3, sym__line_ending, - ACTIONS(1829), 1, - sym__block_close, - ACTIONS(1831), 1, - sym__fenced_code_block_end_backtick, - STATE(868), 1, - sym_code_fence_content, - STATE(585), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(525), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42333,33 +45782,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [20522] = 8, - ACTIONS(1819), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, - sym__line_ending, - ACTIONS(1829), 1, + [2805] = 8, + ACTIONS(1863), 1, sym__block_close, - ACTIONS(1831), 1, + ACTIONS(1865), 1, sym__fenced_code_block_end_tilde, - STATE(869), 1, + ACTIONS(1873), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1877), 1, + sym__line_ending, + STATE(896), 1, sym_code_fence_content, - STATE(577), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(519), 3, + STATE(551), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42395,27 +45841,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20584] = 8, - ACTIONS(1809), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + [2867] = 10, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1867), 1, + anon_sym_PIPE, + STATE(770), 1, + sym_pipe_table_cell, + STATE(782), 1, + sym__pipe_table_cell_contents, + STATE(493), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1879), 3, sym__line_ending, - ACTIONS(1833), 1, - sym__block_close, - ACTIONS(1835), 1, - sym__fenced_code_block_end_backtick, - STATE(899), 1, - sym_code_fence_content, - STATE(585), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(525), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42441,33 +45892,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [20646] = 8, - ACTIONS(1819), 1, + [2933] = 8, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(1833), 1, + ACTIONS(1881), 1, sym__block_close, - ACTIONS(1835), 1, - sym__fenced_code_block_end_tilde, + ACTIONS(1883), 1, + sym__fenced_code_block_end_backtick, STATE(907), 1, sym_code_fence_content, - STATE(577), 2, + STATE(607), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(519), 3, + STATE(549), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42503,32 +45951,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20708] = 10, - ACTIONS(1682), 1, - anon_sym_BSLASH, - ACTIONS(1688), 1, - sym__code_span_start, - ACTIONS(1690), 1, - sym__latex_span_start, - ACTIONS(1799), 1, - anon_sym_PIPE, - STATE(740), 1, - sym_pipe_table_cell, - STATE(759), 1, - sym__pipe_table_cell_contents, - STATE(465), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1734), 3, + [2995] = 8, + ACTIONS(1857), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1861), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1676), 4, + ACTIONS(1885), 1, + sym__block_close, + ACTIONS(1887), 1, + sym__fenced_code_block_end_backtick, + STATE(884), 1, + sym_code_fence_content, + STATE(607), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(549), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1859), 35, sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1680), 30, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42554,30 +45997,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [20774] = 8, - ACTIONS(1809), 1, + sym__word, + [3057] = 8, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1837), 1, + ACTIONS(1885), 1, sym__block_close, - ACTIONS(1839), 1, - sym__fenced_code_block_end_backtick, - STATE(909), 1, + ACTIONS(1887), 1, + sym__fenced_code_block_end_tilde, + STATE(886), 1, sym_code_fence_content, - STATE(585), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(525), 3, + STATE(551), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42613,34 +46059,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20836] = 12, - ACTIONS(1736), 1, - sym__line_ending, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - ACTIONS(1805), 1, + [3119] = 8, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - STATE(489), 1, - aux_sym_pipe_table_row_repeat1, - STATE(535), 1, + ACTIONS(1861), 1, + sym__line_ending, + ACTIONS(1889), 1, + sym__block_close, + ACTIONS(1891), 1, + sym__fenced_code_block_end_backtick, + STATE(888), 1, + sym_code_fence_content, + STATE(607), 2, sym__whitespace, - STATE(796), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(520), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1754), 4, + aux_sym__code_line_repeat1, + STATE(549), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1756), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42666,32 +46105,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, - [20906] = 8, - ACTIONS(1809), 1, + sym__word, + [3181] = 8, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + ACTIONS(1895), 1, + anon_sym_BSLASH, + STATE(546), 1, + sym__last_token_punctuation, + ACTIONS(1796), 2, sym__line_ending, - ACTIONS(1841), 1, - sym__block_close, - ACTIONS(1843), 1, - sym__fenced_code_block_end_backtick, - STATE(875), 1, - sym_code_fence_content, - STATE(585), 2, + anon_sym_PIPE, + STATE(545), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(525), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1893), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42717,33 +46161,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [20968] = 8, - ACTIONS(1819), 1, + [3243] = 8, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(1841), 1, + ACTIONS(1897), 1, sym__block_close, - ACTIONS(1843), 1, - sym__fenced_code_block_end_tilde, - STATE(879), 1, + ACTIONS(1899), 1, + sym__fenced_code_block_end_backtick, + STATE(893), 1, sym_code_fence_content, - STATE(577), 2, + STATE(607), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(519), 3, + STATE(549), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42779,25 +46221,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21030] = 8, - ACTIONS(1819), 1, + [3305] = 8, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1837), 1, + ACTIONS(1897), 1, sym__block_close, - ACTIONS(1839), 1, + ACTIONS(1899), 1, sym__fenced_code_block_end_tilde, - STATE(867), 1, + STATE(894), 1, sym_code_fence_content, - STATE(577), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(519), 3, + STATE(551), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42833,25 +46275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21092] = 8, - ACTIONS(1809), 1, + [3367] = 8, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1845), 1, + ACTIONS(1881), 1, sym__block_close, - ACTIONS(1847), 1, - sym__fenced_code_block_end_backtick, - STATE(896), 1, + ACTIONS(1883), 1, + sym__fenced_code_block_end_tilde, + STATE(981), 1, sym_code_fence_content, - STATE(585), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(525), 3, + STATE(551), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42887,27 +46329,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21154] = 8, - ACTIONS(1819), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + [3429] = 12, + ACTIONS(1798), 1, sym__line_ending, ACTIONS(1845), 1, - sym__block_close, - ACTIONS(1847), 1, - sym__fenced_code_block_end_tilde, - STATE(898), 1, - sym_code_fence_content, - STATE(577), 2, + anon_sym_BSLASH, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + ACTIONS(1855), 1, + aux_sym__commonmark_whitespace_token1, + STATE(538), 1, + aux_sym_pipe_table_row_repeat1, + STATE(566), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(519), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + STATE(816), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(550), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -42933,33 +46382,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [21216] = 8, - ACTIONS(1809), 1, + [3499] = 8, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(1849), 1, + ACTIONS(1901), 1, sym__block_close, - ACTIONS(1851), 1, + ACTIONS(1903), 1, sym__fenced_code_block_end_backtick, - STATE(900), 1, + STATE(926), 1, sym_code_fence_content, - STATE(585), 2, + STATE(607), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(525), 3, + STATE(549), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -42995,25 +46441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21278] = 8, - ACTIONS(1819), 1, + [3561] = 8, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1849), 1, + ACTIONS(1901), 1, sym__block_close, - ACTIONS(1851), 1, + ACTIONS(1903), 1, sym__fenced_code_block_end_tilde, - STATE(902), 1, + STATE(928), 1, sym_code_fence_content, - STATE(577), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(519), 3, + STATE(551), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43049,25 +46495,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21340] = 8, - ACTIONS(1809), 1, + [3623] = 8, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(1853), 1, + ACTIONS(1905), 1, sym__block_close, - ACTIONS(1855), 1, + ACTIONS(1907), 1, sym__fenced_code_block_end_backtick, - STATE(905), 1, + STATE(931), 1, sym_code_fence_content, - STATE(585), 2, + STATE(607), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(525), 3, + STATE(549), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43103,25 +46549,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21402] = 8, - ACTIONS(1819), 1, + [3685] = 8, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1853), 1, + ACTIONS(1905), 1, sym__block_close, - ACTIONS(1855), 1, + ACTIONS(1907), 1, sym__fenced_code_block_end_tilde, - STATE(906), 1, + STATE(987), 1, sym_code_fence_content, - STATE(577), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(519), 3, + STATE(551), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43157,32 +46603,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [21464] = 10, - ACTIONS(1682), 1, - anon_sym_BSLASH, - ACTIONS(1688), 1, - sym__code_span_start, - ACTIONS(1690), 1, - sym__latex_span_start, - ACTIONS(1799), 1, - anon_sym_PIPE, - STATE(743), 1, - sym_pipe_table_cell, - STATE(759), 1, - sym__pipe_table_cell_contents, - STATE(465), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1744), 3, + [3747] = 8, + ACTIONS(1857), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1861), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1676), 4, + ACTIONS(1909), 1, + sym__block_close, + ACTIONS(1911), 1, + sym__fenced_code_block_end_backtick, + STATE(935), 1, + sym_code_fence_content, + STATE(607), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(549), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1680), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43208,39 +46649,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, - [21530] = 12, - ACTIONS(1734), 1, - sym__line_ending, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - ACTIONS(1805), 1, + sym__word, + [3809] = 8, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - STATE(489), 1, - aux_sym_pipe_table_row_repeat1, - STATE(545), 1, + ACTIONS(1877), 1, + sym__line_ending, + ACTIONS(1909), 1, + sym__block_close, + ACTIONS(1911), 1, + sym__fenced_code_block_end_tilde, + STATE(936), 1, + sym_code_fence_content, + STATE(595), 2, sym__whitespace, - STATE(774), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(520), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1754), 4, + aux_sym__code_line_repeat1, + STATE(551), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1756), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43266,39 +46703,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, - [21600] = 12, - ACTIONS(1744), 1, + sym__word, + [3871] = 12, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1800), 1, sym__line_ending, - ACTIONS(1758), 1, + ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(1762), 1, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1851), 1, sym__latex_span_start, - ACTIONS(1805), 1, - aux_sym__commonmark_whitespace_token1, - STATE(489), 1, + STATE(513), 1, aux_sym_pipe_table_row_repeat1, - STATE(528), 1, + STATE(584), 1, sym__whitespace, - STATE(802), 1, + STATE(816), 1, sym_pipe_table_cell, - STATE(826), 1, + STATE(833), 1, sym__pipe_table_cell_contents, - STATE(520), 2, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1756), 30, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43329,34 +46769,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21670] = 12, - ACTIONS(1678), 1, + [3941] = 12, + ACTIONS(1769), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1730), 1, - sym__line_ending, - ACTIONS(1758), 1, + ACTIONS(1775), 1, anon_sym_BSLASH, - ACTIONS(1762), 1, + ACTIONS(1778), 1, + sym__line_ending, + ACTIONS(1780), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1783), 1, sym__latex_span_start, - STATE(512), 1, + STATE(538), 1, aux_sym_pipe_table_row_repeat1, - STATE(567), 1, + STATE(589), 1, sym__whitespace, - STATE(802), 1, + STATE(860), 1, sym_pipe_table_cell, - STATE(826), 1, + STATE(910), 1, sym__pipe_table_cell_contents, - STATE(520), 2, + STATE(559), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + ACTIONS(1766), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1756), 30, + ACTIONS(1772), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43387,27 +46827,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21740] = 7, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - ACTIONS(1805), 1, + [4011] = 8, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1859), 1, - anon_sym_BSLASH, - ACTIONS(1793), 2, + ACTIONS(1877), 1, sym__line_ending, - anon_sym_PIPE, - STATE(523), 4, + ACTIONS(1889), 1, + sym__block_close, + ACTIONS(1891), 1, + sym__fenced_code_block_end_tilde, + STATE(890), 1, + sym_code_fence_content, + STATE(595), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1857), 34, + aux_sym__code_line_repeat1, + STATE(551), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43433,33 +46873,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, sym__word, - [21799] = 7, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - ACTIONS(1805), 1, + [4073] = 11, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1863), 1, + ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(1770), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(515), 4, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + STATE(530), 1, + aux_sym_pipe_table_row_repeat1, + STATE(574), 1, sym__whitespace, + STATE(817), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1861), 34, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43490,26 +46937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [21858] = 8, - ACTIONS(1678), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_BSLASH, - ACTIONS(1869), 1, + [4140] = 7, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1871), 1, + ACTIONS(1851), 1, sym__latex_span_start, - STATE(532), 1, - sym__last_token_punctuation, - STATE(531), 4, + ACTIONS(1855), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1915), 1, + anon_sym_BSLASH, + ACTIONS(1839), 2, + sym__line_ending, + anon_sym_PIPE, + STATE(542), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1865), 34, + ACTIONS(1913), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -43544,32 +46989,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [21919] = 11, - ACTIONS(1678), 1, + [4199] = 7, + ACTIONS(1920), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1682), 1, + ACTIONS(1923), 1, anon_sym_BSLASH, - ACTIONS(1688), 1, + ACTIONS(1926), 1, sym__code_span_start, - ACTIONS(1690), 1, + ACTIONS(1929), 1, sym__latex_span_start, - STATE(461), 1, - aux_sym_pipe_table_row_repeat1, - STATE(557), 1, + ACTIONS(1827), 2, + sym__line_ending, + anon_sym_PIPE, + STATE(542), 4, sym__whitespace, - STATE(741), 1, - sym_pipe_table_cell, - STATE(759), 1, - sym__pipe_table_cell_contents, - STATE(465), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1676), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1917), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1680), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43600,22 +47040,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [21986] = 6, - ACTIONS(1819), 1, + sym__word, + [4258] = 6, + ACTIONS(1932), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1823), 1, + ACTIONS(1938), 1, sym__line_ending, - ACTIONS(1873), 2, + ACTIONS(1941), 2, sym__block_close, sym__fenced_code_block_end_tilde, - STATE(577), 2, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(524), 3, + STATE(543), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1821), 35, + ACTIONS(1935), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43651,24 +47092,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22043] = 7, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - ACTIONS(1805), 1, + [4315] = 8, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1807), 1, - anon_sym_BSLASH, - ACTIONS(1742), 2, - sym__line_ending, + ACTIONS(1796), 1, anon_sym_PIPE, - STATE(526), 4, + ACTIONS(1945), 1, + anon_sym_BSLASH, + ACTIONS(1947), 1, + sym__code_span_start, + ACTIONS(1949), 1, + sym__latex_span_start, + STATE(573), 1, + sym__last_token_punctuation, + STATE(555), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1803), 34, + ACTIONS(1943), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -43703,32 +47145,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [22102] = 11, - ACTIONS(1678), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1762), 1, + [4376] = 7, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1851), 1, sym__latex_span_start, - STATE(513), 1, - aux_sym_pipe_table_row_repeat1, - STATE(564), 1, + ACTIONS(1855), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1915), 1, + anon_sym_BSLASH, + ACTIONS(1816), 2, + sym__line_ending, + anon_sym_PIPE, + STATE(542), 4, sym__whitespace, - STATE(796), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(520), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1913), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1756), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43759,24 +47196,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [22169] = 6, - ACTIONS(1875), 1, + sym__word, + [4435] = 7, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1881), 1, + ACTIONS(1953), 1, + anon_sym_BSLASH, + ACTIONS(1816), 2, sym__line_ending, - ACTIONS(1884), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(585), 2, + anon_sym_PIPE, + STATE(541), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(522), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1878), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1951), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43802,35 +47243,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22226] = 7, - ACTIONS(1889), 1, + [4494] = 6, + ACTIONS(1955), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1892), 1, - anon_sym_BSLASH, - ACTIONS(1895), 1, - sym__code_span_start, - ACTIONS(1898), 1, - sym__latex_span_start, - ACTIONS(1785), 2, + ACTIONS(1961), 1, sym__line_ending, - anon_sym_PIPE, - STATE(523), 4, + ACTIONS(1941), 2, + sym__block_close, + sym__fenced_code_block_end_backtick, + STATE(607), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1886), 34, + aux_sym__code_line_repeat1, + STATE(547), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1958), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43856,30 +47292,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, sym__word, - [22285] = 6, - ACTIONS(1901), 1, + [4551] = 11, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1907), 1, - sym__line_ending, - ACTIONS(1884), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(577), 2, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + STATE(485), 1, + aux_sym_pipe_table_row_repeat1, + STATE(583), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(524), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1904), 35, + STATE(758), 1, + sym_pipe_table_cell, + STATE(782), 1, + sym__pipe_table_cell_contents, + STATE(493), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43905,30 +47351,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22342] = 6, - ACTIONS(1809), 1, + [4618] = 6, + ACTIONS(1857), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1813), 1, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(1873), 2, + ACTIONS(1964), 2, sym__block_close, sym__fenced_code_block_end_backtick, - STATE(585), 2, + STATE(607), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(522), 3, + STATE(547), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1811), 35, + ACTIONS(1859), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -43964,24 +47407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22399] = 7, - ACTIONS(1762), 1, + [4675] = 7, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1851), 1, sym__latex_span_start, - ACTIONS(1805), 1, + ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1859), 1, + ACTIONS(1895), 1, anon_sym_BSLASH, - ACTIONS(1770), 2, + ACTIONS(1796), 2, sym__line_ending, anon_sym_PIPE, - STATE(523), 4, + STATE(545), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1857), 34, + ACTIONS(1893), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -44016,21 +47459,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [22458] = 6, - ACTIONS(1910), 1, + [4734] = 6, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1914), 1, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(1916), 1, + ACTIONS(1964), 2, sym__block_close, - STATE(593), 2, + sym__fenced_code_block_end_tilde, + STATE(595), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(541), 3, + STATE(543), 3, sym__newline, sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1912), 35, + aux_sym_code_fence_content_repeat1, + ACTIONS(1875), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44066,30 +47510,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22514] = 10, + [4791] = 7, ACTIONS(1734), 1, - sym__line_ending, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1762), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1839), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1949), 1, sym__latex_span_start, - ACTIONS(1918), 1, - anon_sym_PIPE, - STATE(771), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(520), 2, + ACTIONS(1968), 1, + anon_sym_BSLASH, + STATE(564), 4, + sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1966), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1756), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44120,21 +47560,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [22578] = 6, - ACTIONS(1910), 1, + sym__word, + [4849] = 6, + ACTIONS(1970), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1914), 1, + ACTIONS(1974), 1, sym__line_ending, - ACTIONS(1920), 1, + ACTIONS(1976), 1, sym__block_close, - STATE(593), 2, + STATE(618), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(541), 3, + STATE(557), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1912), 35, + ACTIONS(1972), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44170,77 +47611,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22634] = 7, - ACTIONS(1785), 1, - anon_sym_PIPE, - ACTIONS(1925), 1, + [4905] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1928), 1, - anon_sym_BSLASH, - ACTIONS(1931), 1, - sym__code_span_start, - ACTIONS(1934), 1, - sym__latex_span_start, - STATE(530), 4, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1978), 1, + sym__line_ending, + ACTIONS(1980), 1, + sym__eof, + STATE(199), 1, + sym__newline, + STATE(582), 1, + aux_sym_paragraph_repeat1, + STATE(603), 1, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1922), 34, + STATE(659), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, sym__word, - [22692] = 7, - ACTIONS(1678), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1770), 1, - anon_sym_PIPE, - ACTIONS(1869), 1, - sym__code_span_start, - ACTIONS(1871), 1, - sym__latex_span_start, - ACTIONS(1939), 1, - anon_sym_BSLASH, - STATE(530), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1937), 34, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44259,36 +47652,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [22750] = 7, - ACTIONS(1678), 1, + [4969] = 7, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1770), 1, + ACTIONS(1816), 1, anon_sym_PIPE, - ACTIONS(1869), 1, + ACTIONS(1947), 1, sym__code_span_start, - ACTIONS(1871), 1, + ACTIONS(1949), 1, sym__latex_span_start, - ACTIONS(1943), 1, + ACTIONS(1968), 1, anon_sym_BSLASH, - STATE(533), 4, + STATE(564), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1941), 34, + ACTIONS(1966), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -44323,26 +47716,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [22808] = 7, - ACTIONS(1678), 1, + [5027] = 6, + ACTIONS(1970), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1793), 1, - anon_sym_PIPE, - ACTIONS(1869), 1, - sym__code_span_start, - ACTIONS(1871), 1, - sym__latex_span_start, - ACTIONS(1939), 1, - anon_sym_BSLASH, - STATE(530), 4, + ACTIONS(1974), 1, + sym__line_ending, + ACTIONS(1982), 1, + sym__block_close, + STATE(618), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1937), 34, + aux_sym__code_line_repeat1, + STATE(553), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1972), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44368,27 +47758,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22866] = 6, - ACTIONS(1910), 1, + [5083] = 6, + ACTIONS(1984), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1914), 1, + ACTIONS(1990), 1, sym__line_ending, - ACTIONS(1945), 1, + ACTIONS(1993), 1, sym__block_close, - STATE(593), 2, + STATE(618), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(527), 3, + STATE(557), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1912), 35, + ACTIONS(1987), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44424,30 +47816,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [22922] = 10, - ACTIONS(1744), 1, + [5139] = 6, + ACTIONS(1970), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1974), 1, sym__line_ending, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1762), 1, - sym__code_span_start, - ACTIONS(1764), 1, - sym__latex_span_start, - ACTIONS(1918), 1, - anon_sym_PIPE, - STATE(800), 1, - sym_pipe_table_cell, - STATE(826), 1, - sym__pipe_table_cell_contents, - STATE(520), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1754), 4, + ACTIONS(1995), 1, + sym__block_close, + STATE(618), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + STATE(561), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1972), 35, sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(1756), 30, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44473,34 +47858,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, - [22986] = 10, - ACTIONS(5), 1, + sym__word, + [5195] = 7, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1945), 1, + anon_sym_BSLASH, ACTIONS(1947), 1, - sym__line_ending, + sym__code_span_start, ACTIONS(1949), 1, - sym__eof, - STATE(183), 1, - sym__newline, - STATE(552), 1, - aux_sym_paragraph_repeat1, - STATE(579), 1, + sym__latex_span_start, + STATE(555), 4, sym__whitespace, - STATE(632), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1943), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44519,35 +47904,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [23050] = 10, + sym__word, + [5253] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1951), 1, + ACTIONS(1997), 1, sym__line_ending, - ACTIONS(1953), 1, + ACTIONS(1999), 1, sym__eof, - STATE(169), 1, + STATE(193), 1, sym__newline, - STATE(552), 1, + STATE(582), 1, aux_sym_paragraph_repeat1, - STATE(579), 1, + STATE(603), 1, sym__whitespace, - STATE(632), 2, + STATE(659), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -44586,21 +47971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [23114] = 6, - ACTIONS(1910), 1, + [5317] = 6, + ACTIONS(1970), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1914), 1, + ACTIONS(1974), 1, sym__line_ending, - ACTIONS(1955), 1, + ACTIONS(2001), 1, sym__block_close, - STATE(593), 2, + STATE(618), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(529), 3, + STATE(557), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1912), 35, + ACTIONS(1972), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44636,26 +48021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23170] = 7, - ACTIONS(1678), 1, + [5373] = 6, + ACTIONS(1970), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1742), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_BSLASH, - ACTIONS(1869), 1, - sym__code_span_start, - ACTIONS(1871), 1, - sym__latex_span_start, - STATE(531), 4, + ACTIONS(1974), 1, + sym__line_ending, + ACTIONS(2003), 1, + sym__block_close, + STATE(618), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1865), 34, + aux_sym__code_line_repeat1, + STATE(567), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1972), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44681,29 +48063,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23228] = 6, - ACTIONS(1910), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1914), 1, + [5429] = 3, + ACTIONS(2007), 1, + anon_sym_BSLASH, + ACTIONS(2009), 1, + sym_block_continuation, + ACTIONS(2005), 41, sym__line_ending, - ACTIONS(1957), 1, - sym__block_close, - STATE(593), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(544), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1912), 35, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44729,7 +48111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -44737,23 +48118,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23284] = 6, - ACTIONS(1959), 1, + [5479] = 7, + ACTIONS(1827), 1, + anon_sym_PIPE, + ACTIONS(2014), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1965), 1, - sym__line_ending, - ACTIONS(1968), 1, - sym__block_close, - STATE(593), 2, + ACTIONS(2017), 1, + anon_sym_BSLASH, + ACTIONS(2020), 1, + sym__code_span_start, + ACTIONS(2023), 1, + sym__latex_span_start, + STATE(564), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(541), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1962), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2011), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44779,29 +48163,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23340] = 3, - ACTIONS(1972), 1, - anon_sym_BSLASH, - ACTIONS(1974), 1, - sym_block_continuation, - ACTIONS(1970), 41, + [5537] = 10, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1810), 1, sym__line_ending, + ACTIONS(2026), 1, sym__eof, - sym__pipe_table_line_ending, + STATE(445), 1, + sym__newline, + STATE(582), 1, + aux_sym_paragraph_repeat1, + STATE(603), 1, + sym__whitespace, + STATE(659), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44820,43 +48210,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [23390] = 10, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1752), 1, + [5601] = 10, + ACTIONS(1788), 1, sym__line_ending, - ACTIONS(1976), 1, - sym__eof, - STATE(424), 1, - sym__newline, - STATE(552), 1, - aux_sym_paragraph_repeat1, - STATE(579), 1, - sym__whitespace, - STATE(632), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + ACTIONS(1845), 1, + anon_sym_BSLASH, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + ACTIONS(2028), 1, + anon_sym_PIPE, + STATE(809), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(550), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(7), 31, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44875,34 +48265,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [23454] = 6, - ACTIONS(1910), 1, + [5665] = 6, + ACTIONS(1970), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1914), 1, + ACTIONS(1974), 1, sym__line_ending, - ACTIONS(1978), 1, + ACTIONS(2030), 1, sym__block_close, - STATE(593), 2, + STATE(618), 2, sym__whitespace, aux_sym__code_line_repeat1, - STATE(541), 3, + STATE(557), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1912), 35, + ACTIONS(1972), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -44938,30 +48327,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23510] = 10, - ACTIONS(1758), 1, + [5721] = 10, + ACTIONS(1798), 1, + sym__line_ending, + ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(1762), 1, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1851), 1, sym__latex_span_start, - ACTIONS(1801), 1, - sym__line_ending, - ACTIONS(1918), 1, + ACTIONS(2028), 1, anon_sym_PIPE, - STATE(795), 1, + STATE(814), 1, sym_pipe_table_cell, - STATE(826), 1, + STATE(833), 1, sym__pipe_table_cell_contents, - STATE(520), 2, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1756), 30, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -44992,22 +48381,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [23574] = 10, + [5785] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1795), 1, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(1980), 1, + ACTIONS(2032), 1, sym__eof, - STATE(443), 1, + STATE(466), 1, sym__newline, - STATE(552), 1, + STATE(582), 1, aux_sym_paragraph_repeat1, - STATE(579), 1, + STATE(603), 1, sym__whitespace, - STATE(632), 2, + STATE(659), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -45046,22 +48435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [23638] = 10, + [5849] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1982), 1, + ACTIONS(2034), 1, sym__line_ending, - ACTIONS(1984), 1, + ACTIONS(2036), 1, sym__eof, - STATE(147), 1, + STATE(150), 1, sym__newline, - STATE(552), 1, + STATE(582), 1, aux_sym_paragraph_repeat1, - STATE(579), 1, + STATE(603), 1, sym__whitespace, - STATE(632), 2, + STATE(659), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -45100,29 +48489,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [23702] = 10, + [5913] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1797), 1, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(1986), 1, + ACTIONS(2038), 1, sym__eof, - STATE(254), 1, + STATE(270), 1, sym__newline, - STATE(552), 1, + STATE(582), 1, aux_sym_paragraph_repeat1, - STATE(579), 1, + STATE(603), 1, + sym__whitespace, + STATE(659), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [5977] = 10, + ACTIONS(1845), 1, + anon_sym_BSLASH, + ACTIONS(1849), 1, + sym__code_span_start, + ACTIONS(1851), 1, + sym__latex_span_start, + ACTIONS(1879), 1, + sym__line_ending, + ACTIONS(2028), 1, + anon_sym_PIPE, + STATE(829), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(550), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1841), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1843), 30, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + [6041] = 7, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1816), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + sym__code_span_start, + ACTIONS(1949), 1, + sym__latex_span_start, + ACTIONS(2042), 1, + anon_sym_BSLASH, + STATE(552), 4, sym__whitespace, - STATE(632), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2040), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, + sym__backslash_escape, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45141,41 +48635,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [23766] = 9, - ACTIONS(1799), 1, - anon_sym_PIPE, - ACTIONS(1869), 1, + sym__word, + [6099] = 9, + ACTIONS(1845), 1, + anon_sym_BSLASH, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1871), 1, + ACTIONS(1851), 1, sym__latex_span_start, - ACTIONS(1992), 1, - anon_sym_BSLASH, - STATE(819), 1, + ACTIONS(2028), 1, + anon_sym_PIPE, + STATE(814), 1, sym_pipe_table_cell, - STATE(888), 1, + STATE(833), 1, sym__pipe_table_cell_contents, - STATE(539), 2, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1988), 4, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1990), 30, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45206,19 +48700,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [23827] = 5, - ACTIONS(5), 1, + [6160] = 8, + ACTIONS(1810), 1, + sym__line_ending, + ACTIONS(2044), 1, aux_sym__commonmark_whitespace_token1, - STATE(586), 1, - sym__last_token_punctuation, - STATE(571), 2, + ACTIONS(2048), 1, + sym__eof, + STATE(337), 1, + sym__newline, + STATE(601), 1, sym__whitespace, + STATE(620), 1, aux_sym__code_line_repeat1, - ACTIONS(1996), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(1994), 35, + STATE(837), 1, + sym__table_caption_line, + ACTIONS(2046), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45254,28 +48751,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [23880] = 9, - ACTIONS(1758), 1, + [6219] = 9, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1762), 1, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1998), 1, + ACTIONS(2050), 1, anon_sym_PIPE, - STATE(797), 1, + STATE(752), 1, sym_pipe_table_cell, - STATE(826), 1, + STATE(782), 1, sym__pipe_table_cell_contents, - STATE(520), 2, + STATE(493), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1756), 30, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45306,26 +48803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [23941] = 8, - ACTIONS(2000), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2011), 1, - sym__soft_line_ending, - STATE(552), 1, - aux_sym_paragraph_repeat1, - STATE(579), 1, - sym__whitespace, - ACTIONS(2009), 2, - sym__line_ending, - sym__eof, - STATE(632), 2, - sym__soft_line_break, - sym__line, - ACTIONS(2006), 3, + [6280] = 9, + ACTIONS(1867), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + sym__code_span_start, + ACTIONS(1949), 1, + sym__latex_span_start, + ACTIONS(2056), 1, + anon_sym_BSLASH, + STATE(834), 1, + sym_pipe_table_cell, + STATE(910), 1, + sym__pipe_table_cell_contents, + STATE(559), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2052), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, sym__word, - ACTIONS(2003), 31, + ACTIONS(2054), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45344,23 +48843,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [24000] = 2, - ACTIONS(2016), 1, + [6341] = 2, + ACTIONS(2060), 1, anon_sym_BSLASH, - ACTIONS(2014), 41, + ACTIONS(2058), 41, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -45402,24 +48900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24047] = 8, - ACTIONS(1752), 1, + [6388] = 2, + ACTIONS(2064), 1, + anon_sym_BSLASH, + ACTIONS(2062), 41, sym__line_ending, - ACTIONS(2018), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2022), 1, sym__eof, - STATE(321), 1, - sym__newline, - STATE(587), 1, - sym__whitespace, - STATE(591), 1, - aux_sym__code_line_repeat1, - STATE(809), 1, - sym__table_caption_line, - ACTIONS(2020), 35, + 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, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45445,7 +48938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45453,28 +48945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24106] = 9, - ACTIONS(1682), 1, + [6435] = 2, + ACTIONS(2068), 1, anon_sym_BSLASH, - ACTIONS(1688), 1, - sym__code_span_start, - ACTIONS(1690), 1, - sym__latex_span_start, - ACTIONS(2024), 1, - anon_sym_PIPE, - STATE(750), 1, - sym_pipe_table_cell, - STATE(759), 1, - sym__pipe_table_cell_contents, - STATE(465), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1676), 4, + ACTIONS(2066), 41, + 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, sym__backslash_escape, - sym__word, - ACTIONS(1680), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45504,20 +48987,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [24167] = 2, - ACTIONS(2026), 1, - anon_sym_BSLASH, - ACTIONS(1785), 41, + sym__word, + [6482] = 8, + ACTIONS(1808), 1, sym__line_ending, + ACTIONS(2044), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2070), 1, sym__eof, - sym__pipe_table_line_ending, + STATE(428), 1, + sym__newline, + STATE(611), 1, + sym__whitespace, + STATE(620), 1, + aux_sym__code_line_repeat1, + STATE(831), 1, + sym__table_caption_line, + ACTIONS(2046), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45543,6 +49033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45550,28 +49041,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24214] = 9, - ACTIONS(1682), 1, - anon_sym_BSLASH, - ACTIONS(1688), 1, - sym__code_span_start, - ACTIONS(1690), 1, - sym__latex_span_start, - ACTIONS(1799), 1, - anon_sym_PIPE, - STATE(743), 1, - sym_pipe_table_cell, - STATE(759), 1, - sym__pipe_table_cell_contents, - STATE(465), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1676), 4, + [6541] = 8, + ACTIONS(2072), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2083), 1, + sym__soft_line_ending, + STATE(582), 1, + aux_sym_paragraph_repeat1, + STATE(603), 1, + sym__whitespace, + ACTIONS(2081), 2, + sym__line_ending, + sym__eof, + STATE(659), 2, + sym__soft_line_break, + sym__line, + ACTIONS(2078), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, sym__word, - ACTIONS(1680), 30, + ACTIONS(2075), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45590,31 +49079,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [24275] = 2, - ACTIONS(2030), 1, + [6600] = 9, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(2028), 41, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(1744), 1, sym__code_span_start, + ACTIONS(1746), 1, sym__latex_span_start, + ACTIONS(1867), 1, + anon_sym_PIPE, + STATE(766), 1, + sym_pipe_table_cell, + STATE(782), 1, + sym__pipe_table_cell_contents, + STATE(493), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1732), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45644,22 +49143,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24322] = 2, - ACTIONS(2034), 1, + [6661] = 9, + ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(2032), 41, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(1849), 1, sym__code_span_start, + ACTIONS(1851), 1, sym__latex_span_start, + ACTIONS(2028), 1, + anon_sym_PIPE, + STATE(809), 1, + sym_pipe_table_cell, + STATE(833), 1, + sym__pipe_table_cell_contents, + STATE(550), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1841), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45689,22 +49195,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [24369] = 2, - ACTIONS(2038), 1, - anon_sym_BSLASH, - ACTIONS(2036), 41, + [6722] = 5, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(610), 1, + sym__last_token_punctuation, + STATE(606), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2088), 3, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2086), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45730,6 +49236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45737,10 +49244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24416] = 2, - ACTIONS(2042), 1, + [6775] = 2, + ACTIONS(2090), 1, anon_sym_BSLASH, - ACTIONS(2040), 41, + ACTIONS(1827), 41, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -45782,22 +49289,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24463] = 8, - ACTIONS(1797), 1, + [6822] = 8, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2018), 1, - aux_sym__commonmark_whitespace_token1, ACTIONS(2044), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2092), 1, sym__eof, - STATE(241), 1, + STATE(257), 1, sym__newline, - STATE(569), 1, + STATE(612), 1, sym__whitespace, - STATE(591), 1, + STATE(620), 1, aux_sym__code_line_repeat1, - STATE(828), 1, + STATE(852), 1, sym__table_caption_line, - ACTIONS(2020), 35, + ACTIONS(2046), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45833,28 +49340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24522] = 9, - ACTIONS(1682), 1, + [6881] = 2, + ACTIONS(2096), 1, anon_sym_BSLASH, - ACTIONS(1688), 1, - sym__code_span_start, - ACTIONS(1690), 1, - sym__latex_span_start, - ACTIONS(1799), 1, - anon_sym_PIPE, - STATE(740), 1, - sym_pipe_table_cell, - STATE(759), 1, - sym__pipe_table_cell_contents, - STATE(465), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1676), 4, + ACTIONS(2094), 41, + 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, sym__backslash_escape, - sym__word, - ACTIONS(1680), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45884,29 +49382,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [24583] = 9, - ACTIONS(1758), 1, - anon_sym_BSLASH, - ACTIONS(1762), 1, + sym__word, + [6928] = 9, + ACTIONS(1947), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1949), 1, sym__latex_span_start, - ACTIONS(1918), 1, + ACTIONS(2028), 1, anon_sym_PIPE, - STATE(800), 1, + ACTIONS(2056), 1, + anon_sym_BSLASH, + STATE(838), 1, sym_pipe_table_cell, - STATE(826), 1, + STATE(910), 1, sym__pipe_table_cell_contents, - STATE(520), 2, + STATE(559), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + ACTIONS(2052), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1756), 30, + ACTIONS(2054), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45937,24 +49437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [24644] = 8, - ACTIONS(1795), 1, + [6989] = 2, + ACTIONS(2100), 1, + anon_sym_BSLASH, + ACTIONS(2098), 41, sym__line_ending, - ACTIONS(2018), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2046), 1, sym__eof, - STATE(409), 1, - sym__newline, - STATE(582), 1, - sym__whitespace, - STATE(591), 1, - aux_sym__code_line_repeat1, - STATE(811), 1, - sym__table_caption_line, - ACTIONS(2020), 35, + 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, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45980,7 +49475,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -45988,10 +49482,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24703] = 2, - ACTIONS(2050), 1, + [7036] = 2, + ACTIONS(2104), 1, anon_sym_BSLASH, - ACTIONS(2048), 41, + ACTIONS(2102), 41, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -46033,28 +49527,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24750] = 9, - ACTIONS(1758), 1, + [7083] = 9, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1762), 1, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1764), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1918), 1, + ACTIONS(1867), 1, anon_sym_PIPE, - STATE(771), 1, + STATE(757), 1, sym_pipe_table_cell, - STATE(826), 1, + STATE(782), 1, sym__pipe_table_cell_contents, - STATE(520), 2, + STATE(493), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1754), 4, + ACTIONS(1732), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1756), 30, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46085,28 +49579,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [24811] = 9, - ACTIONS(1869), 1, + [7144] = 9, + ACTIONS(1845), 1, + anon_sym_BSLASH, + ACTIONS(1849), 1, sym__code_span_start, - ACTIONS(1871), 1, + ACTIONS(1851), 1, sym__latex_span_start, - ACTIONS(1918), 1, + ACTIONS(2106), 1, anon_sym_PIPE, - ACTIONS(1992), 1, - anon_sym_BSLASH, - STATE(837), 1, + STATE(820), 1, sym_pipe_table_cell, - STATE(888), 1, + STATE(833), 1, sym__pipe_table_cell_contents, - STATE(539), 2, + STATE(550), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1988), 4, + ACTIONS(1841), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1990), 30, + ACTIONS(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46137,20 +49631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [24872] = 5, - ACTIONS(2018), 1, - aux_sym__commonmark_whitespace_token1, - STATE(829), 1, - sym__table_caption_line, - ACTIONS(1696), 2, + [7205] = 2, + ACTIONS(2108), 1, + anon_sym_BSLASH, + ACTIONS(1778), 40, sym__line_ending, sym__eof, - STATE(591), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2020), 35, + 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, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46176,25 +49669,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24924] = 4, - ACTIONS(5), 1, + [7251] = 4, + ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - STATE(572), 2, + STATE(597), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2054), 3, + ACTIONS(2112), 3, sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(2052), 35, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2110), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46230,19 +49721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [24974] = 4, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - STATE(572), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2056), 3, + [7301] = 2, + ACTIONS(2116), 1, + anon_sym_BSLASH, + ACTIONS(2114), 40, sym__line_ending, - sym__soft_line_ending, sym__eof, - ACTIONS(2052), 35, + 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, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46268,25 +49759,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25024] = 4, - ACTIONS(2058), 1, + [7347] = 4, + ACTIONS(2118), 1, aux_sym__commonmark_whitespace_token1, - STATE(572), 2, + STATE(597), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2064), 3, + ACTIONS(2124), 3, sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(2061), 35, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2121), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46322,25 +49811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25074] = 8, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - STATE(294), 1, - sym_paragraph, - STATE(548), 1, - aux_sym_paragraph_repeat1, - STATE(579), 1, - sym__whitespace, - STATE(632), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + [7397] = 2, + ACTIONS(2128), 1, + anon_sym_BSLASH, + ACTIONS(2126), 40, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46359,31 +49842,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [25132] = 8, + sym__word, + [7443] = 8, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - STATE(438), 1, + STATE(456), 1, sym_paragraph, - STATE(543), 1, + STATE(565), 1, aux_sym_paragraph_repeat1, - STATE(579), 1, + STATE(603), 1, sym__whitespace, - STATE(632), 2, + STATE(659), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -46422,18 +49905,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [25190] = 8, + [7501] = 8, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - STATE(369), 1, + STATE(311), 1, sym_paragraph, - STATE(546), 1, + STATE(571), 1, aux_sym_paragraph_repeat1, - STATE(579), 1, + STATE(603), 1, sym__whitespace, - STATE(632), 2, + STATE(659), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -46472,61 +49955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [25248] = 2, - ACTIONS(2068), 1, - anon_sym_BSLASH, - ACTIONS(2066), 40, + [7559] = 5, + ACTIONS(2044), 1, + aux_sym__commonmark_whitespace_token1, + STATE(848), 1, + sym__table_caption_line, + ACTIONS(1752), 2, 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, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - sym__word, - [25294] = 4, - ACTIONS(1819), 1, - aux_sym__commonmark_whitespace_token1, - STATE(581), 2, + STATE(620), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2072), 3, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(2070), 35, + ACTIONS(2046), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46562,19 +50002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25344] = 2, - ACTIONS(2074), 1, - anon_sym_BSLASH, - ACTIONS(1722), 40, + [7611] = 4, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(605), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2132), 3, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2130), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46600,23 +50040,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25390] = 4, + [7661] = 4, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(571), 2, + STATE(606), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1996), 3, + ACTIONS(2088), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - ACTIONS(1994), 35, + ACTIONS(2086), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46652,19 +50094,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25440] = 4, - ACTIONS(2076), 1, + [7711] = 8, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(580), 2, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(385), 1, + sym_paragraph, + STATE(569), 1, + aux_sym_paragraph_repeat1, + STATE(603), 1, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2064), 3, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(2079), 35, + STATE(659), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46683,7 +50131,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -46697,18 +50144,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [25490] = 4, - ACTIONS(2082), 1, + [7769] = 4, + ACTIONS(2134), 1, aux_sym__commonmark_whitespace_token1, - STATE(581), 2, + STATE(605), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2064), 3, + ACTIONS(2124), 3, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(2085), 35, + sym__soft_line_ending, + sym__eof, + ACTIONS(2137), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46744,18 +50190,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25540] = 5, - ACTIONS(2018), 1, + [7819] = 4, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(812), 1, - sym__table_caption_line, - ACTIONS(1696), 2, - sym__line_ending, - sym__eof, - STATE(591), 2, + STATE(605), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2020), 35, + ACTIONS(2140), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(2130), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46791,19 +50236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25592] = 2, - ACTIONS(2090), 1, - anon_sym_BSLASH, - ACTIONS(2088), 40, + [7869] = 4, + ACTIONS(1857), 1, + aux_sym__commonmark_whitespace_token1, + STATE(609), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2112), 3, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2142), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46829,16 +50274,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25638] = 2, - ACTIONS(2092), 1, + [7919] = 2, + ACTIONS(2144), 1, anon_sym_BSLASH, - ACTIONS(1730), 40, + ACTIONS(1800), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -46879,17 +50326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [25684] = 4, - ACTIONS(1809), 1, + [7965] = 4, + ACTIONS(2146), 1, aux_sym__commonmark_whitespace_token1, - STATE(580), 2, + STATE(609), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2072), 3, + ACTIONS(2124), 3, sym__line_ending, sym__block_close, sym__fenced_code_block_end_backtick, - ACTIONS(2094), 35, + ACTIONS(2149), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46925,17 +50372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25734] = 4, + [8015] = 4, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - STATE(570), 2, + STATE(602), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2056), 3, + ACTIONS(2140), 3, sym__line_ending, sym__soft_line_ending, sym__eof, - ACTIONS(2096), 35, + ACTIONS(2152), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46971,18 +50418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25784] = 5, - ACTIONS(2018), 1, + [8065] = 5, + ACTIONS(2044), 1, aux_sym__commonmark_whitespace_token1, - STATE(815), 1, + STATE(832), 1, sym__table_caption_line, - ACTIONS(1696), 2, + ACTIONS(1752), 2, sym__line_ending, sym__eof, - STATE(591), 2, + STATE(620), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2020), 35, + ACTIONS(2046), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47018,16 +50465,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25836] = 4, - ACTIONS(2098), 1, + [8117] = 5, + ACTIONS(2044), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2064), 2, + STATE(853), 1, + sym__table_caption_line, + ACTIONS(1752), 2, sym__line_ending, - sym__block_close, - STATE(588), 2, + sym__eof, + STATE(620), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2101), 35, + ACTIONS(2046), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47063,10 +50512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25885] = 2, - ACTIONS(2016), 1, + [8169] = 2, + ACTIONS(2060), 1, anon_sym_BSLASH, - ACTIONS(2014), 39, + ACTIONS(2058), 39, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -47106,17 +50555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25930] = 2, - ACTIONS(2038), 1, - anon_sym_BSLASH, - ACTIONS(2036), 39, + [8214] = 4, + ACTIONS(2154), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2124), 2, sym__line_ending, + sym__eof, + STATE(614), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2157), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47142,6 +50592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47149,18 +50600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [25975] = 4, - ACTIONS(2018), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2106), 2, + [8263] = 2, + ACTIONS(2064), 1, + anon_sym_BSLASH, + ACTIONS(2062), 39, sym__line_ending, - sym__eof, - STATE(599), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2104), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47186,7 +50636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47194,15 +50643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26024] = 2, - ACTIONS(2108), 1, - sym_block_continuation, - ACTIONS(1321), 39, + [8308] = 2, + ACTIONS(2096), 1, + anon_sym_BSLASH, + ACTIONS(2094), 39, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47229,7 +50679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47237,18 +50686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26069] = 4, - ACTIONS(1910), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2072), 2, + [8353] = 2, + ACTIONS(2160), 1, + sym_block_continuation, + ACTIONS(1350), 39, sym__line_ending, sym__block_close, - STATE(588), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2110), 35, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47282,17 +50729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26118] = 2, - ACTIONS(2030), 1, - anon_sym_BSLASH, - ACTIONS(2028), 39, + [8398] = 4, + ACTIONS(1970), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2112), 2, sym__line_ending, + sym__block_close, + STATE(619), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2162), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47318,6 +50766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47325,16 +50774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26163] = 2, - ACTIONS(2112), 1, - sym_block_continuation, - ACTIONS(1321), 39, + [8447] = 4, + ACTIONS(2164), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2124), 2, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_backtick, + STATE(619), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2167), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47367,18 +50818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [26208] = 2, - ACTIONS(2042), 1, - anon_sym_BSLASH, - ACTIONS(2040), 39, + sym__word, + [8496] = 4, + ACTIONS(2044), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2172), 2, sym__line_ending, + sym__eof, + STATE(614), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2170), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47404,6 +50856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47411,10 +50864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26253] = 2, - ACTIONS(2026), 1, + [8545] = 2, + ACTIONS(2104), 1, anon_sym_BSLASH, - ACTIONS(1785), 39, + ACTIONS(2102), 39, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -47454,17 +50907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26298] = 5, - ACTIONS(1696), 1, + [8590] = 5, + ACTIONS(1752), 1, sym__line_ending, - ACTIONS(1746), 1, + ACTIONS(1802), 1, aux_sym__commonmark_whitespace_token1, - STATE(944), 1, + STATE(930), 1, sym__atx_heading_line, - STATE(621), 2, + STATE(653), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(1750), 35, + ACTIONS(1806), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47500,18 +50953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26349] = 4, - ACTIONS(2114), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2064), 2, + [8641] = 2, + ACTIONS(2090), 1, + anon_sym_BSLASH, + ACTIONS(1827), 39, sym__line_ending, - sym__eof, - STATE(599), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2117), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47537,7 +50989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47545,10 +50996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26398] = 2, - ACTIONS(2034), 1, + [8686] = 2, + ACTIONS(2100), 1, anon_sym_BSLASH, - ACTIONS(2032), 39, + ACTIONS(2098), 39, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -47588,15 +51039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26443] = 2, - ACTIONS(2026), 1, - anon_sym_BSLASH, - ACTIONS(1785), 38, + [8731] = 2, + ACTIONS(2174), 1, + sym_block_continuation, + ACTIONS(1350), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47623,6 +51074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47630,21 +51082,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26487] = 2, - ACTIONS(2068), 1, + [8776] = 5, + ACTIONS(2178), 1, + anon_sym_SQUOTE, + ACTIONS(2180), 1, anon_sym_BSLASH, - ACTIONS(2066), 38, - sym__line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, + ACTIONS(2182), 1, + sym__soft_line_ending, + STATE(643), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2176), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -47670,12 +51124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26531] = 2, - ACTIONS(2074), 1, + [8826] = 2, + ACTIONS(2128), 1, anon_sym_BSLASH, - ACTIONS(1722), 38, + ACTIONS(2126), 38, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -47714,20 +51169,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [26575] = 2, - ACTIONS(2030), 1, + [8870] = 5, + ACTIONS(2187), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, anon_sym_BSLASH, - ACTIONS(2028), 38, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, + ACTIONS(2192), 1, + sym__soft_line_ending, + STATE(628), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2184), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -47756,15 +51214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26619] = 2, - ACTIONS(2042), 1, - anon_sym_BSLASH, - ACTIONS(2040), 38, + [8920] = 1, + ACTIONS(2094), 39, + sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47791,6 +51247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47798,20 +51255,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26663] = 1, - ACTIONS(2014), 39, - sym__line_ending, + [8962] = 5, + ACTIONS(2198), 1, + anon_sym_DQUOTE, + ACTIONS(2200), 1, + anon_sym_BSLASH, + ACTIONS(2203), 1, sym__soft_line_ending, - sym__eof, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + STATE(630), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(2195), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -47831,18 +51292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [26705] = 2, - ACTIONS(2120), 1, + [9012] = 2, + ACTIONS(2206), 1, sym_block_continuation, - ACTIONS(1321), 38, + ACTIONS(1350), 38, sym__line_ending, sym__block_close, sym__display_math_state_track_marker, @@ -47881,25 +51342,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26749] = 5, - ACTIONS(2125), 1, - anon_sym_SQUOTE, - ACTIONS(2127), 1, + [9056] = 5, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2210), 1, anon_sym_BSLASH, - ACTIONS(2130), 1, + ACTIONS(2212), 1, sym__soft_line_ending, - STATE(608), 3, + STATE(652), 3, sym__commonmark_whitespace, sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2122), 33, + aux_sym_key_value_value_repeat2, + ACTIONS(2208), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_BSLASH_SQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, - anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -47925,14 +51385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [26799] = 1, - ACTIONS(1394), 39, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + [9106] = 2, + ACTIONS(2060), 1, + anon_sym_BSLASH, + ACTIONS(2058), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -47959,7 +51422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -47967,13 +51429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26841] = 1, - ACTIONS(2064), 39, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, + [9150] = 2, + ACTIONS(2064), 1, + anon_sym_BSLASH, + ACTIONS(2062), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48000,7 +51464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48008,15 +51471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26883] = 2, - ACTIONS(2016), 1, - anon_sym_BSLASH, - ACTIONS(2014), 38, + [9194] = 1, + ACTIONS(1424), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48043,6 +51504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48050,11 +51512,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26927] = 1, - ACTIONS(2064), 39, + [9236] = 1, + ACTIONS(2124), 39, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_tilde, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48091,10 +51553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [26969] = 2, - ACTIONS(2034), 1, + [9278] = 2, + ACTIONS(2096), 1, anon_sym_BSLASH, - ACTIONS(2032), 38, + ACTIONS(2094), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -48133,16 +51595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27013] = 2, - ACTIONS(2090), 1, - anon_sym_BSLASH, - ACTIONS(2088), 38, + [9322] = 1, + ACTIONS(2124), 39, sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48169,14 +51628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27057] = 1, - ACTIONS(2014), 39, + [9364] = 1, + ACTIONS(2094), 39, sym__line_ending, sym__block_close, sym__fenced_code_block_end_backtick, @@ -48216,8 +51677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27099] = 1, - ACTIONS(2014), 39, + [9406] = 1, + ACTIONS(2094), 39, sym__line_ending, sym__block_close, sym__fenced_code_block_end_tilde, @@ -48257,24 +51718,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27141] = 5, - ACTIONS(2135), 1, - anon_sym_DQUOTE, - ACTIONS(2137), 1, - anon_sym_BSLASH, - ACTIONS(2139), 1, + [9448] = 2, + ACTIONS(2216), 1, + sym_block_continuation, + ACTIONS(2214), 38, + sym__line_ending, sym__soft_line_ending, - STATE(627), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2133), 33, + sym__eof, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -48287,30 +51746,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [27191] = 2, - ACTIONS(2143), 1, - sym_block_continuation, - ACTIONS(2141), 38, + [9492] = 2, + ACTIONS(2108), 1, + anon_sym_BSLASH, + ACTIONS(1778), 38, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48330,32 +51789,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27235] = 5, - ACTIONS(2135), 1, + [9536] = 5, + ACTIONS(2182), 1, + sym__soft_line_ending, + ACTIONS(2220), 1, anon_sym_SQUOTE, - ACTIONS(2147), 1, + ACTIONS(2222), 1, anon_sym_BSLASH, - ACTIONS(2149), 1, - sym__soft_line_ending, - STATE(622), 3, + STATE(628), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat1, - ACTIONS(2145), 33, + ACTIONS(2218), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48389,24 +51847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27285] = 5, - ACTIONS(2154), 1, - anon_sym_DQUOTE, - ACTIONS(2156), 1, + [9586] = 2, + ACTIONS(2090), 1, anon_sym_BSLASH, - ACTIONS(2159), 1, - sym__soft_line_ending, - STATE(620), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2151), 33, + ACTIONS(1827), 38, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -48432,17 +51888,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [27335] = 4, - ACTIONS(1746), 1, + [9630] = 2, + ACTIONS(2144), 1, + anon_sym_BSLASH, + ACTIONS(1800), 38, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, - ACTIONS(2164), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_TILDE, + sym__word, + [9674] = 4, + ACTIONS(2124), 1, sym__line_ending, - STATE(624), 2, + ACTIONS(2224), 1, + aux_sym__commonmark_whitespace_token1, + STATE(646), 2, sym__whitespace, aux_sym__code_line_repeat1, - ACTIONS(2162), 35, + ACTIONS(2227), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -48478,23 +51975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27383] = 5, - ACTIONS(2149), 1, - sym__soft_line_ending, - ACTIONS(2168), 1, - anon_sym_SQUOTE, - ACTIONS(2170), 1, - anon_sym_BSLASH, - STATE(608), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2166), 33, + [9722] = 1, + ACTIONS(1424), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_BSLASH_SQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -48516,6 +52008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48523,11 +52016,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27433] = 1, - ACTIONS(1394), 39, + [9764] = 1, + ACTIONS(2124), 39, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48564,17 +52057,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27475] = 4, - ACTIONS(2064), 1, - sym__line_ending, - ACTIONS(2172), 1, - aux_sym__commonmark_whitespace_token1, - STATE(624), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2175), 35, + [9806] = 2, + ACTIONS(2100), 1, + anon_sym_BSLASH, + ACTIONS(2098), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48600,7 +52092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48608,13 +52099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27523] = 1, - ACTIONS(2064), 39, + [9850] = 2, + ACTIONS(2116), 1, + anon_sym_BSLASH, + ACTIONS(2114), 38, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48641,19 +52135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27565] = 2, - ACTIONS(2092), 1, + [9894] = 2, + ACTIONS(2104), 1, anon_sym_BSLASH, - ACTIONS(1730), 38, - sym__line_ending, + ACTIONS(2102), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -48689,20 +52180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27609] = 5, - ACTIONS(2139), 1, + [9938] = 5, + ACTIONS(2212), 1, sym__soft_line_ending, - ACTIONS(2168), 1, + ACTIONS(2220), 1, anon_sym_DQUOTE, - ACTIONS(2180), 1, + ACTIONS(2232), 1, anon_sym_BSLASH, - STATE(620), 3, + STATE(630), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat2, - ACTIONS(2178), 33, + ACTIONS(2230), 33, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -48736,16 +52228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [27659] = 2, - ACTIONS(2038), 1, - anon_sym_BSLASH, - ACTIONS(2036), 38, + [9988] = 4, + ACTIONS(1802), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2236), 1, + sym__line_ending, + STATE(646), 2, + sym__whitespace, + aux_sym__code_line_repeat1, + ACTIONS(2234), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48771,6 +52264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -48778,11 +52272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27703] = 1, - ACTIONS(2182), 38, + [10036] = 1, + ACTIONS(2124), 38, sym__line_ending, - sym__soft_line_ending, - sym__eof, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -48804,6 +52297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -48818,9 +52312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27744] = 1, - ACTIONS(2014), 38, + [10077] = 1, + ACTIONS(2238), 38, sym__line_ending, + sym__soft_line_ending, sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -48843,7 +52338,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -48858,8 +52352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27785] = 1, - ACTIONS(2064), 38, + [10118] = 1, + ACTIONS(2094), 38, sym__line_ending, sym__eof, sym__display_math_state_track_marker, @@ -48898,10 +52392,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27826] = 1, - ACTIONS(2184), 38, + [10159] = 1, + ACTIONS(2124), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -48924,6 +52417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -48938,8 +52432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27867] = 1, - ACTIONS(2014), 38, + [10200] = 1, + ACTIONS(1424), 38, sym__line_ending, sym__block_close, sym__display_math_state_track_marker, @@ -48978,10 +52472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27908] = 1, - ACTIONS(1394), 38, + [10241] = 1, + ACTIONS(2240), 38, sym__line_ending, - sym__block_close, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -49003,7 +52498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -49018,8 +52512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27949] = 1, - ACTIONS(2064), 38, + [10282] = 1, + ACTIONS(2094), 38, sym__line_ending, sym__block_close, sym__display_math_state_track_marker, @@ -49058,19 +52552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [27990] = 3, - ACTIONS(2186), 1, - anon_sym_BSLASH, - ACTIONS(2188), 1, - sym_block_continuation, - ACTIONS(2141), 35, - sym__soft_line_ending, + [10323] = 4, + ACTIONS(2242), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2248), 1, + sym__code_span_close, + STATE(661), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2245), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, - anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -49092,6 +52586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -49099,15 +52594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28034] = 4, - ACTIONS(2190), 1, + [10369] = 4, + ACTIONS(2250), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2194), 1, - sym__code_span_close, - STATE(645), 2, + ACTIONS(2254), 1, + sym__latex_span_close, + STATE(673), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2192), 33, + ACTIONS(2252), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49141,15 +52636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28080] = 4, - ACTIONS(2196), 1, + [10415] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2200), 1, - sym__latex_span_close, - STATE(653), 2, + ACTIONS(2260), 1, + sym__code_span_close, + STATE(661), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2198), 33, + ACTIONS(2258), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49183,15 +52678,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28126] = 4, - ACTIONS(2190), 1, + [10461] = 3, + ACTIONS(2262), 1, + anon_sym_BSLASH, + ACTIONS(2264), 1, + sym_block_continuation, + ACTIONS(2214), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2204), 1, - sym__code_span_close, - STATE(641), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2202), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49217,23 +52711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [28172] = 4, - ACTIONS(2196), 1, + [10505] = 1, + ACTIONS(2094), 37, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, - ACTIONS(2208), 1, - sym__latex_span_close, - STATE(642), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2206), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49267,15 +52758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28218] = 4, - ACTIONS(2190), 1, + [10545] = 4, + ACTIONS(2250), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2210), 1, - sym__code_span_close, - STATE(645), 2, + ACTIONS(2268), 1, + sym__latex_span_close, + STATE(676), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2192), 33, + ACTIONS(2266), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49309,15 +52800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28264] = 4, - ACTIONS(2196), 1, + [10591] = 1, + ACTIONS(2124), 37, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, - ACTIONS(2212), 1, - sym__latex_span_close, - STATE(653), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2198), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49351,14 +52839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28310] = 3, - ACTIONS(2186), 1, - anon_sym_BSLASH, - ACTIONS(2214), 1, - sym_block_continuation, - ACTIONS(2141), 35, - sym__soft_line_ending, + [10631] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2272), 1, + sym__code_span_close, + STATE(670), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2270), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49384,20 +52873,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [28354] = 1, - ACTIONS(2014), 37, - sym__line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10677] = 4, + ACTIONS(2250), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2276), 1, + sym__latex_span_close, + STATE(672), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2274), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49431,15 +52923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28394] = 4, - ACTIONS(2216), 1, + [10723] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2222), 1, + ACTIONS(2278), 1, sym__code_span_close, - STATE(645), 2, + STATE(661), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2219), 33, + ACTIONS(2258), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49473,15 +52965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28440] = 4, - ACTIONS(2196), 1, + [10769] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2226), 1, - sym__latex_span_close, - STATE(651), 2, + ACTIONS(2282), 1, + sym__code_span_close, + STATE(674), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2224), 33, + ACTIONS(2280), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49515,15 +53007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28486] = 4, - ACTIONS(2190), 1, + [10815] = 4, + ACTIONS(2250), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2228), 1, - sym__code_span_close, - STATE(645), 2, + ACTIONS(2284), 1, + sym__latex_span_close, + STATE(673), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2192), 33, + ACTIONS(2252), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49557,12 +53049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28532] = 1, - ACTIONS(2064), 37, - sym__line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10861] = 4, + ACTIONS(2248), 1, + sym__latex_span_close, + ACTIONS(2286), 1, aux_sym__commonmark_whitespace_token1, + STATE(673), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2289), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49596,15 +53091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28572] = 4, - ACTIONS(2190), 1, + [10907] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2232), 1, + ACTIONS(2292), 1, sym__code_span_close, - STATE(647), 2, + STATE(661), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2230), 33, + ACTIONS(2258), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49638,15 +53133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28618] = 4, - ACTIONS(2190), 1, + [10953] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2236), 1, + ACTIONS(2296), 1, sym__code_span_close, - STATE(637), 2, + STATE(663), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2234), 33, + ACTIONS(2294), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49680,15 +53175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28664] = 4, - ACTIONS(2196), 1, + [10999] = 4, + ACTIONS(2250), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2238), 1, + ACTIONS(2298), 1, sym__latex_span_close, - STATE(653), 2, + STATE(673), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2198), 33, + ACTIONS(2252), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49722,15 +53217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28710] = 4, - ACTIONS(2196), 1, + [11045] = 4, + ACTIONS(2250), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2242), 1, + ACTIONS(2302), 1, sym__latex_span_close, - STATE(638), 2, + STATE(662), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2240), 33, + ACTIONS(2300), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49764,19 +53259,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28756] = 4, - ACTIONS(2222), 1, - sym__latex_span_close, - ACTIONS(2244), 1, + [11091] = 3, + ACTIONS(2262), 1, + anon_sym_BSLASH, + ACTIONS(2304), 1, + sym_block_continuation, + ACTIONS(2214), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, - STATE(653), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2247), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -49798,7 +53293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -49806,10 +53300,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28802] = 2, - ACTIONS(2250), 1, + [11135] = 2, + ACTIONS(2306), 1, anon_sym_BSLASH, - ACTIONS(2182), 35, + ACTIONS(2198), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -49845,16 +53339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_BSLASH_DQUOTE, sym__word, - [28843] = 2, - ACTIONS(2252), 1, + [11176] = 2, + ACTIONS(2308), 1, anon_sym_BSLASH, - ACTIONS(2154), 35, + ACTIONS(2238), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, + anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -49882,13 +53377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [28884] = 1, - ACTIONS(2014), 36, + [11217] = 2, + ACTIONS(2308), 1, + anon_sym_BSLASH, + ACTIONS(2238), 35, sym__soft_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -49908,24 +53402,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, + anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [28923] = 2, - ACTIONS(2250), 1, + [11258] = 2, + ACTIONS(2310), 1, anon_sym_BSLASH, - ACTIONS(2182), 35, + ACTIONS(2187), 35, sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -49961,17 +53456,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [28964] = 2, - ACTIONS(2254), 1, - anon_sym_BSLASH, - ACTIONS(2125), 35, + [11299] = 1, + ACTIONS(2094), 36, sym__soft_line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, - anon_sym_BSLASH_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, anon_sym_POUND, @@ -49986,13 +53480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, @@ -50000,9 +53494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [29005] = 1, - ACTIONS(2014), 35, - sym__latex_span_close, + [11338] = 1, + ACTIONS(2094), 35, + sym__code_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50037,8 +53531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [29043] = 1, - ACTIONS(2014), 35, + [11376] = 1, + ACTIONS(2248), 35, sym__code_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -50074,8 +53568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [29081] = 1, - ACTIONS(2222), 35, + [11414] = 1, + ACTIONS(2094), 35, sym__latex_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -50111,9 +53605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [29119] = 1, - ACTIONS(2222), 35, - sym__code_span_close, + [11452] = 1, + ACTIONS(2248), 35, + sym__latex_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -50148,7 +53642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [29157] = 15, + [11490] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -50161,31 +53655,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2256), 1, + ACTIONS(2312), 1, ts_builtin_sym_end, - STATE(66), 1, + STATE(73), 1, sym__atx_heading1, - STATE(77), 1, + STATE(85), 1, sym__atx_heading2, - STATE(86), 1, + STATE(90), 1, sym__atx_heading3, - STATE(97), 1, + STATE(99), 1, sym__atx_heading4, - STATE(105), 1, + STATE(107), 1, sym__atx_heading5, - STATE(114), 1, + STATE(118), 1, sym__atx_heading6, - STATE(667), 2, + STATE(690), 2, sym_section, aux_sym_document_repeat2, - STATE(701), 6, + STATE(735), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [29209] = 15, + [11542] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -50198,68 +53692,68 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(358), 1, + ACTIONS(2314), 1, ts_builtin_sym_end, - STATE(66), 1, + STATE(73), 1, sym__atx_heading1, - STATE(77), 1, + STATE(85), 1, sym__atx_heading2, - STATE(86), 1, + STATE(90), 1, sym__atx_heading3, - STATE(97), 1, + STATE(99), 1, sym__atx_heading4, - STATE(105), 1, + STATE(107), 1, sym__atx_heading5, - STATE(114), 1, + STATE(118), 1, sym__atx_heading6, - STATE(667), 2, + STATE(690), 2, sym_section, aux_sym_document_repeat2, - STATE(701), 6, + STATE(735), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [29261] = 15, - ACTIONS(17), 1, + [11594] = 15, + ACTIONS(2316), 1, + ts_builtin_sym_end, + ACTIONS(2318), 1, sym_atx_h1_marker, - ACTIONS(19), 1, + ACTIONS(2321), 1, sym_atx_h2_marker, - ACTIONS(21), 1, + ACTIONS(2324), 1, sym_atx_h3_marker, - ACTIONS(23), 1, + ACTIONS(2327), 1, sym_atx_h4_marker, - ACTIONS(25), 1, + ACTIONS(2330), 1, sym_atx_h5_marker, - ACTIONS(27), 1, + ACTIONS(2333), 1, sym_atx_h6_marker, - ACTIONS(2258), 1, - ts_builtin_sym_end, - STATE(66), 1, + STATE(73), 1, sym__atx_heading1, - STATE(77), 1, + STATE(85), 1, sym__atx_heading2, - STATE(86), 1, + STATE(90), 1, sym__atx_heading3, - STATE(97), 1, + STATE(99), 1, sym__atx_heading4, - STATE(105), 1, + STATE(107), 1, sym__atx_heading5, - STATE(114), 1, + STATE(118), 1, sym__atx_heading6, - STATE(667), 2, + STATE(690), 2, sym_section, aux_sym_document_repeat2, - STATE(701), 6, + STATE(735), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [29313] = 15, + [11646] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -50272,4981 +53766,4770 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2260), 1, + ACTIONS(371), 1, ts_builtin_sym_end, - STATE(66), 1, + STATE(73), 1, sym__atx_heading1, - STATE(77), 1, + STATE(85), 1, sym__atx_heading2, - STATE(86), 1, + STATE(90), 1, sym__atx_heading3, - STATE(97), 1, + STATE(99), 1, sym__atx_heading4, - STATE(105), 1, + STATE(107), 1, sym__atx_heading5, - STATE(114), 1, + STATE(118), 1, sym__atx_heading6, - STATE(667), 2, + STATE(690), 2, sym_section, aux_sym_document_repeat2, - STATE(701), 6, + STATE(735), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [29365] = 15, - ACTIONS(2262), 1, - ts_builtin_sym_end, - ACTIONS(2264), 1, + [11698] = 15, + ACTIONS(17), 1, sym_atx_h1_marker, - ACTIONS(2267), 1, + ACTIONS(19), 1, sym_atx_h2_marker, - ACTIONS(2270), 1, + ACTIONS(21), 1, sym_atx_h3_marker, - ACTIONS(2273), 1, + ACTIONS(23), 1, sym_atx_h4_marker, - ACTIONS(2276), 1, + ACTIONS(25), 1, sym_atx_h5_marker, - ACTIONS(2279), 1, + ACTIONS(27), 1, sym_atx_h6_marker, - STATE(66), 1, + ACTIONS(2336), 1, + ts_builtin_sym_end, + STATE(73), 1, sym__atx_heading1, - STATE(77), 1, + STATE(85), 1, sym__atx_heading2, - STATE(86), 1, + STATE(90), 1, sym__atx_heading3, - STATE(97), 1, + STATE(99), 1, sym__atx_heading4, - STATE(105), 1, + STATE(107), 1, sym__atx_heading5, - STATE(114), 1, + STATE(118), 1, sym__atx_heading6, - STATE(667), 2, + STATE(690), 2, sym_section, aux_sym_document_repeat2, - STATE(701), 6, + STATE(735), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [29417] = 12, - ACTIONS(1692), 1, + [11750] = 12, + ACTIONS(1748), 1, sym_raw_specifier, - ACTIONS(1694), 1, + ACTIONS(1750), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1698), 1, + ACTIONS(1754), 1, anon_sym_RBRACE, - ACTIONS(1700), 1, + ACTIONS(1756), 1, sym_commonmark_name, - ACTIONS(1702), 1, + ACTIONS(1758), 1, sym_id_specifier, - ACTIONS(1704), 1, + ACTIONS(1760), 1, sym_class_specifier, - ACTIONS(1708), 1, + ACTIONS(1764), 1, sym_key_value_key, - STATE(675), 1, + STATE(704), 1, sym__commonmark_whitespace, - STATE(680), 1, + STATE(708), 1, aux_sym_commonmark_attribute_repeat1, - STATE(702), 1, + STATE(745), 1, aux_sym_commonmark_attribute_repeat2, - STATE(760), 1, + STATE(784), 1, aux_sym_commonmark_attribute_repeat3, - STATE(761), 1, + STATE(790), 1, sym__attribute, - [29454] = 8, - ACTIONS(1823), 1, + [11787] = 8, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(2282), 1, + ACTIONS(2338), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(506), 1, + STATE(520), 1, sym__newline, - STATE(690), 1, + STATE(706), 1, sym__whitespace, - STATE(942), 2, + STATE(933), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29482] = 8, - ACTIONS(1813), 1, + [11815] = 8, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(2282), 1, + ACTIONS(2338), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(491), 1, + STATE(524), 1, sym__newline, - STATE(685), 1, + STATE(710), 1, sym__whitespace, - STATE(922), 2, + STATE(948), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29510] = 8, - ACTIONS(1823), 1, + [11843] = 8, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(2282), 1, + ACTIONS(2338), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(503), 1, + STATE(514), 1, sym__newline, - STATE(681), 1, + STATE(705), 1, sym__whitespace, - STATE(945), 2, + STATE(927), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29538] = 8, - ACTIONS(1813), 1, + [11871] = 8, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(2282), 1, + ACTIONS(2338), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(502), 1, + STATE(523), 1, sym__newline, - STATE(684), 1, + STATE(711), 1, sym__whitespace, - STATE(927), 2, + STATE(947), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29566] = 8, - ACTIONS(1823), 1, + [11899] = 8, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(2282), 1, + ACTIONS(2338), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(492), 1, + STATE(531), 1, sym__newline, - STATE(686), 1, + STATE(713), 1, sym__whitespace, - STATE(924), 2, + STATE(968), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29594] = 8, - ACTIONS(1813), 1, + [11927] = 8, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(2282), 1, + ACTIONS(2338), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(505), 1, + STATE(532), 1, sym__newline, - STATE(689), 1, + STATE(714), 1, sym__whitespace, - STATE(941), 2, + STATE(969), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29622] = 10, - ACTIONS(1702), 1, - sym_id_specifier, - ACTIONS(1704), 1, - sym_class_specifier, - ACTIONS(1708), 1, - sym_key_value_key, - ACTIONS(2288), 1, - sym_raw_specifier, - ACTIONS(2290), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, - sym_commonmark_name, - STATE(682), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(723), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(761), 1, - sym__attribute, - STATE(769), 1, - aux_sym_commonmark_attribute_repeat3, - [29653] = 8, - ACTIONS(2294), 1, + [11955] = 8, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2297), 1, + ACTIONS(2346), 1, anon_sym_DASH, - ACTIONS(2300), 1, + ACTIONS(2348), 1, anon_sym_COLON, - STATE(676), 1, + STATE(703), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(758), 1, + STATE(720), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(780), 1, + STATE(734), 1, sym__whitespace, - STATE(842), 1, + STATE(767), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2303), 3, + ACTIONS(2350), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29680] = 8, - ACTIONS(2305), 1, + [11982] = 8, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2307), 1, + ACTIONS(2346), 1, anon_sym_DASH, - ACTIONS(2309), 1, + ACTIONS(2348), 1, anon_sym_COLON, - STATE(676), 1, + STATE(703), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(695), 1, + STATE(720), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(712), 1, + STATE(749), 1, sym__whitespace, - STATE(737), 1, + STATE(772), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2311), 3, + ACTIONS(2352), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29707] = 8, - ACTIONS(2305), 1, + [12009] = 8, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2307), 1, + ACTIONS(2346), 1, anon_sym_DASH, - ACTIONS(2309), 1, + ACTIONS(2348), 1, anon_sym_COLON, - STATE(676), 1, + STATE(703), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(695), 1, + STATE(720), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(703), 1, + STATE(725), 1, sym__whitespace, - STATE(726), 1, + STATE(759), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2313), 3, + ACTIONS(2354), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29734] = 8, - ACTIONS(2305), 1, + [12036] = 8, + ACTIONS(2356), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2307), 1, + ACTIONS(2359), 1, anon_sym_DASH, - ACTIONS(2309), 1, + ACTIONS(2362), 1, anon_sym_COLON, - STATE(676), 1, + STATE(703), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(695), 1, + STATE(779), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(697), 1, + STATE(827), 1, sym__whitespace, - STATE(731), 1, + STATE(858), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2315), 3, + ACTIONS(2365), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [29761] = 9, - ACTIONS(1702), 1, + [12063] = 10, + ACTIONS(1758), 1, sym_id_specifier, - ACTIONS(1704), 1, + ACTIONS(1760), 1, sym_class_specifier, - ACTIONS(1708), 1, + ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2290), 1, + ACTIONS(2367), 1, + sym_raw_specifier, + ACTIONS(2369), 1, anon_sym_RBRACE, - ACTIONS(2292), 1, + ACTIONS(2371), 1, sym_commonmark_name, - STATE(723), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(736), 1, + STATE(709), 1, aux_sym_commonmark_attribute_repeat1, - STATE(761), 1, - sym__attribute, - STATE(769), 1, + STATE(727), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(781), 1, aux_sym_commonmark_attribute_repeat3, - [29789] = 6, - ACTIONS(1823), 1, + STATE(790), 1, + sym__attribute, + [12094] = 6, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(504), 1, + STATE(522), 1, sym__newline, - STATE(881), 2, + STATE(892), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29811] = 9, - ACTIONS(1702), 1, - sym_id_specifier, - ACTIONS(1704), 1, - sym_class_specifier, - ACTIONS(1708), 1, - sym_key_value_key, - ACTIONS(2292), 1, - sym_commonmark_name, - ACTIONS(2317), 1, - anon_sym_RBRACE, - STATE(721), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(736), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(761), 1, - sym__attribute, - STATE(764), 1, - aux_sym_commonmark_attribute_repeat3, - [29839] = 6, - ACTIONS(2286), 1, - aux_sym_info_string_token1, - ACTIONS(2319), 1, + [12116] = 6, + ACTIONS(1877), 1, + sym__line_ending, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2321), 1, - anon_sym_LBRACE_RBRACE, - ACTIONS(2323), 1, - sym_fenced_div_note_id, - STATE(912), 2, + ACTIONS(2342), 1, + aux_sym_info_string_token1, + STATE(529), 1, + sym__newline, + STATE(897), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29861] = 6, - ACTIONS(1813), 1, - sym__line_ending, - ACTIONS(2284), 1, - anon_sym_LBRACE, - ACTIONS(2286), 1, + [12138] = 6, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(500), 1, - sym__newline, - STATE(876), 2, + ACTIONS(2373), 1, + anon_sym_LBRACE, + ACTIONS(2375), 1, + anon_sym_LBRACE_RBRACE, + ACTIONS(2377), 1, + sym_fenced_div_note_id, + STATE(925), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29883] = 6, - ACTIONS(1813), 1, + [12160] = 9, + ACTIONS(1758), 1, + sym_id_specifier, + ACTIONS(1760), 1, + sym_class_specifier, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(2371), 1, + sym_commonmark_name, + STATE(727), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(763), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(781), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(790), 1, + sym__attribute, + [12188] = 9, + ACTIONS(1758), 1, + sym_id_specifier, + ACTIONS(1760), 1, + sym_class_specifier, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2371), 1, + sym_commonmark_name, + ACTIONS(2379), 1, + anon_sym_RBRACE, + STATE(733), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(763), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(790), 1, + sym__attribute, + STATE(794), 1, + aux_sym_commonmark_attribute_repeat3, + [12216] = 6, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(493), 1, + STATE(539), 1, sym__newline, - STATE(928), 2, + STATE(954), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29905] = 6, - ACTIONS(1823), 1, + [12238] = 6, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(494), 1, + STATE(525), 1, sym__newline, - STATE(929), 2, + STATE(953), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [29927] = 9, - ACTIONS(2325), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2327), 1, - anon_sym_DASH, - ACTIONS(2329), 1, - anon_sym_COLON, - ACTIONS(2331), 1, - anon_sym_PIPE, - STATE(678), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(745), 1, - sym_pipe_table_delimiter_row, - STATE(758), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(763), 1, - sym__whitespace, - STATE(842), 1, - sym_pipe_table_delimiter_cell, - [29955] = 9, - ACTIONS(2325), 1, + [12260] = 9, + ACTIONS(2381), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2327), 1, + ACTIONS(2383), 1, anon_sym_DASH, - ACTIONS(2329), 1, + ACTIONS(2385), 1, anon_sym_COLON, - ACTIONS(2331), 1, + ACTIONS(2387), 1, anon_sym_PIPE, - STATE(678), 1, + STATE(702), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(746), 1, + STATE(773), 1, sym_pipe_table_delimiter_row, - STATE(758), 1, + STATE(779), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(763), 1, + STATE(785), 1, sym__whitespace, - STATE(842), 1, + STATE(858), 1, sym_pipe_table_delimiter_cell, - [29983] = 6, - ACTIONS(1813), 1, + [12288] = 6, + ACTIONS(1861), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(507), 1, + STATE(533), 1, sym__newline, - STATE(948), 2, + STATE(971), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30005] = 6, - ACTIONS(1823), 1, + [12310] = 6, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - ACTIONS(2286), 1, + ACTIONS(2342), 1, aux_sym_info_string_token1, - STATE(508), 1, + STATE(534), 1, sym__newline, - STATE(949), 2, + STATE(972), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30027] = 9, - ACTIONS(2325), 1, + [12332] = 9, + ACTIONS(2381), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2327), 1, + ACTIONS(2383), 1, anon_sym_DASH, - ACTIONS(2329), 1, + ACTIONS(2385), 1, anon_sym_COLON, - ACTIONS(2331), 1, + ACTIONS(2387), 1, anon_sym_PIPE, - STATE(678), 1, + STATE(702), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(732), 1, + STATE(753), 1, sym_pipe_table_delimiter_row, - STATE(758), 1, + STATE(779), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(763), 1, + STATE(785), 1, sym__whitespace, - STATE(842), 1, + STATE(858), 1, sym_pipe_table_delimiter_cell, - [30055] = 6, - ACTIONS(2286), 1, + [12360] = 9, + ACTIONS(2381), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2383), 1, + anon_sym_DASH, + ACTIONS(2385), 1, + anon_sym_COLON, + ACTIONS(2387), 1, + anon_sym_PIPE, + STATE(702), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(750), 1, + sym_pipe_table_delimiter_row, + STATE(779), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(785), 1, + sym__whitespace, + STATE(858), 1, + sym_pipe_table_delimiter_cell, + [12388] = 6, + ACTIONS(2342), 1, aux_sym_info_string_token1, - ACTIONS(2319), 1, + ACTIONS(2373), 1, anon_sym_LBRACE, - ACTIONS(2333), 1, + ACTIONS(2389), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2335), 1, + ACTIONS(2391), 1, sym_fenced_div_note_id, - STATE(931), 2, + STATE(956), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30077] = 6, - ACTIONS(2286), 1, + [12410] = 6, + ACTIONS(2342), 1, aux_sym_info_string_token1, - ACTIONS(2319), 1, + ACTIONS(2373), 1, anon_sym_LBRACE, - ACTIONS(2337), 1, + ACTIONS(2393), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2339), 1, + ACTIONS(2395), 1, sym_fenced_div_note_id, - STATE(952), 2, + STATE(974), 2, sym__qmd_attribute, sym_info_string, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30099] = 3, - ACTIONS(2343), 1, + [12432] = 4, + ACTIONS(2399), 1, anon_sym_DASH, - STATE(694), 1, + ACTIONS(2401), 1, + anon_sym_COLON, + STATE(721), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2341), 6, + ACTIONS(2397), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, - anon_sym_COLON, anon_sym_PIPE, - [30114] = 4, - ACTIONS(2348), 1, + [12449] = 4, + ACTIONS(2399), 1, anon_sym_DASH, - ACTIONS(2350), 1, + ACTIONS(2405), 1, anon_sym_COLON, - STATE(694), 1, + STATE(721), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2346), 5, + ACTIONS(2403), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [30131] = 4, - ACTIONS(2348), 1, + [12466] = 3, + ACTIONS(2409), 1, anon_sym_DASH, - ACTIONS(2354), 1, - anon_sym_COLON, - STATE(694), 1, + STATE(721), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2352), 5, + ACTIONS(2407), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [30148] = 5, - ACTIONS(2307), 1, - anon_sym_DASH, - ACTIONS(2309), 1, anon_sym_COLON, - STATE(695), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(739), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2356), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30166] = 5, - ACTIONS(1752), 1, + anon_sym_PIPE, + [12481] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(434), 1, + STATE(303), 1, sym__newline, - STATE(870), 1, + STATE(923), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30184] = 4, - ACTIONS(2358), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2362), 1, - sym_key_value_key, - STATE(755), 1, - sym__commonmark_whitespace, - ACTIONS(2360), 4, - anon_sym_RBRACE, - sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [30200] = 7, - ACTIONS(2325), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2327), 1, - anon_sym_DASH, - ACTIONS(2329), 1, - anon_sym_COLON, - STATE(679), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(758), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(780), 1, - sym__whitespace, - STATE(842), 1, - sym_pipe_table_delimiter_cell, - [30222] = 1, - ACTIONS(1586), 7, - sym_atx_h1_marker, - sym_atx_h2_marker, - sym_atx_h3_marker, - sym_atx_h4_marker, - sym_atx_h5_marker, - sym_atx_h6_marker, - ts_builtin_sym_end, - [30232] = 7, - ACTIONS(1704), 1, - sym_class_specifier, - ACTIONS(1708), 1, - sym_key_value_key, - ACTIONS(2290), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, - sym_commonmark_name, - STATE(761), 1, - sym__attribute, - STATE(762), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(769), 1, - aux_sym_commonmark_attribute_repeat3, - [30254] = 5, - ACTIONS(2307), 1, - anon_sym_DASH, - ACTIONS(2309), 1, - anon_sym_COLON, - STATE(695), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(751), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(2311), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30272] = 5, - ACTIONS(1797), 1, + [12499] = 5, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(269), 1, + STATE(448), 1, sym__newline, - STATE(889), 1, + STATE(945), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30290] = 5, - ACTIONS(1797), 1, + [12517] = 5, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(273), 1, + STATE(452), 1, sym__newline, - STATE(890), 1, + STATE(978), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30308] = 5, - ACTIONS(1797), 1, + [12535] = 5, + ACTIONS(2346), 1, + anon_sym_DASH, + ACTIONS(2348), 1, + anon_sym_COLON, + STATE(720), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(751), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2350), 3, sym__line_ending, - ACTIONS(2284), 1, + sym__eof, + sym__pipe_table_line_ending, + [12553] = 5, + ACTIONS(1810), 1, + sym__line_ending, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(275), 1, + STATE(450), 1, sym__newline, - STATE(891), 1, + STATE(963), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30326] = 5, - ACTIONS(1797), 1, + [12571] = 7, + ACTIONS(1760), 1, + sym_class_specifier, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2371), 1, + sym_commonmark_name, + ACTIONS(2379), 1, + anon_sym_RBRACE, + STATE(783), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(790), 1, + sym__attribute, + STATE(794), 1, + aux_sym_commonmark_attribute_repeat3, + [12593] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(279), 1, + STATE(289), 1, sym__newline, - STATE(892), 1, + STATE(919), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30344] = 5, - ACTIONS(1797), 1, + [12611] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(282), 1, + STATE(291), 1, sym__newline, - STATE(893), 1, + STATE(920), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30362] = 5, - ACTIONS(1797), 1, + [12629] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(284), 1, + STATE(299), 1, sym__newline, - STATE(894), 1, + STATE(921), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30380] = 5, - ACTIONS(1752), 1, + [12647] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(428), 1, + STATE(301), 1, sym__newline, - STATE(956), 1, + STATE(922), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30398] = 5, - ACTIONS(1752), 1, + [12665] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(436), 1, + STATE(305), 1, sym__newline, - STATE(872), 1, + STATE(924), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30416] = 5, - ACTIONS(2307), 1, + [12683] = 7, + ACTIONS(1760), 1, + sym_class_specifier, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2371), 1, + sym_commonmark_name, + ACTIONS(2412), 1, + anon_sym_RBRACE, + STATE(778), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(783), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(790), 1, + sym__attribute, + [12705] = 5, + ACTIONS(2346), 1, anon_sym_DASH, - ACTIONS(2309), 1, + ACTIONS(2348), 1, anon_sym_COLON, - STATE(695), 1, + STATE(720), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(734), 1, + STATE(771), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2315), 3, + ACTIONS(2352), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30434] = 5, - ACTIONS(1752), 1, - sym__line_ending, - ACTIONS(2284), 1, - anon_sym_LBRACE, - STATE(432), 1, - sym__newline, - STATE(866), 1, - sym__qmd_attribute, - STATE(1028), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [30452] = 5, - ACTIONS(1795), 1, + [12723] = 1, + ACTIONS(1566), 7, + sym_atx_h1_marker, + sym_atx_h2_marker, + sym_atx_h3_marker, + sym_atx_h4_marker, + sym_atx_h5_marker, + sym_atx_h6_marker, + ts_builtin_sym_end, + [12733] = 4, + ACTIONS(2414), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2418), 1, + sym_key_value_key, + STATE(792), 1, + sym__commonmark_whitespace, + ACTIONS(2416), 4, + anon_sym_RBRACE, + sym_commonmark_name, + sym_id_specifier, + sym_class_specifier, + [12749] = 5, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(357), 1, + STATE(373), 1, sym__newline, - STATE(853), 1, + STATE(877), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30470] = 5, - ACTIONS(1795), 1, + [12767] = 5, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(359), 1, + STATE(375), 1, sym__newline, - STATE(854), 1, + STATE(878), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30488] = 5, - ACTIONS(1795), 1, + [12785] = 5, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(361), 1, + STATE(377), 1, sym__newline, - STATE(855), 1, + STATE(879), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30506] = 5, - ACTIONS(1795), 1, + [12803] = 5, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(363), 1, + STATE(379), 1, sym__newline, - STATE(856), 1, + STATE(880), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30524] = 5, - ACTIONS(1795), 1, + [12821] = 5, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(365), 1, + STATE(381), 1, sym__newline, - STATE(857), 1, + STATE(881), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30542] = 5, - ACTIONS(1795), 1, + [12839] = 5, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(367), 1, + STATE(383), 1, sym__newline, - STATE(858), 1, + STATE(882), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30560] = 7, - ACTIONS(2325), 1, + [12857] = 7, + ACTIONS(2381), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2327), 1, + ACTIONS(2383), 1, anon_sym_DASH, - ACTIONS(2329), 1, + ACTIONS(2385), 1, anon_sym_COLON, - STATE(677), 1, + STATE(700), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(758), 1, + STATE(779), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(780), 1, + STATE(827), 1, sym__whitespace, - STATE(842), 1, + STATE(858), 1, sym_pipe_table_delimiter_cell, - [30582] = 7, - ACTIONS(1704), 1, + [12879] = 5, + ACTIONS(1810), 1, + sym__line_ending, + ACTIONS(2340), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym__newline, + STATE(917), 1, + sym__qmd_attribute, + STATE(1030), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [12897] = 7, + ACTIONS(1760), 1, sym_class_specifier, - ACTIONS(1708), 1, + ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2292), 1, - sym_commonmark_name, - ACTIONS(2364), 1, + ACTIONS(2369), 1, anon_sym_RBRACE, - STATE(753), 1, + ACTIONS(2371), 1, + sym_commonmark_name, + STATE(781), 1, aux_sym_commonmark_attribute_repeat3, - STATE(761), 1, - sym__attribute, - STATE(762), 1, + STATE(783), 1, aux_sym_commonmark_attribute_repeat2, - [30604] = 5, - ACTIONS(1752), 1, + STATE(790), 1, + sym__attribute, + [12919] = 5, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(426), 1, + STATE(454), 1, sym__newline, - STATE(938), 1, + STATE(885), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30622] = 7, - ACTIONS(1704), 1, - sym_class_specifier, - ACTIONS(1708), 1, - sym_key_value_key, - ACTIONS(2292), 1, - sym_commonmark_name, - ACTIONS(2317), 1, - anon_sym_RBRACE, - STATE(761), 1, - sym__attribute, - STATE(762), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(764), 1, - aux_sym_commonmark_attribute_repeat3, - [30644] = 5, - ACTIONS(1752), 1, + [12937] = 5, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2284), 1, + ACTIONS(2340), 1, anon_sym_LBRACE, - STATE(430), 1, + STATE(446), 1, sym__newline, - STATE(861), 1, + STATE(940), 1, sym__qmd_attribute, - STATE(1028), 3, + STATE(1030), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [30662] = 6, - ACTIONS(1795), 1, + [12955] = 7, + ACTIONS(2381), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2383), 1, + anon_sym_DASH, + ACTIONS(2385), 1, + anon_sym_COLON, + STATE(701), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(779), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(827), 1, + sym__whitespace, + STATE(858), 1, + sym_pipe_table_delimiter_cell, + [12977] = 5, + ACTIONS(2346), 1, + anon_sym_DASH, + ACTIONS(2348), 1, + anon_sym_COLON, + STATE(720), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(764), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2420), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [12995] = 6, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2366), 1, + ACTIONS(2422), 1, sym__eof, - ACTIONS(2368), 1, + ACTIONS(2424), 1, sym__pipe_table_line_ending, - STATE(175), 1, + STATE(176), 1, sym__newline, - STATE(454), 1, + STATE(479), 1, sym__pipe_table_newline, - STATE(766), 1, + STATE(768), 1, aux_sym_pipe_table_repeat1, - [30681] = 4, - ACTIONS(2305), 1, + [13014] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, + ACTIONS(2426), 1, anon_sym_PIPE, - STATE(770), 1, + STATE(798), 1, sym__whitespace, - ACTIONS(2311), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30696] = 1, - ACTIONS(2014), 6, + ACTIONS(2352), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_PIPE, - [30705] = 4, - ACTIONS(2305), 1, + [13029] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2372), 1, + ACTIONS(2428), 1, anon_sym_PIPE, - STATE(801), 1, + STATE(808), 1, sym__whitespace, - ACTIONS(2374), 3, + ACTIONS(1798), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30720] = 6, - ACTIONS(2376), 1, + [13044] = 6, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(2424), 1, + sym__pipe_table_line_ending, + ACTIONS(2430), 1, + sym__eof, + STATE(147), 1, + sym__newline, + STATE(479), 1, + sym__pipe_table_newline, + STATE(756), 1, + aux_sym_pipe_table_repeat1, + [13063] = 6, + ACTIONS(2432), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2378), 1, + ACTIONS(2434), 1, aux_sym_key_value_value_token1, - ACTIONS(2380), 1, + ACTIONS(2436), 1, anon_sym_SQUOTE, - ACTIONS(2382), 1, + ACTIONS(2438), 1, anon_sym_DQUOTE, - STATE(789), 1, + STATE(800), 1, sym_key_value_value, - STATE(790), 1, + STATE(806), 1, sym__commonmark_whitespace, - [30739] = 1, - ACTIONS(2384), 6, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [30748] = 4, - ACTIONS(2305), 1, + [13082] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, + ACTIONS(2440), 1, anon_sym_PIPE, - STATE(788), 1, + STATE(822), 1, sym__whitespace, - ACTIONS(2356), 3, + ACTIONS(1879), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30763] = 6, - ACTIONS(1797), 1, + [13097] = 6, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2368), 1, + ACTIONS(2424), 1, sym__pipe_table_line_ending, - ACTIONS(2386), 1, + ACTIONS(2442), 1, sym__eof, - STATE(144), 1, + STATE(148), 1, sym__newline, - STATE(454), 1, + STATE(479), 1, sym__pipe_table_newline, - STATE(735), 1, + STATE(793), 1, aux_sym_pipe_table_repeat1, - [30782] = 1, - ACTIONS(2388), 6, + [13116] = 4, + ACTIONS(2344), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2428), 1, + anon_sym_PIPE, + STATE(821), 1, + sym__whitespace, + ACTIONS(1879), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, + [13131] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [30791] = 4, - ACTIONS(2305), 1, + ACTIONS(2440), 1, + anon_sym_PIPE, + STATE(804), 1, + sym__whitespace, + ACTIONS(1798), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13146] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2390), 1, + ACTIONS(2444), 1, anon_sym_PIPE, - STATE(785), 1, + STATE(823), 1, sym__whitespace, - ACTIONS(2356), 3, + ACTIONS(2350), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30806] = 6, - ACTIONS(1797), 1, + [13161] = 4, + ACTIONS(2446), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2450), 1, + sym_key_value_key, + STATE(811), 1, + sym__commonmark_whitespace, + ACTIONS(2448), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [13176] = 6, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2368), 1, + ACTIONS(2424), 1, sym__pipe_table_line_ending, - ACTIONS(2392), 1, + ACTIONS(2452), 1, sym__eof, - STATE(145), 1, + STATE(180), 1, sym__newline, - STATE(454), 1, + STATE(479), 1, sym__pipe_table_newline, - STATE(766), 1, + STATE(793), 1, aux_sym_pipe_table_repeat1, - [30825] = 4, - ACTIONS(2396), 1, + [13195] = 6, + ACTIONS(2434), 1, + aux_sym_key_value_value_token1, + ACTIONS(2436), 1, + anon_sym_SQUOTE, + ACTIONS(2438), 1, + anon_sym_DQUOTE, + ACTIONS(2454), 1, + aux_sym__commonmark_whitespace_token1, + STATE(818), 1, + sym_key_value_value, + STATE(826), 1, + sym__commonmark_whitespace, + [13214] = 4, + ACTIONS(2458), 1, sym_id_specifier, - ACTIONS(2399), 1, + ACTIONS(2461), 1, sym_key_value_key, - STATE(736), 1, + STATE(763), 1, aux_sym_commonmark_attribute_repeat1, - ACTIONS(2394), 3, + ACTIONS(2456), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [30840] = 4, - ACTIONS(2305), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, - anon_sym_PIPE, - STATE(778), 1, - sym__whitespace, - ACTIONS(2315), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30855] = 6, - ACTIONS(1752), 1, - sym__line_ending, - ACTIONS(2368), 1, - sym__pipe_table_line_ending, - ACTIONS(2401), 1, - sym__eof, - STATE(174), 1, - sym__newline, - STATE(454), 1, - sym__pipe_table_newline, - STATE(766), 1, - aux_sym_pipe_table_repeat1, - [30874] = 4, - ACTIONS(2305), 1, + [13229] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2390), 1, + ACTIONS(2426), 1, anon_sym_PIPE, - STATE(793), 1, + STATE(810), 1, sym__whitespace, - ACTIONS(2403), 3, + ACTIONS(2463), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30889] = 4, - ACTIONS(2305), 1, + [13244] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2372), 1, + ACTIONS(2440), 1, anon_sym_PIPE, - STATE(798), 1, + STATE(824), 1, sym__whitespace, - ACTIONS(1801), 3, + ACTIONS(1790), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30904] = 4, - ACTIONS(2305), 1, + [13259] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2405), 1, + ACTIONS(2428), 1, anon_sym_PIPE, - STATE(783), 1, + STATE(812), 1, sym__whitespace, - ACTIONS(1744), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [30919] = 1, - ACTIONS(2303), 6, + ACTIONS(1788), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, + [13274] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [30928] = 4, - ACTIONS(2305), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2372), 1, + ACTIONS(2444), 1, anon_sym_PIPE, - STATE(791), 1, + STATE(796), 1, sym__whitespace, - ACTIONS(1734), 3, + ACTIONS(2352), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [30943] = 6, - ACTIONS(2378), 1, - aux_sym_key_value_value_token1, - ACTIONS(2380), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - anon_sym_DQUOTE, - ACTIONS(2407), 1, - aux_sym__commonmark_whitespace_token1, - STATE(773), 1, - sym_key_value_value, - STATE(794), 1, - sym__commonmark_whitespace, - [30962] = 6, - ACTIONS(1752), 1, - sym__line_ending, - ACTIONS(2368), 1, - sym__pipe_table_line_ending, - ACTIONS(2409), 1, - sym__eof, - STATE(167), 1, - sym__newline, - STATE(454), 1, - sym__pipe_table_newline, - STATE(738), 1, - aux_sym_pipe_table_repeat1, - [30981] = 6, - ACTIONS(1795), 1, + [13289] = 6, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2368), 1, + ACTIONS(2424), 1, sym__pipe_table_line_ending, - ACTIONS(2411), 1, + ACTIONS(2465), 1, sym__eof, - STATE(182), 1, + STATE(183), 1, sym__newline, - STATE(454), 1, + STATE(479), 1, sym__pipe_table_newline, - STATE(725), 1, + STATE(793), 1, aux_sym_pipe_table_repeat1, - [31000] = 4, - ACTIONS(2305), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2405), 1, - anon_sym_PIPE, - STATE(803), 1, - sym__whitespace, - ACTIONS(1736), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [31015] = 4, - ACTIONS(2413), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2417), 1, - sym_key_value_key, - STATE(772), 1, - sym__commonmark_whitespace, - ACTIONS(2415), 3, - anon_sym_RBRACE, - sym_commonmark_name, - sym_class_specifier, - [31030] = 4, - ACTIONS(2305), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2405), 1, - anon_sym_PIPE, - STATE(792), 1, - sym__whitespace, - ACTIONS(1734), 3, + [13308] = 1, + ACTIONS(2094), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31045] = 4, - ACTIONS(2305), 1, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [13317] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2372), 1, + ACTIONS(2428), 1, anon_sym_PIPE, - STATE(786), 1, + STATE(825), 1, sym__whitespace, - ACTIONS(1744), 3, + ACTIONS(2467), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31060] = 4, - ACTIONS(2305), 1, + [13332] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2390), 1, + ACTIONS(2426), 1, anon_sym_PIPE, - STATE(782), 1, + STATE(801), 1, sym__whitespace, - ACTIONS(2315), 3, + ACTIONS(2420), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31075] = 4, - ACTIONS(2305), 1, + [13347] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2405), 1, + ACTIONS(2444), 1, anon_sym_PIPE, - STATE(799), 1, + STATE(807), 1, sym__whitespace, - ACTIONS(1801), 3, + ACTIONS(2420), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31090] = 5, - ACTIONS(1708), 1, - sym_key_value_key, - ACTIONS(2292), 1, - sym_commonmark_name, - ACTIONS(2419), 1, - anon_sym_RBRACE, + [13362] = 6, + ACTIONS(1808), 1, + sym__line_ending, + ACTIONS(2424), 1, + sym__pipe_table_line_ending, + ACTIONS(2469), 1, + sym__eof, + STATE(181), 1, + sym__newline, + STATE(479), 1, + sym__pipe_table_newline, STATE(761), 1, - sym__attribute, - STATE(765), 1, - aux_sym_commonmark_attribute_repeat3, - [31106] = 3, - ACTIONS(2421), 1, - anon_sym_DASH, - STATE(754), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2341), 3, + aux_sym_pipe_table_repeat1, + [13381] = 1, + ACTIONS(2471), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, + anon_sym_DASH, anon_sym_COLON, - anon_sym_PIPE, - [31118] = 2, - ACTIONS(2399), 1, - sym_key_value_key, - ACTIONS(2394), 4, - anon_sym_RBRACE, - sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [31128] = 4, - ACTIONS(2424), 1, + [13390] = 1, + ACTIONS(2473), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + aux_sym__commonmark_whitespace_token1, anon_sym_DASH, - ACTIONS(2426), 1, anon_sym_COLON, - STATE(754), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2352), 2, + [13399] = 4, + ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2440), 1, anon_sym_PIPE, - [31142] = 1, - ACTIONS(2428), 5, + STATE(813), 1, + sym__whitespace, + ACTIONS(1788), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13414] = 1, + ACTIONS(2365), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [31150] = 4, - ACTIONS(2424), 1, anon_sym_DASH, - ACTIONS(2430), 1, anon_sym_COLON, - STATE(754), 1, + [13423] = 5, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2371), 1, + sym_commonmark_name, + ACTIONS(2475), 1, + anon_sym_RBRACE, + STATE(790), 1, + sym__attribute, + STATE(791), 1, + aux_sym_commonmark_attribute_repeat3, + [13439] = 4, + ACTIONS(2477), 1, + anon_sym_DASH, + ACTIONS(2479), 1, + anon_sym_COLON, + STATE(787), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2346), 2, + ACTIONS(2403), 2, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [31164] = 1, - ACTIONS(2432), 5, + [13453] = 1, + ACTIONS(2481), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [31172] = 5, - ACTIONS(1708), 1, + [13461] = 5, + ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2290), 1, - anon_sym_RBRACE, - ACTIONS(2292), 1, + ACTIONS(2371), 1, sym_commonmark_name, - STATE(761), 1, + ACTIONS(2379), 1, + anon_sym_RBRACE, + STATE(790), 1, sym__attribute, - STATE(765), 1, + STATE(791), 1, aux_sym_commonmark_attribute_repeat3, - [31188] = 4, - ACTIONS(2434), 1, + [13477] = 1, + ACTIONS(2483), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2438), 1, + anon_sym_PIPE, + [13485] = 4, + ACTIONS(2487), 1, + sym_class_specifier, + ACTIONS(2490), 1, sym_key_value_key, - STATE(805), 1, - sym__commonmark_whitespace, - ACTIONS(2436), 2, + STATE(783), 1, + aux_sym_commonmark_attribute_repeat2, + ACTIONS(2485), 2, anon_sym_RBRACE, sym_commonmark_name, - [31202] = 4, - ACTIONS(2442), 1, - sym_class_specifier, - ACTIONS(2445), 1, + [13499] = 5, + ACTIONS(1764), 1, sym_key_value_key, - STATE(762), 1, - aux_sym_commonmark_attribute_repeat2, - ACTIONS(2440), 2, + ACTIONS(2369), 1, anon_sym_RBRACE, + ACTIONS(2371), 1, sym_commonmark_name, - [31216] = 5, - ACTIONS(2327), 1, + STATE(790), 1, + sym__attribute, + STATE(791), 1, + aux_sym_commonmark_attribute_repeat3, + [13515] = 5, + ACTIONS(2383), 1, anon_sym_DASH, - ACTIONS(2329), 1, + ACTIONS(2385), 1, anon_sym_COLON, - ACTIONS(2447), 1, + ACTIONS(2492), 1, anon_sym_PIPE, - STATE(758), 1, + STATE(779), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(814), 1, + STATE(866), 1, sym_pipe_table_delimiter_cell, - [31232] = 5, - ACTIONS(1708), 1, - sym_key_value_key, - ACTIONS(2292), 1, - sym_commonmark_name, - ACTIONS(2364), 1, - anon_sym_RBRACE, - STATE(761), 1, - sym__attribute, - STATE(765), 1, - aux_sym_commonmark_attribute_repeat3, - [31248] = 5, - ACTIONS(2449), 1, - anon_sym_RBRACE, - ACTIONS(2451), 1, - sym_commonmark_name, - ACTIONS(2454), 1, - sym_key_value_key, - STATE(761), 1, - sym__attribute, - STATE(765), 1, - aux_sym_commonmark_attribute_repeat3, - [31264] = 4, - ACTIONS(2459), 1, - sym__pipe_table_line_ending, - STATE(454), 1, - sym__pipe_table_newline, - STATE(766), 1, - aux_sym_pipe_table_repeat1, - ACTIONS(2457), 2, - sym__line_ending, - sym__eof, - [31278] = 2, - ACTIONS(2462), 1, + [13531] = 2, + ACTIONS(2494), 1, sym_block_continuation, - ACTIONS(1321), 4, + ACTIONS(1350), 4, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, anon_sym_PIPE, - [31288] = 1, - ACTIONS(2464), 5, + [13541] = 3, + ACTIONS(2496), 1, + anon_sym_DASH, + STATE(787), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2407), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_COLON, + anon_sym_PIPE, + [13553] = 1, + ACTIONS(2499), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [31296] = 5, - ACTIONS(1708), 1, + [13561] = 4, + ACTIONS(2477), 1, + anon_sym_DASH, + ACTIONS(2501), 1, + anon_sym_COLON, + STATE(787), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2397), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [13575] = 4, + ACTIONS(2503), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2507), 1, sym_key_value_key, - ACTIONS(2292), 1, + STATE(874), 1, + sym__commonmark_whitespace, + ACTIONS(2505), 2, + anon_sym_RBRACE, sym_commonmark_name, - ACTIONS(2317), 1, + [13589] = 5, + ACTIONS(2509), 1, anon_sym_RBRACE, - STATE(761), 1, + ACTIONS(2511), 1, + sym_commonmark_name, + ACTIONS(2514), 1, + sym_key_value_key, + STATE(790), 1, sym__attribute, - STATE(765), 1, + STATE(791), 1, aux_sym_commonmark_attribute_repeat3, - [31312] = 2, - ACTIONS(2390), 1, - anon_sym_PIPE, - ACTIONS(2315), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [31321] = 4, - ACTIONS(1801), 1, - sym__line_ending, - ACTIONS(2466), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2468), 1, - anon_sym_PIPE, - STATE(877), 1, - sym__whitespace, - [31334] = 2, - ACTIONS(2445), 1, + [13605] = 2, + ACTIONS(2461), 1, sym_key_value_key, - ACTIONS(2440), 3, + ACTIONS(2456), 4, anon_sym_RBRACE, sym_commonmark_name, + sym_id_specifier, sym_class_specifier, - [31343] = 2, - ACTIONS(2472), 1, + [13615] = 4, + ACTIONS(2519), 1, + sym__pipe_table_line_ending, + STATE(479), 1, + sym__pipe_table_newline, + STATE(793), 1, + aux_sym_pipe_table_repeat1, + ACTIONS(2517), 2, + sym__line_ending, + sym__eof, + [13629] = 5, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2371), 1, + sym_commonmark_name, + ACTIONS(2412), 1, + anon_sym_RBRACE, + STATE(790), 1, + sym__attribute, + STATE(791), 1, + aux_sym_commonmark_attribute_repeat3, + [13645] = 2, + ACTIONS(2524), 1, sym_key_value_key, - ACTIONS(2470), 3, + ACTIONS(2522), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [31352] = 4, - ACTIONS(1801), 1, - sym__line_ending, - ACTIONS(2466), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2474), 1, + [13654] = 2, + ACTIONS(2426), 1, anon_sym_PIPE, - STATE(885), 1, - sym__whitespace, - [31365] = 2, - ACTIONS(2478), 1, + ACTIONS(2420), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13663] = 2, + ACTIONS(2528), 1, sym_key_value_key, - ACTIONS(2476), 3, + ACTIONS(2526), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [31374] = 2, - ACTIONS(2016), 1, + [13672] = 2, + ACTIONS(2530), 1, + anon_sym_PIPE, + ACTIONS(2420), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13681] = 2, + ACTIONS(2096), 1, anon_sym_LBRACE, - ACTIONS(2014), 3, + ACTIONS(2094), 3, sym_fenced_div_note_id, anon_sym_LBRACE_RBRACE, aux_sym_info_string_token1, - [31383] = 2, - ACTIONS(2482), 1, + [13690] = 2, + ACTIONS(2534), 1, sym_key_value_key, - ACTIONS(2480), 3, + ACTIONS(2532), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [31392] = 2, - ACTIONS(2390), 1, + [13699] = 2, + ACTIONS(2530), 1, anon_sym_PIPE, - ACTIONS(2356), 3, + ACTIONS(2463), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31401] = 1, - ACTIONS(1394), 4, + [13708] = 1, + ACTIONS(1424), 4, aux_sym__commonmark_whitespace_token1, anon_sym_DASH, anon_sym_COLON, anon_sym_PIPE, - [31408] = 4, - ACTIONS(2327), 1, - anon_sym_DASH, - ACTIONS(2329), 1, - anon_sym_COLON, - STATE(758), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(814), 1, - sym_pipe_table_delimiter_cell, - [31421] = 2, - ACTIONS(2486), 1, - sym_key_value_key, - ACTIONS(2484), 3, + [13715] = 4, + ACTIONS(2536), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2538), 1, anon_sym_RBRACE, - sym_commonmark_name, - [31430] = 2, - ACTIONS(2488), 1, + ACTIONS(2540), 1, + anon_sym_EQ, + STATE(1055), 1, + sym__commonmark_whitespace, + [13728] = 2, + ACTIONS(2428), 1, anon_sym_PIPE, - ACTIONS(2356), 3, + ACTIONS(1788), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31439] = 2, - ACTIONS(2372), 1, - anon_sym_PIPE, - ACTIONS(1734), 3, + [13737] = 4, + ACTIONS(1790), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [31448] = 4, - ACTIONS(2490), 1, + ACTIONS(2542), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2492), 1, - anon_sym_RBRACE, - ACTIONS(2494), 1, - anon_sym_EQ, - STATE(1068), 1, - sym__commonmark_whitespace, - [31461] = 2, - ACTIONS(2488), 1, + ACTIONS(2544), 1, + anon_sym_PIPE, + STATE(916), 1, + sym__whitespace, + [13750] = 4, + ACTIONS(2434), 1, + aux_sym_key_value_value_token1, + ACTIONS(2436), 1, + anon_sym_SQUOTE, + ACTIONS(2438), 1, + anon_sym_DQUOTE, + STATE(828), 1, + sym_key_value_value, + [13763] = 2, + ACTIONS(2426), 1, anon_sym_PIPE, - ACTIONS(2403), 3, + ACTIONS(2463), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31470] = 2, - ACTIONS(2496), 1, + [13772] = 2, + ACTIONS(2546), 1, anon_sym_PIPE, - ACTIONS(1734), 3, + ACTIONS(1788), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31479] = 4, - ACTIONS(1736), 1, + [13781] = 4, + ACTIONS(1879), 1, sym__line_ending, - ACTIONS(2466), 1, + ACTIONS(2542), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2474), 1, + ACTIONS(2548), 1, anon_sym_PIPE, - STATE(901), 1, + STATE(883), 1, sym__whitespace, - [31492] = 2, - ACTIONS(2390), 1, + [13794] = 2, + ACTIONS(2530), 1, anon_sym_PIPE, - ACTIONS(2403), 3, + ACTIONS(2550), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31501] = 2, - ACTIONS(2500), 1, + [13803] = 2, + ACTIONS(2490), 1, sym_key_value_key, - ACTIONS(2498), 3, - aux_sym__commonmark_whitespace_token1, + ACTIONS(2485), 3, anon_sym_RBRACE, sym_commonmark_name, - [31510] = 4, - ACTIONS(2378), 1, - aux_sym_key_value_value_token1, - ACTIONS(2380), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - anon_sym_DQUOTE, - STATE(775), 1, - sym_key_value_value, - [31523] = 2, - ACTIONS(2496), 1, + sym_class_specifier, + [13812] = 2, + ACTIONS(2546), 1, anon_sym_PIPE, - ACTIONS(1801), 3, + ACTIONS(1879), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31532] = 2, - ACTIONS(2372), 1, + [13821] = 2, + ACTIONS(2428), 1, anon_sym_PIPE, - ACTIONS(1801), 3, + ACTIONS(1879), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31541] = 2, - ACTIONS(2488), 1, + [13830] = 4, + ACTIONS(1788), 1, + sym__line_ending, + ACTIONS(2542), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2548), 1, anon_sym_PIPE, - ACTIONS(2502), 3, + STATE(937), 1, + sym__whitespace, + [13843] = 4, + ACTIONS(1879), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [31550] = 4, - ACTIONS(2378), 1, - aux_sym_key_value_value_token1, - ACTIONS(2380), 1, - anon_sym_SQUOTE, - ACTIONS(2382), 1, - anon_sym_DQUOTE, - STATE(789), 1, - sym_key_value_value, - [31563] = 4, - ACTIONS(2374), 1, + ACTIONS(2542), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2544), 1, + anon_sym_PIPE, + STATE(889), 1, + sym__whitespace, + [13856] = 4, + ACTIONS(1788), 1, sym__line_ending, - ACTIONS(2466), 1, + ACTIONS(2542), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2468), 1, + ACTIONS(2544), 1, anon_sym_PIPE, - STATE(903), 1, + STATE(900), 1, sym__whitespace, - [31576] = 4, - ACTIONS(1744), 1, + [13869] = 4, + ACTIONS(1798), 1, sym__line_ending, - ACTIONS(2466), 1, + ACTIONS(2542), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2474), 1, + ACTIONS(2544), 1, anon_sym_PIPE, - STATE(917), 1, + STATE(899), 1, sym__whitespace, - [31589] = 4, - ACTIONS(1744), 1, + [13882] = 2, + ACTIONS(2554), 1, + sym_key_value_key, + ACTIONS(2552), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [13891] = 2, + ACTIONS(2558), 1, + sym_key_value_key, + ACTIONS(2556), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [13900] = 4, + ACTIONS(1798), 1, sym__line_ending, - ACTIONS(2466), 1, + ACTIONS(2542), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2468), 1, + ACTIONS(2548), 1, anon_sym_PIPE, - STATE(925), 1, + STATE(938), 1, sym__whitespace, - [31602] = 2, - ACTIONS(2496), 1, + [13913] = 2, + ACTIONS(2546), 1, anon_sym_PIPE, - ACTIONS(2374), 3, + ACTIONS(2467), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31611] = 2, - ACTIONS(2372), 1, + [13922] = 2, + ACTIONS(2428), 1, anon_sym_PIPE, - ACTIONS(2374), 3, + ACTIONS(2467), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31620] = 4, - ACTIONS(1734), 1, - sym__line_ending, - ACTIONS(2466), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2468), 1, - anon_sym_PIPE, - STATE(913), 1, - sym__whitespace, - [31633] = 2, - ACTIONS(2496), 1, + [13931] = 2, + ACTIONS(2426), 1, anon_sym_PIPE, - ACTIONS(2504), 3, + ACTIONS(2352), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31642] = 4, - ACTIONS(1734), 1, - sym__line_ending, - ACTIONS(2466), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2474), 1, + [13940] = 2, + ACTIONS(2428), 1, anon_sym_PIPE, - STATE(950), 1, - sym__whitespace, - [31655] = 2, - ACTIONS(2372), 1, + ACTIONS(1798), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13949] = 2, + ACTIONS(2546), 1, anon_sym_PIPE, - ACTIONS(1744), 3, + ACTIONS(2560), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [31664] = 2, - ACTIONS(2508), 1, + [13958] = 4, + ACTIONS(2434), 1, + aux_sym_key_value_value_token1, + ACTIONS(2436), 1, + anon_sym_SQUOTE, + ACTIONS(2438), 1, + anon_sym_DQUOTE, + STATE(800), 1, + sym_key_value_value, + [13971] = 4, + ACTIONS(2383), 1, + anon_sym_DASH, + ACTIONS(2385), 1, + anon_sym_COLON, + STATE(779), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(866), 1, + sym_pipe_table_delimiter_cell, + [13984] = 2, + ACTIONS(2564), 1, sym_key_value_key, - ACTIONS(2506), 3, + ACTIONS(2562), 3, aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - [31673] = 2, - ACTIONS(2510), 1, - sym_key_value_key, - ACTIONS(2449), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [31681] = 3, - ACTIONS(1752), 1, + [13993] = 4, + ACTIONS(2467), 1, sym__line_ending, - ACTIONS(2512), 1, - sym__eof, - STATE(439), 1, - sym__newline, - [31691] = 3, - ACTIONS(2514), 1, + ACTIONS(2542), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2516), 1, - anon_sym_RBRACE, - STATE(1047), 1, - sym__commonmark_whitespace, - [31701] = 3, - ACTIONS(1752), 1, + ACTIONS(2548), 1, + anon_sym_PIPE, + STATE(983), 1, + sym__whitespace, + [14006] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2518), 1, + ACTIONS(2568), 1, sym__eof, - STATE(440), 1, + STATE(1001), 1, sym__newline, - [31711] = 3, - ACTIONS(1752), 1, + [14016] = 3, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2520), 1, + ACTIONS(2570), 1, sym__eof, - STATE(325), 1, + STATE(432), 1, sym__newline, - [31721] = 3, - ACTIONS(2522), 1, + [14026] = 3, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2524), 1, + ACTIONS(2572), 1, sym__eof, - STATE(1019), 1, + STATE(435), 1, sym__newline, - [31731] = 3, - ACTIONS(1795), 1, + [14036] = 1, + ACTIONS(2483), 3, + sym__line_ending, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [14042] = 3, + ACTIONS(2381), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2428), 1, + anon_sym_PIPE, + STATE(1087), 1, + sym__whitespace, + [14052] = 3, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2526), 1, + ACTIONS(2574), 1, sym__eof, - STATE(413), 1, + STATE(217), 1, sym__newline, - [31741] = 3, - ACTIONS(1795), 1, + [14062] = 3, + ACTIONS(2576), 1, sym__line_ending, - ACTIONS(2528), 1, + ACTIONS(2578), 1, sym__eof, - STATE(416), 1, + STATE(1057), 1, sym__newline, - [31751] = 3, - ACTIONS(2522), 1, + [14072] = 3, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2530), 1, + ACTIONS(2580), 1, sym__eof, - STATE(1029), 1, + STATE(341), 1, sym__newline, - [31761] = 3, - ACTIONS(2325), 1, + [14082] = 3, + ACTIONS(2381), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2390), 1, + ACTIONS(2548), 1, anon_sym_PIPE, - STATE(1044), 1, + STATE(1075), 1, sym__whitespace, - [31771] = 3, - ACTIONS(1752), 1, + [14092] = 3, + ACTIONS(2381), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2440), 1, + anon_sym_PIPE, + STATE(1077), 1, + sym__whitespace, + [14102] = 1, + ACTIONS(2517), 3, sym__line_ending, - ACTIONS(2532), 1, sym__eof, - STATE(328), 1, - sym__newline, - [31781] = 3, - ACTIONS(2490), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2494), 1, - anon_sym_EQ, - STATE(1068), 1, - sym__commonmark_whitespace, - [31791] = 3, - ACTIONS(1797), 1, + sym__pipe_table_line_ending, + [14108] = 3, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2534), 1, + ACTIONS(2582), 1, sym__eof, - STATE(198), 1, + STATE(360), 1, sym__newline, - [31801] = 3, - ACTIONS(2536), 1, + [14118] = 3, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2538), 1, + ACTIONS(2584), 1, sym__eof, - STATE(996), 1, + STATE(361), 1, sym__newline, - [31811] = 3, - ACTIONS(2325), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2372), 1, - anon_sym_PIPE, - STATE(965), 1, - sym__whitespace, - [31821] = 3, - ACTIONS(1795), 1, + [14128] = 3, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2540), 1, + ACTIONS(2586), 1, sym__eof, - STATE(344), 1, + STATE(351), 1, sym__newline, - [31831] = 3, - ACTIONS(1795), 1, + [14138] = 3, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2542), 1, + ACTIONS(2588), 1, sym__eof, - STATE(345), 1, + STATE(353), 1, sym__newline, - [31841] = 3, - ACTIONS(1797), 1, + [14148] = 3, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2544), 1, + ACTIONS(2590), 1, sym__eof, - STATE(196), 1, + STATE(208), 1, sym__newline, - [31851] = 3, - ACTIONS(1797), 1, + [14158] = 3, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2546), 1, + ACTIONS(2592), 1, sym__eof, - STATE(197), 1, + STATE(209), 1, sym__newline, - [31861] = 3, - ACTIONS(2548), 1, + [14168] = 3, + ACTIONS(2594), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_RBRACE, - STATE(993), 1, + STATE(1050), 1, sym__commonmark_whitespace, - [31871] = 3, - ACTIONS(1795), 1, + [14178] = 3, + ACTIONS(1810), 1, + sym__line_ending, + ACTIONS(2598), 1, + sym__eof, + STATE(344), 1, + sym__newline, + [14188] = 3, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2552), 1, + ACTIONS(2600), 1, sym__eof, - STATE(373), 1, + STATE(389), 1, sym__newline, - [31881] = 1, - ACTIONS(2432), 3, + [14198] = 1, + ACTIONS(2094), 3, sym__line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [31887] = 3, - ACTIONS(2325), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2405), 1, - anon_sym_PIPE, - STATE(987), 1, - sym__whitespace, - [31897] = 3, - ACTIONS(1797), 1, + anon_sym_LBRACE, + aux_sym_info_string_token1, + [14204] = 3, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2554), 1, + ACTIONS(2602), 1, sym__eof, - STATE(297), 1, + STATE(390), 1, sym__newline, - [31907] = 3, - ACTIONS(1797), 1, + [14214] = 3, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2556), 1, + ACTIONS(2604), 1, sym__eof, - STATE(248), 1, + STATE(261), 1, sym__newline, - [31917] = 3, - ACTIONS(1797), 1, + [14224] = 3, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2558), 1, + ACTIONS(2606), 1, sym__eof, - STATE(249), 1, + STATE(264), 1, sym__newline, - [31927] = 3, - ACTIONS(2560), 1, + [14234] = 3, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2562), 1, + ACTIONS(2608), 1, sym__eof, - STATE(1021), 1, + STATE(265), 1, sym__newline, - [31937] = 1, - ACTIONS(2014), 3, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_PIPE, - [31943] = 1, - ACTIONS(2457), 3, + [14244] = 3, + ACTIONS(2566), 1, sym__line_ending, + ACTIONS(2610), 1, sym__eof, - sym__pipe_table_line_ending, - [31949] = 3, - ACTIONS(2522), 1, + STATE(1038), 1, + sym__newline, + [14254] = 3, + ACTIONS(2612), 1, sym__line_ending, - ACTIONS(2564), 1, + ACTIONS(2614), 1, sym__eof, - STATE(982), 1, + STATE(1059), 1, sym__newline, - [31959] = 1, - ACTIONS(2014), 3, - sym__line_ending, - anon_sym_LBRACE, - aux_sym_info_string_token1, - [31965] = 3, - ACTIONS(1795), 1, - sym__line_ending, + [14264] = 3, ACTIONS(2566), 1, + sym__line_ending, + ACTIONS(2616), 1, sym__eof, - STATE(372), 1, + STATE(1063), 1, sym__newline, - [31975] = 3, - ACTIONS(2325), 1, + [14274] = 3, + ACTIONS(2381), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2444), 1, + anon_sym_PIPE, + STATE(1028), 1, + sym__whitespace, + [14284] = 1, + ACTIONS(2094), 3, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [14290] = 3, + ACTIONS(2381), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2468), 1, + ACTIONS(2544), 1, anon_sym_PIPE, - STATE(1070), 1, + STATE(993), 1, sym__whitespace, - [31985] = 3, - ACTIONS(2522), 1, + [14300] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2568), 1, + ACTIONS(2618), 1, sym__eof, - STATE(1016), 1, + STATE(1023), 1, sym__newline, - [31995] = 3, - ACTIONS(2522), 1, + [14310] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2570), 1, + ACTIONS(2620), 1, sym__eof, - STATE(963), 1, + STATE(1024), 1, sym__newline, - [32005] = 3, - ACTIONS(2522), 1, + [14320] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2572), 1, + ACTIONS(2622), 1, sym__eof, - STATE(1025), 1, + STATE(1040), 1, sym__newline, - [32015] = 3, - ACTIONS(2522), 1, + [14330] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2574), 1, + ACTIONS(2624), 1, sym__eof, - STATE(1026), 1, + STATE(1041), 1, sym__newline, - [32025] = 3, - ACTIONS(2325), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2370), 1, - anon_sym_PIPE, - STATE(1010), 1, - sym__whitespace, - [32035] = 3, - ACTIONS(2522), 1, + [14340] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2576), 1, + ACTIONS(2626), 1, sym__eof, - STATE(1027), 1, + STATE(1006), 1, sym__newline, - [32045] = 3, - ACTIONS(2325), 1, + [14350] = 3, + ACTIONS(2381), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2474), 1, + ACTIONS(2426), 1, anon_sym_PIPE, - STATE(1015), 1, + STATE(1062), 1, sym__whitespace, - [32055] = 3, - ACTIONS(2522), 1, + [14360] = 3, + ACTIONS(2536), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2540), 1, + anon_sym_EQ, + STATE(1055), 1, + sym__commonmark_whitespace, + [14370] = 3, + ACTIONS(2628), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2630), 1, + anon_sym_RBRACE, + STATE(1046), 1, + sym__commonmark_whitespace, + [14380] = 3, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2578), 1, + ACTIONS(2632), 1, sym__eof, - STATE(970), 1, + STATE(457), 1, sym__newline, - [32065] = 3, - ACTIONS(2522), 1, + [14390] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2580), 1, + ACTIONS(2634), 1, sym__eof, - STATE(971), 1, + STATE(997), 1, sym__newline, - [32075] = 3, - ACTIONS(2522), 1, + [14400] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2582), 1, + ACTIONS(2636), 1, sym__eof, - STATE(974), 1, + STATE(998), 1, sym__newline, - [32085] = 3, - ACTIONS(2522), 1, + [14410] = 3, + ACTIONS(1810), 1, sym__line_ending, - ACTIONS(2584), 1, + ACTIONS(2638), 1, sym__eof, - STATE(975), 1, + STATE(458), 1, sym__newline, - [32095] = 3, - ACTIONS(1752), 1, + [14420] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2586), 1, + ACTIONS(2640), 1, sym__eof, - STATE(337), 1, + STATE(1002), 1, sym__newline, - [32105] = 3, - ACTIONS(1752), 1, + [14430] = 2, + ACTIONS(2642), 1, + sym_key_value_key, + ACTIONS(2509), 2, + anon_sym_RBRACE, + sym_commonmark_name, + [14438] = 3, + ACTIONS(2566), 1, sym__line_ending, - ACTIONS(2588), 1, + ACTIONS(2644), 1, sym__eof, - STATE(349), 1, + STATE(1005), 1, sym__newline, - [32115] = 2, - ACTIONS(1797), 1, + [14448] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(276), 1, + STATE(304), 1, sym__newline, - [32122] = 2, - ACTIONS(2590), 1, - aux_sym__commonmark_whitespace_token1, - STATE(693), 1, - sym__whitespace, - [32129] = 2, - ACTIONS(1795), 1, + [14455] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(379), 1, + STATE(395), 1, sym__newline, - [32136] = 2, - ACTIONS(1795), 1, + [14462] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(380), 1, + STATE(396), 1, sym__newline, - [32143] = 2, - ACTIONS(1795), 1, + [14469] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(381), 1, + STATE(397), 1, sym__newline, - [32150] = 2, - ACTIONS(1795), 1, + [14476] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(382), 1, + STATE(398), 1, sym__newline, - [32157] = 2, - ACTIONS(1795), 1, + [14483] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(383), 1, + STATE(399), 1, sym__newline, - [32164] = 2, - ACTIONS(1795), 1, + [14490] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(384), 1, + STATE(400), 1, sym__newline, - [32171] = 2, - ACTIONS(2590), 1, - aux_sym__commonmark_whitespace_token1, - STATE(683), 1, - sym__whitespace, - [32178] = 2, - ACTIONS(1825), 1, + [14497] = 2, + ACTIONS(2467), 1, + sym__line_ending, + ACTIONS(2646), 1, + anon_sym_PIPE, + [14504] = 2, + ACTIONS(1889), 1, sym__block_close, - ACTIONS(1827), 1, + ACTIONS(1891), 1, sym__fenced_code_block_end_backtick, - [32185] = 2, - ACTIONS(1752), 1, + [14511] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(447), 1, + STATE(468), 1, sym__newline, - [32192] = 2, - ACTIONS(1825), 1, + [14518] = 2, + ACTIONS(1889), 1, sym__block_close, - ACTIONS(1827), 1, + ACTIONS(1891), 1, sym__fenced_code_block_end_tilde, - [32199] = 2, - ACTIONS(1321), 1, - sym__block_close, - ACTIONS(2592), 1, + [14525] = 2, + ACTIONS(1350), 1, + sym__close_block, + ACTIONS(2648), 1, sym_block_continuation, - [32206] = 2, - ACTIONS(1829), 1, + [14532] = 2, + ACTIONS(1897), 1, sym__block_close, - ACTIONS(1831), 1, + ACTIONS(1899), 1, sym__fenced_code_block_end_backtick, - [32213] = 2, - ACTIONS(1829), 1, + [14539] = 2, + ACTIONS(2467), 1, + sym__line_ending, + ACTIONS(2548), 1, + anon_sym_PIPE, + [14546] = 2, + ACTIONS(1897), 1, sym__block_close, - ACTIONS(1831), 1, + ACTIONS(1899), 1, sym__fenced_code_block_end_tilde, - [32220] = 2, - ACTIONS(1752), 1, + [14553] = 2, + ACTIONS(1881), 1, + sym__block_close, + ACTIONS(1883), 1, + sym__fenced_code_block_end_backtick, + [14560] = 2, + ACTIONS(1861), 1, sym__line_ending, - STATE(448), 1, + STATE(516), 1, sym__newline, - [32227] = 2, - ACTIONS(1833), 1, - sym__block_close, - ACTIONS(1835), 1, - sym__fenced_code_block_end_tilde, - [32234] = 2, - ACTIONS(2594), 1, + [14567] = 2, + ACTIONS(2650), 1, sym__block_close, - ACTIONS(2596), 1, + ACTIONS(2652), 1, sym__fenced_code_block_end_backtick, - [32241] = 2, - ACTIONS(2594), 1, + [14574] = 2, + ACTIONS(2650), 1, sym__block_close, - ACTIONS(2596), 1, + ACTIONS(2652), 1, sym__fenced_code_block_end_tilde, - [32248] = 2, - ACTIONS(1752), 1, - sym__line_ending, - STATE(449), 1, - sym__newline, - [32255] = 2, - ACTIONS(2522), 1, + [14581] = 1, + ACTIONS(2499), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [14586] = 2, + ACTIONS(1881), 1, + sym__block_close, + ACTIONS(1883), 1, + sym__fenced_code_block_end_tilde, + [14593] = 2, + ACTIONS(1877), 1, sym__line_ending, - STATE(1037), 1, + STATE(517), 1, sym__newline, - [32262] = 2, - ACTIONS(1752), 1, + [14600] = 2, + ACTIONS(1350), 1, + sym__block_close, + ACTIONS(2654), 1, + sym_block_continuation, + [14607] = 2, + ACTIONS(1788), 1, sym__line_ending, - STATE(450), 1, - sym__newline, - [32269] = 1, - ACTIONS(2014), 2, + ACTIONS(2548), 1, + anon_sym_PIPE, + [14614] = 2, + ACTIONS(1879), 1, sym__line_ending, + ACTIONS(2548), 1, anon_sym_PIPE, - [32274] = 2, - ACTIONS(2522), 1, + [14621] = 1, + ACTIONS(2481), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [14626] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(1002), 1, + STATE(451), 1, sym__newline, - [32281] = 2, - ACTIONS(1837), 1, + [14633] = 2, + ACTIONS(2656), 1, sym__block_close, - ACTIONS(1839), 1, + ACTIONS(2658), 1, sym__fenced_code_block_end_backtick, - [32288] = 2, - ACTIONS(1813), 1, - sym__line_ending, - STATE(497), 1, - sym__newline, - [32295] = 2, - ACTIONS(2374), 1, + [14640] = 1, + ACTIONS(2094), 2, sym__line_ending, - ACTIONS(2598), 1, anon_sym_PIPE, - [32302] = 2, - ACTIONS(1797), 1, + [14645] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(266), 1, + STATE(453), 1, sym__newline, - [32309] = 2, - ACTIONS(1837), 1, + [14652] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(288), 1, + sym__newline, + [14659] = 2, + ACTIONS(1869), 1, sym__block_close, - ACTIONS(1839), 1, - sym__fenced_code_block_end_tilde, - [32316] = 2, - ACTIONS(1797), 1, + ACTIONS(1871), 1, + sym__fenced_code_block_end_backtick, + [14666] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(272), 1, + STATE(290), 1, sym__newline, - [32323] = 2, - ACTIONS(1823), 1, + [14673] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(498), 1, + STATE(297), 1, sym__newline, - [32330] = 2, - ACTIONS(1797), 1, + [14680] = 1, + ACTIONS(2483), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [14685] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(274), 1, + STATE(300), 1, sym__newline, - [32337] = 2, - ACTIONS(1797), 1, + [14692] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(281), 1, + STATE(302), 1, sym__newline, - [32344] = 2, - ACTIONS(1797), 1, + [14699] = 2, + ACTIONS(2656), 1, + sym__block_close, + ACTIONS(2658), 1, + sym__fenced_code_block_end_tilde, + [14706] = 2, + ACTIONS(2660), 1, + anon_sym_DASH, + STATE(719), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [14713] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(283), 1, + STATE(449), 1, sym__newline, - [32351] = 2, - ACTIONS(2374), 1, + [14720] = 2, + ACTIONS(1798), 1, sym__line_ending, - ACTIONS(2468), 1, - anon_sym_PIPE, - [32358] = 1, - ACTIONS(2428), 2, - aux_sym__commonmark_whitespace_token1, + ACTIONS(2548), 1, anon_sym_PIPE, - [32363] = 2, - ACTIONS(1752), 1, + [14727] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(431), 1, + STATE(462), 1, sym__newline, - [32370] = 1, - ACTIONS(2432), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [32375] = 2, - ACTIONS(1797), 1, + [14734] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(206), 1, + STATE(7), 1, sym__newline, - [32382] = 2, - ACTIONS(1797), 1, + [14741] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(207), 1, + STATE(219), 1, sym__newline, - [32389] = 2, - ACTIONS(1797), 1, + [14748] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(208), 1, + STATE(220), 1, sym__newline, - [32396] = 2, - ACTIONS(1797), 1, + [14755] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(209), 1, + STATE(221), 1, sym__newline, - [32403] = 2, - ACTIONS(1797), 1, + [14762] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(210), 1, + STATE(222), 1, sym__newline, - [32410] = 2, - ACTIONS(1797), 1, + [14769] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(211), 1, + STATE(223), 1, sym__newline, - [32417] = 2, - ACTIONS(1752), 1, + [14776] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(433), 1, + STATE(224), 1, sym__newline, - [32424] = 2, - ACTIONS(1849), 1, + [14783] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(8), 1, + sym__newline, + [14790] = 2, + ACTIONS(1905), 1, sym__block_close, - ACTIONS(1851), 1, + ACTIONS(1907), 1, sym__fenced_code_block_end_backtick, - [32431] = 2, - ACTIONS(2522), 1, + [14797] = 2, + ACTIONS(1861), 1, sym__line_ending, - STATE(1030), 1, + STATE(522), 1, sym__newline, - [32438] = 2, - ACTIONS(1849), 1, + [14804] = 2, + ACTIONS(1905), 1, sym__block_close, - ACTIONS(1851), 1, + ACTIONS(1907), 1, sym__fenced_code_block_end_tilde, - [32445] = 2, - ACTIONS(2600), 1, - sym__block_close, - ACTIONS(2602), 1, - sym__fenced_code_block_end_backtick, - [32452] = 2, - ACTIONS(1853), 1, - sym__block_close, - ACTIONS(1855), 1, - sym__fenced_code_block_end_backtick, - [32459] = 2, - ACTIONS(1744), 1, + [14811] = 2, + ACTIONS(2662), 1, + aux_sym__commonmark_whitespace_token1, + STATE(599), 1, + sym__whitespace, + [14818] = 1, + ACTIONS(2664), 2, sym__line_ending, - ACTIONS(2468), 1, - anon_sym_PIPE, - [32466] = 2, - ACTIONS(1853), 1, + anon_sym_LBRACE, + [14823] = 2, + ACTIONS(1909), 1, sym__block_close, - ACTIONS(1855), 1, - sym__fenced_code_block_end_tilde, - [32473] = 2, - ACTIONS(2504), 1, + ACTIONS(1911), 1, + sym__fenced_code_block_end_backtick, + [14830] = 2, + ACTIONS(2666), 1, + aux_sym__commonmark_whitespace_token1, + STATE(718), 1, + sym__whitespace, + [14837] = 2, + ACTIONS(1877), 1, sym__line_ending, - ACTIONS(2598), 1, - anon_sym_PIPE, - [32480] = 2, - ACTIONS(1797), 1, + STATE(529), 1, + sym__newline, + [14844] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(7), 1, + STATE(1058), 1, sym__newline, - [32487] = 2, - ACTIONS(2604), 1, + [14851] = 2, + ACTIONS(2668), 1, sym__block_close, - ACTIONS(2606), 1, + ACTIONS(2670), 1, sym__fenced_code_block_end_backtick, - [32494] = 2, - ACTIONS(2604), 1, - sym__block_close, - ACTIONS(2606), 1, - sym__fenced_code_block_end_tilde, - [32501] = 2, - ACTIONS(2600), 1, + [14858] = 2, + ACTIONS(2668), 1, sym__block_close, - ACTIONS(2602), 1, + ACTIONS(2670), 1, sym__fenced_code_block_end_tilde, - [32508] = 2, - ACTIONS(1752), 1, + [14865] = 2, + ACTIONS(1879), 1, sym__line_ending, - STATE(429), 1, - sym__newline, - [32515] = 2, - ACTIONS(1833), 1, - sym__block_close, - ACTIONS(1835), 1, - sym__fenced_code_block_end_backtick, - [32522] = 2, - ACTIONS(2522), 1, + ACTIONS(2646), 1, + anon_sym_PIPE, + [14872] = 2, + ACTIONS(1788), 1, sym__line_ending, - STATE(997), 1, - sym__newline, - [32529] = 2, - ACTIONS(1752), 1, + ACTIONS(2646), 1, + anon_sym_PIPE, + [14879] = 2, + ACTIONS(2672), 1, + anon_sym_DASH, + STATE(789), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [14886] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(435), 1, + STATE(463), 1, sym__newline, - [32536] = 2, - ACTIONS(1797), 1, + [14893] = 2, + ACTIONS(2612), 1, sym__line_ending, - STATE(8), 1, + STATE(716), 1, sym__newline, - [32543] = 2, - ACTIONS(1801), 1, + [14900] = 2, + ACTIONS(1808), 1, sym__line_ending, - ACTIONS(2598), 1, - anon_sym_PIPE, - [32550] = 2, - ACTIONS(1795), 1, + STATE(372), 1, + sym__newline, + [14907] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(356), 1, + STATE(374), 1, sym__newline, - [32557] = 2, - ACTIONS(2608), 1, - aux_sym__commonmark_whitespace_token1, - STATE(574), 1, - sym__whitespace, - [32564] = 2, - ACTIONS(2608), 1, + [14914] = 2, + ACTIONS(2662), 1, aux_sym__commonmark_whitespace_token1, - STATE(575), 1, + STATE(604), 1, sym__whitespace, - [32571] = 2, - ACTIONS(1734), 1, - sym__line_ending, - ACTIONS(2468), 1, - anon_sym_PIPE, - [32578] = 2, - ACTIONS(2610), 1, - anon_sym_DASH, - STATE(696), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [32585] = 2, - ACTIONS(1795), 1, + [14921] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(358), 1, + STATE(464), 1, sym__newline, - [32592] = 2, - ACTIONS(2560), 1, + [14928] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(687), 1, + STATE(376), 1, sym__newline, - [32599] = 1, - ACTIONS(2464), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [32604] = 2, - ACTIONS(1813), 1, + [14935] = 2, + ACTIONS(1861), 1, sym__line_ending, - STATE(493), 1, + STATE(525), 1, sym__newline, - [32611] = 2, - ACTIONS(1795), 1, + [14942] = 2, + ACTIONS(1877), 1, sym__line_ending, - STATE(360), 1, + STATE(539), 1, sym__newline, - [32618] = 2, - ACTIONS(1823), 1, + [14949] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(494), 1, + STATE(1097), 1, sym__newline, - [32625] = 2, - ACTIONS(1734), 1, + [14956] = 1, + ACTIONS(2674), 2, sym__line_ending, - ACTIONS(2598), 1, - anon_sym_PIPE, - [32632] = 2, - ACTIONS(2612), 1, - anon_sym_DASH, - STATE(756), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [32639] = 2, - ACTIONS(1813), 1, + anon_sym_LBRACE, + [14961] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(500), 1, + STATE(442), 1, sym__newline, - [32646] = 2, - ACTIONS(1813), 1, + [14968] = 2, + ACTIONS(2676), 1, + sym__block_close, + ACTIONS(2678), 1, + sym_block_continuation, + [14975] = 2, + ACTIONS(1861), 1, sym__line_ending, - STATE(495), 1, + STATE(527), 1, sym__newline, - [32653] = 2, - ACTIONS(1823), 1, + [14982] = 2, + ACTIONS(1877), 1, sym__line_ending, - STATE(496), 1, + STATE(528), 1, sym__newline, - [32660] = 2, - ACTIONS(1797), 1, + [14989] = 2, + ACTIONS(1853), 1, sym__line_ending, STATE(13), 1, sym__newline, - [32667] = 2, - ACTIONS(1797), 1, + [14996] = 2, + ACTIONS(1853), 1, sym__line_ending, STATE(14), 1, sym__newline, - [32674] = 2, - ACTIONS(2522), 1, - sym__line_ending, - STATE(984), 1, - sym__newline, - [32681] = 2, - ACTIONS(2522), 1, + [15003] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(1000), 1, + STATE(990), 1, sym__newline, - [32688] = 2, - ACTIONS(2522), 1, + [15010] = 2, + ACTIONS(2566), 1, sym__line_ending, STATE(1011), 1, sym__newline, - [32695] = 2, - ACTIONS(1795), 1, - sym__line_ending, - STATE(362), 1, - sym__newline, - [32702] = 2, - ACTIONS(2522), 1, + [15017] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(1022), 1, + STATE(1017), 1, sym__newline, - [32709] = 2, - ACTIONS(1795), 1, + [15024] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(364), 1, + STATE(378), 1, sym__newline, - [32716] = 2, - ACTIONS(1752), 1, + [15031] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(444), 1, + STATE(1029), 1, sym__newline, - [32723] = 2, - ACTIONS(2608), 1, - aux_sym__commonmark_whitespace_token1, - STATE(573), 1, - sym__whitespace, - [32730] = 2, - ACTIONS(1795), 1, + [15038] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(366), 1, + STATE(380), 1, sym__newline, - [32737] = 2, - ACTIONS(1813), 1, + [15045] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(507), 1, + STATE(465), 1, sym__newline, - [32744] = 2, - ACTIONS(1823), 1, + [15052] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(508), 1, + STATE(1000), 1, sym__newline, - [32751] = 2, - ACTIONS(1752), 1, + [15059] = 2, + ACTIONS(2662), 1, + aux_sym__commonmark_whitespace_token1, + STATE(600), 1, + sym__whitespace, + [15066] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(425), 1, + STATE(444), 1, sym__newline, - [32758] = 1, - ACTIONS(2614), 2, - sym__line_ending, - anon_sym_LBRACE, - [32763] = 2, - ACTIONS(1823), 1, + [15073] = 2, + ACTIONS(1808), 1, sym__line_ending, - STATE(504), 1, + STATE(382), 1, sym__newline, - [32770] = 1, - ACTIONS(2616), 2, + [15080] = 2, + ACTIONS(1861), 1, sym__line_ending, - anon_sym_LBRACE, - [32775] = 2, - ACTIONS(2618), 1, - sym__block_close, - ACTIONS(2620), 1, - sym_block_continuation, - [32782] = 2, - ACTIONS(1813), 1, - sym__line_ending, - STATE(509), 1, + STATE(533), 1, sym__newline, - [32789] = 2, - ACTIONS(1823), 1, + [15087] = 2, + ACTIONS(1877), 1, sym__line_ending, - STATE(510), 1, + STATE(534), 1, sym__newline, - [32796] = 2, - ACTIONS(1801), 1, - sym__line_ending, - ACTIONS(2468), 1, - anon_sym_PIPE, - [32803] = 2, - ACTIONS(1797), 1, + [15094] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(18), 1, + STATE(447), 1, sym__newline, - [32810] = 2, - ACTIONS(1797), 1, + [15101] = 2, + ACTIONS(1861), 1, sym__line_ending, - STATE(19), 1, + STATE(535), 1, sym__newline, - [32817] = 2, - ACTIONS(2522), 1, + [15108] = 2, + ACTIONS(1877), 1, sym__line_ending, - STATE(1067), 1, + STATE(536), 1, sym__newline, - [32824] = 2, - ACTIONS(2522), 1, + [15115] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(967), 1, + STATE(19), 1, sym__newline, - [32831] = 2, - ACTIONS(2522), 1, + [15122] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(968), 1, + STATE(20), 1, sym__newline, - [32838] = 2, - ACTIONS(1752), 1, + [15129] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(446), 1, + STATE(1100), 1, sym__newline, - [32845] = 2, - ACTIONS(2522), 1, + [15136] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(972), 1, + STATE(994), 1, sym__newline, - [32852] = 2, - ACTIONS(1752), 1, + [15143] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(427), 1, + STATE(995), 1, sym__newline, - [32859] = 2, - ACTIONS(2560), 1, + [15150] = 2, + ACTIONS(1810), 1, sym__line_ending, - STATE(688), 1, + STATE(467), 1, sym__newline, - [32866] = 2, - ACTIONS(2560), 1, + [15157] = 2, + ACTIONS(2566), 1, sym__line_ending, - STATE(691), 1, + STATE(999), 1, sym__newline, - [32873] = 2, - ACTIONS(2590), 1, + [15164] = 2, + ACTIONS(2666), 1, aux_sym__commonmark_whitespace_token1, - STATE(692), 1, + STATE(707), 1, sym__whitespace, - [32880] = 2, - ACTIONS(1321), 1, - sym__close_block, - ACTIONS(2622), 1, - sym_block_continuation, - [32887] = 1, - ACTIONS(2624), 1, - sym__block_close, - [32891] = 1, - ACTIONS(2626), 1, - sym__block_close, - [32895] = 1, - ACTIONS(2496), 1, - anon_sym_PIPE, - [32899] = 1, - ACTIONS(2628), 1, - sym__block_close, - [32903] = 1, - ACTIONS(2630), 1, - sym__block_close, - [32907] = 1, - ACTIONS(2632), 1, - sym__block_close, - [32911] = 1, - ACTIONS(2634), 1, - sym__close_block, - [32915] = 1, - ACTIONS(2636), 1, - sym__block_close, - [32919] = 1, - ACTIONS(2638), 1, - sym__block_close, - [32923] = 1, - ACTIONS(2640), 1, - sym__block_close, - [32927] = 1, - ACTIONS(2642), 1, - sym__block_close, - [32931] = 1, - ACTIONS(2644), 1, - sym__block_close, - [32935] = 1, - ACTIONS(2646), 1, - sym__block_close, - [32939] = 1, - ACTIONS(2648), 1, - sym__close_block, - [32943] = 1, - ACTIONS(2650), 1, - sym__line_ending, - [32947] = 1, - ACTIONS(2652), 1, - sym__block_close, - [32951] = 1, - ACTIONS(2654), 1, - sym__line_ending, - [32955] = 1, - ACTIONS(2656), 1, + [15171] = 2, + ACTIONS(1869), 1, sym__block_close, - [32959] = 1, - ACTIONS(2658), 1, + ACTIONS(1871), 1, + sym__fenced_code_block_end_tilde, + [15178] = 2, + ACTIONS(2612), 1, sym__line_ending, - [32963] = 1, - ACTIONS(2660), 1, - sym__block_close, - [32967] = 1, - ACTIONS(1394), 1, - sym__close_block, - [32971] = 1, - ACTIONS(2594), 1, - sym__block_close, - [32975] = 1, - ACTIONS(2662), 1, + STATE(712), 1, + sym__newline, + [15185] = 2, + ACTIONS(2560), 1, sym__line_ending, - [32979] = 1, - ACTIONS(2664), 1, - sym__close_block, - [32983] = 1, - ACTIONS(2372), 1, + ACTIONS(2646), 1, anon_sym_PIPE, - [32987] = 1, - ACTIONS(2666), 1, - sym__block_close, - [32991] = 1, - ACTIONS(2668), 1, + [15192] = 2, + ACTIONS(2612), 1, sym__line_ending, - [32995] = 1, - ACTIONS(1394), 1, - sym__block_close, - [32999] = 1, - ACTIONS(2670), 1, - sym__block_close, - [33003] = 1, - ACTIONS(2672), 1, - sym__block_close, - [33007] = 1, - ACTIONS(2674), 1, - anon_sym_RBRACE, - [33011] = 1, - ACTIONS(2676), 1, + STATE(715), 1, + sym__newline, + [15199] = 2, + ACTIONS(2666), 1, + aux_sym__commonmark_whitespace_token1, + STATE(717), 1, + sym__whitespace, + [15206] = 2, + ACTIONS(2566), 1, sym__line_ending, - [33015] = 1, - ACTIONS(2678), 1, - sym__close_block, - [33019] = 1, - ACTIONS(1576), 1, - sym__close_block, - [33023] = 1, - ACTIONS(2600), 1, + STATE(1027), 1, + sym__newline, + [15213] = 2, + ACTIONS(1909), 1, sym__block_close, - [33027] = 1, + ACTIONS(1911), 1, + sym__fenced_code_block_end_tilde, + [15220] = 1, ACTIONS(2680), 1, - sym__block_close, - [33031] = 1, + sym__close_block, + [15224] = 1, ACTIONS(2682), 1, + anon_sym_COLON, + [15228] = 1, + ACTIONS(2650), 1, sym__block_close, - [33035] = 1, + [15232] = 1, ACTIONS(2684), 1, sym__block_close, - [33039] = 1, + [15236] = 1, ACTIONS(2686), 1, - sym__close_block, - [33043] = 1, + sym__block_close, + [15240] = 1, + ACTIONS(2548), 1, + anon_sym_PIPE, + [15244] = 1, ACTIONS(2688), 1, sym__block_close, - [33047] = 1, + [15248] = 1, ACTIONS(2690), 1, sym__block_close, - [33051] = 1, + [15252] = 1, ACTIONS(2692), 1, sym__block_close, - [33055] = 1, + [15256] = 1, ACTIONS(2694), 1, sym__block_close, - [33059] = 1, + [15260] = 1, ACTIONS(2696), 1, sym__block_close, - [33063] = 1, + [15264] = 1, ACTIONS(2698), 1, - anon_sym_COLON, - [33067] = 1, + sym__block_close, + [15268] = 1, ACTIONS(2700), 1, sym__block_close, - [33071] = 1, + [15272] = 1, ACTIONS(2702), 1, sym__block_close, - [33075] = 1, - ACTIONS(2390), 1, - anon_sym_PIPE, - [33079] = 1, + [15276] = 1, ACTIONS(2704), 1, sym__block_close, - [33083] = 1, + [15280] = 1, ACTIONS(2706), 1, sym__block_close, - [33087] = 1, + [15284] = 1, ACTIONS(2708), 1, - ts_builtin_sym_end, - [33091] = 1, + sym__block_close, + [15288] = 1, ACTIONS(2710), 1, sym__block_close, - [33095] = 1, - ACTIONS(2468), 1, - anon_sym_PIPE, - [33099] = 1, + [15292] = 1, ACTIONS(2712), 1, sym__block_close, - [33103] = 1, + [15296] = 1, ACTIONS(2714), 1, - sym__block_close, - [33107] = 1, + sym__close_block, + [15300] = 1, ACTIONS(2716), 1, - sym__block_close, - [33111] = 1, + ts_builtin_sym_end, + [15304] = 1, ACTIONS(2718), 1, - sym__block_close, - [33115] = 1, + sym__line_ending, + [15308] = 1, ACTIONS(2720), 1, - sym__block_close, - [33119] = 1, - ACTIONS(1576), 1, - anon_sym_COLON, - [33123] = 1, + sym__close_block, + [15312] = 1, ACTIONS(2722), 1, sym__block_close, - [33127] = 1, + [15316] = 1, ACTIONS(2724), 1, sym__block_close, - [33131] = 1, + [15320] = 1, ACTIONS(2726), 1, sym__close_block, - [33135] = 1, + [15324] = 1, ACTIONS(2728), 1, - sym__block_close, - [33139] = 1, + sym__close_block, + [15328] = 1, ACTIONS(2730), 1, - sym__block_close, - [33143] = 1, + sym__line_ending, + [15332] = 1, ACTIONS(2732), 1, sym__block_close, - [33147] = 1, + [15336] = 1, ACTIONS(2734), 1, - sym__line_ending, - [33151] = 1, + sym__block_close, + [15340] = 1, ACTIONS(2736), 1, sym__block_close, - [33155] = 1, + [15344] = 1, ACTIONS(2738), 1, sym__block_close, - [33159] = 1, + [15348] = 1, ACTIONS(2740), 1, - sym__block_close, - [33163] = 1, + sym__close_block, + [15352] = 1, ACTIONS(2742), 1, - sym__block_close, - [33167] = 1, + sym__line_ending, + [15356] = 1, ACTIONS(2744), 1, sym__block_close, - [33171] = 1, + [15360] = 1, ACTIONS(2746), 1, sym__block_close, - [33175] = 1, + [15364] = 1, ACTIONS(2748), 1, sym__block_close, - [33179] = 1, + [15368] = 1, ACTIONS(2750), 1, - sym__block_close, - [33183] = 1, + sym__line_ending, + [15372] = 1, ACTIONS(2752), 1, sym__block_close, - [33187] = 1, + [15376] = 1, ACTIONS(2754), 1, - sym__close_block, - [33191] = 1, + sym__block_close, + [15380] = 1, + ACTIONS(2426), 1, + anon_sym_PIPE, + [15384] = 1, ACTIONS(2756), 1, - anon_sym_COLON, - [33195] = 1, + sym__block_close, + [15388] = 1, ACTIONS(2758), 1, sym__line_ending, - [33199] = 1, + [15392] = 1, ACTIONS(2760), 1, - sym__close_block, - [33203] = 1, + sym__block_close, + [15396] = 1, ACTIONS(2762), 1, sym__block_close, - [33207] = 1, + [15400] = 1, ACTIONS(2764), 1, - sym__line_ending, - [33211] = 1, - ACTIONS(2488), 1, - anon_sym_PIPE, - [33215] = 1, + sym__block_close, + [15404] = 1, ACTIONS(2766), 1, - sym__line_ending, - [33219] = 1, + sym__block_close, + [15408] = 1, ACTIONS(2768), 1, sym__block_close, - [33223] = 1, - ACTIONS(2550), 1, - anon_sym_RBRACE, - [33227] = 1, + [15412] = 1, ACTIONS(2770), 1, - sym__close_block, - [33231] = 1, + anon_sym_COLON, + [15416] = 1, ACTIONS(2772), 1, - sym__close_block, - [33235] = 1, + sym__block_close, + [15420] = 1, ACTIONS(2774), 1, - sym__close_block, - [33239] = 1, + sym__block_close, + [15424] = 1, ACTIONS(2776), 1, - sym__close_block, - [33243] = 1, + sym__block_close, + [15428] = 1, ACTIONS(2778), 1, - sym__close_block, - [33247] = 1, + sym__block_close, + [15432] = 1, ACTIONS(2780), 1, - sym__close_block, - [33251] = 1, + sym__block_close, + [15436] = 1, ACTIONS(2782), 1, - sym__close_block, - [33255] = 1, + sym__block_close, + [15440] = 1, + ACTIONS(1424), 1, + sym__block_close, + [15444] = 1, ACTIONS(2784), 1, - sym__close_block, - [33259] = 1, + sym__block_close, + [15448] = 1, ACTIONS(2786), 1, - anon_sym_COLON, - [33263] = 1, + sym__close_block, + [15452] = 1, ACTIONS(2788), 1, - sym__line_ending, - [33267] = 1, + anon_sym_RBRACE, + [15456] = 1, ACTIONS(2790), 1, - sym__close_block, - [33271] = 1, + sym__block_close, + [15460] = 1, ACTIONS(2792), 1, - sym__close_block, - [33275] = 1, + sym__block_close, + [15464] = 1, ACTIONS(2794), 1, - sym__close_block, - [33279] = 1, + sym__line_ending, + [15468] = 1, + ACTIONS(2630), 1, + anon_sym_RBRACE, + [15472] = 1, ACTIONS(2796), 1, - sym__close_block, - [33283] = 1, + sym__line_ending, + [15476] = 1, ACTIONS(2798), 1, - sym__close_block, - [33287] = 1, + sym__block_close, + [15480] = 1, ACTIONS(2800), 1, - sym__close_block, - [33291] = 1, + sym__line_ending, + [15484] = 1, ACTIONS(2802), 1, sym__close_block, - [33295] = 1, + [15488] = 1, ACTIONS(2804), 1, - sym__close_block, - [33299] = 1, + anon_sym_EQ, + [15492] = 1, ACTIONS(2806), 1, sym__block_close, - [33303] = 1, - ACTIONS(2604), 1, + [15496] = 1, + ACTIONS(1624), 1, + sym__close_block, + [15500] = 1, + ACTIONS(2656), 1, sym__block_close, - [33307] = 1, + [15504] = 1, + ACTIONS(1624), 1, + anon_sym_COLON, + [15508] = 1, ACTIONS(2808), 1, - anon_sym_EQ, - [33311] = 1, + sym__line_ending, + [15512] = 1, ACTIONS(2810), 1, + sym__block_close, + [15516] = 1, + ACTIONS(2530), 1, + anon_sym_PIPE, + [15520] = 1, + ACTIONS(2812), 1, + sym__block_close, + [15524] = 1, + ACTIONS(2814), 1, + sym__line_ending, + [15528] = 1, + ACTIONS(2816), 1, sym__close_block, - [33315] = 1, - ACTIONS(2598), 1, + [15532] = 1, + ACTIONS(2818), 1, + sym__block_close, + [15536] = 1, + ACTIONS(2820), 1, + sym__block_close, + [15540] = 1, + ACTIONS(2822), 1, + sym__block_close, + [15544] = 1, + ACTIONS(2824), 1, + sym__block_close, + [15548] = 1, + ACTIONS(2826), 1, + anon_sym_COLON, + [15552] = 1, + ACTIONS(2828), 1, + sym__block_close, + [15556] = 1, + ACTIONS(2830), 1, + sym__block_close, + [15560] = 1, + ACTIONS(2832), 1, + sym__block_close, + [15564] = 1, + ACTIONS(1424), 1, + sym__close_block, + [15568] = 1, + ACTIONS(2646), 1, anon_sym_PIPE, + [15572] = 1, + ACTIONS(2834), 1, + sym__block_close, + [15576] = 1, + ACTIONS(2428), 1, + anon_sym_PIPE, + [15580] = 1, + ACTIONS(2836), 1, + sym__block_close, + [15584] = 1, + ACTIONS(2838), 1, + sym__close_block, + [15588] = 1, + ACTIONS(2840), 1, + sym__close_block, + [15592] = 1, + ACTIONS(2842), 1, + sym__close_block, + [15596] = 1, + ACTIONS(2844), 1, + sym__close_block, + [15600] = 1, + ACTIONS(2846), 1, + sym__close_block, + [15604] = 1, + ACTIONS(2848), 1, + sym__block_close, + [15608] = 1, + ACTIONS(2850), 1, + sym__close_block, + [15612] = 1, + ACTIONS(2852), 1, + sym__close_block, + [15616] = 1, + ACTIONS(2546), 1, + anon_sym_PIPE, + [15620] = 1, + ACTIONS(2854), 1, + sym__block_close, + [15624] = 1, + ACTIONS(2856), 1, + sym__close_block, + [15628] = 1, + ACTIONS(2858), 1, + sym__close_block, + [15632] = 1, + ACTIONS(2860), 1, + sym__close_block, + [15636] = 1, + ACTIONS(2862), 1, + sym__close_block, + [15640] = 1, + ACTIONS(2864), 1, + sym__close_block, + [15644] = 1, + ACTIONS(2866), 1, + sym__close_block, + [15648] = 1, + ACTIONS(2868), 1, + sym__close_block, + [15652] = 1, + ACTIONS(2870), 1, + sym__close_block, + [15656] = 1, + ACTIONS(2872), 1, + sym__block_close, + [15660] = 1, + ACTIONS(2874), 1, + sym__block_close, + [15664] = 1, + ACTIONS(2876), 1, + sym__close_block, + [15668] = 1, + ACTIONS(2668), 1, + sym__block_close, + [15672] = 1, + ACTIONS(2878), 1, + sym__line_ending, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(189)] = 0, - [SMALL_STATE(190)] = 67, - [SMALL_STATE(191)] = 134, - [SMALL_STATE(192)] = 201, - [SMALL_STATE(193)] = 268, - [SMALL_STATE(194)] = 335, - [SMALL_STATE(195)] = 402, - [SMALL_STATE(196)] = 469, - [SMALL_STATE(197)] = 536, - [SMALL_STATE(198)] = 603, - [SMALL_STATE(199)] = 670, - [SMALL_STATE(200)] = 737, - [SMALL_STATE(201)] = 806, - [SMALL_STATE(202)] = 873, - [SMALL_STATE(203)] = 942, - [SMALL_STATE(204)] = 1009, - [SMALL_STATE(205)] = 1076, - [SMALL_STATE(206)] = 1143, - [SMALL_STATE(207)] = 1210, - [SMALL_STATE(208)] = 1277, - [SMALL_STATE(209)] = 1344, - [SMALL_STATE(210)] = 1411, - [SMALL_STATE(211)] = 1478, - [SMALL_STATE(212)] = 1545, - [SMALL_STATE(213)] = 1612, - [SMALL_STATE(214)] = 1681, - [SMALL_STATE(215)] = 1748, - [SMALL_STATE(216)] = 1815, - [SMALL_STATE(217)] = 1882, - [SMALL_STATE(218)] = 1949, - [SMALL_STATE(219)] = 2018, - [SMALL_STATE(220)] = 2085, - [SMALL_STATE(221)] = 2152, - [SMALL_STATE(222)] = 2219, - [SMALL_STATE(223)] = 2286, - [SMALL_STATE(224)] = 2353, - [SMALL_STATE(225)] = 2420, - [SMALL_STATE(226)] = 2489, - [SMALL_STATE(227)] = 2556, - [SMALL_STATE(228)] = 2623, - [SMALL_STATE(229)] = 2690, - [SMALL_STATE(230)] = 2757, - [SMALL_STATE(231)] = 2824, - [SMALL_STATE(232)] = 2891, - [SMALL_STATE(233)] = 2958, - [SMALL_STATE(234)] = 3025, - [SMALL_STATE(235)] = 3092, - [SMALL_STATE(236)] = 3161, - [SMALL_STATE(237)] = 3228, - [SMALL_STATE(238)] = 3295, - [SMALL_STATE(239)] = 3362, - [SMALL_STATE(240)] = 3429, - [SMALL_STATE(241)] = 3496, - [SMALL_STATE(242)] = 3563, - [SMALL_STATE(243)] = 3630, - [SMALL_STATE(244)] = 3697, - [SMALL_STATE(245)] = 3764, - [SMALL_STATE(246)] = 3833, - [SMALL_STATE(247)] = 3900, - [SMALL_STATE(248)] = 3967, - [SMALL_STATE(249)] = 4034, - [SMALL_STATE(250)] = 4101, - [SMALL_STATE(251)] = 4168, - [SMALL_STATE(252)] = 4237, - [SMALL_STATE(253)] = 4304, - [SMALL_STATE(254)] = 4373, - [SMALL_STATE(255)] = 4440, - [SMALL_STATE(256)] = 4507, - [SMALL_STATE(257)] = 4576, - [SMALL_STATE(258)] = 4645, - [SMALL_STATE(259)] = 4712, - [SMALL_STATE(260)] = 4779, - [SMALL_STATE(261)] = 4848, - [SMALL_STATE(262)] = 4915, - [SMALL_STATE(263)] = 4984, - [SMALL_STATE(264)] = 5053, - [SMALL_STATE(265)] = 5122, - [SMALL_STATE(266)] = 5191, - [SMALL_STATE(267)] = 5258, - [SMALL_STATE(268)] = 5327, - [SMALL_STATE(269)] = 5396, - [SMALL_STATE(270)] = 5463, - [SMALL_STATE(271)] = 5532, - [SMALL_STATE(272)] = 5601, - [SMALL_STATE(273)] = 5668, - [SMALL_STATE(274)] = 5735, - [SMALL_STATE(275)] = 5802, - [SMALL_STATE(276)] = 5869, - [SMALL_STATE(277)] = 5936, - [SMALL_STATE(278)] = 6005, - [SMALL_STATE(279)] = 6074, - [SMALL_STATE(280)] = 6141, - [SMALL_STATE(281)] = 6210, - [SMALL_STATE(282)] = 6277, - [SMALL_STATE(283)] = 6344, - [SMALL_STATE(284)] = 6411, - [SMALL_STATE(285)] = 6478, - [SMALL_STATE(286)] = 6545, - [SMALL_STATE(287)] = 6614, - [SMALL_STATE(288)] = 6683, - [SMALL_STATE(289)] = 6752, - [SMALL_STATE(290)] = 6821, - [SMALL_STATE(291)] = 6892, - [SMALL_STATE(292)] = 6961, - [SMALL_STATE(293)] = 7030, - [SMALL_STATE(294)] = 7099, - [SMALL_STATE(295)] = 7166, - [SMALL_STATE(296)] = 7235, - [SMALL_STATE(297)] = 7304, - [SMALL_STATE(298)] = 7371, - [SMALL_STATE(299)] = 7437, - [SMALL_STATE(300)] = 7503, - [SMALL_STATE(301)] = 7569, - [SMALL_STATE(302)] = 7635, - [SMALL_STATE(303)] = 7701, - [SMALL_STATE(304)] = 7767, - [SMALL_STATE(305)] = 7833, - [SMALL_STATE(306)] = 7899, - [SMALL_STATE(307)] = 7965, - [SMALL_STATE(308)] = 8031, - [SMALL_STATE(309)] = 8097, - [SMALL_STATE(310)] = 8163, - [SMALL_STATE(311)] = 8229, - [SMALL_STATE(312)] = 8295, - [SMALL_STATE(313)] = 8361, - [SMALL_STATE(314)] = 8427, - [SMALL_STATE(315)] = 8493, - [SMALL_STATE(316)] = 8559, - [SMALL_STATE(317)] = 8625, - [SMALL_STATE(318)] = 8691, - [SMALL_STATE(319)] = 8757, - [SMALL_STATE(320)] = 8823, - [SMALL_STATE(321)] = 8889, - [SMALL_STATE(322)] = 8955, - [SMALL_STATE(323)] = 9021, - [SMALL_STATE(324)] = 9087, - [SMALL_STATE(325)] = 9153, - [SMALL_STATE(326)] = 9219, - [SMALL_STATE(327)] = 9285, - [SMALL_STATE(328)] = 9351, - [SMALL_STATE(329)] = 9417, - [SMALL_STATE(330)] = 9483, - [SMALL_STATE(331)] = 9549, - [SMALL_STATE(332)] = 9615, - [SMALL_STATE(333)] = 9681, - [SMALL_STATE(334)] = 9747, - [SMALL_STATE(335)] = 9813, - [SMALL_STATE(336)] = 9879, - [SMALL_STATE(337)] = 9945, - [SMALL_STATE(338)] = 10011, - [SMALL_STATE(339)] = 10077, - [SMALL_STATE(340)] = 10143, - [SMALL_STATE(341)] = 10209, - [SMALL_STATE(342)] = 10275, - [SMALL_STATE(343)] = 10341, - [SMALL_STATE(344)] = 10407, - [SMALL_STATE(345)] = 10473, - [SMALL_STATE(346)] = 10539, - [SMALL_STATE(347)] = 10605, - [SMALL_STATE(348)] = 10671, - [SMALL_STATE(349)] = 10737, - [SMALL_STATE(350)] = 10803, - [SMALL_STATE(351)] = 10869, - [SMALL_STATE(352)] = 10935, - [SMALL_STATE(353)] = 11001, - [SMALL_STATE(354)] = 11067, - [SMALL_STATE(355)] = 11133, - [SMALL_STATE(356)] = 11199, - [SMALL_STATE(357)] = 11265, - [SMALL_STATE(358)] = 11331, - [SMALL_STATE(359)] = 11397, - [SMALL_STATE(360)] = 11463, - [SMALL_STATE(361)] = 11529, - [SMALL_STATE(362)] = 11595, - [SMALL_STATE(363)] = 11661, - [SMALL_STATE(364)] = 11727, - [SMALL_STATE(365)] = 11793, - [SMALL_STATE(366)] = 11859, - [SMALL_STATE(367)] = 11925, - [SMALL_STATE(368)] = 11991, - [SMALL_STATE(369)] = 12057, - [SMALL_STATE(370)] = 12123, - [SMALL_STATE(371)] = 12189, - [SMALL_STATE(372)] = 12255, - [SMALL_STATE(373)] = 12321, - [SMALL_STATE(374)] = 12387, - [SMALL_STATE(375)] = 12453, - [SMALL_STATE(376)] = 12519, - [SMALL_STATE(377)] = 12585, - [SMALL_STATE(378)] = 12651, - [SMALL_STATE(379)] = 12717, - [SMALL_STATE(380)] = 12783, - [SMALL_STATE(381)] = 12849, - [SMALL_STATE(382)] = 12915, - [SMALL_STATE(383)] = 12981, - [SMALL_STATE(384)] = 13047, - [SMALL_STATE(385)] = 13113, - [SMALL_STATE(386)] = 13179, - [SMALL_STATE(387)] = 13245, - [SMALL_STATE(388)] = 13311, - [SMALL_STATE(389)] = 13377, - [SMALL_STATE(390)] = 13443, - [SMALL_STATE(391)] = 13509, - [SMALL_STATE(392)] = 13575, - [SMALL_STATE(393)] = 13641, - [SMALL_STATE(394)] = 13707, - [SMALL_STATE(395)] = 13773, - [SMALL_STATE(396)] = 13839, - [SMALL_STATE(397)] = 13905, - [SMALL_STATE(398)] = 13971, - [SMALL_STATE(399)] = 14037, - [SMALL_STATE(400)] = 14103, - [SMALL_STATE(401)] = 14169, - [SMALL_STATE(402)] = 14235, - [SMALL_STATE(403)] = 14301, - [SMALL_STATE(404)] = 14367, - [SMALL_STATE(405)] = 14433, - [SMALL_STATE(406)] = 14499, - [SMALL_STATE(407)] = 14565, - [SMALL_STATE(408)] = 14631, - [SMALL_STATE(409)] = 14697, - [SMALL_STATE(410)] = 14763, - [SMALL_STATE(411)] = 14829, - [SMALL_STATE(412)] = 14895, - [SMALL_STATE(413)] = 14961, - [SMALL_STATE(414)] = 15027, - [SMALL_STATE(415)] = 15093, - [SMALL_STATE(416)] = 15159, - [SMALL_STATE(417)] = 15225, - [SMALL_STATE(418)] = 15291, - [SMALL_STATE(419)] = 15357, - [SMALL_STATE(420)] = 15423, - [SMALL_STATE(421)] = 15489, - [SMALL_STATE(422)] = 15555, - [SMALL_STATE(423)] = 15621, - [SMALL_STATE(424)] = 15687, - [SMALL_STATE(425)] = 15753, - [SMALL_STATE(426)] = 15819, - [SMALL_STATE(427)] = 15885, - [SMALL_STATE(428)] = 15951, - [SMALL_STATE(429)] = 16017, - [SMALL_STATE(430)] = 16083, - [SMALL_STATE(431)] = 16149, - [SMALL_STATE(432)] = 16215, - [SMALL_STATE(433)] = 16281, - [SMALL_STATE(434)] = 16347, - [SMALL_STATE(435)] = 16413, - [SMALL_STATE(436)] = 16479, - [SMALL_STATE(437)] = 16545, - [SMALL_STATE(438)] = 16611, - [SMALL_STATE(439)] = 16677, - [SMALL_STATE(440)] = 16743, - [SMALL_STATE(441)] = 16809, - [SMALL_STATE(442)] = 16875, - [SMALL_STATE(443)] = 16941, - [SMALL_STATE(444)] = 17007, - [SMALL_STATE(445)] = 17073, - [SMALL_STATE(446)] = 17139, - [SMALL_STATE(447)] = 17205, - [SMALL_STATE(448)] = 17271, - [SMALL_STATE(449)] = 17337, - [SMALL_STATE(450)] = 17403, - [SMALL_STATE(451)] = 17469, - [SMALL_STATE(452)] = 17535, - [SMALL_STATE(453)] = 17601, - [SMALL_STATE(454)] = 17667, - [SMALL_STATE(455)] = 17745, - [SMALL_STATE(456)] = 17824, - [SMALL_STATE(457)] = 17896, - [SMALL_STATE(458)] = 17968, - [SMALL_STATE(459)] = 18040, - [SMALL_STATE(460)] = 18112, - [SMALL_STATE(461)] = 18176, - [SMALL_STATE(462)] = 18248, - [SMALL_STATE(463)] = 18317, - [SMALL_STATE(464)] = 18390, - [SMALL_STATE(465)] = 18463, - [SMALL_STATE(466)] = 18524, - [SMALL_STATE(467)] = 18593, - [SMALL_STATE(468)] = 18662, - [SMALL_STATE(469)] = 18723, - [SMALL_STATE(470)] = 18784, - [SMALL_STATE(471)] = 18845, - [SMALL_STATE(472)] = 18906, - [SMALL_STATE(473)] = 18975, - [SMALL_STATE(474)] = 19044, - [SMALL_STATE(475)] = 19113, - [SMALL_STATE(476)] = 19182, - [SMALL_STATE(477)] = 19251, - [SMALL_STATE(478)] = 19320, - [SMALL_STATE(479)] = 19389, - [SMALL_STATE(480)] = 19458, - [SMALL_STATE(481)] = 19527, - [SMALL_STATE(482)] = 19596, - [SMALL_STATE(483)] = 19665, - [SMALL_STATE(484)] = 19734, - [SMALL_STATE(485)] = 19803, - [SMALL_STATE(486)] = 19872, - [SMALL_STATE(487)] = 19945, - [SMALL_STATE(488)] = 20014, - [SMALL_STATE(489)] = 20080, - [SMALL_STATE(490)] = 20150, - [SMALL_STATE(491)] = 20212, - [SMALL_STATE(492)] = 20274, - [SMALL_STATE(493)] = 20336, - [SMALL_STATE(494)] = 20398, - [SMALL_STATE(495)] = 20460, - [SMALL_STATE(496)] = 20522, - [SMALL_STATE(497)] = 20584, - [SMALL_STATE(498)] = 20646, - [SMALL_STATE(499)] = 20708, - [SMALL_STATE(500)] = 20774, - [SMALL_STATE(501)] = 20836, - [SMALL_STATE(502)] = 20906, - [SMALL_STATE(503)] = 20968, - [SMALL_STATE(504)] = 21030, - [SMALL_STATE(505)] = 21092, - [SMALL_STATE(506)] = 21154, - [SMALL_STATE(507)] = 21216, - [SMALL_STATE(508)] = 21278, - [SMALL_STATE(509)] = 21340, - [SMALL_STATE(510)] = 21402, - [SMALL_STATE(511)] = 21464, - [SMALL_STATE(512)] = 21530, - [SMALL_STATE(513)] = 21600, - [SMALL_STATE(514)] = 21670, - [SMALL_STATE(515)] = 21740, - [SMALL_STATE(516)] = 21799, - [SMALL_STATE(517)] = 21858, - [SMALL_STATE(518)] = 21919, - [SMALL_STATE(519)] = 21986, - [SMALL_STATE(520)] = 22043, - [SMALL_STATE(521)] = 22102, - [SMALL_STATE(522)] = 22169, - [SMALL_STATE(523)] = 22226, - [SMALL_STATE(524)] = 22285, - [SMALL_STATE(525)] = 22342, - [SMALL_STATE(526)] = 22399, - [SMALL_STATE(527)] = 22458, - [SMALL_STATE(528)] = 22514, - [SMALL_STATE(529)] = 22578, - [SMALL_STATE(530)] = 22634, - [SMALL_STATE(531)] = 22692, - [SMALL_STATE(532)] = 22750, - [SMALL_STATE(533)] = 22808, - [SMALL_STATE(534)] = 22866, - [SMALL_STATE(535)] = 22922, - [SMALL_STATE(536)] = 22986, - [SMALL_STATE(537)] = 23050, - [SMALL_STATE(538)] = 23114, - [SMALL_STATE(539)] = 23170, - [SMALL_STATE(540)] = 23228, - [SMALL_STATE(541)] = 23284, - [SMALL_STATE(542)] = 23340, - [SMALL_STATE(543)] = 23390, - [SMALL_STATE(544)] = 23454, - [SMALL_STATE(545)] = 23510, - [SMALL_STATE(546)] = 23574, - [SMALL_STATE(547)] = 23638, - [SMALL_STATE(548)] = 23702, - [SMALL_STATE(549)] = 23766, - [SMALL_STATE(550)] = 23827, - [SMALL_STATE(551)] = 23880, - [SMALL_STATE(552)] = 23941, - [SMALL_STATE(553)] = 24000, - [SMALL_STATE(554)] = 24047, - [SMALL_STATE(555)] = 24106, - [SMALL_STATE(556)] = 24167, - [SMALL_STATE(557)] = 24214, - [SMALL_STATE(558)] = 24275, - [SMALL_STATE(559)] = 24322, - [SMALL_STATE(560)] = 24369, - [SMALL_STATE(561)] = 24416, - [SMALL_STATE(562)] = 24463, - [SMALL_STATE(563)] = 24522, - [SMALL_STATE(564)] = 24583, - [SMALL_STATE(565)] = 24644, - [SMALL_STATE(566)] = 24703, - [SMALL_STATE(567)] = 24750, - [SMALL_STATE(568)] = 24811, - [SMALL_STATE(569)] = 24872, - [SMALL_STATE(570)] = 24924, - [SMALL_STATE(571)] = 24974, - [SMALL_STATE(572)] = 25024, - [SMALL_STATE(573)] = 25074, - [SMALL_STATE(574)] = 25132, - [SMALL_STATE(575)] = 25190, - [SMALL_STATE(576)] = 25248, - [SMALL_STATE(577)] = 25294, - [SMALL_STATE(578)] = 25344, - [SMALL_STATE(579)] = 25390, - [SMALL_STATE(580)] = 25440, - [SMALL_STATE(581)] = 25490, - [SMALL_STATE(582)] = 25540, - [SMALL_STATE(583)] = 25592, - [SMALL_STATE(584)] = 25638, - [SMALL_STATE(585)] = 25684, - [SMALL_STATE(586)] = 25734, - [SMALL_STATE(587)] = 25784, - [SMALL_STATE(588)] = 25836, - [SMALL_STATE(589)] = 25885, - [SMALL_STATE(590)] = 25930, - [SMALL_STATE(591)] = 25975, - [SMALL_STATE(592)] = 26024, - [SMALL_STATE(593)] = 26069, - [SMALL_STATE(594)] = 26118, - [SMALL_STATE(595)] = 26163, - [SMALL_STATE(596)] = 26208, - [SMALL_STATE(597)] = 26253, - [SMALL_STATE(598)] = 26298, - [SMALL_STATE(599)] = 26349, - [SMALL_STATE(600)] = 26398, - [SMALL_STATE(601)] = 26443, - [SMALL_STATE(602)] = 26487, - [SMALL_STATE(603)] = 26531, - [SMALL_STATE(604)] = 26575, - [SMALL_STATE(605)] = 26619, - [SMALL_STATE(606)] = 26663, - [SMALL_STATE(607)] = 26705, - [SMALL_STATE(608)] = 26749, - [SMALL_STATE(609)] = 26799, - [SMALL_STATE(610)] = 26841, - [SMALL_STATE(611)] = 26883, - [SMALL_STATE(612)] = 26927, - [SMALL_STATE(613)] = 26969, - [SMALL_STATE(614)] = 27013, - [SMALL_STATE(615)] = 27057, - [SMALL_STATE(616)] = 27099, - [SMALL_STATE(617)] = 27141, - [SMALL_STATE(618)] = 27191, - [SMALL_STATE(619)] = 27235, - [SMALL_STATE(620)] = 27285, - [SMALL_STATE(621)] = 27335, - [SMALL_STATE(622)] = 27383, - [SMALL_STATE(623)] = 27433, - [SMALL_STATE(624)] = 27475, - [SMALL_STATE(625)] = 27523, - [SMALL_STATE(626)] = 27565, - [SMALL_STATE(627)] = 27609, - [SMALL_STATE(628)] = 27659, - [SMALL_STATE(629)] = 27703, - [SMALL_STATE(630)] = 27744, - [SMALL_STATE(631)] = 27785, - [SMALL_STATE(632)] = 27826, - [SMALL_STATE(633)] = 27867, - [SMALL_STATE(634)] = 27908, - [SMALL_STATE(635)] = 27949, - [SMALL_STATE(636)] = 27990, - [SMALL_STATE(637)] = 28034, - [SMALL_STATE(638)] = 28080, - [SMALL_STATE(639)] = 28126, - [SMALL_STATE(640)] = 28172, - [SMALL_STATE(641)] = 28218, - [SMALL_STATE(642)] = 28264, - [SMALL_STATE(643)] = 28310, - [SMALL_STATE(644)] = 28354, - [SMALL_STATE(645)] = 28394, - [SMALL_STATE(646)] = 28440, - [SMALL_STATE(647)] = 28486, - [SMALL_STATE(648)] = 28532, - [SMALL_STATE(649)] = 28572, - [SMALL_STATE(650)] = 28618, - [SMALL_STATE(651)] = 28664, - [SMALL_STATE(652)] = 28710, - [SMALL_STATE(653)] = 28756, - [SMALL_STATE(654)] = 28802, - [SMALL_STATE(655)] = 28843, - [SMALL_STATE(656)] = 28884, - [SMALL_STATE(657)] = 28923, - [SMALL_STATE(658)] = 28964, - [SMALL_STATE(659)] = 29005, - [SMALL_STATE(660)] = 29043, - [SMALL_STATE(661)] = 29081, - [SMALL_STATE(662)] = 29119, - [SMALL_STATE(663)] = 29157, - [SMALL_STATE(664)] = 29209, - [SMALL_STATE(665)] = 29261, - [SMALL_STATE(666)] = 29313, - [SMALL_STATE(667)] = 29365, - [SMALL_STATE(668)] = 29417, - [SMALL_STATE(669)] = 29454, - [SMALL_STATE(670)] = 29482, - [SMALL_STATE(671)] = 29510, - [SMALL_STATE(672)] = 29538, - [SMALL_STATE(673)] = 29566, - [SMALL_STATE(674)] = 29594, - [SMALL_STATE(675)] = 29622, - [SMALL_STATE(676)] = 29653, - [SMALL_STATE(677)] = 29680, - [SMALL_STATE(678)] = 29707, - [SMALL_STATE(679)] = 29734, - [SMALL_STATE(680)] = 29761, - [SMALL_STATE(681)] = 29789, - [SMALL_STATE(682)] = 29811, - [SMALL_STATE(683)] = 29839, - [SMALL_STATE(684)] = 29861, - [SMALL_STATE(685)] = 29883, - [SMALL_STATE(686)] = 29905, - [SMALL_STATE(687)] = 29927, - [SMALL_STATE(688)] = 29955, - [SMALL_STATE(689)] = 29983, - [SMALL_STATE(690)] = 30005, - [SMALL_STATE(691)] = 30027, - [SMALL_STATE(692)] = 30055, - [SMALL_STATE(693)] = 30077, - [SMALL_STATE(694)] = 30099, - [SMALL_STATE(695)] = 30114, - [SMALL_STATE(696)] = 30131, - [SMALL_STATE(697)] = 30148, - [SMALL_STATE(698)] = 30166, - [SMALL_STATE(699)] = 30184, - [SMALL_STATE(700)] = 30200, - [SMALL_STATE(701)] = 30222, - [SMALL_STATE(702)] = 30232, - [SMALL_STATE(703)] = 30254, - [SMALL_STATE(704)] = 30272, - [SMALL_STATE(705)] = 30290, - [SMALL_STATE(706)] = 30308, - [SMALL_STATE(707)] = 30326, - [SMALL_STATE(708)] = 30344, - [SMALL_STATE(709)] = 30362, - [SMALL_STATE(710)] = 30380, - [SMALL_STATE(711)] = 30398, - [SMALL_STATE(712)] = 30416, - [SMALL_STATE(713)] = 30434, - [SMALL_STATE(714)] = 30452, - [SMALL_STATE(715)] = 30470, - [SMALL_STATE(716)] = 30488, - [SMALL_STATE(717)] = 30506, - [SMALL_STATE(718)] = 30524, - [SMALL_STATE(719)] = 30542, - [SMALL_STATE(720)] = 30560, - [SMALL_STATE(721)] = 30582, - [SMALL_STATE(722)] = 30604, - [SMALL_STATE(723)] = 30622, - [SMALL_STATE(724)] = 30644, - [SMALL_STATE(725)] = 30662, - [SMALL_STATE(726)] = 30681, - [SMALL_STATE(727)] = 30696, - [SMALL_STATE(728)] = 30705, - [SMALL_STATE(729)] = 30720, - [SMALL_STATE(730)] = 30739, - [SMALL_STATE(731)] = 30748, - [SMALL_STATE(732)] = 30763, - [SMALL_STATE(733)] = 30782, - [SMALL_STATE(734)] = 30791, - [SMALL_STATE(735)] = 30806, - [SMALL_STATE(736)] = 30825, - [SMALL_STATE(737)] = 30840, - [SMALL_STATE(738)] = 30855, - [SMALL_STATE(739)] = 30874, - [SMALL_STATE(740)] = 30889, - [SMALL_STATE(741)] = 30904, - [SMALL_STATE(742)] = 30919, - [SMALL_STATE(743)] = 30928, - [SMALL_STATE(744)] = 30943, - [SMALL_STATE(745)] = 30962, - [SMALL_STATE(746)] = 30981, - [SMALL_STATE(747)] = 31000, - [SMALL_STATE(748)] = 31015, - [SMALL_STATE(749)] = 31030, - [SMALL_STATE(750)] = 31045, - [SMALL_STATE(751)] = 31060, - [SMALL_STATE(752)] = 31075, - [SMALL_STATE(753)] = 31090, - [SMALL_STATE(754)] = 31106, - [SMALL_STATE(755)] = 31118, - [SMALL_STATE(756)] = 31128, - [SMALL_STATE(757)] = 31142, - [SMALL_STATE(758)] = 31150, - [SMALL_STATE(759)] = 31164, - [SMALL_STATE(760)] = 31172, - [SMALL_STATE(761)] = 31188, - [SMALL_STATE(762)] = 31202, - [SMALL_STATE(763)] = 31216, - [SMALL_STATE(764)] = 31232, - [SMALL_STATE(765)] = 31248, - [SMALL_STATE(766)] = 31264, - [SMALL_STATE(767)] = 31278, - [SMALL_STATE(768)] = 31288, - [SMALL_STATE(769)] = 31296, - [SMALL_STATE(770)] = 31312, - [SMALL_STATE(771)] = 31321, - [SMALL_STATE(772)] = 31334, - [SMALL_STATE(773)] = 31343, - [SMALL_STATE(774)] = 31352, - [SMALL_STATE(775)] = 31365, - [SMALL_STATE(776)] = 31374, - [SMALL_STATE(777)] = 31383, - [SMALL_STATE(778)] = 31392, - [SMALL_STATE(779)] = 31401, - [SMALL_STATE(780)] = 31408, - [SMALL_STATE(781)] = 31421, - [SMALL_STATE(782)] = 31430, - [SMALL_STATE(783)] = 31439, - [SMALL_STATE(784)] = 31448, - [SMALL_STATE(785)] = 31461, - [SMALL_STATE(786)] = 31470, - [SMALL_STATE(787)] = 31479, - [SMALL_STATE(788)] = 31492, - [SMALL_STATE(789)] = 31501, - [SMALL_STATE(790)] = 31510, - [SMALL_STATE(791)] = 31523, - [SMALL_STATE(792)] = 31532, - [SMALL_STATE(793)] = 31541, - [SMALL_STATE(794)] = 31550, - [SMALL_STATE(795)] = 31563, - [SMALL_STATE(796)] = 31576, - [SMALL_STATE(797)] = 31589, - [SMALL_STATE(798)] = 31602, - [SMALL_STATE(799)] = 31611, - [SMALL_STATE(800)] = 31620, - [SMALL_STATE(801)] = 31633, - [SMALL_STATE(802)] = 31642, - [SMALL_STATE(803)] = 31655, - [SMALL_STATE(804)] = 31664, - [SMALL_STATE(805)] = 31673, - [SMALL_STATE(806)] = 31681, - [SMALL_STATE(807)] = 31691, - [SMALL_STATE(808)] = 31701, - [SMALL_STATE(809)] = 31711, - [SMALL_STATE(810)] = 31721, - [SMALL_STATE(811)] = 31731, - [SMALL_STATE(812)] = 31741, - [SMALL_STATE(813)] = 31751, - [SMALL_STATE(814)] = 31761, - [SMALL_STATE(815)] = 31771, - [SMALL_STATE(816)] = 31781, - [SMALL_STATE(817)] = 31791, - [SMALL_STATE(818)] = 31801, - [SMALL_STATE(819)] = 31811, - [SMALL_STATE(820)] = 31821, - [SMALL_STATE(821)] = 31831, - [SMALL_STATE(822)] = 31841, - [SMALL_STATE(823)] = 31851, - [SMALL_STATE(824)] = 31861, - [SMALL_STATE(825)] = 31871, - [SMALL_STATE(826)] = 31881, - [SMALL_STATE(827)] = 31887, - [SMALL_STATE(828)] = 31897, - [SMALL_STATE(829)] = 31907, - [SMALL_STATE(830)] = 31917, - [SMALL_STATE(831)] = 31927, - [SMALL_STATE(832)] = 31937, - [SMALL_STATE(833)] = 31943, - [SMALL_STATE(834)] = 31949, - [SMALL_STATE(835)] = 31959, - [SMALL_STATE(836)] = 31965, - [SMALL_STATE(837)] = 31975, - [SMALL_STATE(838)] = 31985, - [SMALL_STATE(839)] = 31995, - [SMALL_STATE(840)] = 32005, - [SMALL_STATE(841)] = 32015, - [SMALL_STATE(842)] = 32025, - [SMALL_STATE(843)] = 32035, - [SMALL_STATE(844)] = 32045, - [SMALL_STATE(845)] = 32055, - [SMALL_STATE(846)] = 32065, - [SMALL_STATE(847)] = 32075, - [SMALL_STATE(848)] = 32085, - [SMALL_STATE(849)] = 32095, - [SMALL_STATE(850)] = 32105, - [SMALL_STATE(851)] = 32115, - [SMALL_STATE(852)] = 32122, - [SMALL_STATE(853)] = 32129, - [SMALL_STATE(854)] = 32136, - [SMALL_STATE(855)] = 32143, - [SMALL_STATE(856)] = 32150, - [SMALL_STATE(857)] = 32157, - [SMALL_STATE(858)] = 32164, - [SMALL_STATE(859)] = 32171, - [SMALL_STATE(860)] = 32178, - [SMALL_STATE(861)] = 32185, - [SMALL_STATE(862)] = 32192, - [SMALL_STATE(863)] = 32199, - [SMALL_STATE(864)] = 32206, - [SMALL_STATE(865)] = 32213, - [SMALL_STATE(866)] = 32220, - [SMALL_STATE(867)] = 32227, - [SMALL_STATE(868)] = 32234, - [SMALL_STATE(869)] = 32241, - [SMALL_STATE(870)] = 32248, - [SMALL_STATE(871)] = 32255, - [SMALL_STATE(872)] = 32262, - [SMALL_STATE(873)] = 32269, - [SMALL_STATE(874)] = 32274, - [SMALL_STATE(875)] = 32281, - [SMALL_STATE(876)] = 32288, - [SMALL_STATE(877)] = 32295, - [SMALL_STATE(878)] = 32302, - [SMALL_STATE(879)] = 32309, - [SMALL_STATE(880)] = 32316, - [SMALL_STATE(881)] = 32323, - [SMALL_STATE(882)] = 32330, - [SMALL_STATE(883)] = 32337, - [SMALL_STATE(884)] = 32344, - [SMALL_STATE(885)] = 32351, - [SMALL_STATE(886)] = 32358, - [SMALL_STATE(887)] = 32363, - [SMALL_STATE(888)] = 32370, - [SMALL_STATE(889)] = 32375, - [SMALL_STATE(890)] = 32382, - [SMALL_STATE(891)] = 32389, - [SMALL_STATE(892)] = 32396, - [SMALL_STATE(893)] = 32403, - [SMALL_STATE(894)] = 32410, - [SMALL_STATE(895)] = 32417, - [SMALL_STATE(896)] = 32424, - [SMALL_STATE(897)] = 32431, - [SMALL_STATE(898)] = 32438, - [SMALL_STATE(899)] = 32445, - [SMALL_STATE(900)] = 32452, - [SMALL_STATE(901)] = 32459, - [SMALL_STATE(902)] = 32466, - [SMALL_STATE(903)] = 32473, - [SMALL_STATE(904)] = 32480, - [SMALL_STATE(905)] = 32487, - [SMALL_STATE(906)] = 32494, - [SMALL_STATE(907)] = 32501, - [SMALL_STATE(908)] = 32508, - [SMALL_STATE(909)] = 32515, - [SMALL_STATE(910)] = 32522, - [SMALL_STATE(911)] = 32529, - [SMALL_STATE(912)] = 32536, - [SMALL_STATE(913)] = 32543, - [SMALL_STATE(914)] = 32550, - [SMALL_STATE(915)] = 32557, - [SMALL_STATE(916)] = 32564, - [SMALL_STATE(917)] = 32571, - [SMALL_STATE(918)] = 32578, - [SMALL_STATE(919)] = 32585, - [SMALL_STATE(920)] = 32592, - [SMALL_STATE(921)] = 32599, - [SMALL_STATE(922)] = 32604, - [SMALL_STATE(923)] = 32611, - [SMALL_STATE(924)] = 32618, - [SMALL_STATE(925)] = 32625, - [SMALL_STATE(926)] = 32632, - [SMALL_STATE(927)] = 32639, - [SMALL_STATE(928)] = 32646, - [SMALL_STATE(929)] = 32653, - [SMALL_STATE(930)] = 32660, - [SMALL_STATE(931)] = 32667, - [SMALL_STATE(932)] = 32674, - [SMALL_STATE(933)] = 32681, - [SMALL_STATE(934)] = 32688, - [SMALL_STATE(935)] = 32695, - [SMALL_STATE(936)] = 32702, - [SMALL_STATE(937)] = 32709, - [SMALL_STATE(938)] = 32716, - [SMALL_STATE(939)] = 32723, - [SMALL_STATE(940)] = 32730, - [SMALL_STATE(941)] = 32737, - [SMALL_STATE(942)] = 32744, - [SMALL_STATE(943)] = 32751, - [SMALL_STATE(944)] = 32758, - [SMALL_STATE(945)] = 32763, - [SMALL_STATE(946)] = 32770, - [SMALL_STATE(947)] = 32775, - [SMALL_STATE(948)] = 32782, - [SMALL_STATE(949)] = 32789, - [SMALL_STATE(950)] = 32796, - [SMALL_STATE(951)] = 32803, - [SMALL_STATE(952)] = 32810, - [SMALL_STATE(953)] = 32817, - [SMALL_STATE(954)] = 32824, - [SMALL_STATE(955)] = 32831, - [SMALL_STATE(956)] = 32838, - [SMALL_STATE(957)] = 32845, - [SMALL_STATE(958)] = 32852, - [SMALL_STATE(959)] = 32859, - [SMALL_STATE(960)] = 32866, - [SMALL_STATE(961)] = 32873, - [SMALL_STATE(962)] = 32880, - [SMALL_STATE(963)] = 32887, - [SMALL_STATE(964)] = 32891, - [SMALL_STATE(965)] = 32895, - [SMALL_STATE(966)] = 32899, - [SMALL_STATE(967)] = 32903, - [SMALL_STATE(968)] = 32907, - [SMALL_STATE(969)] = 32911, - [SMALL_STATE(970)] = 32915, - [SMALL_STATE(971)] = 32919, - [SMALL_STATE(972)] = 32923, - [SMALL_STATE(973)] = 32927, - [SMALL_STATE(974)] = 32931, - [SMALL_STATE(975)] = 32935, - [SMALL_STATE(976)] = 32939, - [SMALL_STATE(977)] = 32943, - [SMALL_STATE(978)] = 32947, - [SMALL_STATE(979)] = 32951, - [SMALL_STATE(980)] = 32955, - [SMALL_STATE(981)] = 32959, - [SMALL_STATE(982)] = 32963, - [SMALL_STATE(983)] = 32967, - [SMALL_STATE(984)] = 32971, - [SMALL_STATE(985)] = 32975, - [SMALL_STATE(986)] = 32979, - [SMALL_STATE(987)] = 32983, - [SMALL_STATE(988)] = 32987, - [SMALL_STATE(989)] = 32991, - [SMALL_STATE(990)] = 32995, - [SMALL_STATE(991)] = 32999, - [SMALL_STATE(992)] = 33003, - [SMALL_STATE(993)] = 33007, - [SMALL_STATE(994)] = 33011, - [SMALL_STATE(995)] = 33015, - [SMALL_STATE(996)] = 33019, - [SMALL_STATE(997)] = 33023, - [SMALL_STATE(998)] = 33027, - [SMALL_STATE(999)] = 33031, - [SMALL_STATE(1000)] = 33035, - [SMALL_STATE(1001)] = 33039, - [SMALL_STATE(1002)] = 33043, - [SMALL_STATE(1003)] = 33047, - [SMALL_STATE(1004)] = 33051, - [SMALL_STATE(1005)] = 33055, - [SMALL_STATE(1006)] = 33059, - [SMALL_STATE(1007)] = 33063, - [SMALL_STATE(1008)] = 33067, - [SMALL_STATE(1009)] = 33071, - [SMALL_STATE(1010)] = 33075, - [SMALL_STATE(1011)] = 33079, - [SMALL_STATE(1012)] = 33083, - [SMALL_STATE(1013)] = 33087, - [SMALL_STATE(1014)] = 33091, - [SMALL_STATE(1015)] = 33095, - [SMALL_STATE(1016)] = 33099, - [SMALL_STATE(1017)] = 33103, - [SMALL_STATE(1018)] = 33107, - [SMALL_STATE(1019)] = 33111, - [SMALL_STATE(1020)] = 33115, - [SMALL_STATE(1021)] = 33119, - [SMALL_STATE(1022)] = 33123, - [SMALL_STATE(1023)] = 33127, - [SMALL_STATE(1024)] = 33131, - [SMALL_STATE(1025)] = 33135, - [SMALL_STATE(1026)] = 33139, - [SMALL_STATE(1027)] = 33143, - [SMALL_STATE(1028)] = 33147, - [SMALL_STATE(1029)] = 33151, - [SMALL_STATE(1030)] = 33155, - [SMALL_STATE(1031)] = 33159, - [SMALL_STATE(1032)] = 33163, - [SMALL_STATE(1033)] = 33167, - [SMALL_STATE(1034)] = 33171, - [SMALL_STATE(1035)] = 33175, - [SMALL_STATE(1036)] = 33179, - [SMALL_STATE(1037)] = 33183, - [SMALL_STATE(1038)] = 33187, - [SMALL_STATE(1039)] = 33191, - [SMALL_STATE(1040)] = 33195, - [SMALL_STATE(1041)] = 33199, - [SMALL_STATE(1042)] = 33203, - [SMALL_STATE(1043)] = 33207, - [SMALL_STATE(1044)] = 33211, - [SMALL_STATE(1045)] = 33215, - [SMALL_STATE(1046)] = 33219, - [SMALL_STATE(1047)] = 33223, - [SMALL_STATE(1048)] = 33227, - [SMALL_STATE(1049)] = 33231, - [SMALL_STATE(1050)] = 33235, - [SMALL_STATE(1051)] = 33239, - [SMALL_STATE(1052)] = 33243, - [SMALL_STATE(1053)] = 33247, - [SMALL_STATE(1054)] = 33251, - [SMALL_STATE(1055)] = 33255, - [SMALL_STATE(1056)] = 33259, - [SMALL_STATE(1057)] = 33263, - [SMALL_STATE(1058)] = 33267, - [SMALL_STATE(1059)] = 33271, - [SMALL_STATE(1060)] = 33275, - [SMALL_STATE(1061)] = 33279, - [SMALL_STATE(1062)] = 33283, - [SMALL_STATE(1063)] = 33287, - [SMALL_STATE(1064)] = 33291, - [SMALL_STATE(1065)] = 33295, - [SMALL_STATE(1066)] = 33299, - [SMALL_STATE(1067)] = 33303, - [SMALL_STATE(1068)] = 33307, - [SMALL_STATE(1069)] = 33311, - [SMALL_STATE(1070)] = 33315, + [SMALL_STATE(479)] = 0, + [SMALL_STATE(480)] = 78, + [SMALL_STATE(481)] = 157, + [SMALL_STATE(482)] = 229, + [SMALL_STATE(483)] = 301, + [SMALL_STATE(484)] = 373, + [SMALL_STATE(485)] = 437, + [SMALL_STATE(486)] = 509, + [SMALL_STATE(487)] = 581, + [SMALL_STATE(488)] = 650, + [SMALL_STATE(489)] = 719, + [SMALL_STATE(490)] = 780, + [SMALL_STATE(491)] = 841, + [SMALL_STATE(492)] = 902, + [SMALL_STATE(493)] = 975, + [SMALL_STATE(494)] = 1036, + [SMALL_STATE(495)] = 1109, + [SMALL_STATE(496)] = 1178, + [SMALL_STATE(497)] = 1247, + [SMALL_STATE(498)] = 1316, + [SMALL_STATE(499)] = 1385, + [SMALL_STATE(500)] = 1454, + [SMALL_STATE(501)] = 1523, + [SMALL_STATE(502)] = 1592, + [SMALL_STATE(503)] = 1661, + [SMALL_STATE(504)] = 1730, + [SMALL_STATE(505)] = 1799, + [SMALL_STATE(506)] = 1868, + [SMALL_STATE(507)] = 1937, + [SMALL_STATE(508)] = 2006, + [SMALL_STATE(509)] = 2067, + [SMALL_STATE(510)] = 2136, + [SMALL_STATE(511)] = 2205, + [SMALL_STATE(512)] = 2274, + [SMALL_STATE(513)] = 2347, + [SMALL_STATE(514)] = 2417, + [SMALL_STATE(515)] = 2479, + [SMALL_STATE(516)] = 2545, + [SMALL_STATE(517)] = 2607, + [SMALL_STATE(518)] = 2669, + [SMALL_STATE(519)] = 2739, + [SMALL_STATE(520)] = 2805, + [SMALL_STATE(521)] = 2867, + [SMALL_STATE(522)] = 2933, + [SMALL_STATE(523)] = 2995, + [SMALL_STATE(524)] = 3057, + [SMALL_STATE(525)] = 3119, + [SMALL_STATE(526)] = 3181, + [SMALL_STATE(527)] = 3243, + [SMALL_STATE(528)] = 3305, + [SMALL_STATE(529)] = 3367, + [SMALL_STATE(530)] = 3429, + [SMALL_STATE(531)] = 3499, + [SMALL_STATE(532)] = 3561, + [SMALL_STATE(533)] = 3623, + [SMALL_STATE(534)] = 3685, + [SMALL_STATE(535)] = 3747, + [SMALL_STATE(536)] = 3809, + [SMALL_STATE(537)] = 3871, + [SMALL_STATE(538)] = 3941, + [SMALL_STATE(539)] = 4011, + [SMALL_STATE(540)] = 4073, + [SMALL_STATE(541)] = 4140, + [SMALL_STATE(542)] = 4199, + [SMALL_STATE(543)] = 4258, + [SMALL_STATE(544)] = 4315, + [SMALL_STATE(545)] = 4376, + [SMALL_STATE(546)] = 4435, + [SMALL_STATE(547)] = 4494, + [SMALL_STATE(548)] = 4551, + [SMALL_STATE(549)] = 4618, + [SMALL_STATE(550)] = 4675, + [SMALL_STATE(551)] = 4734, + [SMALL_STATE(552)] = 4791, + [SMALL_STATE(553)] = 4849, + [SMALL_STATE(554)] = 4905, + [SMALL_STATE(555)] = 4969, + [SMALL_STATE(556)] = 5027, + [SMALL_STATE(557)] = 5083, + [SMALL_STATE(558)] = 5139, + [SMALL_STATE(559)] = 5195, + [SMALL_STATE(560)] = 5253, + [SMALL_STATE(561)] = 5317, + [SMALL_STATE(562)] = 5373, + [SMALL_STATE(563)] = 5429, + [SMALL_STATE(564)] = 5479, + [SMALL_STATE(565)] = 5537, + [SMALL_STATE(566)] = 5601, + [SMALL_STATE(567)] = 5665, + [SMALL_STATE(568)] = 5721, + [SMALL_STATE(569)] = 5785, + [SMALL_STATE(570)] = 5849, + [SMALL_STATE(571)] = 5913, + [SMALL_STATE(572)] = 5977, + [SMALL_STATE(573)] = 6041, + [SMALL_STATE(574)] = 6099, + [SMALL_STATE(575)] = 6160, + [SMALL_STATE(576)] = 6219, + [SMALL_STATE(577)] = 6280, + [SMALL_STATE(578)] = 6341, + [SMALL_STATE(579)] = 6388, + [SMALL_STATE(580)] = 6435, + [SMALL_STATE(581)] = 6482, + [SMALL_STATE(582)] = 6541, + [SMALL_STATE(583)] = 6600, + [SMALL_STATE(584)] = 6661, + [SMALL_STATE(585)] = 6722, + [SMALL_STATE(586)] = 6775, + [SMALL_STATE(587)] = 6822, + [SMALL_STATE(588)] = 6881, + [SMALL_STATE(589)] = 6928, + [SMALL_STATE(590)] = 6989, + [SMALL_STATE(591)] = 7036, + [SMALL_STATE(592)] = 7083, + [SMALL_STATE(593)] = 7144, + [SMALL_STATE(594)] = 7205, + [SMALL_STATE(595)] = 7251, + [SMALL_STATE(596)] = 7301, + [SMALL_STATE(597)] = 7347, + [SMALL_STATE(598)] = 7397, + [SMALL_STATE(599)] = 7443, + [SMALL_STATE(600)] = 7501, + [SMALL_STATE(601)] = 7559, + [SMALL_STATE(602)] = 7611, + [SMALL_STATE(603)] = 7661, + [SMALL_STATE(604)] = 7711, + [SMALL_STATE(605)] = 7769, + [SMALL_STATE(606)] = 7819, + [SMALL_STATE(607)] = 7869, + [SMALL_STATE(608)] = 7919, + [SMALL_STATE(609)] = 7965, + [SMALL_STATE(610)] = 8015, + [SMALL_STATE(611)] = 8065, + [SMALL_STATE(612)] = 8117, + [SMALL_STATE(613)] = 8169, + [SMALL_STATE(614)] = 8214, + [SMALL_STATE(615)] = 8263, + [SMALL_STATE(616)] = 8308, + [SMALL_STATE(617)] = 8353, + [SMALL_STATE(618)] = 8398, + [SMALL_STATE(619)] = 8447, + [SMALL_STATE(620)] = 8496, + [SMALL_STATE(621)] = 8545, + [SMALL_STATE(622)] = 8590, + [SMALL_STATE(623)] = 8641, + [SMALL_STATE(624)] = 8686, + [SMALL_STATE(625)] = 8731, + [SMALL_STATE(626)] = 8776, + [SMALL_STATE(627)] = 8826, + [SMALL_STATE(628)] = 8870, + [SMALL_STATE(629)] = 8920, + [SMALL_STATE(630)] = 8962, + [SMALL_STATE(631)] = 9012, + [SMALL_STATE(632)] = 9056, + [SMALL_STATE(633)] = 9106, + [SMALL_STATE(634)] = 9150, + [SMALL_STATE(635)] = 9194, + [SMALL_STATE(636)] = 9236, + [SMALL_STATE(637)] = 9278, + [SMALL_STATE(638)] = 9322, + [SMALL_STATE(639)] = 9364, + [SMALL_STATE(640)] = 9406, + [SMALL_STATE(641)] = 9448, + [SMALL_STATE(642)] = 9492, + [SMALL_STATE(643)] = 9536, + [SMALL_STATE(644)] = 9586, + [SMALL_STATE(645)] = 9630, + [SMALL_STATE(646)] = 9674, + [SMALL_STATE(647)] = 9722, + [SMALL_STATE(648)] = 9764, + [SMALL_STATE(649)] = 9806, + [SMALL_STATE(650)] = 9850, + [SMALL_STATE(651)] = 9894, + [SMALL_STATE(652)] = 9938, + [SMALL_STATE(653)] = 9988, + [SMALL_STATE(654)] = 10036, + [SMALL_STATE(655)] = 10077, + [SMALL_STATE(656)] = 10118, + [SMALL_STATE(657)] = 10159, + [SMALL_STATE(658)] = 10200, + [SMALL_STATE(659)] = 10241, + [SMALL_STATE(660)] = 10282, + [SMALL_STATE(661)] = 10323, + [SMALL_STATE(662)] = 10369, + [SMALL_STATE(663)] = 10415, + [SMALL_STATE(664)] = 10461, + [SMALL_STATE(665)] = 10505, + [SMALL_STATE(666)] = 10545, + [SMALL_STATE(667)] = 10591, + [SMALL_STATE(668)] = 10631, + [SMALL_STATE(669)] = 10677, + [SMALL_STATE(670)] = 10723, + [SMALL_STATE(671)] = 10769, + [SMALL_STATE(672)] = 10815, + [SMALL_STATE(673)] = 10861, + [SMALL_STATE(674)] = 10907, + [SMALL_STATE(675)] = 10953, + [SMALL_STATE(676)] = 10999, + [SMALL_STATE(677)] = 11045, + [SMALL_STATE(678)] = 11091, + [SMALL_STATE(679)] = 11135, + [SMALL_STATE(680)] = 11176, + [SMALL_STATE(681)] = 11217, + [SMALL_STATE(682)] = 11258, + [SMALL_STATE(683)] = 11299, + [SMALL_STATE(684)] = 11338, + [SMALL_STATE(685)] = 11376, + [SMALL_STATE(686)] = 11414, + [SMALL_STATE(687)] = 11452, + [SMALL_STATE(688)] = 11490, + [SMALL_STATE(689)] = 11542, + [SMALL_STATE(690)] = 11594, + [SMALL_STATE(691)] = 11646, + [SMALL_STATE(692)] = 11698, + [SMALL_STATE(693)] = 11750, + [SMALL_STATE(694)] = 11787, + [SMALL_STATE(695)] = 11815, + [SMALL_STATE(696)] = 11843, + [SMALL_STATE(697)] = 11871, + [SMALL_STATE(698)] = 11899, + [SMALL_STATE(699)] = 11927, + [SMALL_STATE(700)] = 11955, + [SMALL_STATE(701)] = 11982, + [SMALL_STATE(702)] = 12009, + [SMALL_STATE(703)] = 12036, + [SMALL_STATE(704)] = 12063, + [SMALL_STATE(705)] = 12094, + [SMALL_STATE(706)] = 12116, + [SMALL_STATE(707)] = 12138, + [SMALL_STATE(708)] = 12160, + [SMALL_STATE(709)] = 12188, + [SMALL_STATE(710)] = 12216, + [SMALL_STATE(711)] = 12238, + [SMALL_STATE(712)] = 12260, + [SMALL_STATE(713)] = 12288, + [SMALL_STATE(714)] = 12310, + [SMALL_STATE(715)] = 12332, + [SMALL_STATE(716)] = 12360, + [SMALL_STATE(717)] = 12388, + [SMALL_STATE(718)] = 12410, + [SMALL_STATE(719)] = 12432, + [SMALL_STATE(720)] = 12449, + [SMALL_STATE(721)] = 12466, + [SMALL_STATE(722)] = 12481, + [SMALL_STATE(723)] = 12499, + [SMALL_STATE(724)] = 12517, + [SMALL_STATE(725)] = 12535, + [SMALL_STATE(726)] = 12553, + [SMALL_STATE(727)] = 12571, + [SMALL_STATE(728)] = 12593, + [SMALL_STATE(729)] = 12611, + [SMALL_STATE(730)] = 12629, + [SMALL_STATE(731)] = 12647, + [SMALL_STATE(732)] = 12665, + [SMALL_STATE(733)] = 12683, + [SMALL_STATE(734)] = 12705, + [SMALL_STATE(735)] = 12723, + [SMALL_STATE(736)] = 12733, + [SMALL_STATE(737)] = 12749, + [SMALL_STATE(738)] = 12767, + [SMALL_STATE(739)] = 12785, + [SMALL_STATE(740)] = 12803, + [SMALL_STATE(741)] = 12821, + [SMALL_STATE(742)] = 12839, + [SMALL_STATE(743)] = 12857, + [SMALL_STATE(744)] = 12879, + [SMALL_STATE(745)] = 12897, + [SMALL_STATE(746)] = 12919, + [SMALL_STATE(747)] = 12937, + [SMALL_STATE(748)] = 12955, + [SMALL_STATE(749)] = 12977, + [SMALL_STATE(750)] = 12995, + [SMALL_STATE(751)] = 13014, + [SMALL_STATE(752)] = 13029, + [SMALL_STATE(753)] = 13044, + [SMALL_STATE(754)] = 13063, + [SMALL_STATE(755)] = 13082, + [SMALL_STATE(756)] = 13097, + [SMALL_STATE(757)] = 13116, + [SMALL_STATE(758)] = 13131, + [SMALL_STATE(759)] = 13146, + [SMALL_STATE(760)] = 13161, + [SMALL_STATE(761)] = 13176, + [SMALL_STATE(762)] = 13195, + [SMALL_STATE(763)] = 13214, + [SMALL_STATE(764)] = 13229, + [SMALL_STATE(765)] = 13244, + [SMALL_STATE(766)] = 13259, + [SMALL_STATE(767)] = 13274, + [SMALL_STATE(768)] = 13289, + [SMALL_STATE(769)] = 13308, + [SMALL_STATE(770)] = 13317, + [SMALL_STATE(771)] = 13332, + [SMALL_STATE(772)] = 13347, + [SMALL_STATE(773)] = 13362, + [SMALL_STATE(774)] = 13381, + [SMALL_STATE(775)] = 13390, + [SMALL_STATE(776)] = 13399, + [SMALL_STATE(777)] = 13414, + [SMALL_STATE(778)] = 13423, + [SMALL_STATE(779)] = 13439, + [SMALL_STATE(780)] = 13453, + [SMALL_STATE(781)] = 13461, + [SMALL_STATE(782)] = 13477, + [SMALL_STATE(783)] = 13485, + [SMALL_STATE(784)] = 13499, + [SMALL_STATE(785)] = 13515, + [SMALL_STATE(786)] = 13531, + [SMALL_STATE(787)] = 13541, + [SMALL_STATE(788)] = 13553, + [SMALL_STATE(789)] = 13561, + [SMALL_STATE(790)] = 13575, + [SMALL_STATE(791)] = 13589, + [SMALL_STATE(792)] = 13605, + [SMALL_STATE(793)] = 13615, + [SMALL_STATE(794)] = 13629, + [SMALL_STATE(795)] = 13645, + [SMALL_STATE(796)] = 13654, + [SMALL_STATE(797)] = 13663, + [SMALL_STATE(798)] = 13672, + [SMALL_STATE(799)] = 13681, + [SMALL_STATE(800)] = 13690, + [SMALL_STATE(801)] = 13699, + [SMALL_STATE(802)] = 13708, + [SMALL_STATE(803)] = 13715, + [SMALL_STATE(804)] = 13728, + [SMALL_STATE(805)] = 13737, + [SMALL_STATE(806)] = 13750, + [SMALL_STATE(807)] = 13763, + [SMALL_STATE(808)] = 13772, + [SMALL_STATE(809)] = 13781, + [SMALL_STATE(810)] = 13794, + [SMALL_STATE(811)] = 13803, + [SMALL_STATE(812)] = 13812, + [SMALL_STATE(813)] = 13821, + [SMALL_STATE(814)] = 13830, + [SMALL_STATE(815)] = 13843, + [SMALL_STATE(816)] = 13856, + [SMALL_STATE(817)] = 13869, + [SMALL_STATE(818)] = 13882, + [SMALL_STATE(819)] = 13891, + [SMALL_STATE(820)] = 13900, + [SMALL_STATE(821)] = 13913, + [SMALL_STATE(822)] = 13922, + [SMALL_STATE(823)] = 13931, + [SMALL_STATE(824)] = 13940, + [SMALL_STATE(825)] = 13949, + [SMALL_STATE(826)] = 13958, + [SMALL_STATE(827)] = 13971, + [SMALL_STATE(828)] = 13984, + [SMALL_STATE(829)] = 13993, + [SMALL_STATE(830)] = 14006, + [SMALL_STATE(831)] = 14016, + [SMALL_STATE(832)] = 14026, + [SMALL_STATE(833)] = 14036, + [SMALL_STATE(834)] = 14042, + [SMALL_STATE(835)] = 14052, + [SMALL_STATE(836)] = 14062, + [SMALL_STATE(837)] = 14072, + [SMALL_STATE(838)] = 14082, + [SMALL_STATE(839)] = 14092, + [SMALL_STATE(840)] = 14102, + [SMALL_STATE(841)] = 14108, + [SMALL_STATE(842)] = 14118, + [SMALL_STATE(843)] = 14128, + [SMALL_STATE(844)] = 14138, + [SMALL_STATE(845)] = 14148, + [SMALL_STATE(846)] = 14158, + [SMALL_STATE(847)] = 14168, + [SMALL_STATE(848)] = 14178, + [SMALL_STATE(849)] = 14188, + [SMALL_STATE(850)] = 14198, + [SMALL_STATE(851)] = 14204, + [SMALL_STATE(852)] = 14214, + [SMALL_STATE(853)] = 14224, + [SMALL_STATE(854)] = 14234, + [SMALL_STATE(855)] = 14244, + [SMALL_STATE(856)] = 14254, + [SMALL_STATE(857)] = 14264, + [SMALL_STATE(858)] = 14274, + [SMALL_STATE(859)] = 14284, + [SMALL_STATE(860)] = 14290, + [SMALL_STATE(861)] = 14300, + [SMALL_STATE(862)] = 14310, + [SMALL_STATE(863)] = 14320, + [SMALL_STATE(864)] = 14330, + [SMALL_STATE(865)] = 14340, + [SMALL_STATE(866)] = 14350, + [SMALL_STATE(867)] = 14360, + [SMALL_STATE(868)] = 14370, + [SMALL_STATE(869)] = 14380, + [SMALL_STATE(870)] = 14390, + [SMALL_STATE(871)] = 14400, + [SMALL_STATE(872)] = 14410, + [SMALL_STATE(873)] = 14420, + [SMALL_STATE(874)] = 14430, + [SMALL_STATE(875)] = 14438, + [SMALL_STATE(876)] = 14448, + [SMALL_STATE(877)] = 14455, + [SMALL_STATE(878)] = 14462, + [SMALL_STATE(879)] = 14469, + [SMALL_STATE(880)] = 14476, + [SMALL_STATE(881)] = 14483, + [SMALL_STATE(882)] = 14490, + [SMALL_STATE(883)] = 14497, + [SMALL_STATE(884)] = 14504, + [SMALL_STATE(885)] = 14511, + [SMALL_STATE(886)] = 14518, + [SMALL_STATE(887)] = 14525, + [SMALL_STATE(888)] = 14532, + [SMALL_STATE(889)] = 14539, + [SMALL_STATE(890)] = 14546, + [SMALL_STATE(891)] = 14553, + [SMALL_STATE(892)] = 14560, + [SMALL_STATE(893)] = 14567, + [SMALL_STATE(894)] = 14574, + [SMALL_STATE(895)] = 14581, + [SMALL_STATE(896)] = 14586, + [SMALL_STATE(897)] = 14593, + [SMALL_STATE(898)] = 14600, + [SMALL_STATE(899)] = 14607, + [SMALL_STATE(900)] = 14614, + [SMALL_STATE(901)] = 14621, + [SMALL_STATE(902)] = 14626, + [SMALL_STATE(903)] = 14633, + [SMALL_STATE(904)] = 14640, + [SMALL_STATE(905)] = 14645, + [SMALL_STATE(906)] = 14652, + [SMALL_STATE(907)] = 14659, + [SMALL_STATE(908)] = 14666, + [SMALL_STATE(909)] = 14673, + [SMALL_STATE(910)] = 14680, + [SMALL_STATE(911)] = 14685, + [SMALL_STATE(912)] = 14692, + [SMALL_STATE(913)] = 14699, + [SMALL_STATE(914)] = 14706, + [SMALL_STATE(915)] = 14713, + [SMALL_STATE(916)] = 14720, + [SMALL_STATE(917)] = 14727, + [SMALL_STATE(918)] = 14734, + [SMALL_STATE(919)] = 14741, + [SMALL_STATE(920)] = 14748, + [SMALL_STATE(921)] = 14755, + [SMALL_STATE(922)] = 14762, + [SMALL_STATE(923)] = 14769, + [SMALL_STATE(924)] = 14776, + [SMALL_STATE(925)] = 14783, + [SMALL_STATE(926)] = 14790, + [SMALL_STATE(927)] = 14797, + [SMALL_STATE(928)] = 14804, + [SMALL_STATE(929)] = 14811, + [SMALL_STATE(930)] = 14818, + [SMALL_STATE(931)] = 14823, + [SMALL_STATE(932)] = 14830, + [SMALL_STATE(933)] = 14837, + [SMALL_STATE(934)] = 14844, + [SMALL_STATE(935)] = 14851, + [SMALL_STATE(936)] = 14858, + [SMALL_STATE(937)] = 14865, + [SMALL_STATE(938)] = 14872, + [SMALL_STATE(939)] = 14879, + [SMALL_STATE(940)] = 14886, + [SMALL_STATE(941)] = 14893, + [SMALL_STATE(942)] = 14900, + [SMALL_STATE(943)] = 14907, + [SMALL_STATE(944)] = 14914, + [SMALL_STATE(945)] = 14921, + [SMALL_STATE(946)] = 14928, + [SMALL_STATE(947)] = 14935, + [SMALL_STATE(948)] = 14942, + [SMALL_STATE(949)] = 14949, + [SMALL_STATE(950)] = 14956, + [SMALL_STATE(951)] = 14961, + [SMALL_STATE(952)] = 14968, + [SMALL_STATE(953)] = 14975, + [SMALL_STATE(954)] = 14982, + [SMALL_STATE(955)] = 14989, + [SMALL_STATE(956)] = 14996, + [SMALL_STATE(957)] = 15003, + [SMALL_STATE(958)] = 15010, + [SMALL_STATE(959)] = 15017, + [SMALL_STATE(960)] = 15024, + [SMALL_STATE(961)] = 15031, + [SMALL_STATE(962)] = 15038, + [SMALL_STATE(963)] = 15045, + [SMALL_STATE(964)] = 15052, + [SMALL_STATE(965)] = 15059, + [SMALL_STATE(966)] = 15066, + [SMALL_STATE(967)] = 15073, + [SMALL_STATE(968)] = 15080, + [SMALL_STATE(969)] = 15087, + [SMALL_STATE(970)] = 15094, + [SMALL_STATE(971)] = 15101, + [SMALL_STATE(972)] = 15108, + [SMALL_STATE(973)] = 15115, + [SMALL_STATE(974)] = 15122, + [SMALL_STATE(975)] = 15129, + [SMALL_STATE(976)] = 15136, + [SMALL_STATE(977)] = 15143, + [SMALL_STATE(978)] = 15150, + [SMALL_STATE(979)] = 15157, + [SMALL_STATE(980)] = 15164, + [SMALL_STATE(981)] = 15171, + [SMALL_STATE(982)] = 15178, + [SMALL_STATE(983)] = 15185, + [SMALL_STATE(984)] = 15192, + [SMALL_STATE(985)] = 15199, + [SMALL_STATE(986)] = 15206, + [SMALL_STATE(987)] = 15213, + [SMALL_STATE(988)] = 15220, + [SMALL_STATE(989)] = 15224, + [SMALL_STATE(990)] = 15228, + [SMALL_STATE(991)] = 15232, + [SMALL_STATE(992)] = 15236, + [SMALL_STATE(993)] = 15240, + [SMALL_STATE(994)] = 15244, + [SMALL_STATE(995)] = 15248, + [SMALL_STATE(996)] = 15252, + [SMALL_STATE(997)] = 15256, + [SMALL_STATE(998)] = 15260, + [SMALL_STATE(999)] = 15264, + [SMALL_STATE(1000)] = 15268, + [SMALL_STATE(1001)] = 15272, + [SMALL_STATE(1002)] = 15276, + [SMALL_STATE(1003)] = 15280, + [SMALL_STATE(1004)] = 15284, + [SMALL_STATE(1005)] = 15288, + [SMALL_STATE(1006)] = 15292, + [SMALL_STATE(1007)] = 15296, + [SMALL_STATE(1008)] = 15300, + [SMALL_STATE(1009)] = 15304, + [SMALL_STATE(1010)] = 15308, + [SMALL_STATE(1011)] = 15312, + [SMALL_STATE(1012)] = 15316, + [SMALL_STATE(1013)] = 15320, + [SMALL_STATE(1014)] = 15324, + [SMALL_STATE(1015)] = 15328, + [SMALL_STATE(1016)] = 15332, + [SMALL_STATE(1017)] = 15336, + [SMALL_STATE(1018)] = 15340, + [SMALL_STATE(1019)] = 15344, + [SMALL_STATE(1020)] = 15348, + [SMALL_STATE(1021)] = 15352, + [SMALL_STATE(1022)] = 15356, + [SMALL_STATE(1023)] = 15360, + [SMALL_STATE(1024)] = 15364, + [SMALL_STATE(1025)] = 15368, + [SMALL_STATE(1026)] = 15372, + [SMALL_STATE(1027)] = 15376, + [SMALL_STATE(1028)] = 15380, + [SMALL_STATE(1029)] = 15384, + [SMALL_STATE(1030)] = 15388, + [SMALL_STATE(1031)] = 15392, + [SMALL_STATE(1032)] = 15396, + [SMALL_STATE(1033)] = 15400, + [SMALL_STATE(1034)] = 15404, + [SMALL_STATE(1035)] = 15408, + [SMALL_STATE(1036)] = 15412, + [SMALL_STATE(1037)] = 15416, + [SMALL_STATE(1038)] = 15420, + [SMALL_STATE(1039)] = 15424, + [SMALL_STATE(1040)] = 15428, + [SMALL_STATE(1041)] = 15432, + [SMALL_STATE(1042)] = 15436, + [SMALL_STATE(1043)] = 15440, + [SMALL_STATE(1044)] = 15444, + [SMALL_STATE(1045)] = 15448, + [SMALL_STATE(1046)] = 15452, + [SMALL_STATE(1047)] = 15456, + [SMALL_STATE(1048)] = 15460, + [SMALL_STATE(1049)] = 15464, + [SMALL_STATE(1050)] = 15468, + [SMALL_STATE(1051)] = 15472, + [SMALL_STATE(1052)] = 15476, + [SMALL_STATE(1053)] = 15480, + [SMALL_STATE(1054)] = 15484, + [SMALL_STATE(1055)] = 15488, + [SMALL_STATE(1056)] = 15492, + [SMALL_STATE(1057)] = 15496, + [SMALL_STATE(1058)] = 15500, + [SMALL_STATE(1059)] = 15504, + [SMALL_STATE(1060)] = 15508, + [SMALL_STATE(1061)] = 15512, + [SMALL_STATE(1062)] = 15516, + [SMALL_STATE(1063)] = 15520, + [SMALL_STATE(1064)] = 15524, + [SMALL_STATE(1065)] = 15528, + [SMALL_STATE(1066)] = 15532, + [SMALL_STATE(1067)] = 15536, + [SMALL_STATE(1068)] = 15540, + [SMALL_STATE(1069)] = 15544, + [SMALL_STATE(1070)] = 15548, + [SMALL_STATE(1071)] = 15552, + [SMALL_STATE(1072)] = 15556, + [SMALL_STATE(1073)] = 15560, + [SMALL_STATE(1074)] = 15564, + [SMALL_STATE(1075)] = 15568, + [SMALL_STATE(1076)] = 15572, + [SMALL_STATE(1077)] = 15576, + [SMALL_STATE(1078)] = 15580, + [SMALL_STATE(1079)] = 15584, + [SMALL_STATE(1080)] = 15588, + [SMALL_STATE(1081)] = 15592, + [SMALL_STATE(1082)] = 15596, + [SMALL_STATE(1083)] = 15600, + [SMALL_STATE(1084)] = 15604, + [SMALL_STATE(1085)] = 15608, + [SMALL_STATE(1086)] = 15612, + [SMALL_STATE(1087)] = 15616, + [SMALL_STATE(1088)] = 15620, + [SMALL_STATE(1089)] = 15624, + [SMALL_STATE(1090)] = 15628, + [SMALL_STATE(1091)] = 15632, + [SMALL_STATE(1092)] = 15636, + [SMALL_STATE(1093)] = 15640, + [SMALL_STATE(1094)] = 15644, + [SMALL_STATE(1095)] = 15648, + [SMALL_STATE(1096)] = 15652, + [SMALL_STATE(1097)] = 15656, + [SMALL_STATE(1098)] = 15660, + [SMALL_STATE(1099)] = 15664, + [SMALL_STATE(1100)] = 15668, + [SMALL_STATE(1101)] = 15672, }; 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(606), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [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(817), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 2), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 4), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 1), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 1), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 1), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 1), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 1), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 1), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(483), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 1), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 1), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(484), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(466), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 1), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 1), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(473), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 1), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 1), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(17), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(817), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(674), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(939), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(849), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(915), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1, 0, 0), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(420), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), - [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(534), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(538), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(44), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 2), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 4), + [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 1), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 1), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 1), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 1), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(511), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 1), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 1), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(507), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 1), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 1), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 1), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 1), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 1), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 1), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(696), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(492), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(412), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, 0, 3), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 4, 0, 11), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 4, 0, 11), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 4, 0, 11), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 13), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 9, 0, 0), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 5, 0, 0), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 4, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(539), - [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(517), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(517), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(553), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(646), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), - [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(585), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(595), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(650), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(592), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(530), - [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(611), - [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(530), - [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(639), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(640), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(607), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(579), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(618), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(572), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(615), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(580), - [2082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(633), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(588), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_caption_line, 1, 0, 0), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(599), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(636), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(620), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(620), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(643), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(644), - [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(624), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(660), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(645), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(462), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(467), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(472), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(487), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(466), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(473), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(926), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(748), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(816), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(816), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(542), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2708] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 10), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, 0, 3), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 4, 0, 11), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 4, 0, 11), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 4, 0, 11), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 13), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 3, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 4, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_caption, 5, 0, 0), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 9, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__code_line_repeat1, 1, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(675), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(490), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(666), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(617), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(618), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(675), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(677), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(641), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(640), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(605), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_caption_line, 1, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(628), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(678), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(630), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(630), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(664), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__code_line_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 1, 0, 0), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(509), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(510), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(511), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(507), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(495), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(488), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), + [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(779), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), + [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(760), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(867), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(867), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), + [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2716] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 10), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -55275,30 +58558,32 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__list_marker_star_dont_interrupt = 22, ts_external_token__list_marker_parenthesis_dont_interrupt = 23, ts_external_token__list_marker_dot_dont_interrupt = 24, - ts_external_token__fenced_code_block_start_backtick = 25, - ts_external_token__fenced_code_block_start_tilde = 26, - ts_external_token__blank_line_start = 27, - ts_external_token__fenced_code_block_end_backtick = 28, - ts_external_token__fenced_code_block_end_tilde = 29, - ts_external_token__close_block = 30, - ts_external_token__no_indented_chunk = 31, - ts_external_token__error = 32, - ts_external_token__trigger_error = 33, - ts_external_token__eof = 34, - ts_external_token_minus_metadata = 35, - ts_external_token_plus_metadata = 36, - ts_external_token__pipe_table_start = 37, - ts_external_token__pipe_table_line_ending = 38, - ts_external_token__fenced_div_start = 39, - ts_external_token__fenced_div_end = 40, - ts_external_token_ref_id_specifier = 41, - ts_external_token_fenced_div_note_id = 42, - ts_external_token__display_math_state_track_marker = 43, - ts_external_token__inline_math_state_track_marker = 44, - ts_external_token__code_span_start = 45, - ts_external_token__code_span_close = 46, - ts_external_token__latex_span_start = 47, - ts_external_token__latex_span_close = 48, + ts_external_token__list_marker_example = 25, + ts_external_token__list_marker_example_dont_interrupt = 26, + ts_external_token__fenced_code_block_start_backtick = 27, + ts_external_token__fenced_code_block_start_tilde = 28, + ts_external_token__blank_line_start = 29, + ts_external_token__fenced_code_block_end_backtick = 30, + ts_external_token__fenced_code_block_end_tilde = 31, + ts_external_token__close_block = 32, + ts_external_token__no_indented_chunk = 33, + ts_external_token__error = 34, + ts_external_token__trigger_error = 35, + ts_external_token__eof = 36, + ts_external_token_minus_metadata = 37, + ts_external_token_plus_metadata = 38, + ts_external_token__pipe_table_start = 39, + ts_external_token__pipe_table_line_ending = 40, + ts_external_token__fenced_div_start = 41, + ts_external_token__fenced_div_end = 42, + ts_external_token_ref_id_specifier = 43, + ts_external_token_fenced_div_note_id = 44, + ts_external_token__display_math_state_track_marker = 45, + ts_external_token__inline_math_state_track_marker = 46, + ts_external_token__code_span_start = 47, + ts_external_token__code_span_close = 48, + ts_external_token__latex_span_start = 49, + ts_external_token__latex_span_close = 50, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -55327,6 +58612,8 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = sym__list_marker_star_dont_interrupt, [ts_external_token__list_marker_parenthesis_dont_interrupt] = sym__list_marker_parenthesis_dont_interrupt, [ts_external_token__list_marker_dot_dont_interrupt] = sym__list_marker_dot_dont_interrupt, + [ts_external_token__list_marker_example] = sym__list_marker_example, + [ts_external_token__list_marker_example_dont_interrupt] = sym__list_marker_example_dont_interrupt, [ts_external_token__fenced_code_block_start_backtick] = sym__fenced_code_block_start_backtick, [ts_external_token__fenced_code_block_start_tilde] = sym__fenced_code_block_start_tilde, [ts_external_token__blank_line_start] = sym__blank_line_start, @@ -55380,6 +58667,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55426,6 +58715,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55458,6 +58749,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55491,6 +58784,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55524,6 +58819,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55556,6 +58853,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55591,6 +58890,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55626,6 +58927,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55661,6 +58964,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55696,6 +59001,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55708,8 +59015,6 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { }, [11] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -55718,6 +59023,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, + [ts_external_token_setext_h1_underline] = true, + [ts_external_token_setext_h2_underline] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, [ts_external_token__list_marker_plus] = true, @@ -55729,13 +59036,14 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token_minus_metadata] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, - [ts_external_token__fenced_div_end] = true, [ts_external_token_ref_id_specifier] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, @@ -55764,6 +59072,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, @@ -55776,6 +59086,8 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { }, [13] = { [ts_external_token__soft_line_ending] = true, + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -55784,8 +59096,6 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h4_marker] = true, [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, - [ts_external_token_setext_h1_underline] = true, - [ts_external_token_setext_h2_underline] = true, [ts_external_token__thematic_break] = true, [ts_external_token__list_marker_minus] = true, [ts_external_token__list_marker_plus] = true, @@ -55797,12 +59107,15 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__list_marker_star_dont_interrupt] = true, [ts_external_token__list_marker_parenthesis_dont_interrupt] = true, [ts_external_token__list_marker_dot_dont_interrupt] = true, + [ts_external_token__list_marker_example] = true, + [ts_external_token__list_marker_example_dont_interrupt] = true, [ts_external_token__fenced_code_block_start_backtick] = true, [ts_external_token__fenced_code_block_start_tilde] = true, [ts_external_token__blank_line_start] = true, [ts_external_token_minus_metadata] = true, [ts_external_token__pipe_table_start] = true, [ts_external_token__fenced_div_start] = true, + [ts_external_token__fenced_div_end] = true, [ts_external_token_ref_id_specifier] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, @@ -55886,7 +59199,7 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__fenced_code_block_end_tilde] = true, + [ts_external_token__fenced_code_block_end_backtick] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, @@ -55894,20 +59207,20 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__fenced_code_block_end_backtick] = true, + [ts_external_token__fenced_code_block_end_tilde] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, [27] = { + [ts_external_token__soft_line_ending] = true, + }, + [28] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, - [28] = { - [ts_external_token__soft_line_ending] = true, - }, [29] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, @@ -55917,14 +59230,14 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_math_state_track_marker] = true, }, [30] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, + [ts_external_token__code_span_close] = true, }, [31] = { - [ts_external_token__code_span_close] = true, + [ts_external_token__latex_span_close] = true, }, [32] = { - [ts_external_token__latex_span_close] = true, + [ts_external_token__soft_line_ending] = true, + [ts_external_token_block_continuation] = true, }, [33] = { [ts_external_token_atx_h1_marker] = true, @@ -55961,18 +59274,18 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__fenced_code_block_end_tilde] = true, }, [41] = { - [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, + [ts_external_token__close_block] = true, }, [42] = { + [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__close_block] = true, }, [43] = { - [ts_external_token__block_close] = true, + [ts_external_token__close_block] = true, }, [44] = { - [ts_external_token__close_block] = true, + [ts_external_token__block_close] = true, }, }; diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c index 9cd7468..80672ff 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c @@ -32,6 +32,8 @@ typedef enum { LIST_MARKER_STAR_DONT_INTERRUPT, LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, LIST_MARKER_DOT_DONT_INTERRUPT, + LIST_MARKER_EXAMPLE, + LIST_MARKER_EXAMPLE_DONT_INTERRUPT, FENCED_CODE_BLOCK_START_BACKTICK, FENCED_CODE_BLOCK_START_TILDE, BLANK_LINE_START, @@ -133,6 +135,8 @@ static const bool display_math_paragraph_interrupt_symbols[] = { false, // LIST_MARKER_STAR_DONT_INTERRUPT, false, // LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, false, // LIST_MARKER_DOT_DONT_INTERRUPT, + false, // LIST_MARKER_EXAMPLE, + false, // LIST_MARKER_EXAMPLE_DONT_INTERRUPT, true, // FENCED_CODE_BLOCK_START_BACKTICK, true, // FENCED_CODE_BLOCK_START_TILDE, true, // BLANK_LINE_START, @@ -183,6 +187,8 @@ static const bool paragraph_interrupt_symbols[] = { false, // LIST_MARKER_STAR_DONT_INTERRUPT, false, // LIST_MARKER_PARENTHESIS_DONT_INTERRUPT, false, // LIST_MARKER_DOT_DONT_INTERRUPT, + true, // LIST_MARKER_EXAMPLE, + false, // LIST_MARKER_EXAMPLE_DONT_INTERRUPT, true, // FENCED_CODE_BLOCK_START_BACKTICK, true, // FENCED_CODE_BLOCK_START_TILDE, true, // BLANK_LINE_START, @@ -949,6 +955,64 @@ static bool parse_ordered_list_marker(Scanner *s, TSLexer *lexer, return false; } +static bool parse_example_list_marker(Scanner *s, TSLexer *lexer, + const bool *valid_symbols) { + if (s->indentation <= 3 && + (valid_symbols[LIST_MARKER_EXAMPLE] || + valid_symbols[LIST_MARKER_EXAMPLE_DONT_INTERRUPT])) { + // Must be (@) + if (lexer->lookahead != '(') { + return false; + } + advance(s, lexer); + if (lexer->lookahead != '@') { + return false; + } + advance(s, lexer); + if (lexer->lookahead != ')') { + return false; + } + advance(s, lexer); + + uint8_t extra_indentation = 0; + while (lexer->lookahead == ' ' || lexer->lookahead == '\t') { + extra_indentation += advance(s, lexer); + } + bool line_end = lexer->lookahead == '\n' || lexer->lookahead == '\r'; + bool dont_interrupt = false; + if (line_end) { + extra_indentation = 1; + dont_interrupt = true; + } + dont_interrupt = dont_interrupt && s->matched == s->open_blocks.size; + if (extra_indentation >= 1 && + (dont_interrupt ? valid_symbols[LIST_MARKER_EXAMPLE_DONT_INTERRUPT] + : valid_symbols[LIST_MARKER_EXAMPLE])) { + lexer->result_symbol = dont_interrupt + ? LIST_MARKER_EXAMPLE_DONT_INTERRUPT + : LIST_MARKER_EXAMPLE; + extra_indentation--; + if (extra_indentation <= 3) { + extra_indentation += s->indentation; + s->indentation = 0; + } else { + uint8_t temp = s->indentation; + s->indentation = extra_indentation; + extra_indentation = temp; + } + if (!s->simulate) { + if (!can_push_block(s)) { + return error(lexer); + } + // Use 3 as the indentation offset (length of "(@)") + push_block(s, (Block)(LIST_ITEM + extra_indentation + 3)); + } + return true; + } + } + return false; +} + static bool parse_minus(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { if (s->indentation <= 3 && (valid_symbols[LIST_MARKER_MINUS] || @@ -1417,6 +1481,11 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return true; } + // Handle code spans for pipe table cells + if (lexer->lookahead == '`' && (valid_symbols[CODE_SPAN_START] || valid_symbols[CODE_SPAN_CLOSE])) { + return parse_code_span(s, lexer, valid_symbols); + } + // Close the inner most block after the next line break as requested. See // `$._close_block` in grammar.js if (valid_symbols[CLOSE_BLOCK]) { @@ -1537,6 +1606,9 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return parse_fenced_div_note_id(s, lexer, valid_symbols); } break; + case '(': + // A '(' could be an example list marker (@) + return parse_example_list_marker(s, lexer, valid_symbols); } if (lexer->lookahead != '\r' && lexer->lookahead != '\n' && valid_symbols[PIPE_TABLE_START]) { diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt index f410d4b..15109cc 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/qmd.txt @@ -260,4 +260,68 @@ Another paragraph in the note. (block_continuation) (paragraph (inline) - (block_continuation))))) \ No newline at end of file + (block_continuation))))) +================================================================================ +Example list with (@) syntax +================================================================================ +(@) First item + +(@) Second item + +(@) Third item +-------------------------------------------------------------------------------- +(document + (section + (list + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline)))))) +================================================================================ +Multiple example lists separated by text +================================================================================ +(@) First item + +(@) Second item + +Some text in between. + +(@) Third item + +(@) Fourth item +-------------------------------------------------------------------------------- +(document + (section + (list + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation)))) + (paragraph + (inline)) + (list + (list_item + (list_marker_example) + (paragraph + (inline) + (block_continuation))) + (list_item + (list_marker_example) + (paragraph + (inline))))))